1 Star 0 Fork 120

Tang_Gitee_HH/第四阶段庞丽静

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
tarena.sql 284.05 KB
一键复制 编辑 原始数据 按行查看 历史
panglijing 提交于 2021-11-02 09:39 . select file
-- MySQL dump 10.13 Distrib 5.7.17, for Linux (x86_64)
--
-- Host: localhost Database: tarena
-- ------------------------------------------------------
-- Server version 5.7.17
/*!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 */;
/*!40101 SET NAMES utf8 */;
/*!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 */;
--
-- Current Database: `tarena`
--
CREATE DATABASE /*!32312 IF NOT EXISTS*/ `tarena` /*!40100 DEFAULT CHARACTER SET latin1 */;
USE `tarena`;
--
-- Table structure for table `departments`
--
DROP TABLE IF EXISTS `departments`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `departments` (
`dept_id` int(4) NOT NULL AUTO_INCREMENT,
`dept_name` varchar(10) DEFAULT NULL,
PRIMARY KEY (`dept_id`)
) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb4;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `departments`
--
LOCK TABLES `departments` WRITE;
/*!40000 ALTER TABLE `departments` DISABLE KEYS */;
INSERT INTO `departments` VALUES (1,'人事部'),(2,'财务部'),(3,'运维部'),(4,'开发部'),(5,'测试部'),(6,'市场部'),(7,'销售部'),(8,'法务部');
/*!40000 ALTER TABLE `departments` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `employees`
--
DROP TABLE IF EXISTS `employees`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `employees` (
`employee_id` int(6) NOT NULL AUTO_INCREMENT,
`name` varchar(10) DEFAULT NULL,
`hire_date` date DEFAULT NULL,
`birth_date` date DEFAULT NULL,
`email` varchar(25) DEFAULT NULL,
`phone_number` char(11) DEFAULT NULL,
`dept_id` int(4) DEFAULT NULL,
PRIMARY KEY (`employee_id`),
KEY `dept_id_fk` (`dept_id`),
CONSTRAINT `dept_id_fk` FOREIGN KEY (`dept_id`) REFERENCES `departments` (`dept_id`)
) ENGINE=InnoDB AUTO_INCREMENT=134 DEFAULT CHARSET=utf8mb4;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `employees`
--
LOCK TABLES `employees` WRITE;
/*!40000 ALTER TABLE `employees` DISABLE KEYS */;
INSERT INTO `employees` VALUES (1,'梁伟','2018-06-21','1971-08-19','liangwei@tedu.cn','13591491431',1),(2,'郭岩','2010-03-21','1974-05-13','guoyan@tedu.cn','13845285867',1),(3,'李玉英','2012-01-19','1974-01-25','liyuying@tedu.cn','15628557234',1),(4,'张健','2008-09-17','1972-06-07','zhangjian@tarena.com','13835990213',1),(5,'郑静','2018-02-03','1997-02-14','zhengjing@tedu.cn','14508936730',1),(6,'牛建军','2005-11-18','1985-03-19','niujianjun@tarena.com','14750937118',1),(7,'刘斌','2014-09-04','1989-12-02','liubin@tarena.com','13422179271',1),(8,'汪云','2018-11-21','1993-03-25','wangyun@tedu.cn','15500969849',1),(9,'张建平','2016-06-04','1971-11-02','zhangjianping@tarena.com','13229532500',2),(10,'郭娟','2018-09-03','1993-06-07','guojuan@tarena.com','13730949382',2),(11,'郭兰英','2007-03-20','1994-12-20','guolanying@tedu.cn','18505599695',2),(12,'王英','2016-12-27','1997-10-11','wangying@tedu.cn','15227394915',2),(13,'王楠','2006-05-29','1989-02-05','wangnan@tarena.com','15098647876',2),(14,'廖娜','2012-05-20','1982-06-22','liaona@tarena.com','15827928192',3),(15,'窦红梅','2018-03-16','1971-09-09','douhongmei@tedu.cn','15004739483',3),(16,'聂想','2018-09-09','1999-06-05','niexiang@tedu.cn','15501892446',3),(17,'陈阳','2004-09-16','1991-04-10','chenyang@tedu.cn','15565662056',3),(18,'戴璐','2001-11-30','1975-05-16','dailu@tedu.cn','13465236095',3),(19,'陈斌','2019-07-04','2000-01-22','chenbin@tarena.com','13621656037',3),(20,'蒋红','2017-12-29','1978-01-24','jianghong@tedu.cn','15852915398',4),(21,'曹宁','2004-06-07','1988-01-05','caoning@tedu.cn','14513022304',4),(22,'吕刚','2014-01-18','1980-06-24','lvgang@tedu.cn','18136987619',4),(23,'王莉','2021-02-04','1972-12-19','wangli@tarena.com','15376329290',4),(24,'邓秀芳','2020-09-08','1980-12-12','dengxiufang@tarena.com','15884927117',4),(25,'邵佳','2011-08-15','1978-11-28','shaojia@tedu.cn','13296016750',4),(26,'党丽','2014-03-14','1978-12-30','dangli@tarena.com','13166234580',4),(27,'梁勇','2007-01-19','1997-11-12','liangyong@tedu.cn','15307868657',4),(28,'郑秀珍','2011-04-28','1972-09-01','zhengxiuzhen@tarena.com','14543186401',4),(29,'胡秀云','2003-11-03','2000-05-14','huxiuyun@tedu.cn','18212266720',4),(30,'邢淑兰','2011-07-02','1989-06-17','xingshulan@tarena.com','13032270370',4),(31,'刘海燕','2018-01-06','1982-08-21','liuhaiyan@tarena.com','15064354651',4),(32,'冯建国','2014-05-28','1980-01-26','fengjianguo@tedu.cn','13344957322',4),(33,'曹杰','2017-01-04','1975-07-03','caojie@tarena.com','13244741822',4),(34,'苗桂花','2001-10-06','1974-01-26','miaoguihua@tedu.cn','18124884107',4),(35,'袁建平','2020-09-17','1990-07-25','yuanjianping@tarena.com','13580624147',4),(36,'黄淑兰','2019-08-29','1988-02-08','huangshulan@tedu.cn','14568738205',4),(37,'朱淑兰','2002-04-26','1977-12-10','zhushulan@tedu.cn','13635439422',4),(38,'曹凯','2006-07-23','1995-11-07','caokai@tarena.com','15172694474',4),(39,'张倩','2009-10-27','2000-04-27','zhangqian@tedu.cn','15053279648',4),(40,'王淑珍','2013-09-21','1995-05-06','wangshuzhen@tedu.cn','18583012709',4),(41,'陈玉','2011-08-20','1985-06-14','chenyu@tedu.cn','13632957562',4),(42,'陈玉英','2020-10-03','1996-05-19','chenyuying@tedu.cn','15100520600',4),(43,'王波','2008-06-14','1979-05-26','wangbo@tedu.cn','15236208918',4),(44,'黄文','2010-06-05','1983-01-30','huangwen@tedu.cn','13688719481',4),(45,'陈刚','2010-10-26','1978-05-10','chengang@tedu.cn','13679861175',4),(46,'罗建华','2004-06-20','1989-02-23','luojianhua@tedu.cn','13176305978',4),(47,'黄建平','2009-04-09','1995-07-15','huangjianping@tarena.com','18517722322',4),(48,'范秀英','2001-03-13','1996-06-01','fanxiuying@tarena.com','18252125689',4),(49,'李平','2003-10-28','1998-07-24','liping@tedu.cn','18526198243',4),(50,'臧龙','2011-10-06','1976-05-11','zanglong@tarena.com','13474064425',4),(51,'吴静','2017-09-26','1983-08-04','wujing@tedu.cn','14762137325',4),(52,'张冬梅','2010-10-26','1982-05-09','zhangdongmei@tedu.cn','13690746261',4),(53,'邢成','2018-05-07','1991-07-13','xingcheng@tarena.com','13983238261',4),(54,'孙丹','2012-01-28','1997-02-22','sundan@tarena.com','13684254376',4),(55,'梁静','2013-03-21','1995-05-20','liangjing@tarena.com','18077866993',4),(56,'陈洁','2006-08-17','1977-04-23','chenjie@tedu.cn','14737309895',4),(57,'许辉','2014-09-16','1992-10-21','xuhui@tarena.com','13143391754',4),(58,'张伟','2007-06-22','1999-04-30','zhangwei@tarena.com','18172302428',4),(59,'钟倩','2011-02-23','1983-06-28','zhongqian@tarena.com','18611282765',4),(60,'贺磊','2001-06-19','1993-02-07','helei@tedu.cn','15897839325',4),(61,'沈秀梅','2003-04-27','1992-08-13','shenxiumei@tedu.cn','18044302910',4),(62,'林刚','2007-09-19','1990-09-23','lingang@tedu.cn','13355063263',4),(63,'王玉华','2016-10-09','1973-09-14','wangyuhua@tedu.cn','18010485419',4),(64,'徐金凤','2015-09-09','1972-01-31','xujinfeng@tedu.cn','15124816733',4),(65,'张淑英','2010-11-08','1996-09-12','zhangshuying@tarena.com','18846908114',4),(66,'罗岩','2001-06-13','1986-10-17','luoyan@tedu.cn','14544559539',4),(67,'潘玲','2017-08-31','1993-02-18','panling@tedu.cn','13311560534',4),(68,'柴冬梅','2003-11-24','1976-01-01','chaidongmei@tarena.com','14506733843',4),(69,'谢莹','2017-12-06','1996-04-01','xieying@tedu.cn','15137904023',4),(70,'傅雪','2001-04-23','1976-09-06','fuxue@tarena.com','15210059051',4),(71,'龙旭','2019-05-15','1974-11-02','longxu@tarena.com','15155879580',4),(72,'赵杰','2004-05-08','1984-04-06','zhaojie@tedu.cn','13466360255',4),(73,'王璐','2003-09-22','2000-02-01','wanglu@tarena.com','13056592974',4),(74,'赵成','2012-11-30','1985-10-11','zhaocheng@tedu.cn','18545824587',4),(75,'温兰英','2018-12-17','1971-08-14','wenlanying@tedu.cn','14555145665',5),(76,'刘桂兰','2003-10-14','1982-10-11','liuguilan@tarena.com','14519817739',5),(77,'吴丽娟','2010-05-05','1990-07-08','wulijuan@tedu.cn','13779666432',5),(78,'张娜','2009-04-26','1984-05-04','zhangna@tedu.cn','18958464102',5),(79,'叶欣','2010-04-15','1989-08-20','yexin@tedu.cn','13272708531',5),(80,'符燕','2019-06-08','1999-12-12','fuyan@tedu.cn','15971222058',5),(81,'徐成','2015-03-10','1976-11-21','xucheng@tarena.com','13953149344',5),(82,'韩丹','2013-03-09','1999-06-08','handan@tedu.cn','15032922519',5),(83,'蒋秀芳','2013-05-16','2000-04-27','jiangxiufang@tarena.com','13754182169',5),(84,'朱文','2004-04-16','1971-08-15','zhuwen@tarena.com','18254764670',5),(85,'刘玲','2007-08-03','1974-11-20','liuling@tarena.com','13709189883',5),(86,'张宇','2004-06-05','2000-07-16','zhangyu@tedu.cn','13206190333',5),(87,'田萍','2017-10-07','1973-04-14','tianping@tedu.cn','14522684516',6),(88,'田英','2005-01-02','1975-02-28','tianying@tedu.cn','13574406963',6),(89,'唐芳','2003-05-25','1979-01-30','tangfang@tedu.cn','14564441672',6),(90,'莫凤兰','2001-08-01','1988-04-22','mofenglan@tedu.cn','18845833034',6),(91,'李建华','2017-01-24','1978-07-21','lijianhua@tarena.com','15390349495',6),(92,'陶红','2006-09-07','2000-02-21','taohong@tarena.com','13590239609',6),(93,'余春梅','2014-10-23','1997-04-19','yuchunmei@tarena.com','15700910264',6),(94,'熊东','2009-04-14','1991-11-19','xiongdong@tedu.cn','18976597702',6),(95,'毛丹','2004-10-10','1997-09-07','maodan@tarena.com','18861622685',6),(96,'胡瑜','2007-12-30','1972-04-09','huyu@tarena.com','18245789947',7),(97,'崔志强','2001-10-28','1998-07-27','cuizhiqiang@tedu.cn','18504003214',7),(98,'李莹','2011-04-28','1995-10-26','liying@tedu.cn','14536429074',7),(99,'王畅','2001-04-30','1996-11-21','wangchang@tedu.cn','14552962627',7),(100,'马涛','2013-01-14','1991-06-29','matao@tedu.cn','18663480103',7),(101,'李柳','2014-01-22','1972-10-14','liliu@tarena.com','18217698531',7),(102,'张亮','2015-08-10','1996-08-25','zhangliang@tedu.cn','18296168840',7),(103,'彭敏','2020-06-26','1997-08-07','pengmin@tarena.com','13900166087',7),(104,'王洁','2019-11-10','1990-12-15','wangjie@tarena.com','18151129322',7),(105,'王小红','2002-06-24','1989-10-04','wangxiaohong@tedu.cn','18883561181',7),(106,'苏波','2003-07-18','1999-12-08','subo@tarena.com','15328391532',7),(107,'游静','2017-04-29','2000-02-14','youjing@tarena.com','13380351728',7),(108,'宋艳','2008-03-04','1977-12-11','songyan@tarena.com','18511490071',7),(109,'巫杨','2001-04-25','1979-02-15','wuyang@tarena.com','14512168993',7),(110,'萧秀华','2007-06-25','1990-08-02','xiaoxiuhua@tarena.com','14796061203',7),(111,'赵凤兰','2006-03-28','1985-05-07','zhaofenglan@tedu.cn','18756452344',7),(112,'田兰英','2013-03-11','1982-01-06','tianlanying@tedu.cn','15900695829',7),(113,'杨桂香','2010-07-30','1990-12-26','yangguixiang@tedu.cn','14743596111',7),(114,'黄秀云','2005-07-19','1987-01-23','huangxiuyun@tarena.com','15133648545',7),(115,'陈建军','2009-09-15','1986-05-31','chenjianjun@tarena.com','13106957495',7),(116,'贾荣','2005-08-29','1984-10-19','jiarong@tarena.com','15567494538',7),(117,'和林','2011-07-12','1971-12-10','helin@tarena.com','18973705142',7),(118,'宋慧','2011-06-08','1993-07-16','songhui@tedu.cn','15102478639',7),(119,'张梅','2006-05-09','1981-10-21','zhangmei@tedu.cn','18239588534',7),(120,'段杨','2018-04-02','1979-06-03','duanyang@tedu.cn','18807805024',7),(121,'孙婷','2004-06-10','1986-04-15','sunting@tedu.cn','13847867478',7),(122,'区军','2013-04-22','1995-03-06','qujun@tarena.com','15345106457',7),(123,'许欣','2011-09-09','1982-09-25','xuxin@tarena.com','18889410191',7),(124,'李慧','2004-08-25','1973-12-31','lihui@tarena.com','15345652879',7),(125,'李静','2016-08-08','1980-05-27','lijing@tarena.com','15247718354',7),(126,'谢琴','2008-07-01','1978-11-18','xieqin@tedu.cn','14570669863',7),(127,'李瑞','2016-04-13','1973-11-05','lirui@tarena.com','15332657727',7),(128,'许华','2020-08-21','1985-01-30','xuhua@tarena.com','18516368454',7),(129,'汤华','2003-06-15','1983-09-25','tanghua@tarena.com','15250804958',7),(130,'王玉兰','2013-09-13','1984-06-07','wangyulan@tedu.cn','15929076215',7),(131,'王荣','2019-11-14','1999-11-22','wangrong@tedu.cn','14579855376',8),(132,'刘倩','2003-07-10','1989-05-19','liuqian@tarena.com','15781041419',8),(133,'杨金凤','2012-12-06','1990-06-22','yangjinfeng@tarena.com','18831784879',8);
/*!40000 ALTER TABLE `employees` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `salary`
--
DROP TABLE IF EXISTS `salary`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `salary` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`date` date DEFAULT NULL,
`employee_id` int(6) DEFAULT NULL,
`basic` int(6) DEFAULT NULL,
`bonus` int(6) DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `emp_id_fk` (`employee_id`),
CONSTRAINT `emp_id_fk` FOREIGN KEY (`employee_id`) REFERENCES `employees` (`employee_id`)
) ENGINE=InnoDB AUTO_INCREMENT=9577 DEFAULT CHARSET=utf8mb4;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `salary`
--
LOCK TABLES `salary` WRITE;
/*!40000 ALTER TABLE `salary` DISABLE KEYS */;
INSERT INTO `salary` VALUES (2,'2015-01-10',2,17000,10000),(3,'2015-01-10',3,8000,2000),(4,'2015-01-10',4,14000,9000),(6,'2015-01-10',6,14000,10000),(7,'2015-01-10',7,19000,10000),(11,'2015-01-10',11,14000,7000),(13,'2015-01-10',13,15000,1000),(14,'2015-01-10',14,10000,11000),(17,'2015-01-10',17,16000,7000),(18,'2015-01-10',18,6000,10000),(21,'2015-01-10',21,15000,6000),(22,'2015-01-10',22,12000,8000),(25,'2015-01-10',25,19000,2000),(26,'2015-01-10',26,7000,11000),(27,'2015-01-10',27,20000,5000),(28,'2015-01-10',28,14000,5000),(29,'2015-01-10',29,19000,1000),(30,'2015-01-10',30,6000,1000),(32,'2015-01-10',32,15000,8000),(34,'2015-01-10',34,19000,6000),(37,'2015-01-10',37,20000,6000),(38,'2015-01-10',38,19000,11000),(39,'2015-01-10',39,12000,10000),(40,'2015-01-10',40,17000,2000),(41,'2015-01-10',41,8000,7000),(43,'2015-01-10',43,11000,9000),(44,'2015-01-10',44,11000,8000),(45,'2015-01-10',45,12000,1000),(46,'2015-01-10',46,13000,10000),(47,'2015-01-10',47,11000,11000),(48,'2015-01-10',48,21000,10000),(49,'2015-01-10',49,13000,7000),(50,'2015-01-10',50,9000,4000),(52,'2015-01-10',52,16000,11000),(54,'2015-01-10',54,18000,8000),(55,'2015-01-10',55,5000,3000),(56,'2015-01-10',56,19000,2000),(57,'2015-01-10',57,19000,4000),(58,'2015-01-10',58,11000,5000),(59,'2015-01-10',59,9000,3000),(60,'2015-01-10',60,11000,4000),(61,'2015-01-10',61,20000,11000),(62,'2015-01-10',62,13000,3000),(65,'2015-01-10',65,12000,3000),(66,'2015-01-10',66,16000,5000),(68,'2015-01-10',68,21000,8000),(70,'2015-01-10',70,10000,1000),(72,'2015-01-10',72,11000,8000),(73,'2015-01-10',73,14000,1000),(74,'2015-01-10',74,10000,3000),(76,'2015-01-10',76,17000,8000),(77,'2015-01-10',77,7000,8000),(78,'2015-01-10',78,9000,5000),(79,'2015-01-10',79,13000,9000),(82,'2015-01-10',82,7000,1000),(83,'2015-01-10',83,8000,5000),(84,'2015-01-10',84,9000,10000),(85,'2015-01-10',85,13000,11000),(86,'2015-01-10',86,20000,4000),(88,'2015-01-10',88,17000,6000),(89,'2015-01-10',89,6000,1000),(90,'2015-01-10',90,5000,4000),(92,'2015-01-10',92,16000,6000),(93,'2015-01-10',93,7000,1000),(94,'2015-01-10',94,12000,5000),(95,'2015-01-10',95,16000,4000),(96,'2015-01-10',96,12000,3000),(97,'2015-01-10',97,6000,6000),(98,'2015-01-10',98,16000,9000),(99,'2015-01-10',99,13000,10000),(100,'2015-01-10',100,12000,5000),(101,'2015-01-10',101,6000,8000),(105,'2015-01-10',105,18000,10000),(106,'2015-01-10',106,19000,10000),(108,'2015-01-10',108,15000,6000),(109,'2015-01-10',109,7000,3000),(110,'2015-01-10',110,15000,8000),(111,'2015-01-10',111,5000,7000),(112,'2015-01-10',112,20000,11000),(113,'2015-01-10',113,9000,8000),(114,'2015-01-10',114,5000,3000),(115,'2015-01-10',115,11000,2000),(116,'2015-01-10',116,8000,7000),(117,'2015-01-10',117,21000,6000),(118,'2015-01-10',118,19000,4000),(119,'2015-01-10',119,19000,5000),(121,'2015-01-10',121,8000,6000),(122,'2015-01-10',122,18000,10000),(123,'2015-01-10',123,16000,4000),(124,'2015-01-10',124,12000,2000),(126,'2015-01-10',126,9000,7000),(129,'2015-01-10',129,12000,10000),(130,'2015-01-10',130,8000,2000),(132,'2015-01-10',132,9000,8000),(133,'2015-01-10',133,5000,7000),(135,'2015-02-10',2,17000,10000),(136,'2015-02-10',3,8000,4000),(137,'2015-02-10',4,14000,3000),(139,'2015-02-10',6,14000,10000),(140,'2015-02-10',7,19000,10000),(144,'2015-02-10',11,14000,9000),(146,'2015-02-10',13,15000,5000),(147,'2015-02-10',14,10000,1000),(150,'2015-02-10',17,16000,3000),(151,'2015-02-10',18,6000,1000),(154,'2015-02-10',21,15000,7000),(155,'2015-02-10',22,12000,4000),(158,'2015-02-10',25,19000,6000),(159,'2015-02-10',26,7000,5000),(160,'2015-02-10',27,20000,9000),(161,'2015-02-10',28,14000,6000),(162,'2015-02-10',29,19000,5000),(163,'2015-02-10',30,6000,10000),(165,'2015-02-10',32,15000,11000),(167,'2015-02-10',34,19000,6000),(170,'2015-02-10',37,20000,5000),(171,'2015-02-10',38,19000,9000),(172,'2015-02-10',39,12000,7000),(173,'2015-02-10',40,17000,1000),(174,'2015-02-10',41,8000,5000),(176,'2015-02-10',43,11000,2000),(177,'2015-02-10',44,11000,4000),(178,'2015-02-10',45,12000,8000),(179,'2015-02-10',46,13000,5000),(180,'2015-02-10',47,11000,4000),(181,'2015-02-10',48,21000,4000),(182,'2015-02-10',49,13000,7000),(183,'2015-02-10',50,9000,11000),(185,'2015-02-10',52,16000,11000),(187,'2015-02-10',54,18000,2000),(188,'2015-02-10',55,5000,5000),(189,'2015-02-10',56,19000,1000),(190,'2015-02-10',57,19000,9000),(191,'2015-02-10',58,11000,9000),(192,'2015-02-10',59,9000,9000),(193,'2015-02-10',60,11000,1000),(194,'2015-02-10',61,20000,2000),(195,'2015-02-10',62,13000,8000),(198,'2015-02-10',65,12000,6000),(199,'2015-02-10',66,16000,10000),(201,'2015-02-10',68,21000,5000),(203,'2015-02-10',70,10000,3000),(205,'2015-02-10',72,11000,2000),(206,'2015-02-10',73,14000,6000),(207,'2015-02-10',74,10000,7000),(209,'2015-02-10',76,17000,3000),(210,'2015-02-10',77,7000,7000),(211,'2015-02-10',78,9000,3000),(212,'2015-02-10',79,13000,9000),(215,'2015-02-10',82,7000,4000),(216,'2015-02-10',83,8000,6000),(217,'2015-02-10',84,9000,5000),(218,'2015-02-10',85,13000,8000),(219,'2015-02-10',86,20000,2000),(221,'2015-02-10',88,17000,3000),(222,'2015-02-10',89,6000,1000),(223,'2015-02-10',90,5000,9000),(225,'2015-02-10',92,16000,8000),(226,'2015-02-10',93,7000,2000),(227,'2015-02-10',94,12000,2000),(228,'2015-02-10',95,16000,1000),(229,'2015-02-10',96,12000,3000),(230,'2015-02-10',97,6000,8000),(231,'2015-02-10',98,16000,9000),(232,'2015-02-10',99,13000,10000),(233,'2015-02-10',100,12000,7000),(234,'2015-02-10',101,6000,7000),(238,'2015-02-10',105,18000,7000),(239,'2015-02-10',106,19000,9000),(241,'2015-02-10',108,15000,6000),(242,'2015-02-10',109,7000,8000),(243,'2015-02-10',110,15000,2000),(244,'2015-02-10',111,5000,1000),(245,'2015-02-10',112,20000,5000),(246,'2015-02-10',113,9000,10000),(247,'2015-02-10',114,5000,6000),(248,'2015-02-10',115,11000,1000),(249,'2015-02-10',116,8000,9000),(250,'2015-02-10',117,21000,3000),(251,'2015-02-10',118,19000,11000),(252,'2015-02-10',119,19000,1000),(254,'2015-02-10',121,8000,11000),(255,'2015-02-10',122,18000,3000),(256,'2015-02-10',123,16000,10000),(257,'2015-02-10',124,12000,8000),(259,'2015-02-10',126,9000,10000),(262,'2015-02-10',129,12000,5000),(263,'2015-02-10',130,8000,2000),(265,'2015-02-10',132,9000,3000),(266,'2015-02-10',133,5000,5000),(268,'2015-03-10',2,17000,9000),(269,'2015-03-10',3,8000,11000),(270,'2015-03-10',4,14000,8000),(272,'2015-03-10',6,14000,3000),(273,'2015-03-10',7,19000,8000),(277,'2015-03-10',11,14000,10000),(279,'2015-03-10',13,15000,11000),(280,'2015-03-10',14,10000,3000),(283,'2015-03-10',17,16000,10000),(284,'2015-03-10',18,6000,5000),(287,'2015-03-10',21,15000,6000),(288,'2015-03-10',22,12000,11000),(291,'2015-03-10',25,19000,7000),(292,'2015-03-10',26,7000,11000),(293,'2015-03-10',27,20000,5000),(294,'2015-03-10',28,14000,4000),(295,'2015-03-10',29,19000,10000),(296,'2015-03-10',30,6000,3000),(298,'2015-03-10',32,15000,5000),(300,'2015-03-10',34,19000,7000),(303,'2015-03-10',37,20000,9000),(304,'2015-03-10',38,19000,3000),(305,'2015-03-10',39,12000,1000),(306,'2015-03-10',40,17000,11000),(307,'2015-03-10',41,8000,4000),(309,'2015-03-10',43,11000,5000),(310,'2015-03-10',44,11000,1000),(311,'2015-03-10',45,12000,6000),(312,'2015-03-10',46,13000,1000),(313,'2015-03-10',47,11000,8000),(314,'2015-03-10',48,21000,1000),(315,'2015-03-10',49,13000,9000),(316,'2015-03-10',50,9000,3000),(318,'2015-03-10',52,16000,1000),(320,'2015-03-10',54,18000,5000),(321,'2015-03-10',55,5000,3000),(322,'2015-03-10',56,19000,1000),(323,'2015-03-10',57,19000,7000),(324,'2015-03-10',58,11000,3000),(325,'2015-03-10',59,9000,2000),(326,'2015-03-10',60,11000,4000),(327,'2015-03-10',61,20000,5000),(328,'2015-03-10',62,13000,1000),(331,'2015-03-10',65,12000,7000),(332,'2015-03-10',66,16000,9000),(334,'2015-03-10',68,21000,8000),(336,'2015-03-10',70,10000,6000),(338,'2015-03-10',72,11000,10000),(339,'2015-03-10',73,14000,4000),(340,'2015-03-10',74,10000,7000),(342,'2015-03-10',76,17000,4000),(343,'2015-03-10',77,7000,7000),(344,'2015-03-10',78,9000,11000),(345,'2015-03-10',79,13000,10000),(347,'2015-03-10',81,14000,2000),(348,'2015-03-10',82,7000,10000),(349,'2015-03-10',83,8000,8000),(350,'2015-03-10',84,9000,6000),(351,'2015-03-10',85,13000,9000),(352,'2015-03-10',86,20000,6000),(354,'2015-03-10',88,17000,5000),(355,'2015-03-10',89,6000,2000),(356,'2015-03-10',90,5000,3000),(358,'2015-03-10',92,16000,8000),(359,'2015-03-10',93,7000,6000),(360,'2015-03-10',94,12000,5000),(361,'2015-03-10',95,16000,9000),(362,'2015-03-10',96,12000,2000),(363,'2015-03-10',97,6000,7000),(364,'2015-03-10',98,16000,7000),(365,'2015-03-10',99,13000,11000),(366,'2015-03-10',100,12000,10000),(367,'2015-03-10',101,6000,5000),(371,'2015-03-10',105,18000,11000),(372,'2015-03-10',106,19000,6000),(374,'2015-03-10',108,15000,2000),(375,'2015-03-10',109,7000,8000),(376,'2015-03-10',110,15000,1000),(377,'2015-03-10',111,5000,3000),(378,'2015-03-10',112,20000,7000),(379,'2015-03-10',113,9000,4000),(380,'2015-03-10',114,5000,2000),(381,'2015-03-10',115,11000,11000),(382,'2015-03-10',116,8000,7000),(383,'2015-03-10',117,21000,8000),(384,'2015-03-10',118,19000,5000),(385,'2015-03-10',119,19000,10000),(387,'2015-03-10',121,8000,6000),(388,'2015-03-10',122,18000,1000),(389,'2015-03-10',123,16000,10000),(390,'2015-03-10',124,12000,9000),(392,'2015-03-10',126,9000,6000),(395,'2015-03-10',129,12000,1000),(396,'2015-03-10',130,8000,7000),(398,'2015-03-10',132,9000,6000),(399,'2015-03-10',133,5000,3000),(401,'2015-04-10',2,17000,10000),(402,'2015-04-10',3,8000,1000),(403,'2015-04-10',4,14000,4000),(405,'2015-04-10',6,14000,11000),(406,'2015-04-10',7,19000,3000),(410,'2015-04-10',11,14000,8000),(412,'2015-04-10',13,15000,8000),(413,'2015-04-10',14,10000,1000),(416,'2015-04-10',17,16000,5000),(417,'2015-04-10',18,6000,9000),(420,'2015-04-10',21,15000,2000),(421,'2015-04-10',22,12000,6000),(424,'2015-04-10',25,19000,1000),(425,'2015-04-10',26,7000,4000),(426,'2015-04-10',27,20000,5000),(427,'2015-04-10',28,14000,3000),(428,'2015-04-10',29,19000,11000),(429,'2015-04-10',30,6000,2000),(431,'2015-04-10',32,15000,11000),(433,'2015-04-10',34,19000,4000),(436,'2015-04-10',37,20000,8000),(437,'2015-04-10',38,19000,2000),(438,'2015-04-10',39,12000,7000),(439,'2015-04-10',40,17000,7000),(440,'2015-04-10',41,8000,2000),(442,'2015-04-10',43,11000,6000),(443,'2015-04-10',44,11000,9000),(444,'2015-04-10',45,12000,1000),(445,'2015-04-10',46,13000,2000),(446,'2015-04-10',47,11000,2000),(447,'2015-04-10',48,21000,9000),(448,'2015-04-10',49,13000,9000),(449,'2015-04-10',50,9000,7000),(451,'2015-04-10',52,16000,6000),(453,'2015-04-10',54,18000,4000),(454,'2015-04-10',55,5000,1000),(455,'2015-04-10',56,19000,6000),(456,'2015-04-10',57,19000,9000),(457,'2015-04-10',58,11000,9000),(458,'2015-04-10',59,9000,7000),(459,'2015-04-10',60,11000,7000),(460,'2015-04-10',61,20000,8000),(461,'2015-04-10',62,13000,9000),(464,'2015-04-10',65,12000,7000),(465,'2015-04-10',66,16000,1000),(467,'2015-04-10',68,21000,5000),(469,'2015-04-10',70,10000,2000),(471,'2015-04-10',72,11000,1000),(472,'2015-04-10',73,14000,7000),(473,'2015-04-10',74,10000,10000),(475,'2015-04-10',76,17000,4000),(476,'2015-04-10',77,7000,10000),(477,'2015-04-10',78,9000,7000),(478,'2015-04-10',79,13000,7000),(480,'2015-04-10',81,14000,4000),(481,'2015-04-10',82,7000,4000),(482,'2015-04-10',83,8000,1000),(483,'2015-04-10',84,9000,3000),(484,'2015-04-10',85,13000,2000),(485,'2015-04-10',86,20000,6000),(487,'2015-04-10',88,17000,8000),(488,'2015-04-10',89,6000,8000),(489,'2015-04-10',90,5000,1000),(491,'2015-04-10',92,16000,6000),(492,'2015-04-10',93,7000,3000),(493,'2015-04-10',94,12000,2000),(494,'2015-04-10',95,16000,1000),(495,'2015-04-10',96,12000,3000),(496,'2015-04-10',97,6000,7000),(497,'2015-04-10',98,16000,1000),(498,'2015-04-10',99,13000,8000),(499,'2015-04-10',100,12000,11000),(500,'2015-04-10',101,6000,2000),(504,'2015-04-10',105,18000,9000),(505,'2015-04-10',106,19000,3000),(507,'2015-04-10',108,15000,3000),(508,'2015-04-10',109,7000,3000),(509,'2015-04-10',110,15000,3000),(510,'2015-04-10',111,5000,8000),(511,'2015-04-10',112,20000,11000),(512,'2015-04-10',113,9000,11000),(513,'2015-04-10',114,5000,6000),(514,'2015-04-10',115,11000,1000),(515,'2015-04-10',116,8000,4000),(516,'2015-04-10',117,21000,11000),(517,'2015-04-10',118,19000,6000),(518,'2015-04-10',119,19000,4000),(520,'2015-04-10',121,8000,5000),(521,'2015-04-10',122,18000,2000),(522,'2015-04-10',123,16000,8000),(523,'2015-04-10',124,12000,9000),(525,'2015-04-10',126,9000,6000),(528,'2015-04-10',129,12000,5000),(529,'2015-04-10',130,8000,7000),(531,'2015-04-10',132,9000,8000),(532,'2015-04-10',133,5000,3000),(534,'2015-05-10',2,17000,3000),(535,'2015-05-10',3,8000,10000),(536,'2015-05-10',4,14000,11000),(538,'2015-05-10',6,14000,11000),(539,'2015-05-10',7,19000,10000),(543,'2015-05-10',11,14000,3000),(545,'2015-05-10',13,15000,8000),(546,'2015-05-10',14,10000,7000),(549,'2015-05-10',17,16000,11000),(550,'2015-05-10',18,6000,4000),(553,'2015-05-10',21,15000,8000),(554,'2015-05-10',22,12000,11000),(557,'2015-05-10',25,19000,3000),(558,'2015-05-10',26,7000,4000),(559,'2015-05-10',27,20000,5000),(560,'2015-05-10',28,14000,11000),(561,'2015-05-10',29,19000,3000),(562,'2015-05-10',30,6000,8000),(564,'2015-05-10',32,15000,1000),(566,'2015-05-10',34,19000,7000),(569,'2015-05-10',37,20000,1000),(570,'2015-05-10',38,19000,9000),(571,'2015-05-10',39,12000,5000),(572,'2015-05-10',40,17000,1000),(573,'2015-05-10',41,8000,10000),(575,'2015-05-10',43,11000,6000),(576,'2015-05-10',44,11000,3000),(577,'2015-05-10',45,12000,11000),(578,'2015-05-10',46,13000,10000),(579,'2015-05-10',47,11000,1000),(580,'2015-05-10',48,21000,8000),(581,'2015-05-10',49,13000,10000),(582,'2015-05-10',50,9000,6000),(584,'2015-05-10',52,16000,8000),(586,'2015-05-10',54,18000,1000),(587,'2015-05-10',55,5000,7000),(588,'2015-05-10',56,19000,3000),(589,'2015-05-10',57,19000,2000),(590,'2015-05-10',58,11000,11000),(591,'2015-05-10',59,9000,2000),(592,'2015-05-10',60,11000,9000),(593,'2015-05-10',61,20000,8000),(594,'2015-05-10',62,13000,9000),(597,'2015-05-10',65,12000,10000),(598,'2015-05-10',66,16000,4000),(600,'2015-05-10',68,21000,9000),(602,'2015-05-10',70,10000,2000),(604,'2015-05-10',72,11000,10000),(605,'2015-05-10',73,14000,10000),(606,'2015-05-10',74,10000,1000),(608,'2015-05-10',76,17000,3000),(609,'2015-05-10',77,7000,11000),(610,'2015-05-10',78,9000,2000),(611,'2015-05-10',79,13000,4000),(613,'2015-05-10',81,14000,5000),(614,'2015-05-10',82,7000,8000),(615,'2015-05-10',83,8000,7000),(616,'2015-05-10',84,9000,3000),(617,'2015-05-10',85,13000,7000),(618,'2015-05-10',86,20000,1000),(620,'2015-05-10',88,17000,4000),(621,'2015-05-10',89,6000,4000),(622,'2015-05-10',90,5000,2000),(624,'2015-05-10',92,16000,9000),(625,'2015-05-10',93,7000,6000),(626,'2015-05-10',94,12000,6000),(627,'2015-05-10',95,16000,3000),(628,'2015-05-10',96,12000,9000),(629,'2015-05-10',97,6000,10000),(630,'2015-05-10',98,16000,1000),(631,'2015-05-10',99,13000,6000),(632,'2015-05-10',100,12000,7000),(633,'2015-05-10',101,6000,7000),(637,'2015-05-10',105,18000,9000),(638,'2015-05-10',106,19000,11000),(640,'2015-05-10',108,15000,3000),(641,'2015-05-10',109,7000,9000),(642,'2015-05-10',110,15000,7000),(643,'2015-05-10',111,5000,9000),(644,'2015-05-10',112,20000,9000),(645,'2015-05-10',113,9000,9000),(646,'2015-05-10',114,5000,5000),(647,'2015-05-10',115,11000,3000),(648,'2015-05-10',116,8000,7000),(649,'2015-05-10',117,21000,10000),(650,'2015-05-10',118,19000,10000),(651,'2015-05-10',119,19000,7000),(653,'2015-05-10',121,8000,1000),(654,'2015-05-10',122,18000,10000),(655,'2015-05-10',123,16000,8000),(656,'2015-05-10',124,12000,7000),(658,'2015-05-10',126,9000,11000),(661,'2015-05-10',129,12000,6000),(662,'2015-05-10',130,8000,9000),(664,'2015-05-10',132,9000,5000),(665,'2015-05-10',133,5000,10000),(667,'2015-06-10',2,17000,8000),(668,'2015-06-10',3,8000,1000),(669,'2015-06-10',4,14000,10000),(671,'2015-06-10',6,14000,4000),(672,'2015-06-10',7,19000,10000),(676,'2015-06-10',11,14000,11000),(678,'2015-06-10',13,15000,6000),(679,'2015-06-10',14,10000,4000),(682,'2015-06-10',17,16000,10000),(683,'2015-06-10',18,6000,1000),(686,'2015-06-10',21,15000,8000),(687,'2015-06-10',22,12000,3000),(690,'2015-06-10',25,19000,7000),(691,'2015-06-10',26,7000,11000),(692,'2015-06-10',27,20000,10000),(693,'2015-06-10',28,14000,9000),(694,'2015-06-10',29,19000,2000),(695,'2015-06-10',30,6000,11000),(697,'2015-06-10',32,15000,3000),(699,'2015-06-10',34,19000,2000),(702,'2015-06-10',37,20000,7000),(703,'2015-06-10',38,19000,10000),(704,'2015-06-10',39,12000,10000),(705,'2015-06-10',40,17000,10000),(706,'2015-06-10',41,8000,5000),(708,'2015-06-10',43,11000,7000),(709,'2015-06-10',44,11000,8000),(710,'2015-06-10',45,12000,2000),(711,'2015-06-10',46,13000,10000),(712,'2015-06-10',47,11000,6000),(713,'2015-06-10',48,21000,10000),(714,'2015-06-10',49,13000,4000),(715,'2015-06-10',50,9000,7000),(717,'2015-06-10',52,16000,2000),(719,'2015-06-10',54,18000,8000),(720,'2015-06-10',55,5000,10000),(721,'2015-06-10',56,19000,7000),(722,'2015-06-10',57,19000,7000),(723,'2015-06-10',58,11000,4000),(724,'2015-06-10',59,9000,11000),(725,'2015-06-10',60,11000,5000),(726,'2015-06-10',61,20000,1000),(727,'2015-06-10',62,13000,8000),(730,'2015-06-10',65,12000,6000),(731,'2015-06-10',66,16000,5000),(733,'2015-06-10',68,21000,4000),(735,'2015-06-10',70,10000,7000),(737,'2015-06-10',72,11000,3000),(738,'2015-06-10',73,14000,8000),(739,'2015-06-10',74,10000,1000),(741,'2015-06-10',76,17000,10000),(742,'2015-06-10',77,7000,2000),(743,'2015-06-10',78,9000,11000),(744,'2015-06-10',79,13000,5000),(746,'2015-06-10',81,14000,8000),(747,'2015-06-10',82,7000,1000),(748,'2015-06-10',83,8000,1000),(749,'2015-06-10',84,9000,5000),(750,'2015-06-10',85,13000,3000),(751,'2015-06-10',86,20000,5000),(753,'2015-06-10',88,17000,1000),(754,'2015-06-10',89,6000,10000),(755,'2015-06-10',90,5000,5000),(757,'2015-06-10',92,16000,4000),(758,'2015-06-10',93,7000,10000),(759,'2015-06-10',94,12000,4000),(760,'2015-06-10',95,16000,6000),(761,'2015-06-10',96,12000,1000),(762,'2015-06-10',97,6000,1000),(763,'2015-06-10',98,16000,11000),(764,'2015-06-10',99,13000,7000),(765,'2015-06-10',100,12000,3000),(766,'2015-06-10',101,6000,6000),(770,'2015-06-10',105,18000,2000),(771,'2015-06-10',106,19000,8000),(773,'2015-06-10',108,15000,5000),(774,'2015-06-10',109,7000,8000),(775,'2015-06-10',110,15000,8000),(776,'2015-06-10',111,5000,2000),(777,'2015-06-10',112,20000,9000),(778,'2015-06-10',113,9000,10000),(779,'2015-06-10',114,5000,6000),(780,'2015-06-10',115,11000,7000),(781,'2015-06-10',116,8000,1000),(782,'2015-06-10',117,21000,4000),(783,'2015-06-10',118,19000,9000),(784,'2015-06-10',119,19000,7000),(786,'2015-06-10',121,8000,11000),(787,'2015-06-10',122,18000,3000),(788,'2015-06-10',123,16000,7000),(789,'2015-06-10',124,12000,2000),(791,'2015-06-10',126,9000,6000),(794,'2015-06-10',129,12000,10000),(795,'2015-06-10',130,8000,3000),(797,'2015-06-10',132,9000,11000),(798,'2015-06-10',133,5000,9000),(800,'2015-07-10',2,17000,3000),(801,'2015-07-10',3,8000,8000),(802,'2015-07-10',4,14000,2000),(804,'2015-07-10',6,14000,10000),(805,'2015-07-10',7,19000,7000),(809,'2015-07-10',11,14000,8000),(811,'2015-07-10',13,15000,1000),(812,'2015-07-10',14,10000,4000),(815,'2015-07-10',17,16000,4000),(816,'2015-07-10',18,6000,11000),(819,'2015-07-10',21,15000,8000),(820,'2015-07-10',22,12000,6000),(823,'2015-07-10',25,19000,2000),(824,'2015-07-10',26,7000,1000),(825,'2015-07-10',27,20000,4000),(826,'2015-07-10',28,14000,1000),(827,'2015-07-10',29,19000,10000),(828,'2015-07-10',30,6000,5000),(830,'2015-07-10',32,15000,1000),(832,'2015-07-10',34,19000,4000),(835,'2015-07-10',37,20000,7000),(836,'2015-07-10',38,19000,1000),(837,'2015-07-10',39,12000,2000),(838,'2015-07-10',40,17000,10000),(839,'2015-07-10',41,8000,8000),(841,'2015-07-10',43,11000,4000),(842,'2015-07-10',44,11000,5000),(843,'2015-07-10',45,12000,1000),(844,'2015-07-10',46,13000,5000),(845,'2015-07-10',47,11000,2000),(846,'2015-07-10',48,21000,11000),(847,'2015-07-10',49,13000,3000),(848,'2015-07-10',50,9000,5000),(850,'2015-07-10',52,16000,3000),(852,'2015-07-10',54,18000,4000),(853,'2015-07-10',55,5000,8000),(854,'2015-07-10',56,19000,5000),(855,'2015-07-10',57,19000,10000),(856,'2015-07-10',58,11000,1000),(857,'2015-07-10',59,9000,6000),(858,'2015-07-10',60,11000,2000),(859,'2015-07-10',61,20000,1000),(860,'2015-07-10',62,13000,2000),(863,'2015-07-10',65,12000,7000),(864,'2015-07-10',66,16000,11000),(866,'2015-07-10',68,21000,8000),(868,'2015-07-10',70,10000,10000),(870,'2015-07-10',72,11000,2000),(871,'2015-07-10',73,14000,5000),(872,'2015-07-10',74,10000,3000),(874,'2015-07-10',76,17000,2000),(875,'2015-07-10',77,7000,2000),(876,'2015-07-10',78,9000,2000),(877,'2015-07-10',79,13000,4000),(879,'2015-07-10',81,14000,10000),(880,'2015-07-10',82,7000,4000),(881,'2015-07-10',83,8000,3000),(882,'2015-07-10',84,9000,5000),(883,'2015-07-10',85,13000,5000),(884,'2015-07-10',86,20000,5000),(886,'2015-07-10',88,17000,2000),(887,'2015-07-10',89,6000,9000),(888,'2015-07-10',90,5000,11000),(890,'2015-07-10',92,16000,1000),(891,'2015-07-10',93,7000,10000),(892,'2015-07-10',94,12000,10000),(893,'2015-07-10',95,16000,9000),(894,'2015-07-10',96,12000,11000),(895,'2015-07-10',97,6000,4000),(896,'2015-07-10',98,16000,9000),(897,'2015-07-10',99,13000,8000),(898,'2015-07-10',100,12000,5000),(899,'2015-07-10',101,6000,3000),(903,'2015-07-10',105,18000,5000),(904,'2015-07-10',106,19000,11000),(906,'2015-07-10',108,15000,7000),(907,'2015-07-10',109,7000,11000),(908,'2015-07-10',110,15000,9000),(909,'2015-07-10',111,5000,6000),(910,'2015-07-10',112,20000,9000),(911,'2015-07-10',113,9000,4000),(912,'2015-07-10',114,5000,2000),(913,'2015-07-10',115,11000,6000),(914,'2015-07-10',116,8000,4000),(915,'2015-07-10',117,21000,11000),(916,'2015-07-10',118,19000,6000),(917,'2015-07-10',119,19000,9000),(919,'2015-07-10',121,8000,2000),(920,'2015-07-10',122,18000,7000),(921,'2015-07-10',123,16000,10000),(922,'2015-07-10',124,12000,9000),(924,'2015-07-10',126,9000,11000),(927,'2015-07-10',129,12000,7000),(928,'2015-07-10',130,8000,9000),(930,'2015-07-10',132,9000,8000),(931,'2015-07-10',133,5000,8000),(933,'2015-08-10',2,17000,2000),(934,'2015-08-10',3,8000,10000),(935,'2015-08-10',4,14000,2000),(937,'2015-08-10',6,14000,3000),(938,'2015-08-10',7,19000,11000),(942,'2015-08-10',11,14000,11000),(944,'2015-08-10',13,15000,1000),(945,'2015-08-10',14,10000,1000),(948,'2015-08-10',17,16000,1000),(949,'2015-08-10',18,6000,7000),(952,'2015-08-10',21,15000,4000),(953,'2015-08-10',22,12000,10000),(956,'2015-08-10',25,19000,8000),(957,'2015-08-10',26,7000,7000),(958,'2015-08-10',27,20000,7000),(959,'2015-08-10',28,14000,9000),(960,'2015-08-10',29,19000,9000),(961,'2015-08-10',30,6000,7000),(963,'2015-08-10',32,15000,11000),(965,'2015-08-10',34,19000,9000),(968,'2015-08-10',37,20000,10000),(969,'2015-08-10',38,19000,7000),(970,'2015-08-10',39,12000,3000),(971,'2015-08-10',40,17000,4000),(972,'2015-08-10',41,8000,9000),(974,'2015-08-10',43,11000,9000),(975,'2015-08-10',44,11000,11000),(976,'2015-08-10',45,12000,11000),(977,'2015-08-10',46,13000,7000),(978,'2015-08-10',47,11000,8000),(979,'2015-08-10',48,21000,6000),(980,'2015-08-10',49,13000,8000),(981,'2015-08-10',50,9000,5000),(983,'2015-08-10',52,16000,1000),(985,'2015-08-10',54,18000,9000),(986,'2015-08-10',55,5000,11000),(987,'2015-08-10',56,19000,6000),(988,'2015-08-10',57,19000,6000),(989,'2015-08-10',58,11000,7000),(990,'2015-08-10',59,9000,2000),(991,'2015-08-10',60,11000,2000),(992,'2015-08-10',61,20000,6000),(993,'2015-08-10',62,13000,1000),(996,'2015-08-10',65,12000,6000),(997,'2015-08-10',66,16000,2000),(999,'2015-08-10',68,21000,3000),(1001,'2015-08-10',70,10000,5000),(1003,'2015-08-10',72,11000,1000),(1004,'2015-08-10',73,14000,4000),(1005,'2015-08-10',74,10000,1000),(1007,'2015-08-10',76,17000,3000),(1008,'2015-08-10',77,7000,8000),(1009,'2015-08-10',78,9000,6000),(1010,'2015-08-10',79,13000,8000),(1012,'2015-08-10',81,14000,9000),(1013,'2015-08-10',82,7000,11000),(1014,'2015-08-10',83,8000,2000),(1015,'2015-08-10',84,9000,2000),(1016,'2015-08-10',85,13000,11000),(1017,'2015-08-10',86,20000,8000),(1019,'2015-08-10',88,17000,8000),(1020,'2015-08-10',89,6000,5000),(1021,'2015-08-10',90,5000,8000),(1023,'2015-08-10',92,16000,10000),(1024,'2015-08-10',93,7000,7000),(1025,'2015-08-10',94,12000,3000),(1026,'2015-08-10',95,16000,11000),(1027,'2015-08-10',96,12000,10000),(1028,'2015-08-10',97,6000,1000),(1029,'2015-08-10',98,16000,10000),(1030,'2015-08-10',99,13000,5000),(1031,'2015-08-10',100,12000,3000),(1032,'2015-08-10',101,6000,6000),(1033,'2015-08-10',102,19000,2000),(1036,'2015-08-10',105,18000,3000),(1037,'2015-08-10',106,19000,5000),(1039,'2015-08-10',108,15000,3000),(1040,'2015-08-10',109,7000,9000),(1041,'2015-08-10',110,15000,9000),(1042,'2015-08-10',111,5000,10000),(1043,'2015-08-10',112,20000,1000),(1044,'2015-08-10',113,9000,8000),(1045,'2015-08-10',114,5000,6000),(1046,'2015-08-10',115,11000,10000),(1047,'2015-08-10',116,8000,9000),(1048,'2015-08-10',117,21000,9000),(1049,'2015-08-10',118,19000,1000),(1050,'2015-08-10',119,19000,1000),(1052,'2015-08-10',121,8000,11000),(1053,'2015-08-10',122,18000,11000),(1054,'2015-08-10',123,16000,11000),(1055,'2015-08-10',124,12000,9000),(1057,'2015-08-10',126,9000,6000),(1060,'2015-08-10',129,12000,2000),(1061,'2015-08-10',130,8000,9000),(1063,'2015-08-10',132,9000,11000),(1064,'2015-08-10',133,5000,4000),(1066,'2015-09-10',2,17000,3000),(1067,'2015-09-10',3,8000,10000),(1068,'2015-09-10',4,14000,10000),(1070,'2015-09-10',6,14000,10000),(1071,'2015-09-10',7,19000,4000),(1075,'2015-09-10',11,14000,4000),(1077,'2015-09-10',13,15000,1000),(1078,'2015-09-10',14,10000,7000),(1081,'2015-09-10',17,16000,4000),(1082,'2015-09-10',18,6000,6000),(1085,'2015-09-10',21,15000,3000),(1086,'2015-09-10',22,12000,7000),(1089,'2015-09-10',25,19000,7000),(1090,'2015-09-10',26,7000,1000),(1091,'2015-09-10',27,20000,11000),(1092,'2015-09-10',28,14000,2000),(1093,'2015-09-10',29,19000,8000),(1094,'2015-09-10',30,6000,7000),(1096,'2015-09-10',32,15000,6000),(1098,'2015-09-10',34,19000,1000),(1101,'2015-09-10',37,20000,8000),(1102,'2015-09-10',38,19000,9000),(1103,'2015-09-10',39,12000,6000),(1104,'2015-09-10',40,17000,9000),(1105,'2015-09-10',41,8000,4000),(1107,'2015-09-10',43,11000,3000),(1108,'2015-09-10',44,11000,7000),(1109,'2015-09-10',45,12000,6000),(1110,'2015-09-10',46,13000,7000),(1111,'2015-09-10',47,11000,5000),(1112,'2015-09-10',48,21000,9000),(1113,'2015-09-10',49,13000,10000),(1114,'2015-09-10',50,9000,3000),(1116,'2015-09-10',52,16000,10000),(1118,'2015-09-10',54,18000,11000),(1119,'2015-09-10',55,5000,7000),(1120,'2015-09-10',56,19000,3000),(1121,'2015-09-10',57,19000,8000),(1122,'2015-09-10',58,11000,10000),(1123,'2015-09-10',59,9000,7000),(1124,'2015-09-10',60,11000,7000),(1125,'2015-09-10',61,20000,9000),(1126,'2015-09-10',62,13000,11000),(1128,'2015-09-10',64,5000,9000),(1129,'2015-09-10',65,12000,10000),(1130,'2015-09-10',66,16000,11000),(1132,'2015-09-10',68,21000,11000),(1134,'2015-09-10',70,10000,7000),(1136,'2015-09-10',72,11000,5000),(1137,'2015-09-10',73,14000,11000),(1138,'2015-09-10',74,10000,7000),(1140,'2015-09-10',76,17000,9000),(1141,'2015-09-10',77,7000,7000),(1142,'2015-09-10',78,9000,9000),(1143,'2015-09-10',79,13000,2000),(1145,'2015-09-10',81,14000,4000),(1146,'2015-09-10',82,7000,9000),(1147,'2015-09-10',83,8000,4000),(1148,'2015-09-10',84,9000,10000),(1149,'2015-09-10',85,13000,2000),(1150,'2015-09-10',86,20000,5000),(1152,'2015-09-10',88,17000,6000),(1153,'2015-09-10',89,6000,10000),(1154,'2015-09-10',90,5000,6000),(1156,'2015-09-10',92,16000,8000),(1157,'2015-09-10',93,7000,8000),(1158,'2015-09-10',94,12000,6000),(1159,'2015-09-10',95,16000,2000),(1160,'2015-09-10',96,12000,11000),(1161,'2015-09-10',97,6000,2000),(1162,'2015-09-10',98,16000,9000),(1163,'2015-09-10',99,13000,7000),(1164,'2015-09-10',100,12000,7000),(1165,'2015-09-10',101,6000,11000),(1166,'2015-09-10',102,19000,7000),(1169,'2015-09-10',105,18000,5000),(1170,'2015-09-10',106,19000,6000),(1172,'2015-09-10',108,15000,8000),(1173,'2015-09-10',109,7000,5000),(1174,'2015-09-10',110,15000,10000),(1175,'2015-09-10',111,5000,9000),(1176,'2015-09-10',112,20000,7000),(1177,'2015-09-10',113,9000,9000),(1178,'2015-09-10',114,5000,3000),(1179,'2015-09-10',115,11000,10000),(1180,'2015-09-10',116,8000,1000),(1181,'2015-09-10',117,21000,2000),(1182,'2015-09-10',118,19000,9000),(1183,'2015-09-10',119,19000,6000),(1185,'2015-09-10',121,8000,8000),(1186,'2015-09-10',122,18000,4000),(1187,'2015-09-10',123,16000,7000),(1188,'2015-09-10',124,12000,3000),(1190,'2015-09-10',126,9000,4000),(1193,'2015-09-10',129,12000,11000),(1194,'2015-09-10',130,8000,1000),(1196,'2015-09-10',132,9000,5000),(1197,'2015-09-10',133,5000,6000),(1199,'2015-10-10',2,17000,1000),(1200,'2015-10-10',3,8000,1000),(1201,'2015-10-10',4,14000,4000),(1203,'2015-10-10',6,14000,8000),(1204,'2015-10-10',7,19000,10000),(1208,'2015-10-10',11,14000,9000),(1210,'2015-10-10',13,15000,11000),(1211,'2015-10-10',14,10000,11000),(1214,'2015-10-10',17,16000,9000),(1215,'2015-10-10',18,6000,7000),(1218,'2015-10-10',21,15000,4000),(1219,'2015-10-10',22,12000,6000),(1222,'2015-10-10',25,19000,6000),(1223,'2015-10-10',26,7000,4000),(1224,'2015-10-10',27,20000,5000),(1225,'2015-10-10',28,14000,11000),(1226,'2015-10-10',29,19000,4000),(1227,'2015-10-10',30,6000,2000),(1229,'2015-10-10',32,15000,1000),(1231,'2015-10-10',34,19000,5000),(1234,'2015-10-10',37,20000,9000),(1235,'2015-10-10',38,19000,4000),(1236,'2015-10-10',39,12000,4000),(1237,'2015-10-10',40,17000,1000),(1238,'2015-10-10',41,8000,3000),(1240,'2015-10-10',43,11000,5000),(1241,'2015-10-10',44,11000,4000),(1242,'2015-10-10',45,12000,2000),(1243,'2015-10-10',46,13000,11000),(1244,'2015-10-10',47,11000,10000),(1245,'2015-10-10',48,21000,4000),(1246,'2015-10-10',49,13000,1000),(1247,'2015-10-10',50,9000,1000),(1249,'2015-10-10',52,16000,6000),(1251,'2015-10-10',54,18000,8000),(1252,'2015-10-10',55,5000,2000),(1253,'2015-10-10',56,19000,5000),(1254,'2015-10-10',57,19000,1000),(1255,'2015-10-10',58,11000,7000),(1256,'2015-10-10',59,9000,6000),(1257,'2015-10-10',60,11000,2000),(1258,'2015-10-10',61,20000,7000),(1259,'2015-10-10',62,13000,4000),(1261,'2015-10-10',64,5000,11000),(1262,'2015-10-10',65,12000,1000),(1263,'2015-10-10',66,16000,8000),(1265,'2015-10-10',68,21000,6000),(1267,'2015-10-10',70,10000,1000),(1269,'2015-10-10',72,11000,2000),(1270,'2015-10-10',73,14000,9000),(1271,'2015-10-10',74,10000,1000),(1273,'2015-10-10',76,17000,10000),(1274,'2015-10-10',77,7000,6000),(1275,'2015-10-10',78,9000,9000),(1276,'2015-10-10',79,13000,4000),(1278,'2015-10-10',81,14000,9000),(1279,'2015-10-10',82,7000,2000),(1280,'2015-10-10',83,8000,6000),(1281,'2015-10-10',84,9000,1000),(1282,'2015-10-10',85,13000,3000),(1283,'2015-10-10',86,20000,10000),(1285,'2015-10-10',88,17000,4000),(1286,'2015-10-10',89,6000,9000),(1287,'2015-10-10',90,5000,6000),(1289,'2015-10-10',92,16000,6000),(1290,'2015-10-10',93,7000,6000),(1291,'2015-10-10',94,12000,1000),(1292,'2015-10-10',95,16000,8000),(1293,'2015-10-10',96,12000,1000),(1294,'2015-10-10',97,6000,10000),(1295,'2015-10-10',98,16000,7000),(1296,'2015-10-10',99,13000,10000),(1297,'2015-10-10',100,12000,7000),(1298,'2015-10-10',101,6000,2000),(1299,'2015-10-10',102,19000,10000),(1302,'2015-10-10',105,18000,4000),(1303,'2015-10-10',106,19000,5000),(1305,'2015-10-10',108,15000,3000),(1306,'2015-10-10',109,7000,6000),(1307,'2015-10-10',110,15000,1000),(1308,'2015-10-10',111,5000,11000),(1309,'2015-10-10',112,20000,10000),(1310,'2015-10-10',113,9000,6000),(1311,'2015-10-10',114,5000,8000),(1312,'2015-10-10',115,11000,8000),(1313,'2015-10-10',116,8000,2000),(1314,'2015-10-10',117,21000,2000),(1315,'2015-10-10',118,19000,10000),(1316,'2015-10-10',119,19000,10000),(1318,'2015-10-10',121,8000,2000),(1319,'2015-10-10',122,18000,11000),(1320,'2015-10-10',123,16000,5000),(1321,'2015-10-10',124,12000,6000),(1323,'2015-10-10',126,9000,5000),(1326,'2015-10-10',129,12000,1000),(1327,'2015-10-10',130,8000,8000),(1329,'2015-10-10',132,9000,8000),(1330,'2015-10-10',133,5000,7000),(1332,'2015-11-10',2,17000,6000),(1333,'2015-11-10',3,8000,4000),(1334,'2015-11-10',4,14000,1000),(1336,'2015-11-10',6,14000,5000),(1337,'2015-11-10',7,19000,7000),(1341,'2015-11-10',11,14000,2000),(1343,'2015-11-10',13,15000,9000),(1344,'2015-11-10',14,10000,8000),(1347,'2015-11-10',17,16000,2000),(1348,'2015-11-10',18,6000,4000),(1351,'2015-11-10',21,15000,10000),(1352,'2015-11-10',22,12000,2000),(1355,'2015-11-10',25,19000,4000),(1356,'2015-11-10',26,7000,2000),(1357,'2015-11-10',27,20000,4000),(1358,'2015-11-10',28,14000,7000),(1359,'2015-11-10',29,19000,7000),(1360,'2015-11-10',30,6000,8000),(1362,'2015-11-10',32,15000,10000),(1364,'2015-11-10',34,19000,2000),(1367,'2015-11-10',37,20000,8000),(1368,'2015-11-10',38,19000,11000),(1369,'2015-11-10',39,12000,2000),(1370,'2015-11-10',40,17000,10000),(1371,'2015-11-10',41,8000,6000),(1373,'2015-11-10',43,11000,10000),(1374,'2015-11-10',44,11000,3000),(1375,'2015-11-10',45,12000,6000),(1376,'2015-11-10',46,13000,3000),(1377,'2015-11-10',47,11000,5000),(1378,'2015-11-10',48,21000,11000),(1379,'2015-11-10',49,13000,9000),(1380,'2015-11-10',50,9000,3000),(1382,'2015-11-10',52,16000,3000),(1384,'2015-11-10',54,18000,7000),(1385,'2015-11-10',55,5000,5000),(1386,'2015-11-10',56,19000,1000),(1387,'2015-11-10',57,19000,3000),(1388,'2015-11-10',58,11000,3000),(1389,'2015-11-10',59,9000,9000),(1390,'2015-11-10',60,11000,9000),(1391,'2015-11-10',61,20000,9000),(1392,'2015-11-10',62,13000,4000),(1394,'2015-11-10',64,5000,4000),(1395,'2015-11-10',65,12000,7000),(1396,'2015-11-10',66,16000,1000),(1398,'2015-11-10',68,21000,7000),(1400,'2015-11-10',70,10000,2000),(1402,'2015-11-10',72,11000,9000),(1403,'2015-11-10',73,14000,1000),(1404,'2015-11-10',74,10000,7000),(1406,'2015-11-10',76,17000,3000),(1407,'2015-11-10',77,7000,10000),(1408,'2015-11-10',78,9000,3000),(1409,'2015-11-10',79,13000,8000),(1411,'2015-11-10',81,14000,5000),(1412,'2015-11-10',82,7000,5000),(1413,'2015-11-10',83,8000,5000),(1414,'2015-11-10',84,9000,3000),(1415,'2015-11-10',85,13000,7000),(1416,'2015-11-10',86,20000,9000),(1418,'2015-11-10',88,17000,3000),(1419,'2015-11-10',89,6000,7000),(1420,'2015-11-10',90,5000,7000),(1422,'2015-11-10',92,16000,9000),(1423,'2015-11-10',93,7000,7000),(1424,'2015-11-10',94,12000,8000),(1425,'2015-11-10',95,16000,1000),(1426,'2015-11-10',96,12000,10000),(1427,'2015-11-10',97,6000,11000),(1428,'2015-11-10',98,16000,6000),(1429,'2015-11-10',99,13000,4000),(1430,'2015-11-10',100,12000,3000),(1431,'2015-11-10',101,6000,11000),(1432,'2015-11-10',102,19000,10000),(1435,'2015-11-10',105,18000,4000),(1436,'2015-11-10',106,19000,3000),(1438,'2015-11-10',108,15000,10000),(1439,'2015-11-10',109,7000,5000),(1440,'2015-11-10',110,15000,10000),(1441,'2015-11-10',111,5000,1000),(1442,'2015-11-10',112,20000,9000),(1443,'2015-11-10',113,9000,3000),(1444,'2015-11-10',114,5000,4000),(1445,'2015-11-10',115,11000,6000),(1446,'2015-11-10',116,8000,6000),(1447,'2015-11-10',117,21000,11000),(1448,'2015-11-10',118,19000,10000),(1449,'2015-11-10',119,19000,2000),(1451,'2015-11-10',121,8000,9000),(1452,'2015-11-10',122,18000,5000),(1453,'2015-11-10',123,16000,7000),(1454,'2015-11-10',124,12000,3000),(1456,'2015-11-10',126,9000,8000),(1459,'2015-11-10',129,12000,10000),(1460,'2015-11-10',130,8000,9000),(1462,'2015-11-10',132,9000,8000),(1463,'2015-11-10',133,5000,5000),(1465,'2015-12-10',2,17850,6000),(1466,'2015-12-10',3,8400,2000),(1467,'2015-12-10',4,14700,9000),(1469,'2015-12-10',6,14700,1000),(1470,'2015-12-10',7,19950,5000),(1474,'2015-12-10',11,14700,4000),(1476,'2015-12-10',13,15750,9000),(1477,'2015-12-10',14,10500,1000),(1480,'2015-12-10',17,16800,11000),(1481,'2015-12-10',18,6300,10000),(1484,'2015-12-10',21,15750,9000),(1485,'2015-12-10',22,12600,10000),(1488,'2015-12-10',25,19950,2000),(1489,'2015-12-10',26,7350,4000),(1490,'2015-12-10',27,21000,7000),(1491,'2015-12-10',28,14700,5000),(1492,'2015-12-10',29,19950,9000),(1493,'2015-12-10',30,6300,9000),(1495,'2015-12-10',32,15750,1000),(1497,'2015-12-10',34,19950,3000),(1500,'2015-12-10',37,21000,5000),(1501,'2015-12-10',38,19950,9000),(1502,'2015-12-10',39,12600,4000),(1503,'2015-12-10',40,17850,7000),(1504,'2015-12-10',41,8400,6000),(1506,'2015-12-10',43,11550,4000),(1507,'2015-12-10',44,11550,10000),(1508,'2015-12-10',45,12600,5000),(1509,'2015-12-10',46,13650,5000),(1510,'2015-12-10',47,11550,6000),(1511,'2015-12-10',48,22050,9000),(1512,'2015-12-10',49,13650,11000),(1513,'2015-12-10',50,9450,4000),(1515,'2015-12-10',52,16800,5000),(1517,'2015-12-10',54,18900,4000),(1518,'2015-12-10',55,5250,5000),(1519,'2015-12-10',56,19950,4000),(1520,'2015-12-10',57,19950,4000),(1521,'2015-12-10',58,11550,9000),(1522,'2015-12-10',59,9450,10000),(1523,'2015-12-10',60,11550,7000),(1524,'2015-12-10',61,21000,5000),(1525,'2015-12-10',62,13650,1000),(1527,'2015-12-10',64,5250,8000),(1528,'2015-12-10',65,12600,10000),(1529,'2015-12-10',66,16800,5000),(1531,'2015-12-10',68,22050,11000),(1533,'2015-12-10',70,10500,6000),(1535,'2015-12-10',72,11550,9000),(1536,'2015-12-10',73,14700,11000),(1537,'2015-12-10',74,10500,11000),(1539,'2015-12-10',76,17850,10000),(1540,'2015-12-10',77,7350,11000),(1541,'2015-12-10',78,9450,4000),(1542,'2015-12-10',79,13650,3000),(1544,'2015-12-10',81,14700,10000),(1545,'2015-12-10',82,7350,1000),(1546,'2015-12-10',83,8400,10000),(1547,'2015-12-10',84,9450,10000),(1548,'2015-12-10',85,13650,6000),(1549,'2015-12-10',86,21000,5000),(1551,'2015-12-10',88,17850,7000),(1552,'2015-12-10',89,6300,9000),(1553,'2015-12-10',90,5250,6000),(1555,'2015-12-10',92,16800,1000),(1556,'2015-12-10',93,7350,2000),(1557,'2015-12-10',94,12600,7000),(1558,'2015-12-10',95,16800,8000),(1559,'2015-12-10',96,12600,8000),(1560,'2015-12-10',97,6300,10000),(1561,'2015-12-10',98,16800,9000),(1562,'2015-12-10',99,13650,1000),(1563,'2015-12-10',100,12600,4000),(1564,'2015-12-10',101,6300,7000),(1565,'2015-12-10',102,19950,5000),(1568,'2015-12-10',105,18900,8000),(1569,'2015-12-10',106,19950,3000),(1571,'2015-12-10',108,15750,6000),(1572,'2015-12-10',109,7350,9000),(1573,'2015-12-10',110,15750,6000),(1574,'2015-12-10',111,5250,5000),(1575,'2015-12-10',112,21000,9000),(1576,'2015-12-10',113,9450,1000),(1577,'2015-12-10',114,5250,1000),(1578,'2015-12-10',115,11550,9000),(1579,'2015-12-10',116,8400,6000),(1580,'2015-12-10',117,22050,1000),(1581,'2015-12-10',118,19950,7000),(1582,'2015-12-10',119,19950,7000),(1584,'2015-12-10',121,8400,4000),(1585,'2015-12-10',122,18900,3000),(1586,'2015-12-10',123,16800,1000),(1587,'2015-12-10',124,12600,2000),(1589,'2015-12-10',126,9450,3000),(1592,'2015-12-10',129,12600,8000),(1593,'2015-12-10',130,8400,2000),(1595,'2015-12-10',132,9450,3000),(1596,'2015-12-10',133,5250,10000),(1598,'2016-01-10',2,17850,10000),(1599,'2016-01-10',3,8400,4000),(1600,'2016-01-10',4,14700,2000),(1602,'2016-01-10',6,14700,8000),(1603,'2016-01-10',7,19950,3000),(1607,'2016-01-10',11,14700,10000),(1609,'2016-01-10',13,15750,11000),(1610,'2016-01-10',14,10500,2000),(1613,'2016-01-10',17,16800,7000),(1614,'2016-01-10',18,6300,2000),(1617,'2016-01-10',21,15750,8000),(1618,'2016-01-10',22,12600,1000),(1621,'2016-01-10',25,19950,10000),(1622,'2016-01-10',26,7350,5000),(1623,'2016-01-10',27,21000,5000),(1624,'2016-01-10',28,14700,7000),(1625,'2016-01-10',29,19950,11000),(1626,'2016-01-10',30,6300,4000),(1628,'2016-01-10',32,15750,5000),(1630,'2016-01-10',34,19950,5000),(1633,'2016-01-10',37,21000,10000),(1634,'2016-01-10',38,19950,9000),(1635,'2016-01-10',39,12600,7000),(1636,'2016-01-10',40,17850,10000),(1637,'2016-01-10',41,8400,10000),(1639,'2016-01-10',43,11550,6000),(1640,'2016-01-10',44,11550,1000),(1641,'2016-01-10',45,12600,11000),(1642,'2016-01-10',46,13650,10000),(1643,'2016-01-10',47,11550,10000),(1644,'2016-01-10',48,22050,6000),(1645,'2016-01-10',49,13650,3000),(1646,'2016-01-10',50,9450,3000),(1648,'2016-01-10',52,16800,11000),(1650,'2016-01-10',54,18900,8000),(1651,'2016-01-10',55,5250,11000),(1652,'2016-01-10',56,19950,11000),(1653,'2016-01-10',57,19950,9000),(1654,'2016-01-10',58,11550,2000),(1655,'2016-01-10',59,9450,2000),(1656,'2016-01-10',60,11550,1000),(1657,'2016-01-10',61,21000,10000),(1658,'2016-01-10',62,13650,6000),(1660,'2016-01-10',64,5250,6000),(1661,'2016-01-10',65,12600,5000),(1662,'2016-01-10',66,16800,11000),(1664,'2016-01-10',68,22050,3000),(1666,'2016-01-10',70,10500,9000),(1668,'2016-01-10',72,11550,6000),(1669,'2016-01-10',73,14700,3000),(1670,'2016-01-10',74,10500,9000),(1672,'2016-01-10',76,17850,9000),(1673,'2016-01-10',77,7350,3000),(1674,'2016-01-10',78,9450,8000),(1675,'2016-01-10',79,13650,2000),(1677,'2016-01-10',81,14700,4000),(1678,'2016-01-10',82,7350,5000),(1679,'2016-01-10',83,8400,4000),(1680,'2016-01-10',84,9450,1000),(1681,'2016-01-10',85,13650,9000),(1682,'2016-01-10',86,21000,3000),(1684,'2016-01-10',88,17850,7000),(1685,'2016-01-10',89,6300,6000),(1686,'2016-01-10',90,5250,11000),(1688,'2016-01-10',92,16800,11000),(1689,'2016-01-10',93,7350,9000),(1690,'2016-01-10',94,12600,9000),(1691,'2016-01-10',95,16800,10000),(1692,'2016-01-10',96,12600,6000),(1693,'2016-01-10',97,6300,9000),(1694,'2016-01-10',98,16800,10000),(1695,'2016-01-10',99,13650,8000),(1696,'2016-01-10',100,12600,1000),(1697,'2016-01-10',101,6300,5000),(1698,'2016-01-10',102,19950,3000),(1701,'2016-01-10',105,18900,7000),(1702,'2016-01-10',106,19950,4000),(1704,'2016-01-10',108,15750,10000),(1705,'2016-01-10',109,7350,3000),(1706,'2016-01-10',110,15750,6000),(1707,'2016-01-10',111,5250,10000),(1708,'2016-01-10',112,21000,9000),(1709,'2016-01-10',113,9450,8000),(1710,'2016-01-10',114,5250,8000),(1711,'2016-01-10',115,11550,2000),(1712,'2016-01-10',116,8400,3000),(1713,'2016-01-10',117,22050,4000),(1714,'2016-01-10',118,19950,1000),(1715,'2016-01-10',119,19950,3000),(1717,'2016-01-10',121,8400,6000),(1718,'2016-01-10',122,18900,11000),(1719,'2016-01-10',123,16800,2000),(1720,'2016-01-10',124,12600,11000),(1722,'2016-01-10',126,9450,7000),(1725,'2016-01-10',129,12600,4000),(1726,'2016-01-10',130,8400,11000),(1728,'2016-01-10',132,9450,1000),(1729,'2016-01-10',133,5250,4000),(1731,'2016-02-10',2,17850,3000),(1732,'2016-02-10',3,8400,7000),(1733,'2016-02-10',4,14700,7000),(1735,'2016-02-10',6,14700,10000),(1736,'2016-02-10',7,19950,2000),(1740,'2016-02-10',11,14700,3000),(1742,'2016-02-10',13,15750,6000),(1743,'2016-02-10',14,10500,3000),(1746,'2016-02-10',17,16800,2000),(1747,'2016-02-10',18,6300,7000),(1750,'2016-02-10',21,15750,7000),(1751,'2016-02-10',22,12600,7000),(1754,'2016-02-10',25,19950,5000),(1755,'2016-02-10',26,7350,5000),(1756,'2016-02-10',27,21000,3000),(1757,'2016-02-10',28,14700,10000),(1758,'2016-02-10',29,19950,2000),(1759,'2016-02-10',30,6300,7000),(1761,'2016-02-10',32,15750,8000),(1763,'2016-02-10',34,19950,11000),(1766,'2016-02-10',37,21000,2000),(1767,'2016-02-10',38,19950,10000),(1768,'2016-02-10',39,12600,2000),(1769,'2016-02-10',40,17850,3000),(1770,'2016-02-10',41,8400,5000),(1772,'2016-02-10',43,11550,11000),(1773,'2016-02-10',44,11550,1000),(1774,'2016-02-10',45,12600,1000),(1775,'2016-02-10',46,13650,10000),(1776,'2016-02-10',47,11550,10000),(1777,'2016-02-10',48,22050,8000),(1778,'2016-02-10',49,13650,3000),(1779,'2016-02-10',50,9450,4000),(1781,'2016-02-10',52,16800,4000),(1783,'2016-02-10',54,18900,1000),(1784,'2016-02-10',55,5250,10000),(1785,'2016-02-10',56,19950,3000),(1786,'2016-02-10',57,19950,1000),(1787,'2016-02-10',58,11550,1000),(1788,'2016-02-10',59,9450,7000),(1789,'2016-02-10',60,11550,5000),(1790,'2016-02-10',61,21000,5000),(1791,'2016-02-10',62,13650,1000),(1793,'2016-02-10',64,5250,3000),(1794,'2016-02-10',65,12600,7000),(1795,'2016-02-10',66,16800,3000),(1797,'2016-02-10',68,22050,5000),(1799,'2016-02-10',70,10500,7000),(1801,'2016-02-10',72,11550,1000),(1802,'2016-02-10',73,14700,1000),(1803,'2016-02-10',74,10500,10000),(1805,'2016-02-10',76,17850,8000),(1806,'2016-02-10',77,7350,11000),(1807,'2016-02-10',78,9450,5000),(1808,'2016-02-10',79,13650,7000),(1810,'2016-02-10',81,14700,10000),(1811,'2016-02-10',82,7350,5000),(1812,'2016-02-10',83,8400,10000),(1813,'2016-02-10',84,9450,7000),(1814,'2016-02-10',85,13650,1000),(1815,'2016-02-10',86,21000,9000),(1817,'2016-02-10',88,17850,5000),(1818,'2016-02-10',89,6300,11000),(1819,'2016-02-10',90,5250,10000),(1821,'2016-02-10',92,16800,6000),(1822,'2016-02-10',93,7350,11000),(1823,'2016-02-10',94,12600,1000),(1824,'2016-02-10',95,16800,6000),(1825,'2016-02-10',96,12600,11000),(1826,'2016-02-10',97,6300,4000),(1827,'2016-02-10',98,16800,11000),(1828,'2016-02-10',99,13650,8000),(1829,'2016-02-10',100,12600,3000),(1830,'2016-02-10',101,6300,3000),(1831,'2016-02-10',102,19950,6000),(1834,'2016-02-10',105,18900,4000),(1835,'2016-02-10',106,19950,8000),(1837,'2016-02-10',108,15750,10000),(1838,'2016-02-10',109,7350,4000),(1839,'2016-02-10',110,15750,4000),(1840,'2016-02-10',111,5250,9000),(1841,'2016-02-10',112,21000,2000),(1842,'2016-02-10',113,9450,4000),(1843,'2016-02-10',114,5250,9000),(1844,'2016-02-10',115,11550,11000),(1845,'2016-02-10',116,8400,8000),(1846,'2016-02-10',117,22050,9000),(1847,'2016-02-10',118,19950,3000),(1848,'2016-02-10',119,19950,1000),(1850,'2016-02-10',121,8400,2000),(1851,'2016-02-10',122,18900,5000),(1852,'2016-02-10',123,16800,11000),(1853,'2016-02-10',124,12600,3000),(1855,'2016-02-10',126,9450,4000),(1858,'2016-02-10',129,12600,9000),(1859,'2016-02-10',130,8400,5000),(1861,'2016-02-10',132,9450,2000),(1862,'2016-02-10',133,5250,7000),(1864,'2016-03-10',2,17850,11000),(1865,'2016-03-10',3,8400,9000),(1866,'2016-03-10',4,14700,7000),(1868,'2016-03-10',6,14700,5000),(1869,'2016-03-10',7,19950,3000),(1873,'2016-03-10',11,14700,7000),(1875,'2016-03-10',13,15750,1000),(1876,'2016-03-10',14,10500,10000),(1879,'2016-03-10',17,16800,1000),(1880,'2016-03-10',18,6300,1000),(1883,'2016-03-10',21,15750,5000),(1884,'2016-03-10',22,12600,10000),(1887,'2016-03-10',25,19950,4000),(1888,'2016-03-10',26,7350,7000),(1889,'2016-03-10',27,21000,4000),(1890,'2016-03-10',28,14700,3000),(1891,'2016-03-10',29,19950,8000),(1892,'2016-03-10',30,6300,3000),(1894,'2016-03-10',32,15750,6000),(1896,'2016-03-10',34,19950,5000),(1899,'2016-03-10',37,21000,3000),(1900,'2016-03-10',38,19950,5000),(1901,'2016-03-10',39,12600,10000),(1902,'2016-03-10',40,17850,6000),(1903,'2016-03-10',41,8400,5000),(1905,'2016-03-10',43,11550,7000),(1906,'2016-03-10',44,11550,10000),(1907,'2016-03-10',45,12600,1000),(1908,'2016-03-10',46,13650,4000),(1909,'2016-03-10',47,11550,5000),(1910,'2016-03-10',48,22050,3000),(1911,'2016-03-10',49,13650,5000),(1912,'2016-03-10',50,9450,9000),(1914,'2016-03-10',52,16800,6000),(1916,'2016-03-10',54,18900,9000),(1917,'2016-03-10',55,5250,6000),(1918,'2016-03-10',56,19950,6000),(1919,'2016-03-10',57,19950,7000),(1920,'2016-03-10',58,11550,8000),(1921,'2016-03-10',59,9450,9000),(1922,'2016-03-10',60,11550,2000),(1923,'2016-03-10',61,21000,3000),(1924,'2016-03-10',62,13650,2000),(1926,'2016-03-10',64,5250,11000),(1927,'2016-03-10',65,12600,1000),(1928,'2016-03-10',66,16800,10000),(1930,'2016-03-10',68,22050,5000),(1932,'2016-03-10',70,10500,3000),(1934,'2016-03-10',72,11550,9000),(1935,'2016-03-10',73,14700,4000),(1936,'2016-03-10',74,10500,2000),(1938,'2016-03-10',76,17850,4000),(1939,'2016-03-10',77,7350,10000),(1940,'2016-03-10',78,9450,1000),(1941,'2016-03-10',79,13650,9000),(1943,'2016-03-10',81,14700,1000),(1944,'2016-03-10',82,7350,6000),(1945,'2016-03-10',83,8400,2000),(1946,'2016-03-10',84,9450,9000),(1947,'2016-03-10',85,13650,9000),(1948,'2016-03-10',86,21000,8000),(1950,'2016-03-10',88,17850,10000),(1951,'2016-03-10',89,6300,10000),(1952,'2016-03-10',90,5250,1000),(1954,'2016-03-10',92,16800,3000),(1955,'2016-03-10',93,7350,9000),(1956,'2016-03-10',94,12600,3000),(1957,'2016-03-10',95,16800,11000),(1958,'2016-03-10',96,12600,10000),(1959,'2016-03-10',97,6300,6000),(1960,'2016-03-10',98,16800,6000),(1961,'2016-03-10',99,13650,1000),(1962,'2016-03-10',100,12600,1000),(1963,'2016-03-10',101,6300,8000),(1964,'2016-03-10',102,19950,5000),(1967,'2016-03-10',105,18900,11000),(1968,'2016-03-10',106,19950,9000),(1970,'2016-03-10',108,15750,6000),(1971,'2016-03-10',109,7350,9000),(1972,'2016-03-10',110,15750,7000),(1973,'2016-03-10',111,5250,11000),(1974,'2016-03-10',112,21000,2000),(1975,'2016-03-10',113,9450,7000),(1976,'2016-03-10',114,5250,11000),(1977,'2016-03-10',115,11550,7000),(1978,'2016-03-10',116,8400,2000),(1979,'2016-03-10',117,22050,5000),(1980,'2016-03-10',118,19950,7000),(1981,'2016-03-10',119,19950,5000),(1983,'2016-03-10',121,8400,4000),(1984,'2016-03-10',122,18900,7000),(1985,'2016-03-10',123,16800,1000),(1986,'2016-03-10',124,12600,2000),(1988,'2016-03-10',126,9450,3000),(1991,'2016-03-10',129,12600,2000),(1992,'2016-03-10',130,8400,5000),(1994,'2016-03-10',132,9450,5000),(1995,'2016-03-10',133,5250,9000),(1997,'2016-04-10',2,17850,5000),(1998,'2016-04-10',3,8400,10000),(1999,'2016-04-10',4,14700,3000),(2001,'2016-04-10',6,14700,8000),(2002,'2016-04-10',7,19950,5000),(2006,'2016-04-10',11,14700,5000),(2008,'2016-04-10',13,15750,9000),(2009,'2016-04-10',14,10500,9000),(2012,'2016-04-10',17,16800,6000),(2013,'2016-04-10',18,6300,7000),(2016,'2016-04-10',21,15750,7000),(2017,'2016-04-10',22,12600,9000),(2020,'2016-04-10',25,19950,4000),(2021,'2016-04-10',26,7350,1000),(2022,'2016-04-10',27,21000,3000),(2023,'2016-04-10',28,14700,4000),(2024,'2016-04-10',29,19950,4000),(2025,'2016-04-10',30,6300,4000),(2027,'2016-04-10',32,15750,2000),(2029,'2016-04-10',34,19950,6000),(2032,'2016-04-10',37,21000,2000),(2033,'2016-04-10',38,19950,3000),(2034,'2016-04-10',39,12600,7000),(2035,'2016-04-10',40,17850,10000),(2036,'2016-04-10',41,8400,6000),(2038,'2016-04-10',43,11550,7000),(2039,'2016-04-10',44,11550,3000),(2040,'2016-04-10',45,12600,4000),(2041,'2016-04-10',46,13650,1000),(2042,'2016-04-10',47,11550,6000),(2043,'2016-04-10',48,22050,10000),(2044,'2016-04-10',49,13650,4000),(2045,'2016-04-10',50,9450,5000),(2047,'2016-04-10',52,16800,4000),(2049,'2016-04-10',54,18900,8000),(2050,'2016-04-10',55,5250,7000),(2051,'2016-04-10',56,19950,2000),(2052,'2016-04-10',57,19950,9000),(2053,'2016-04-10',58,11550,5000),(2054,'2016-04-10',59,9450,6000),(2055,'2016-04-10',60,11550,8000),(2056,'2016-04-10',61,21000,1000),(2057,'2016-04-10',62,13650,3000),(2059,'2016-04-10',64,5250,10000),(2060,'2016-04-10',65,12600,5000),(2061,'2016-04-10',66,16800,9000),(2063,'2016-04-10',68,22050,3000),(2065,'2016-04-10',70,10500,2000),(2067,'2016-04-10',72,11550,2000),(2068,'2016-04-10',73,14700,11000),(2069,'2016-04-10',74,10500,9000),(2071,'2016-04-10',76,17850,8000),(2072,'2016-04-10',77,7350,6000),(2073,'2016-04-10',78,9450,10000),(2074,'2016-04-10',79,13650,2000),(2076,'2016-04-10',81,14700,8000),(2077,'2016-04-10',82,7350,3000),(2078,'2016-04-10',83,8400,11000),(2079,'2016-04-10',84,9450,8000),(2080,'2016-04-10',85,13650,8000),(2081,'2016-04-10',86,21000,8000),(2083,'2016-04-10',88,17850,1000),(2084,'2016-04-10',89,6300,10000),(2085,'2016-04-10',90,5250,1000),(2087,'2016-04-10',92,16800,5000),(2088,'2016-04-10',93,7350,11000),(2089,'2016-04-10',94,12600,1000),(2090,'2016-04-10',95,16800,9000),(2091,'2016-04-10',96,12600,8000),(2092,'2016-04-10',97,6300,2000),(2093,'2016-04-10',98,16800,11000),(2094,'2016-04-10',99,13650,2000),(2095,'2016-04-10',100,12600,11000),(2096,'2016-04-10',101,6300,9000),(2097,'2016-04-10',102,19950,8000),(2100,'2016-04-10',105,18900,3000),(2101,'2016-04-10',106,19950,6000),(2103,'2016-04-10',108,15750,4000),(2104,'2016-04-10',109,7350,4000),(2105,'2016-04-10',110,15750,6000),(2106,'2016-04-10',111,5250,4000),(2107,'2016-04-10',112,21000,10000),(2108,'2016-04-10',113,9450,8000),(2109,'2016-04-10',114,5250,7000),(2110,'2016-04-10',115,11550,8000),(2111,'2016-04-10',116,8400,8000),(2112,'2016-04-10',117,22050,5000),(2113,'2016-04-10',118,19950,5000),(2114,'2016-04-10',119,19950,11000),(2116,'2016-04-10',121,8400,1000),(2117,'2016-04-10',122,18900,2000),(2118,'2016-04-10',123,16800,6000),(2119,'2016-04-10',124,12600,7000),(2121,'2016-04-10',126,9450,5000),(2124,'2016-04-10',129,12600,10000),(2125,'2016-04-10',130,8400,6000),(2127,'2016-04-10',132,9450,8000),(2128,'2016-04-10',133,5250,8000),(2130,'2016-05-10',2,17850,9000),(2131,'2016-05-10',3,8400,5000),(2132,'2016-05-10',4,14700,6000),(2134,'2016-05-10',6,14700,7000),(2135,'2016-05-10',7,19950,10000),(2139,'2016-05-10',11,14700,1000),(2141,'2016-05-10',13,15750,3000),(2142,'2016-05-10',14,10500,1000),(2145,'2016-05-10',17,16800,5000),(2146,'2016-05-10',18,6300,3000),(2149,'2016-05-10',21,15750,11000),(2150,'2016-05-10',22,12600,11000),(2153,'2016-05-10',25,19950,3000),(2154,'2016-05-10',26,7350,5000),(2155,'2016-05-10',27,21000,7000),(2156,'2016-05-10',28,14700,8000),(2157,'2016-05-10',29,19950,1000),(2158,'2016-05-10',30,6300,11000),(2160,'2016-05-10',32,15750,1000),(2162,'2016-05-10',34,19950,1000),(2165,'2016-05-10',37,21000,3000),(2166,'2016-05-10',38,19950,5000),(2167,'2016-05-10',39,12600,11000),(2168,'2016-05-10',40,17850,6000),(2169,'2016-05-10',41,8400,2000),(2171,'2016-05-10',43,11550,6000),(2172,'2016-05-10',44,11550,8000),(2173,'2016-05-10',45,12600,4000),(2174,'2016-05-10',46,13650,10000),(2175,'2016-05-10',47,11550,2000),(2176,'2016-05-10',48,22050,2000),(2177,'2016-05-10',49,13650,9000),(2178,'2016-05-10',50,9450,4000),(2180,'2016-05-10',52,16800,11000),(2182,'2016-05-10',54,18900,1000),(2183,'2016-05-10',55,5250,6000),(2184,'2016-05-10',56,19950,5000),(2185,'2016-05-10',57,19950,3000),(2186,'2016-05-10',58,11550,7000),(2187,'2016-05-10',59,9450,8000),(2188,'2016-05-10',60,11550,10000),(2189,'2016-05-10',61,21000,11000),(2190,'2016-05-10',62,13650,11000),(2192,'2016-05-10',64,5250,5000),(2193,'2016-05-10',65,12600,4000),(2194,'2016-05-10',66,16800,10000),(2196,'2016-05-10',68,22050,9000),(2198,'2016-05-10',70,10500,4000),(2200,'2016-05-10',72,11550,5000),(2201,'2016-05-10',73,14700,6000),(2202,'2016-05-10',74,10500,5000),(2204,'2016-05-10',76,17850,6000),(2205,'2016-05-10',77,7350,3000),(2206,'2016-05-10',78,9450,2000),(2207,'2016-05-10',79,13650,3000),(2209,'2016-05-10',81,14700,9000),(2210,'2016-05-10',82,7350,3000),(2211,'2016-05-10',83,8400,8000),(2212,'2016-05-10',84,9450,2000),(2213,'2016-05-10',85,13650,4000),(2214,'2016-05-10',86,21000,1000),(2216,'2016-05-10',88,17850,4000),(2217,'2016-05-10',89,6300,8000),(2218,'2016-05-10',90,5250,1000),(2220,'2016-05-10',92,16800,7000),(2221,'2016-05-10',93,7350,3000),(2222,'2016-05-10',94,12600,9000),(2223,'2016-05-10',95,16800,4000),(2224,'2016-05-10',96,12600,5000),(2225,'2016-05-10',97,6300,11000),(2226,'2016-05-10',98,16800,3000),(2227,'2016-05-10',99,13650,2000),(2228,'2016-05-10',100,12600,3000),(2229,'2016-05-10',101,6300,2000),(2230,'2016-05-10',102,19950,3000),(2233,'2016-05-10',105,18900,5000),(2234,'2016-05-10',106,19950,11000),(2236,'2016-05-10',108,15750,11000),(2237,'2016-05-10',109,7350,2000),(2238,'2016-05-10',110,15750,5000),(2239,'2016-05-10',111,5250,10000),(2240,'2016-05-10',112,21000,8000),(2241,'2016-05-10',113,9450,5000),(2242,'2016-05-10',114,5250,8000),(2243,'2016-05-10',115,11550,9000),(2244,'2016-05-10',116,8400,4000),(2245,'2016-05-10',117,22050,11000),(2246,'2016-05-10',118,19950,5000),(2247,'2016-05-10',119,19950,1000),(2249,'2016-05-10',121,8400,5000),(2250,'2016-05-10',122,18900,11000),(2251,'2016-05-10',123,16800,3000),(2252,'2016-05-10',124,12600,10000),(2254,'2016-05-10',126,9450,11000),(2255,'2016-05-10',127,14700,9000),(2257,'2016-05-10',129,12600,10000),(2258,'2016-05-10',130,8400,4000),(2260,'2016-05-10',132,9450,5000),(2261,'2016-05-10',133,5250,10000),(2263,'2016-06-10',2,17850,11000),(2264,'2016-06-10',3,8400,9000),(2265,'2016-06-10',4,14700,5000),(2267,'2016-06-10',6,14700,11000),(2268,'2016-06-10',7,19950,8000),(2270,'2016-06-10',9,11550,8000),(2272,'2016-06-10',11,14700,11000),(2274,'2016-06-10',13,15750,3000),(2275,'2016-06-10',14,10500,6000),(2278,'2016-06-10',17,16800,8000),(2279,'2016-06-10',18,6300,7000),(2282,'2016-06-10',21,15750,3000),(2283,'2016-06-10',22,12600,5000),(2286,'2016-06-10',25,19950,1000),(2287,'2016-06-10',26,7350,7000),(2288,'2016-06-10',27,21000,3000),(2289,'2016-06-10',28,14700,7000),(2290,'2016-06-10',29,19950,7000),(2291,'2016-06-10',30,6300,9000),(2293,'2016-06-10',32,15750,6000),(2295,'2016-06-10',34,19950,5000),(2298,'2016-06-10',37,21000,8000),(2299,'2016-06-10',38,19950,1000),(2300,'2016-06-10',39,12600,6000),(2301,'2016-06-10',40,17850,3000),(2302,'2016-06-10',41,8400,9000),(2304,'2016-06-10',43,11550,5000),(2305,'2016-06-10',44,11550,11000),(2306,'2016-06-10',45,12600,1000),(2307,'2016-06-10',46,13650,4000),(2308,'2016-06-10',47,11550,5000),(2309,'2016-06-10',48,22050,10000),(2310,'2016-06-10',49,13650,2000),(2311,'2016-06-10',50,9450,1000),(2313,'2016-06-10',52,16800,3000),(2315,'2016-06-10',54,18900,7000),(2316,'2016-06-10',55,5250,2000),(2317,'2016-06-10',56,19950,4000),(2318,'2016-06-10',57,19950,8000),(2319,'2016-06-10',58,11550,1000),(2320,'2016-06-10',59,9450,1000),(2321,'2016-06-10',60,11550,9000),(2322,'2016-06-10',61,21000,6000),(2323,'2016-06-10',62,13650,4000),(2325,'2016-06-10',64,5250,7000),(2326,'2016-06-10',65,12600,5000),(2327,'2016-06-10',66,16800,2000),(2329,'2016-06-10',68,22050,3000),(2331,'2016-06-10',70,10500,1000),(2333,'2016-06-10',72,11550,9000),(2334,'2016-06-10',73,14700,6000),(2335,'2016-06-10',74,10500,7000),(2337,'2016-06-10',76,17850,2000),(2338,'2016-06-10',77,7350,8000),(2339,'2016-06-10',78,9450,11000),(2340,'2016-06-10',79,13650,7000),(2342,'2016-06-10',81,14700,8000),(2343,'2016-06-10',82,7350,9000),(2344,'2016-06-10',83,8400,7000),(2345,'2016-06-10',84,9450,6000),(2346,'2016-06-10',85,13650,7000),(2347,'2016-06-10',86,21000,5000),(2349,'2016-06-10',88,17850,6000),(2350,'2016-06-10',89,6300,11000),(2351,'2016-06-10',90,5250,8000),(2353,'2016-06-10',92,16800,6000),(2354,'2016-06-10',93,7350,7000),(2355,'2016-06-10',94,12600,9000),(2356,'2016-06-10',95,16800,5000),(2357,'2016-06-10',96,12600,8000),(2358,'2016-06-10',97,6300,3000),(2359,'2016-06-10',98,16800,9000),(2360,'2016-06-10',99,13650,7000),(2361,'2016-06-10',100,12600,7000),(2362,'2016-06-10',101,6300,5000),(2363,'2016-06-10',102,19950,3000),(2366,'2016-06-10',105,18900,2000),(2367,'2016-06-10',106,19950,4000),(2369,'2016-06-10',108,15750,11000),(2370,'2016-06-10',109,7350,7000),(2371,'2016-06-10',110,15750,10000),(2372,'2016-06-10',111,5250,7000),(2373,'2016-06-10',112,21000,9000),(2374,'2016-06-10',113,9450,9000),(2375,'2016-06-10',114,5250,9000),(2376,'2016-06-10',115,11550,3000),(2377,'2016-06-10',116,8400,11000),(2378,'2016-06-10',117,22050,5000),(2379,'2016-06-10',118,19950,9000),(2380,'2016-06-10',119,19950,6000),(2382,'2016-06-10',121,8400,5000),(2383,'2016-06-10',122,18900,1000),(2384,'2016-06-10',123,16800,7000),(2385,'2016-06-10',124,12600,4000),(2387,'2016-06-10',126,9450,2000),(2388,'2016-06-10',127,14700,11000),(2390,'2016-06-10',129,12600,2000),(2391,'2016-06-10',130,8400,8000),(2393,'2016-06-10',132,9450,7000),(2394,'2016-06-10',133,5250,5000),(2396,'2016-07-10',2,17850,7000),(2397,'2016-07-10',3,8400,2000),(2398,'2016-07-10',4,14700,11000),(2400,'2016-07-10',6,14700,7000),(2401,'2016-07-10',7,19950,5000),(2403,'2016-07-10',9,11550,2000),(2405,'2016-07-10',11,14700,6000),(2407,'2016-07-10',13,15750,8000),(2408,'2016-07-10',14,10500,7000),(2411,'2016-07-10',17,16800,5000),(2412,'2016-07-10',18,6300,5000),(2415,'2016-07-10',21,15750,10000),(2416,'2016-07-10',22,12600,7000),(2419,'2016-07-10',25,19950,5000),(2420,'2016-07-10',26,7350,10000),(2421,'2016-07-10',27,21000,6000),(2422,'2016-07-10',28,14700,1000),(2423,'2016-07-10',29,19950,4000),(2424,'2016-07-10',30,6300,6000),(2426,'2016-07-10',32,15750,11000),(2428,'2016-07-10',34,19950,4000),(2431,'2016-07-10',37,21000,11000),(2432,'2016-07-10',38,19950,3000),(2433,'2016-07-10',39,12600,11000),(2434,'2016-07-10',40,17850,6000),(2435,'2016-07-10',41,8400,6000),(2437,'2016-07-10',43,11550,5000),(2438,'2016-07-10',44,11550,7000),(2439,'2016-07-10',45,12600,2000),(2440,'2016-07-10',46,13650,3000),(2441,'2016-07-10',47,11550,2000),(2442,'2016-07-10',48,22050,7000),(2443,'2016-07-10',49,13650,2000),(2444,'2016-07-10',50,9450,4000),(2446,'2016-07-10',52,16800,11000),(2448,'2016-07-10',54,18900,7000),(2449,'2016-07-10',55,5250,9000),(2450,'2016-07-10',56,19950,10000),(2451,'2016-07-10',57,19950,6000),(2452,'2016-07-10',58,11550,11000),(2453,'2016-07-10',59,9450,8000),(2454,'2016-07-10',60,11550,1000),(2455,'2016-07-10',61,21000,8000),(2456,'2016-07-10',62,13650,3000),(2458,'2016-07-10',64,5250,4000),(2459,'2016-07-10',65,12600,2000),(2460,'2016-07-10',66,16800,10000),(2462,'2016-07-10',68,22050,3000),(2464,'2016-07-10',70,10500,10000),(2466,'2016-07-10',72,11550,8000),(2467,'2016-07-10',73,14700,8000),(2468,'2016-07-10',74,10500,2000),(2470,'2016-07-10',76,17850,10000),(2471,'2016-07-10',77,7350,5000),(2472,'2016-07-10',78,9450,11000),(2473,'2016-07-10',79,13650,8000),(2475,'2016-07-10',81,14700,5000),(2476,'2016-07-10',82,7350,8000),(2477,'2016-07-10',83,8400,3000),(2478,'2016-07-10',84,9450,4000),(2479,'2016-07-10',85,13650,2000),(2480,'2016-07-10',86,21000,10000),(2482,'2016-07-10',88,17850,10000),(2483,'2016-07-10',89,6300,10000),(2484,'2016-07-10',90,5250,3000),(2486,'2016-07-10',92,16800,8000),(2487,'2016-07-10',93,7350,6000),(2488,'2016-07-10',94,12600,3000),(2489,'2016-07-10',95,16800,7000),(2490,'2016-07-10',96,12600,1000),(2491,'2016-07-10',97,6300,4000),(2492,'2016-07-10',98,16800,4000),(2493,'2016-07-10',99,13650,11000),(2494,'2016-07-10',100,12600,10000),(2495,'2016-07-10',101,6300,3000),(2496,'2016-07-10',102,19950,4000),(2499,'2016-07-10',105,18900,4000),(2500,'2016-07-10',106,19950,5000),(2502,'2016-07-10',108,15750,6000),(2503,'2016-07-10',109,7350,10000),(2504,'2016-07-10',110,15750,3000),(2505,'2016-07-10',111,5250,1000),(2506,'2016-07-10',112,21000,6000),(2507,'2016-07-10',113,9450,6000),(2508,'2016-07-10',114,5250,10000),(2509,'2016-07-10',115,11550,1000),(2510,'2016-07-10',116,8400,5000),(2511,'2016-07-10',117,22050,9000),(2512,'2016-07-10',118,19950,6000),(2513,'2016-07-10',119,19950,9000),(2515,'2016-07-10',121,8400,3000),(2516,'2016-07-10',122,18900,11000),(2517,'2016-07-10',123,16800,11000),(2518,'2016-07-10',124,12600,10000),(2520,'2016-07-10',126,9450,10000),(2521,'2016-07-10',127,14700,11000),(2523,'2016-07-10',129,12600,9000),(2524,'2016-07-10',130,8400,3000),(2526,'2016-07-10',132,9450,10000),(2527,'2016-07-10',133,5250,7000),(2529,'2016-08-10',2,17850,8000),(2530,'2016-08-10',3,8400,2000),(2531,'2016-08-10',4,14700,11000),(2533,'2016-08-10',6,14700,5000),(2534,'2016-08-10',7,19950,3000),(2536,'2016-08-10',9,11550,3000),(2538,'2016-08-10',11,14700,4000),(2540,'2016-08-10',13,15750,4000),(2541,'2016-08-10',14,10500,4000),(2544,'2016-08-10',17,16800,6000),(2545,'2016-08-10',18,6300,8000),(2548,'2016-08-10',21,15750,1000),(2549,'2016-08-10',22,12600,8000),(2552,'2016-08-10',25,19950,7000),(2553,'2016-08-10',26,7350,9000),(2554,'2016-08-10',27,21000,2000),(2555,'2016-08-10',28,14700,7000),(2556,'2016-08-10',29,19950,3000),(2557,'2016-08-10',30,6300,9000),(2559,'2016-08-10',32,15750,2000),(2561,'2016-08-10',34,19950,8000),(2564,'2016-08-10',37,21000,1000),(2565,'2016-08-10',38,19950,9000),(2566,'2016-08-10',39,12600,3000),(2567,'2016-08-10',40,17850,1000),(2568,'2016-08-10',41,8400,4000),(2570,'2016-08-10',43,11550,4000),(2571,'2016-08-10',44,11550,7000),(2572,'2016-08-10',45,12600,3000),(2573,'2016-08-10',46,13650,5000),(2574,'2016-08-10',47,11550,3000),(2575,'2016-08-10',48,22050,3000),(2576,'2016-08-10',49,13650,4000),(2577,'2016-08-10',50,9450,6000),(2579,'2016-08-10',52,16800,3000),(2581,'2016-08-10',54,18900,9000),(2582,'2016-08-10',55,5250,8000),(2583,'2016-08-10',56,19950,8000),(2584,'2016-08-10',57,19950,3000),(2585,'2016-08-10',58,11550,2000),(2586,'2016-08-10',59,9450,10000),(2587,'2016-08-10',60,11550,10000),(2588,'2016-08-10',61,21000,8000),(2589,'2016-08-10',62,13650,11000),(2591,'2016-08-10',64,5250,10000),(2592,'2016-08-10',65,12600,11000),(2593,'2016-08-10',66,16800,8000),(2595,'2016-08-10',68,22050,3000),(2597,'2016-08-10',70,10500,1000),(2599,'2016-08-10',72,11550,7000),(2600,'2016-08-10',73,14700,2000),(2601,'2016-08-10',74,10500,8000),(2603,'2016-08-10',76,17850,9000),(2604,'2016-08-10',77,7350,4000),(2605,'2016-08-10',78,9450,4000),(2606,'2016-08-10',79,13650,9000),(2608,'2016-08-10',81,14700,7000),(2609,'2016-08-10',82,7350,11000),(2610,'2016-08-10',83,8400,5000),(2611,'2016-08-10',84,9450,5000),(2612,'2016-08-10',85,13650,9000),(2613,'2016-08-10',86,21000,9000),(2615,'2016-08-10',88,17850,2000),(2616,'2016-08-10',89,6300,9000),(2617,'2016-08-10',90,5250,3000),(2619,'2016-08-10',92,16800,3000),(2620,'2016-08-10',93,7350,5000),(2621,'2016-08-10',94,12600,6000),(2622,'2016-08-10',95,16800,5000),(2623,'2016-08-10',96,12600,1000),(2624,'2016-08-10',97,6300,1000),(2625,'2016-08-10',98,16800,6000),(2626,'2016-08-10',99,13650,10000),(2627,'2016-08-10',100,12600,2000),(2628,'2016-08-10',101,6300,7000),(2629,'2016-08-10',102,19950,2000),(2632,'2016-08-10',105,18900,5000),(2633,'2016-08-10',106,19950,5000),(2635,'2016-08-10',108,15750,3000),(2636,'2016-08-10',109,7350,1000),(2637,'2016-08-10',110,15750,11000),(2638,'2016-08-10',111,5250,4000),(2639,'2016-08-10',112,21000,2000),(2640,'2016-08-10',113,9450,11000),(2641,'2016-08-10',114,5250,2000),(2642,'2016-08-10',115,11550,11000),(2643,'2016-08-10',116,8400,1000),(2644,'2016-08-10',117,22050,1000),(2645,'2016-08-10',118,19950,2000),(2646,'2016-08-10',119,19950,2000),(2648,'2016-08-10',121,8400,2000),(2649,'2016-08-10',122,18900,6000),(2650,'2016-08-10',123,16800,1000),(2651,'2016-08-10',124,12600,2000),(2652,'2016-08-10',125,14700,7000),(2653,'2016-08-10',126,9450,9000),(2654,'2016-08-10',127,14700,7000),(2656,'2016-08-10',129,12600,8000),(2657,'2016-08-10',130,8400,10000),(2659,'2016-08-10',132,9450,6000),(2660,'2016-08-10',133,5250,1000),(2662,'2016-09-10',2,17850,8000),(2663,'2016-09-10',3,8400,1000),(2664,'2016-09-10',4,14700,7000),(2666,'2016-09-10',6,14700,1000),(2667,'2016-09-10',7,19950,2000),(2669,'2016-09-10',9,11550,7000),(2671,'2016-09-10',11,14700,5000),(2673,'2016-09-10',13,15750,9000),(2674,'2016-09-10',14,10500,2000),(2677,'2016-09-10',17,16800,3000),(2678,'2016-09-10',18,6300,1000),(2681,'2016-09-10',21,15750,9000),(2682,'2016-09-10',22,12600,5000),(2685,'2016-09-10',25,19950,11000),(2686,'2016-09-10',26,7350,10000),(2687,'2016-09-10',27,21000,8000),(2688,'2016-09-10',28,14700,4000),(2689,'2016-09-10',29,19950,10000),(2690,'2016-09-10',30,6300,8000),(2692,'2016-09-10',32,15750,2000),(2694,'2016-09-10',34,19950,6000),(2697,'2016-09-10',37,21000,10000),(2698,'2016-09-10',38,19950,8000),(2699,'2016-09-10',39,12600,10000),(2700,'2016-09-10',40,17850,11000),(2701,'2016-09-10',41,8400,5000),(2703,'2016-09-10',43,11550,7000),(2704,'2016-09-10',44,11550,4000),(2705,'2016-09-10',45,12600,9000),(2706,'2016-09-10',46,13650,7000),(2707,'2016-09-10',47,11550,8000),(2708,'2016-09-10',48,22050,4000),(2709,'2016-09-10',49,13650,4000),(2710,'2016-09-10',50,9450,2000),(2712,'2016-09-10',52,16800,11000),(2714,'2016-09-10',54,18900,9000),(2715,'2016-09-10',55,5250,9000),(2716,'2016-09-10',56,19950,7000),(2717,'2016-09-10',57,19950,7000),(2718,'2016-09-10',58,11550,9000),(2719,'2016-09-10',59,9450,11000),(2720,'2016-09-10',60,11550,1000),(2721,'2016-09-10',61,21000,5000),(2722,'2016-09-10',62,13650,2000),(2724,'2016-09-10',64,5250,6000),(2725,'2016-09-10',65,12600,4000),(2726,'2016-09-10',66,16800,6000),(2728,'2016-09-10',68,22050,11000),(2730,'2016-09-10',70,10500,4000),(2732,'2016-09-10',72,11550,2000),(2733,'2016-09-10',73,14700,11000),(2734,'2016-09-10',74,10500,3000),(2736,'2016-09-10',76,17850,7000),(2737,'2016-09-10',77,7350,7000),(2738,'2016-09-10',78,9450,11000),(2739,'2016-09-10',79,13650,10000),(2741,'2016-09-10',81,14700,4000),(2742,'2016-09-10',82,7350,5000),(2743,'2016-09-10',83,8400,6000),(2744,'2016-09-10',84,9450,8000),(2745,'2016-09-10',85,13650,9000),(2746,'2016-09-10',86,21000,9000),(2748,'2016-09-10',88,17850,5000),(2749,'2016-09-10',89,6300,5000),(2750,'2016-09-10',90,5250,5000),(2752,'2016-09-10',92,16800,3000),(2753,'2016-09-10',93,7350,8000),(2754,'2016-09-10',94,12600,3000),(2755,'2016-09-10',95,16800,8000),(2756,'2016-09-10',96,12600,1000),(2757,'2016-09-10',97,6300,6000),(2758,'2016-09-10',98,16800,1000),(2759,'2016-09-10',99,13650,8000),(2760,'2016-09-10',100,12600,11000),(2761,'2016-09-10',101,6300,9000),(2762,'2016-09-10',102,19950,2000),(2765,'2016-09-10',105,18900,4000),(2766,'2016-09-10',106,19950,9000),(2768,'2016-09-10',108,15750,9000),(2769,'2016-09-10',109,7350,10000),(2770,'2016-09-10',110,15750,2000),(2771,'2016-09-10',111,5250,11000),(2772,'2016-09-10',112,21000,11000),(2773,'2016-09-10',113,9450,10000),(2774,'2016-09-10',114,5250,11000),(2775,'2016-09-10',115,11550,8000),(2776,'2016-09-10',116,8400,1000),(2777,'2016-09-10',117,22050,2000),(2778,'2016-09-10',118,19950,6000),(2779,'2016-09-10',119,19950,9000),(2781,'2016-09-10',121,8400,3000),(2782,'2016-09-10',122,18900,5000),(2783,'2016-09-10',123,16800,10000),(2784,'2016-09-10',124,12600,6000),(2785,'2016-09-10',125,14700,7000),(2786,'2016-09-10',126,9450,4000),(2787,'2016-09-10',127,14700,6000),(2789,'2016-09-10',129,12600,6000),(2790,'2016-09-10',130,8400,7000),(2792,'2016-09-10',132,9450,9000),(2793,'2016-09-10',133,5250,8000),(2795,'2016-10-10',2,17850,3000),(2796,'2016-10-10',3,8400,4000),(2797,'2016-10-10',4,14700,1000),(2799,'2016-10-10',6,14700,4000),(2800,'2016-10-10',7,19950,11000),(2802,'2016-10-10',9,11550,7000),(2804,'2016-10-10',11,14700,3000),(2806,'2016-10-10',13,15750,7000),(2807,'2016-10-10',14,10500,11000),(2810,'2016-10-10',17,16800,2000),(2811,'2016-10-10',18,6300,8000),(2814,'2016-10-10',21,15750,5000),(2815,'2016-10-10',22,12600,8000),(2818,'2016-10-10',25,19950,3000),(2819,'2016-10-10',26,7350,7000),(2820,'2016-10-10',27,21000,8000),(2821,'2016-10-10',28,14700,5000),(2822,'2016-10-10',29,19950,5000),(2823,'2016-10-10',30,6300,11000),(2825,'2016-10-10',32,15750,2000),(2827,'2016-10-10',34,19950,11000),(2830,'2016-10-10',37,21000,7000),(2831,'2016-10-10',38,19950,5000),(2832,'2016-10-10',39,12600,9000),(2833,'2016-10-10',40,17850,10000),(2834,'2016-10-10',41,8400,9000),(2836,'2016-10-10',43,11550,9000),(2837,'2016-10-10',44,11550,9000),(2838,'2016-10-10',45,12600,2000),(2839,'2016-10-10',46,13650,6000),(2840,'2016-10-10',47,11550,4000),(2841,'2016-10-10',48,22050,6000),(2842,'2016-10-10',49,13650,1000),(2843,'2016-10-10',50,9450,9000),(2845,'2016-10-10',52,16800,4000),(2847,'2016-10-10',54,18900,6000),(2848,'2016-10-10',55,5250,11000),(2849,'2016-10-10',56,19950,3000),(2850,'2016-10-10',57,19950,10000),(2851,'2016-10-10',58,11550,10000),(2852,'2016-10-10',59,9450,8000),(2853,'2016-10-10',60,11550,10000),(2854,'2016-10-10',61,21000,6000),(2855,'2016-10-10',62,13650,2000),(2856,'2016-10-10',63,13650,9000),(2857,'2016-10-10',64,5250,1000),(2858,'2016-10-10',65,12600,10000),(2859,'2016-10-10',66,16800,4000),(2861,'2016-10-10',68,22050,1000),(2863,'2016-10-10',70,10500,10000),(2865,'2016-10-10',72,11550,10000),(2866,'2016-10-10',73,14700,5000),(2867,'2016-10-10',74,10500,5000),(2869,'2016-10-10',76,17850,6000),(2870,'2016-10-10',77,7350,2000),(2871,'2016-10-10',78,9450,7000),(2872,'2016-10-10',79,13650,4000),(2874,'2016-10-10',81,14700,3000),(2875,'2016-10-10',82,7350,1000),(2876,'2016-10-10',83,8400,7000),(2877,'2016-10-10',84,9450,4000),(2878,'2016-10-10',85,13650,4000),(2879,'2016-10-10',86,21000,1000),(2881,'2016-10-10',88,17850,4000),(2882,'2016-10-10',89,6300,3000),(2883,'2016-10-10',90,5250,3000),(2885,'2016-10-10',92,16800,1000),(2886,'2016-10-10',93,7350,4000),(2887,'2016-10-10',94,12600,10000),(2888,'2016-10-10',95,16800,11000),(2889,'2016-10-10',96,12600,11000),(2890,'2016-10-10',97,6300,5000),(2891,'2016-10-10',98,16800,5000),(2892,'2016-10-10',99,13650,3000),(2893,'2016-10-10',100,12600,8000),(2894,'2016-10-10',101,6300,10000),(2895,'2016-10-10',102,19950,2000),(2898,'2016-10-10',105,18900,4000),(2899,'2016-10-10',106,19950,8000),(2901,'2016-10-10',108,15750,11000),(2902,'2016-10-10',109,7350,4000),(2903,'2016-10-10',110,15750,5000),(2904,'2016-10-10',111,5250,11000),(2905,'2016-10-10',112,21000,11000),(2906,'2016-10-10',113,9450,7000),(2907,'2016-10-10',114,5250,11000),(2908,'2016-10-10',115,11550,1000),(2909,'2016-10-10',116,8400,1000),(2910,'2016-10-10',117,22050,2000),(2911,'2016-10-10',118,19950,11000),(2912,'2016-10-10',119,19950,8000),(2914,'2016-10-10',121,8400,9000),(2915,'2016-10-10',122,18900,3000),(2916,'2016-10-10',123,16800,2000),(2917,'2016-10-10',124,12600,9000),(2918,'2016-10-10',125,14700,5000),(2919,'2016-10-10',126,9450,11000),(2920,'2016-10-10',127,14700,5000),(2922,'2016-10-10',129,12600,3000),(2923,'2016-10-10',130,8400,1000),(2925,'2016-10-10',132,9450,1000),(2926,'2016-10-10',133,5250,6000),(2928,'2016-11-10',2,17850,6000),(2929,'2016-11-10',3,8400,8000),(2930,'2016-11-10',4,14700,1000),(2932,'2016-11-10',6,14700,6000),(2933,'2016-11-10',7,19950,1000),(2935,'2016-11-10',9,11550,4000),(2937,'2016-11-10',11,14700,5000),(2939,'2016-11-10',13,15750,2000),(2940,'2016-11-10',14,10500,3000),(2943,'2016-11-10',17,16800,2000),(2944,'2016-11-10',18,6300,11000),(2947,'2016-11-10',21,15750,11000),(2948,'2016-11-10',22,12600,8000),(2951,'2016-11-10',25,19950,8000),(2952,'2016-11-10',26,7350,1000),(2953,'2016-11-10',27,21000,6000),(2954,'2016-11-10',28,14700,9000),(2955,'2016-11-10',29,19950,4000),(2956,'2016-11-10',30,6300,7000),(2958,'2016-11-10',32,15750,2000),(2960,'2016-11-10',34,19950,11000),(2963,'2016-11-10',37,21000,2000),(2964,'2016-11-10',38,19950,6000),(2965,'2016-11-10',39,12600,4000),(2966,'2016-11-10',40,17850,11000),(2967,'2016-11-10',41,8400,5000),(2969,'2016-11-10',43,11550,11000),(2970,'2016-11-10',44,11550,7000),(2971,'2016-11-10',45,12600,8000),(2972,'2016-11-10',46,13650,5000),(2973,'2016-11-10',47,11550,5000),(2974,'2016-11-10',48,22050,8000),(2975,'2016-11-10',49,13650,7000),(2976,'2016-11-10',50,9450,3000),(2978,'2016-11-10',52,16800,3000),(2980,'2016-11-10',54,18900,2000),(2981,'2016-11-10',55,5250,1000),(2982,'2016-11-10',56,19950,4000),(2983,'2016-11-10',57,19950,5000),(2984,'2016-11-10',58,11550,6000),(2985,'2016-11-10',59,9450,11000),(2986,'2016-11-10',60,11550,4000),(2987,'2016-11-10',61,21000,11000),(2988,'2016-11-10',62,13650,8000),(2989,'2016-11-10',63,13650,7000),(2990,'2016-11-10',64,5250,9000),(2991,'2016-11-10',65,12600,2000),(2992,'2016-11-10',66,16800,1000),(2994,'2016-11-10',68,22050,1000),(2996,'2016-11-10',70,10500,7000),(2998,'2016-11-10',72,11550,5000),(2999,'2016-11-10',73,14700,10000),(3000,'2016-11-10',74,10500,10000),(3002,'2016-11-10',76,17850,5000),(3003,'2016-11-10',77,7350,10000),(3004,'2016-11-10',78,9450,4000),(3005,'2016-11-10',79,13650,9000),(3007,'2016-11-10',81,14700,11000),(3008,'2016-11-10',82,7350,6000),(3009,'2016-11-10',83,8400,4000),(3010,'2016-11-10',84,9450,11000),(3011,'2016-11-10',85,13650,11000),(3012,'2016-11-10',86,21000,4000),(3014,'2016-11-10',88,17850,10000),(3015,'2016-11-10',89,6300,4000),(3016,'2016-11-10',90,5250,5000),(3018,'2016-11-10',92,16800,8000),(3019,'2016-11-10',93,7350,6000),(3020,'2016-11-10',94,12600,8000),(3021,'2016-11-10',95,16800,3000),(3022,'2016-11-10',96,12600,6000),(3023,'2016-11-10',97,6300,5000),(3024,'2016-11-10',98,16800,11000),(3025,'2016-11-10',99,13650,3000),(3026,'2016-11-10',100,12600,7000),(3027,'2016-11-10',101,6300,8000),(3028,'2016-11-10',102,19950,10000),(3031,'2016-11-10',105,18900,7000),(3032,'2016-11-10',106,19950,2000),(3034,'2016-11-10',108,15750,7000),(3035,'2016-11-10',109,7350,7000),(3036,'2016-11-10',110,15750,3000),(3037,'2016-11-10',111,5250,7000),(3038,'2016-11-10',112,21000,8000),(3039,'2016-11-10',113,9450,10000),(3040,'2016-11-10',114,5250,9000),(3041,'2016-11-10',115,11550,3000),(3042,'2016-11-10',116,8400,5000),(3043,'2016-11-10',117,22050,7000),(3044,'2016-11-10',118,19950,5000),(3045,'2016-11-10',119,19950,5000),(3047,'2016-11-10',121,8400,7000),(3048,'2016-11-10',122,18900,10000),(3049,'2016-11-10',123,16800,9000),(3050,'2016-11-10',124,12600,5000),(3051,'2016-11-10',125,14700,1000),(3052,'2016-11-10',126,9450,1000),(3053,'2016-11-10',127,14700,4000),(3055,'2016-11-10',129,12600,4000),(3056,'2016-11-10',130,8400,3000),(3058,'2016-11-10',132,9450,5000),(3059,'2016-11-10',133,5250,6000),(3061,'2016-12-10',2,18742,4000),(3062,'2016-12-10',3,8820,10000),(3063,'2016-12-10',4,15435,1000),(3065,'2016-12-10',6,15435,5000),(3066,'2016-12-10',7,20947,5000),(3068,'2016-12-10',9,12127,10000),(3070,'2016-12-10',11,15435,1000),(3072,'2016-12-10',13,16537,3000),(3073,'2016-12-10',14,11025,3000),(3076,'2016-12-10',17,17640,10000),(3077,'2016-12-10',18,6615,4000),(3080,'2016-12-10',21,16537,3000),(3081,'2016-12-10',22,13230,4000),(3084,'2016-12-10',25,20947,11000),(3085,'2016-12-10',26,7717,10000),(3086,'2016-12-10',27,22050,3000),(3087,'2016-12-10',28,15435,3000),(3088,'2016-12-10',29,20947,7000),(3089,'2016-12-10',30,6615,9000),(3091,'2016-12-10',32,16537,6000),(3093,'2016-12-10',34,20947,4000),(3096,'2016-12-10',37,22050,2000),(3097,'2016-12-10',38,20947,9000),(3098,'2016-12-10',39,13230,5000),(3099,'2016-12-10',40,18742,10000),(3100,'2016-12-10',41,8820,4000),(3102,'2016-12-10',43,12127,11000),(3103,'2016-12-10',44,12127,10000),(3104,'2016-12-10',45,13230,11000),(3105,'2016-12-10',46,14332,8000),(3106,'2016-12-10',47,12127,9000),(3107,'2016-12-10',48,23152,5000),(3108,'2016-12-10',49,14332,7000),(3109,'2016-12-10',50,9922,2000),(3111,'2016-12-10',52,17640,8000),(3113,'2016-12-10',54,19845,3000),(3114,'2016-12-10',55,5512,7000),(3115,'2016-12-10',56,20947,2000),(3116,'2016-12-10',57,20947,4000),(3117,'2016-12-10',58,12127,6000),(3118,'2016-12-10',59,9922,5000),(3119,'2016-12-10',60,12127,9000),(3120,'2016-12-10',61,22050,6000),(3121,'2016-12-10',62,14332,1000),(3122,'2016-12-10',63,14332,5000),(3123,'2016-12-10',64,5512,6000),(3124,'2016-12-10',65,13230,5000),(3125,'2016-12-10',66,17640,10000),(3127,'2016-12-10',68,23152,9000),(3129,'2016-12-10',70,11025,4000),(3131,'2016-12-10',72,12127,4000),(3132,'2016-12-10',73,15435,8000),(3133,'2016-12-10',74,11025,10000),(3135,'2016-12-10',76,18742,5000),(3136,'2016-12-10',77,7717,5000),(3137,'2016-12-10',78,9922,10000),(3138,'2016-12-10',79,14332,1000),(3140,'2016-12-10',81,15435,2000),(3141,'2016-12-10',82,7717,3000),(3142,'2016-12-10',83,8820,5000),(3143,'2016-12-10',84,9922,3000),(3144,'2016-12-10',85,14332,10000),(3145,'2016-12-10',86,22050,9000),(3147,'2016-12-10',88,18742,9000),(3148,'2016-12-10',89,6615,7000),(3149,'2016-12-10',90,5512,4000),(3151,'2016-12-10',92,17640,6000),(3152,'2016-12-10',93,7717,11000),(3153,'2016-12-10',94,13230,3000),(3154,'2016-12-10',95,17640,6000),(3155,'2016-12-10',96,13230,1000),(3156,'2016-12-10',97,6615,7000),(3157,'2016-12-10',98,17640,1000),(3158,'2016-12-10',99,14332,7000),(3159,'2016-12-10',100,13230,6000),(3160,'2016-12-10',101,6615,11000),(3161,'2016-12-10',102,20947,4000),(3164,'2016-12-10',105,19845,5000),(3165,'2016-12-10',106,20947,3000),(3167,'2016-12-10',108,16537,3000),(3168,'2016-12-10',109,7717,10000),(3169,'2016-12-10',110,16537,1000),(3170,'2016-12-10',111,5512,2000),(3171,'2016-12-10',112,22050,11000),(3172,'2016-12-10',113,9922,10000),(3173,'2016-12-10',114,5512,3000),(3174,'2016-12-10',115,12127,2000),(3175,'2016-12-10',116,8820,3000),(3176,'2016-12-10',117,23152,4000),(3177,'2016-12-10',118,20947,2000),(3178,'2016-12-10',119,20947,6000),(3180,'2016-12-10',121,8820,3000),(3181,'2016-12-10',122,19845,6000),(3182,'2016-12-10',123,17640,10000),(3183,'2016-12-10',124,13230,11000),(3184,'2016-12-10',125,15435,1000),(3185,'2016-12-10',126,9922,3000),(3186,'2016-12-10',127,15435,1000),(3188,'2016-12-10',129,13230,2000),(3189,'2016-12-10',130,8820,3000),(3191,'2016-12-10',132,9922,2000),(3192,'2016-12-10',133,5512,5000),(3194,'2017-01-10',2,18742,4000),(3195,'2017-01-10',3,8820,6000),(3196,'2017-01-10',4,15435,11000),(3198,'2017-01-10',6,15435,11000),(3199,'2017-01-10',7,20947,6000),(3201,'2017-01-10',9,12127,7000),(3203,'2017-01-10',11,15435,1000),(3204,'2017-01-10',12,14332,11000),(3205,'2017-01-10',13,16537,10000),(3206,'2017-01-10',14,11025,10000),(3209,'2017-01-10',17,17640,3000),(3210,'2017-01-10',18,6615,4000),(3213,'2017-01-10',21,16537,8000),(3214,'2017-01-10',22,13230,2000),(3217,'2017-01-10',25,20947,11000),(3218,'2017-01-10',26,7717,9000),(3219,'2017-01-10',27,22050,6000),(3220,'2017-01-10',28,15435,4000),(3221,'2017-01-10',29,20947,5000),(3222,'2017-01-10',30,6615,10000),(3224,'2017-01-10',32,16537,11000),(3225,'2017-01-10',33,20947,11000),(3226,'2017-01-10',34,20947,9000),(3229,'2017-01-10',37,22050,8000),(3230,'2017-01-10',38,20947,5000),(3231,'2017-01-10',39,13230,9000),(3232,'2017-01-10',40,18742,3000),(3233,'2017-01-10',41,8820,2000),(3235,'2017-01-10',43,12127,6000),(3236,'2017-01-10',44,12127,3000),(3237,'2017-01-10',45,13230,10000),(3238,'2017-01-10',46,14332,10000),(3239,'2017-01-10',47,12127,5000),(3240,'2017-01-10',48,23152,1000),(3241,'2017-01-10',49,14332,7000),(3242,'2017-01-10',50,9922,9000),(3244,'2017-01-10',52,17640,2000),(3246,'2017-01-10',54,19845,2000),(3247,'2017-01-10',55,5512,2000),(3248,'2017-01-10',56,20947,7000),(3249,'2017-01-10',57,20947,8000),(3250,'2017-01-10',58,12127,2000),(3251,'2017-01-10',59,9922,4000),(3252,'2017-01-10',60,12127,11000),(3253,'2017-01-10',61,22050,3000),(3254,'2017-01-10',62,14332,1000),(3255,'2017-01-10',63,14332,2000),(3256,'2017-01-10',64,5512,10000),(3257,'2017-01-10',65,13230,7000),(3258,'2017-01-10',66,17640,10000),(3260,'2017-01-10',68,23152,1000),(3262,'2017-01-10',70,11025,7000),(3264,'2017-01-10',72,12127,2000),(3265,'2017-01-10',73,15435,3000),(3266,'2017-01-10',74,11025,10000),(3268,'2017-01-10',76,18742,3000),(3269,'2017-01-10',77,7717,10000),(3270,'2017-01-10',78,9922,8000),(3271,'2017-01-10',79,14332,1000),(3273,'2017-01-10',81,15435,4000),(3274,'2017-01-10',82,7717,1000),(3275,'2017-01-10',83,8820,8000),(3276,'2017-01-10',84,9922,6000),(3277,'2017-01-10',85,14332,6000),(3278,'2017-01-10',86,22050,3000),(3280,'2017-01-10',88,18742,1000),(3281,'2017-01-10',89,6615,1000),(3282,'2017-01-10',90,5512,1000),(3284,'2017-01-10',92,17640,2000),(3285,'2017-01-10',93,7717,9000),(3286,'2017-01-10',94,13230,10000),(3287,'2017-01-10',95,17640,10000),(3288,'2017-01-10',96,13230,2000),(3289,'2017-01-10',97,6615,8000),(3290,'2017-01-10',98,17640,6000),(3291,'2017-01-10',99,14332,8000),(3292,'2017-01-10',100,13230,6000),(3293,'2017-01-10',101,6615,3000),(3294,'2017-01-10',102,20947,5000),(3297,'2017-01-10',105,19845,7000),(3298,'2017-01-10',106,20947,11000),(3300,'2017-01-10',108,16537,1000),(3301,'2017-01-10',109,7717,2000),(3302,'2017-01-10',110,16537,7000),(3303,'2017-01-10',111,5512,8000),(3304,'2017-01-10',112,22050,8000),(3305,'2017-01-10',113,9922,1000),(3306,'2017-01-10',114,5512,8000),(3307,'2017-01-10',115,12127,8000),(3308,'2017-01-10',116,8820,3000),(3309,'2017-01-10',117,23152,8000),(3310,'2017-01-10',118,20947,6000),(3311,'2017-01-10',119,20947,7000),(3313,'2017-01-10',121,8820,9000),(3314,'2017-01-10',122,19845,5000),(3315,'2017-01-10',123,17640,6000),(3316,'2017-01-10',124,13230,5000),(3317,'2017-01-10',125,15435,6000),(3318,'2017-01-10',126,9922,8000),(3319,'2017-01-10',127,15435,2000),(3321,'2017-01-10',129,13230,7000),(3322,'2017-01-10',130,8820,9000),(3324,'2017-01-10',132,9922,7000),(3325,'2017-01-10',133,5512,3000),(3327,'2017-02-10',2,18742,2000),(3328,'2017-02-10',3,8820,3000),(3329,'2017-02-10',4,15435,7000),(3331,'2017-02-10',6,15435,10000),(3332,'2017-02-10',7,20947,4000),(3334,'2017-02-10',9,12127,11000),(3336,'2017-02-10',11,15435,8000),(3337,'2017-02-10',12,14332,5000),(3338,'2017-02-10',13,16537,7000),(3339,'2017-02-10',14,11025,2000),(3342,'2017-02-10',17,17640,6000),(3343,'2017-02-10',18,6615,4000),(3346,'2017-02-10',21,16537,3000),(3347,'2017-02-10',22,13230,4000),(3350,'2017-02-10',25,20947,10000),(3351,'2017-02-10',26,7717,1000),(3352,'2017-02-10',27,22050,10000),(3353,'2017-02-10',28,15435,5000),(3354,'2017-02-10',29,20947,8000),(3355,'2017-02-10',30,6615,8000),(3357,'2017-02-10',32,16537,2000),(3358,'2017-02-10',33,20947,7000),(3359,'2017-02-10',34,20947,3000),(3362,'2017-02-10',37,22050,1000),(3363,'2017-02-10',38,20947,8000),(3364,'2017-02-10',39,13230,10000),(3365,'2017-02-10',40,18742,4000),(3366,'2017-02-10',41,8820,2000),(3368,'2017-02-10',43,12127,9000),(3369,'2017-02-10',44,12127,5000),(3370,'2017-02-10',45,13230,8000),(3371,'2017-02-10',46,14332,6000),(3372,'2017-02-10',47,12127,7000),(3373,'2017-02-10',48,23152,1000),(3374,'2017-02-10',49,14332,5000),(3375,'2017-02-10',50,9922,5000),(3377,'2017-02-10',52,17640,4000),(3379,'2017-02-10',54,19845,1000),(3380,'2017-02-10',55,5512,8000),(3381,'2017-02-10',56,20947,10000),(3382,'2017-02-10',57,20947,7000),(3383,'2017-02-10',58,12127,9000),(3384,'2017-02-10',59,9922,5000),(3385,'2017-02-10',60,12127,11000),(3386,'2017-02-10',61,22050,9000),(3387,'2017-02-10',62,14332,10000),(3388,'2017-02-10',63,14332,10000),(3389,'2017-02-10',64,5512,2000),(3390,'2017-02-10',65,13230,10000),(3391,'2017-02-10',66,17640,4000),(3393,'2017-02-10',68,23152,10000),(3395,'2017-02-10',70,11025,9000),(3397,'2017-02-10',72,12127,3000),(3398,'2017-02-10',73,15435,2000),(3399,'2017-02-10',74,11025,4000),(3401,'2017-02-10',76,18742,2000),(3402,'2017-02-10',77,7717,5000),(3403,'2017-02-10',78,9922,7000),(3404,'2017-02-10',79,14332,2000),(3406,'2017-02-10',81,15435,5000),(3407,'2017-02-10',82,7717,1000),(3408,'2017-02-10',83,8820,8000),(3409,'2017-02-10',84,9922,5000),(3410,'2017-02-10',85,14332,2000),(3411,'2017-02-10',86,22050,5000),(3413,'2017-02-10',88,18742,3000),(3414,'2017-02-10',89,6615,1000),(3415,'2017-02-10',90,5512,5000),(3416,'2017-02-10',91,18742,2000),(3417,'2017-02-10',92,17640,6000),(3418,'2017-02-10',93,7717,11000),(3419,'2017-02-10',94,13230,1000),(3420,'2017-02-10',95,17640,3000),(3421,'2017-02-10',96,13230,2000),(3422,'2017-02-10',97,6615,3000),(3423,'2017-02-10',98,17640,7000),(3424,'2017-02-10',99,14332,3000),(3425,'2017-02-10',100,13230,5000),(3426,'2017-02-10',101,6615,4000),(3427,'2017-02-10',102,20947,4000),(3430,'2017-02-10',105,19845,9000),(3431,'2017-02-10',106,20947,11000),(3433,'2017-02-10',108,16537,5000),(3434,'2017-02-10',109,7717,1000),(3435,'2017-02-10',110,16537,10000),(3436,'2017-02-10',111,5512,8000),(3437,'2017-02-10',112,22050,5000),(3438,'2017-02-10',113,9922,2000),(3439,'2017-02-10',114,5512,4000),(3440,'2017-02-10',115,12127,11000),(3441,'2017-02-10',116,8820,10000),(3442,'2017-02-10',117,23152,8000),(3443,'2017-02-10',118,20947,4000),(3444,'2017-02-10',119,20947,8000),(3446,'2017-02-10',121,8820,2000),(3447,'2017-02-10',122,19845,11000),(3448,'2017-02-10',123,17640,7000),(3449,'2017-02-10',124,13230,4000),(3450,'2017-02-10',125,15435,4000),(3451,'2017-02-10',126,9922,4000),(3452,'2017-02-10',127,15435,10000),(3454,'2017-02-10',129,13230,9000),(3455,'2017-02-10',130,8820,2000),(3457,'2017-02-10',132,9922,2000),(3458,'2017-02-10',133,5512,8000),(3460,'2017-03-10',2,18742,6000),(3461,'2017-03-10',3,8820,2000),(3462,'2017-03-10',4,15435,10000),(3464,'2017-03-10',6,15435,5000),(3465,'2017-03-10',7,20947,4000),(3467,'2017-03-10',9,12127,3000),(3469,'2017-03-10',11,15435,11000),(3470,'2017-03-10',12,14332,9000),(3471,'2017-03-10',13,16537,6000),(3472,'2017-03-10',14,11025,7000),(3475,'2017-03-10',17,17640,3000),(3476,'2017-03-10',18,6615,5000),(3479,'2017-03-10',21,16537,6000),(3480,'2017-03-10',22,13230,2000),(3483,'2017-03-10',25,20947,2000),(3484,'2017-03-10',26,7717,4000),(3485,'2017-03-10',27,22050,10000),(3486,'2017-03-10',28,15435,1000),(3487,'2017-03-10',29,20947,5000),(3488,'2017-03-10',30,6615,2000),(3490,'2017-03-10',32,16537,10000),(3491,'2017-03-10',33,20947,1000),(3492,'2017-03-10',34,20947,3000),(3495,'2017-03-10',37,22050,3000),(3496,'2017-03-10',38,20947,1000),(3497,'2017-03-10',39,13230,7000),(3498,'2017-03-10',40,18742,1000),(3499,'2017-03-10',41,8820,9000),(3501,'2017-03-10',43,12127,1000),(3502,'2017-03-10',44,12127,1000),(3503,'2017-03-10',45,13230,5000),(3504,'2017-03-10',46,14332,10000),(3505,'2017-03-10',47,12127,8000),(3506,'2017-03-10',48,23152,6000),(3507,'2017-03-10',49,14332,6000),(3508,'2017-03-10',50,9922,9000),(3510,'2017-03-10',52,17640,4000),(3512,'2017-03-10',54,19845,8000),(3513,'2017-03-10',55,5512,11000),(3514,'2017-03-10',56,20947,9000),(3515,'2017-03-10',57,20947,11000),(3516,'2017-03-10',58,12127,6000),(3517,'2017-03-10',59,9922,3000),(3518,'2017-03-10',60,12127,11000),(3519,'2017-03-10',61,22050,2000),(3520,'2017-03-10',62,14332,11000),(3521,'2017-03-10',63,14332,9000),(3522,'2017-03-10',64,5512,3000),(3523,'2017-03-10',65,13230,4000),(3524,'2017-03-10',66,17640,7000),(3526,'2017-03-10',68,23152,6000),(3528,'2017-03-10',70,11025,3000),(3530,'2017-03-10',72,12127,10000),(3531,'2017-03-10',73,15435,7000),(3532,'2017-03-10',74,11025,7000),(3534,'2017-03-10',76,18742,8000),(3535,'2017-03-10',77,7717,6000),(3536,'2017-03-10',78,9922,3000),(3537,'2017-03-10',79,14332,3000),(3539,'2017-03-10',81,15435,10000),(3540,'2017-03-10',82,7717,9000),(3541,'2017-03-10',83,8820,11000),(3542,'2017-03-10',84,9922,2000),(3543,'2017-03-10',85,14332,2000),(3544,'2017-03-10',86,22050,2000),(3546,'2017-03-10',88,18742,7000),(3547,'2017-03-10',89,6615,5000),(3548,'2017-03-10',90,5512,9000),(3549,'2017-03-10',91,18742,7000),(3550,'2017-03-10',92,17640,11000),(3551,'2017-03-10',93,7717,7000),(3552,'2017-03-10',94,13230,11000),(3553,'2017-03-10',95,17640,7000),(3554,'2017-03-10',96,13230,4000),(3555,'2017-03-10',97,6615,6000),(3556,'2017-03-10',98,17640,10000),(3557,'2017-03-10',99,14332,2000),(3558,'2017-03-10',100,13230,3000),(3559,'2017-03-10',101,6615,10000),(3560,'2017-03-10',102,20947,3000),(3563,'2017-03-10',105,19845,5000),(3564,'2017-03-10',106,20947,10000),(3566,'2017-03-10',108,16537,4000),(3567,'2017-03-10',109,7717,8000),(3568,'2017-03-10',110,16537,5000),(3569,'2017-03-10',111,5512,2000),(3570,'2017-03-10',112,22050,9000),(3571,'2017-03-10',113,9922,11000),(3572,'2017-03-10',114,5512,9000),(3573,'2017-03-10',115,12127,8000),(3574,'2017-03-10',116,8820,8000),(3575,'2017-03-10',117,23152,8000),(3576,'2017-03-10',118,20947,11000),(3577,'2017-03-10',119,20947,2000),(3579,'2017-03-10',121,8820,2000),(3580,'2017-03-10',122,19845,6000),(3581,'2017-03-10',123,17640,6000),(3582,'2017-03-10',124,13230,1000),(3583,'2017-03-10',125,15435,11000),(3584,'2017-03-10',126,9922,7000),(3585,'2017-03-10',127,15435,4000),(3587,'2017-03-10',129,13230,8000),(3588,'2017-03-10',130,8820,10000),(3590,'2017-03-10',132,9922,11000),(3591,'2017-03-10',133,5512,10000),(3593,'2017-04-10',2,18742,3000),(3594,'2017-04-10',3,8820,9000),(3595,'2017-04-10',4,15435,4000),(3597,'2017-04-10',6,15435,9000),(3598,'2017-04-10',7,20947,9000),(3600,'2017-04-10',9,12127,7000),(3602,'2017-04-10',11,15435,11000),(3603,'2017-04-10',12,14332,1000),(3604,'2017-04-10',13,16537,2000),(3605,'2017-04-10',14,11025,4000),(3608,'2017-04-10',17,17640,8000),(3609,'2017-04-10',18,6615,3000),(3612,'2017-04-10',21,16537,9000),(3613,'2017-04-10',22,13230,7000),(3616,'2017-04-10',25,20947,5000),(3617,'2017-04-10',26,7717,2000),(3618,'2017-04-10',27,22050,11000),(3619,'2017-04-10',28,15435,4000),(3620,'2017-04-10',29,20947,4000),(3621,'2017-04-10',30,6615,1000),(3623,'2017-04-10',32,16537,5000),(3624,'2017-04-10',33,20947,10000),(3625,'2017-04-10',34,20947,8000),(3628,'2017-04-10',37,22050,9000),(3629,'2017-04-10',38,20947,11000),(3630,'2017-04-10',39,13230,10000),(3631,'2017-04-10',40,18742,8000),(3632,'2017-04-10',41,8820,8000),(3634,'2017-04-10',43,12127,8000),(3635,'2017-04-10',44,12127,5000),(3636,'2017-04-10',45,13230,2000),(3637,'2017-04-10',46,14332,1000),(3638,'2017-04-10',47,12127,2000),(3639,'2017-04-10',48,23152,5000),(3640,'2017-04-10',49,14332,7000),(3641,'2017-04-10',50,9922,11000),(3643,'2017-04-10',52,17640,8000),(3645,'2017-04-10',54,19845,4000),(3646,'2017-04-10',55,5512,10000),(3647,'2017-04-10',56,20947,10000),(3648,'2017-04-10',57,20947,4000),(3649,'2017-04-10',58,12127,11000),(3650,'2017-04-10',59,9922,5000),(3651,'2017-04-10',60,12127,4000),(3652,'2017-04-10',61,22050,8000),(3653,'2017-04-10',62,14332,8000),(3654,'2017-04-10',63,14332,4000),(3655,'2017-04-10',64,5512,10000),(3656,'2017-04-10',65,13230,3000),(3657,'2017-04-10',66,17640,2000),(3659,'2017-04-10',68,23152,5000),(3661,'2017-04-10',70,11025,3000),(3663,'2017-04-10',72,12127,7000),(3664,'2017-04-10',73,15435,4000),(3665,'2017-04-10',74,11025,8000),(3667,'2017-04-10',76,18742,10000),(3668,'2017-04-10',77,7717,2000),(3669,'2017-04-10',78,9922,7000),(3670,'2017-04-10',79,14332,10000),(3672,'2017-04-10',81,15435,3000),(3673,'2017-04-10',82,7717,2000),(3674,'2017-04-10',83,8820,1000),(3675,'2017-04-10',84,9922,5000),(3676,'2017-04-10',85,14332,9000),(3677,'2017-04-10',86,22050,4000),(3679,'2017-04-10',88,18742,2000),(3680,'2017-04-10',89,6615,6000),(3681,'2017-04-10',90,5512,9000),(3682,'2017-04-10',91,18742,7000),(3683,'2017-04-10',92,17640,9000),(3684,'2017-04-10',93,7717,1000),(3685,'2017-04-10',94,13230,7000),(3686,'2017-04-10',95,17640,11000),(3687,'2017-04-10',96,13230,11000),(3688,'2017-04-10',97,6615,3000),(3689,'2017-04-10',98,17640,6000),(3690,'2017-04-10',99,14332,8000),(3691,'2017-04-10',100,13230,7000),(3692,'2017-04-10',101,6615,7000),(3693,'2017-04-10',102,20947,7000),(3696,'2017-04-10',105,19845,4000),(3697,'2017-04-10',106,20947,4000),(3699,'2017-04-10',108,16537,3000),(3700,'2017-04-10',109,7717,5000),(3701,'2017-04-10',110,16537,6000),(3702,'2017-04-10',111,5512,7000),(3703,'2017-04-10',112,22050,3000),(3704,'2017-04-10',113,9922,4000),(3705,'2017-04-10',114,5512,10000),(3706,'2017-04-10',115,12127,11000),(3707,'2017-04-10',116,8820,10000),(3708,'2017-04-10',117,23152,4000),(3709,'2017-04-10',118,20947,2000),(3710,'2017-04-10',119,20947,6000),(3712,'2017-04-10',121,8820,8000),(3713,'2017-04-10',122,19845,3000),(3714,'2017-04-10',123,17640,1000),(3715,'2017-04-10',124,13230,3000),(3716,'2017-04-10',125,15435,10000),(3717,'2017-04-10',126,9922,3000),(3718,'2017-04-10',127,15435,4000),(3720,'2017-04-10',129,13230,8000),(3721,'2017-04-10',130,8820,9000),(3723,'2017-04-10',132,9922,1000),(3724,'2017-04-10',133,5512,4000),(3726,'2017-05-10',2,18742,4000),(3727,'2017-05-10',3,8820,2000),(3728,'2017-05-10',4,15435,9000),(3730,'2017-05-10',6,15435,11000),(3731,'2017-05-10',7,20947,3000),(3733,'2017-05-10',9,12127,2000),(3735,'2017-05-10',11,15435,9000),(3736,'2017-05-10',12,14332,11000),(3737,'2017-05-10',13,16537,5000),(3738,'2017-05-10',14,11025,11000),(3741,'2017-05-10',17,17640,9000),(3742,'2017-05-10',18,6615,7000),(3745,'2017-05-10',21,16537,1000),(3746,'2017-05-10',22,13230,5000),(3749,'2017-05-10',25,20947,9000),(3750,'2017-05-10',26,7717,5000),(3751,'2017-05-10',27,22050,4000),(3752,'2017-05-10',28,15435,8000),(3753,'2017-05-10',29,20947,11000),(3754,'2017-05-10',30,6615,1000),(3756,'2017-05-10',32,16537,10000),(3757,'2017-05-10',33,20947,3000),(3758,'2017-05-10',34,20947,10000),(3761,'2017-05-10',37,22050,6000),(3762,'2017-05-10',38,20947,8000),(3763,'2017-05-10',39,13230,7000),(3764,'2017-05-10',40,18742,6000),(3765,'2017-05-10',41,8820,5000),(3767,'2017-05-10',43,12127,9000),(3768,'2017-05-10',44,12127,5000),(3769,'2017-05-10',45,13230,7000),(3770,'2017-05-10',46,14332,4000),(3771,'2017-05-10',47,12127,11000),(3772,'2017-05-10',48,23152,8000),(3773,'2017-05-10',49,14332,3000),(3774,'2017-05-10',50,9922,5000),(3776,'2017-05-10',52,17640,7000),(3778,'2017-05-10',54,19845,4000),(3779,'2017-05-10',55,5512,3000),(3780,'2017-05-10',56,20947,11000),(3781,'2017-05-10',57,20947,8000),(3782,'2017-05-10',58,12127,5000),(3783,'2017-05-10',59,9922,1000),(3784,'2017-05-10',60,12127,7000),(3785,'2017-05-10',61,22050,11000),(3786,'2017-05-10',62,14332,2000),(3787,'2017-05-10',63,14332,4000),(3788,'2017-05-10',64,5512,5000),(3789,'2017-05-10',65,13230,10000),(3790,'2017-05-10',66,17640,8000),(3792,'2017-05-10',68,23152,10000),(3794,'2017-05-10',70,11025,3000),(3796,'2017-05-10',72,12127,8000),(3797,'2017-05-10',73,15435,6000),(3798,'2017-05-10',74,11025,9000),(3800,'2017-05-10',76,18742,1000),(3801,'2017-05-10',77,7717,7000),(3802,'2017-05-10',78,9922,3000),(3803,'2017-05-10',79,14332,4000),(3805,'2017-05-10',81,15435,7000),(3806,'2017-05-10',82,7717,7000),(3807,'2017-05-10',83,8820,10000),(3808,'2017-05-10',84,9922,1000),(3809,'2017-05-10',85,14332,2000),(3810,'2017-05-10',86,22050,10000),(3812,'2017-05-10',88,18742,9000),(3813,'2017-05-10',89,6615,11000),(3814,'2017-05-10',90,5512,3000),(3815,'2017-05-10',91,18742,3000),(3816,'2017-05-10',92,17640,11000),(3817,'2017-05-10',93,7717,9000),(3818,'2017-05-10',94,13230,5000),(3819,'2017-05-10',95,17640,2000),(3820,'2017-05-10',96,13230,3000),(3821,'2017-05-10',97,6615,11000),(3822,'2017-05-10',98,17640,5000),(3823,'2017-05-10',99,14332,3000),(3824,'2017-05-10',100,13230,11000),(3825,'2017-05-10',101,6615,8000),(3826,'2017-05-10',102,20947,11000),(3829,'2017-05-10',105,19845,1000),(3830,'2017-05-10',106,20947,5000),(3831,'2017-05-10',107,16537,7000),(3832,'2017-05-10',108,16537,6000),(3833,'2017-05-10',109,7717,11000),(3834,'2017-05-10',110,16537,9000),(3835,'2017-05-10',111,5512,6000),(3836,'2017-05-10',112,22050,8000),(3837,'2017-05-10',113,9922,1000),(3838,'2017-05-10',114,5512,8000),(3839,'2017-05-10',115,12127,4000),(3840,'2017-05-10',116,8820,6000),(3841,'2017-05-10',117,23152,8000),(3842,'2017-05-10',118,20947,3000),(3843,'2017-05-10',119,20947,5000),(3845,'2017-05-10',121,8820,3000),(3846,'2017-05-10',122,19845,2000),(3847,'2017-05-10',123,17640,6000),(3848,'2017-05-10',124,13230,3000),(3849,'2017-05-10',125,15435,7000),(3850,'2017-05-10',126,9922,3000),(3851,'2017-05-10',127,15435,2000),(3853,'2017-05-10',129,13230,3000),(3854,'2017-05-10',130,8820,5000),(3856,'2017-05-10',132,9922,4000),(3857,'2017-05-10',133,5512,4000),(3859,'2017-06-10',2,18742,9000),(3860,'2017-06-10',3,8820,4000),(3861,'2017-06-10',4,15435,9000),(3863,'2017-06-10',6,15435,6000),(3864,'2017-06-10',7,20947,10000),(3866,'2017-06-10',9,12127,11000),(3868,'2017-06-10',11,15435,1000),(3869,'2017-06-10',12,14332,3000),(3870,'2017-06-10',13,16537,8000),(3871,'2017-06-10',14,11025,11000),(3874,'2017-06-10',17,17640,11000),(3875,'2017-06-10',18,6615,4000),(3878,'2017-06-10',21,16537,3000),(3879,'2017-06-10',22,13230,7000),(3882,'2017-06-10',25,20947,4000),(3883,'2017-06-10',26,7717,5000),(3884,'2017-06-10',27,22050,7000),(3885,'2017-06-10',28,15435,7000),(3886,'2017-06-10',29,20947,9000),(3887,'2017-06-10',30,6615,11000),(3889,'2017-06-10',32,16537,8000),(3890,'2017-06-10',33,20947,10000),(3891,'2017-06-10',34,20947,7000),(3894,'2017-06-10',37,22050,6000),(3895,'2017-06-10',38,20947,6000),(3896,'2017-06-10',39,13230,10000),(3897,'2017-06-10',40,18742,11000),(3898,'2017-06-10',41,8820,11000),(3900,'2017-06-10',43,12127,7000),(3901,'2017-06-10',44,12127,5000),(3902,'2017-06-10',45,13230,6000),(3903,'2017-06-10',46,14332,5000),(3904,'2017-06-10',47,12127,10000),(3905,'2017-06-10',48,23152,5000),(3906,'2017-06-10',49,14332,4000),(3907,'2017-06-10',50,9922,7000),(3909,'2017-06-10',52,17640,10000),(3911,'2017-06-10',54,19845,10000),(3912,'2017-06-10',55,5512,5000),(3913,'2017-06-10',56,20947,5000),(3914,'2017-06-10',57,20947,7000),(3915,'2017-06-10',58,12127,3000),(3916,'2017-06-10',59,9922,3000),(3917,'2017-06-10',60,12127,10000),(3918,'2017-06-10',61,22050,4000),(3919,'2017-06-10',62,14332,8000),(3920,'2017-06-10',63,14332,7000),(3921,'2017-06-10',64,5512,10000),(3922,'2017-06-10',65,13230,5000),(3923,'2017-06-10',66,17640,6000),(3925,'2017-06-10',68,23152,8000),(3927,'2017-06-10',70,11025,3000),(3929,'2017-06-10',72,12127,2000),(3930,'2017-06-10',73,15435,2000),(3931,'2017-06-10',74,11025,4000),(3933,'2017-06-10',76,18742,8000),(3934,'2017-06-10',77,7717,10000),(3935,'2017-06-10',78,9922,8000),(3936,'2017-06-10',79,14332,10000),(3938,'2017-06-10',81,15435,3000),(3939,'2017-06-10',82,7717,9000),(3940,'2017-06-10',83,8820,8000),(3941,'2017-06-10',84,9922,1000),(3942,'2017-06-10',85,14332,7000),(3943,'2017-06-10',86,22050,4000),(3945,'2017-06-10',88,18742,5000),(3946,'2017-06-10',89,6615,2000),(3947,'2017-06-10',90,5512,2000),(3948,'2017-06-10',91,18742,11000),(3949,'2017-06-10',92,17640,1000),(3950,'2017-06-10',93,7717,6000),(3951,'2017-06-10',94,13230,1000),(3952,'2017-06-10',95,17640,2000),(3953,'2017-06-10',96,13230,10000),(3954,'2017-06-10',97,6615,3000),(3955,'2017-06-10',98,17640,10000),(3956,'2017-06-10',99,14332,6000),(3957,'2017-06-10',100,13230,1000),(3958,'2017-06-10',101,6615,4000),(3959,'2017-06-10',102,20947,2000),(3962,'2017-06-10',105,19845,8000),(3963,'2017-06-10',106,20947,7000),(3964,'2017-06-10',107,16537,7000),(3965,'2017-06-10',108,16537,4000),(3966,'2017-06-10',109,7717,9000),(3967,'2017-06-10',110,16537,11000),(3968,'2017-06-10',111,5512,4000),(3969,'2017-06-10',112,22050,11000),(3970,'2017-06-10',113,9922,6000),(3971,'2017-06-10',114,5512,5000),(3972,'2017-06-10',115,12127,2000),(3973,'2017-06-10',116,8820,1000),(3974,'2017-06-10',117,23152,3000),(3975,'2017-06-10',118,20947,3000),(3976,'2017-06-10',119,20947,7000),(3978,'2017-06-10',121,8820,6000),(3979,'2017-06-10',122,19845,6000),(3980,'2017-06-10',123,17640,6000),(3981,'2017-06-10',124,13230,5000),(3982,'2017-06-10',125,15435,7000),(3983,'2017-06-10',126,9922,3000),(3984,'2017-06-10',127,15435,5000),(3986,'2017-06-10',129,13230,10000),(3987,'2017-06-10',130,8820,8000),(3989,'2017-06-10',132,9922,1000),(3990,'2017-06-10',133,5512,4000),(3992,'2017-07-10',2,18742,9000),(3993,'2017-07-10',3,8820,11000),(3994,'2017-07-10',4,15435,9000),(3996,'2017-07-10',6,15435,7000),(3997,'2017-07-10',7,20947,8000),(3999,'2017-07-10',9,12127,6000),(4001,'2017-07-10',11,15435,9000),(4002,'2017-07-10',12,14332,3000),(4003,'2017-07-10',13,16537,11000),(4004,'2017-07-10',14,11025,1000),(4007,'2017-07-10',17,17640,9000),(4008,'2017-07-10',18,6615,10000),(4011,'2017-07-10',21,16537,4000),(4012,'2017-07-10',22,13230,6000),(4015,'2017-07-10',25,20947,11000),(4016,'2017-07-10',26,7717,9000),(4017,'2017-07-10',27,22050,9000),(4018,'2017-07-10',28,15435,1000),(4019,'2017-07-10',29,20947,5000),(4020,'2017-07-10',30,6615,5000),(4022,'2017-07-10',32,16537,9000),(4023,'2017-07-10',33,20947,2000),(4024,'2017-07-10',34,20947,2000),(4027,'2017-07-10',37,22050,3000),(4028,'2017-07-10',38,20947,10000),(4029,'2017-07-10',39,13230,7000),(4030,'2017-07-10',40,18742,1000),(4031,'2017-07-10',41,8820,11000),(4033,'2017-07-10',43,12127,11000),(4034,'2017-07-10',44,12127,10000),(4035,'2017-07-10',45,13230,1000),(4036,'2017-07-10',46,14332,5000),(4037,'2017-07-10',47,12127,8000),(4038,'2017-07-10',48,23152,11000),(4039,'2017-07-10',49,14332,8000),(4040,'2017-07-10',50,9922,4000),(4042,'2017-07-10',52,17640,2000),(4044,'2017-07-10',54,19845,2000),(4045,'2017-07-10',55,5512,8000),(4046,'2017-07-10',56,20947,1000),(4047,'2017-07-10',57,20947,7000),(4048,'2017-07-10',58,12127,11000),(4049,'2017-07-10',59,9922,11000),(4050,'2017-07-10',60,12127,8000),(4051,'2017-07-10',61,22050,11000),(4052,'2017-07-10',62,14332,4000),(4053,'2017-07-10',63,14332,11000),(4054,'2017-07-10',64,5512,6000),(4055,'2017-07-10',65,13230,2000),(4056,'2017-07-10',66,17640,5000),(4058,'2017-07-10',68,23152,11000),(4060,'2017-07-10',70,11025,6000),(4062,'2017-07-10',72,12127,2000),(4063,'2017-07-10',73,15435,10000),(4064,'2017-07-10',74,11025,9000),(4066,'2017-07-10',76,18742,5000),(4067,'2017-07-10',77,7717,6000),(4068,'2017-07-10',78,9922,4000),(4069,'2017-07-10',79,14332,1000),(4071,'2017-07-10',81,15435,10000),(4072,'2017-07-10',82,7717,6000),(4073,'2017-07-10',83,8820,6000),(4074,'2017-07-10',84,9922,11000),(4075,'2017-07-10',85,14332,4000),(4076,'2017-07-10',86,22050,2000),(4078,'2017-07-10',88,18742,6000),(4079,'2017-07-10',89,6615,4000),(4080,'2017-07-10',90,5512,9000),(4081,'2017-07-10',91,18742,10000),(4082,'2017-07-10',92,17640,10000),(4083,'2017-07-10',93,7717,4000),(4084,'2017-07-10',94,13230,11000),(4085,'2017-07-10',95,17640,5000),(4086,'2017-07-10',96,13230,10000),(4087,'2017-07-10',97,6615,7000),(4088,'2017-07-10',98,17640,8000),(4089,'2017-07-10',99,14332,6000),(4090,'2017-07-10',100,13230,1000),(4091,'2017-07-10',101,6615,7000),(4092,'2017-07-10',102,20947,6000),(4095,'2017-07-10',105,19845,1000),(4096,'2017-07-10',106,20947,10000),(4097,'2017-07-10',107,16537,6000),(4098,'2017-07-10',108,16537,3000),(4099,'2017-07-10',109,7717,3000),(4100,'2017-07-10',110,16537,4000),(4101,'2017-07-10',111,5512,3000),(4102,'2017-07-10',112,22050,11000),(4103,'2017-07-10',113,9922,4000),(4104,'2017-07-10',114,5512,7000),(4105,'2017-07-10',115,12127,4000),(4106,'2017-07-10',116,8820,2000),(4107,'2017-07-10',117,23152,3000),(4108,'2017-07-10',118,20947,4000),(4109,'2017-07-10',119,20947,6000),(4111,'2017-07-10',121,8820,6000),(4112,'2017-07-10',122,19845,2000),(4113,'2017-07-10',123,17640,10000),(4114,'2017-07-10',124,13230,1000),(4115,'2017-07-10',125,15435,2000),(4116,'2017-07-10',126,9922,8000),(4117,'2017-07-10',127,15435,10000),(4119,'2017-07-10',129,13230,7000),(4120,'2017-07-10',130,8820,5000),(4122,'2017-07-10',132,9922,8000),(4123,'2017-07-10',133,5512,2000),(4125,'2017-08-10',2,18742,7000),(4126,'2017-08-10',3,8820,5000),(4127,'2017-08-10',4,15435,4000),(4129,'2017-08-10',6,15435,9000),(4130,'2017-08-10',7,20947,7000),(4132,'2017-08-10',9,12127,4000),(4134,'2017-08-10',11,15435,2000),(4135,'2017-08-10',12,14332,9000),(4136,'2017-08-10',13,16537,5000),(4137,'2017-08-10',14,11025,7000),(4140,'2017-08-10',17,17640,9000),(4141,'2017-08-10',18,6615,11000),(4144,'2017-08-10',21,16537,11000),(4145,'2017-08-10',22,13230,4000),(4148,'2017-08-10',25,20947,10000),(4149,'2017-08-10',26,7717,8000),(4150,'2017-08-10',27,22050,8000),(4151,'2017-08-10',28,15435,11000),(4152,'2017-08-10',29,20947,6000),(4153,'2017-08-10',30,6615,4000),(4155,'2017-08-10',32,16537,10000),(4156,'2017-08-10',33,20947,10000),(4157,'2017-08-10',34,20947,5000),(4160,'2017-08-10',37,22050,2000),(4161,'2017-08-10',38,20947,5000),(4162,'2017-08-10',39,13230,2000),(4163,'2017-08-10',40,18742,2000),(4164,'2017-08-10',41,8820,3000),(4166,'2017-08-10',43,12127,9000),(4167,'2017-08-10',44,12127,10000),(4168,'2017-08-10',45,13230,5000),(4169,'2017-08-10',46,14332,11000),(4170,'2017-08-10',47,12127,3000),(4171,'2017-08-10',48,23152,3000),(4172,'2017-08-10',49,14332,3000),(4173,'2017-08-10',50,9922,5000),(4175,'2017-08-10',52,17640,6000),(4177,'2017-08-10',54,19845,2000),(4178,'2017-08-10',55,5512,9000),(4179,'2017-08-10',56,20947,6000),(4180,'2017-08-10',57,20947,1000),(4181,'2017-08-10',58,12127,5000),(4182,'2017-08-10',59,9922,5000),(4183,'2017-08-10',60,12127,1000),(4184,'2017-08-10',61,22050,3000),(4185,'2017-08-10',62,14332,11000),(4186,'2017-08-10',63,14332,11000),(4187,'2017-08-10',64,5512,9000),(4188,'2017-08-10',65,13230,8000),(4189,'2017-08-10',66,17640,5000),(4191,'2017-08-10',68,23152,7000),(4193,'2017-08-10',70,11025,2000),(4195,'2017-08-10',72,12127,7000),(4196,'2017-08-10',73,15435,9000),(4197,'2017-08-10',74,11025,3000),(4199,'2017-08-10',76,18742,8000),(4200,'2017-08-10',77,7717,9000),(4201,'2017-08-10',78,9922,1000),(4202,'2017-08-10',79,14332,2000),(4204,'2017-08-10',81,15435,3000),(4205,'2017-08-10',82,7717,2000),(4206,'2017-08-10',83,8820,2000),(4207,'2017-08-10',84,9922,8000),(4208,'2017-08-10',85,14332,3000),(4209,'2017-08-10',86,22050,6000),(4211,'2017-08-10',88,18742,9000),(4212,'2017-08-10',89,6615,10000),(4213,'2017-08-10',90,5512,3000),(4214,'2017-08-10',91,18742,1000),(4215,'2017-08-10',92,17640,9000),(4216,'2017-08-10',93,7717,11000),(4217,'2017-08-10',94,13230,3000),(4218,'2017-08-10',95,17640,6000),(4219,'2017-08-10',96,13230,2000),(4220,'2017-08-10',97,6615,11000),(4221,'2017-08-10',98,17640,5000),(4222,'2017-08-10',99,14332,3000),(4223,'2017-08-10',100,13230,2000),(4224,'2017-08-10',101,6615,3000),(4225,'2017-08-10',102,20947,5000),(4228,'2017-08-10',105,19845,8000),(4229,'2017-08-10',106,20947,3000),(4230,'2017-08-10',107,16537,7000),(4231,'2017-08-10',108,16537,10000),(4232,'2017-08-10',109,7717,11000),(4233,'2017-08-10',110,16537,1000),(4234,'2017-08-10',111,5512,5000),(4235,'2017-08-10',112,22050,11000),(4236,'2017-08-10',113,9922,3000),(4237,'2017-08-10',114,5512,4000),(4238,'2017-08-10',115,12127,8000),(4239,'2017-08-10',116,8820,6000),(4240,'2017-08-10',117,23152,9000),(4241,'2017-08-10',118,20947,11000),(4242,'2017-08-10',119,20947,7000),(4244,'2017-08-10',121,8820,11000),(4245,'2017-08-10',122,19845,10000),(4246,'2017-08-10',123,17640,10000),(4247,'2017-08-10',124,13230,5000),(4248,'2017-08-10',125,15435,5000),(4249,'2017-08-10',126,9922,3000),(4250,'2017-08-10',127,15435,9000),(4252,'2017-08-10',129,13230,1000),(4253,'2017-08-10',130,8820,6000),(4255,'2017-08-10',132,9922,2000),(4256,'2017-08-10',133,5512,10000),(4258,'2017-09-10',2,18742,9000),(4259,'2017-09-10',3,8820,11000),(4260,'2017-09-10',4,15435,7000),(4262,'2017-09-10',6,15435,11000),(4263,'2017-09-10',7,20947,11000),(4265,'2017-09-10',9,12127,4000),(4267,'2017-09-10',11,15435,1000),(4268,'2017-09-10',12,14332,4000),(4269,'2017-09-10',13,16537,4000),(4270,'2017-09-10',14,11025,9000),(4273,'2017-09-10',17,17640,11000),(4274,'2017-09-10',18,6615,9000),(4277,'2017-09-10',21,16537,1000),(4278,'2017-09-10',22,13230,9000),(4281,'2017-09-10',25,20947,10000),(4282,'2017-09-10',26,7717,8000),(4283,'2017-09-10',27,22050,4000),(4284,'2017-09-10',28,15435,8000),(4285,'2017-09-10',29,20947,6000),(4286,'2017-09-10',30,6615,5000),(4288,'2017-09-10',32,16537,10000),(4289,'2017-09-10',33,20947,3000),(4290,'2017-09-10',34,20947,6000),(4293,'2017-09-10',37,22050,7000),(4294,'2017-09-10',38,20947,2000),(4295,'2017-09-10',39,13230,4000),(4296,'2017-09-10',40,18742,11000),(4297,'2017-09-10',41,8820,11000),(4299,'2017-09-10',43,12127,11000),(4300,'2017-09-10',44,12127,11000),(4301,'2017-09-10',45,13230,9000),(4302,'2017-09-10',46,14332,3000),(4303,'2017-09-10',47,12127,5000),(4304,'2017-09-10',48,23152,4000),(4305,'2017-09-10',49,14332,7000),(4306,'2017-09-10',50,9922,9000),(4308,'2017-09-10',52,17640,7000),(4310,'2017-09-10',54,19845,2000),(4311,'2017-09-10',55,5512,4000),(4312,'2017-09-10',56,20947,2000),(4313,'2017-09-10',57,20947,11000),(4314,'2017-09-10',58,12127,3000),(4315,'2017-09-10',59,9922,4000),(4316,'2017-09-10',60,12127,1000),(4317,'2017-09-10',61,22050,6000),(4318,'2017-09-10',62,14332,10000),(4319,'2017-09-10',63,14332,10000),(4320,'2017-09-10',64,5512,2000),(4321,'2017-09-10',65,13230,8000),(4322,'2017-09-10',66,17640,8000),(4323,'2017-09-10',67,8820,3000),(4324,'2017-09-10',68,23152,7000),(4326,'2017-09-10',70,11025,1000),(4328,'2017-09-10',72,12127,1000),(4329,'2017-09-10',73,15435,11000),(4330,'2017-09-10',74,11025,7000),(4332,'2017-09-10',76,18742,8000),(4333,'2017-09-10',77,7717,2000),(4334,'2017-09-10',78,9922,5000),(4335,'2017-09-10',79,14332,11000),(4337,'2017-09-10',81,15435,5000),(4338,'2017-09-10',82,7717,5000),(4339,'2017-09-10',83,8820,5000),(4340,'2017-09-10',84,9922,4000),(4341,'2017-09-10',85,14332,8000),(4342,'2017-09-10',86,22050,10000),(4344,'2017-09-10',88,18742,5000),(4345,'2017-09-10',89,6615,10000),(4346,'2017-09-10',90,5512,11000),(4347,'2017-09-10',91,18742,1000),(4348,'2017-09-10',92,17640,6000),(4349,'2017-09-10',93,7717,2000),(4350,'2017-09-10',94,13230,11000),(4351,'2017-09-10',95,17640,2000),(4352,'2017-09-10',96,13230,4000),(4353,'2017-09-10',97,6615,6000),(4354,'2017-09-10',98,17640,9000),(4355,'2017-09-10',99,14332,4000),(4356,'2017-09-10',100,13230,11000),(4357,'2017-09-10',101,6615,4000),(4358,'2017-09-10',102,20947,4000),(4361,'2017-09-10',105,19845,1000),(4362,'2017-09-10',106,20947,3000),(4363,'2017-09-10',107,16537,7000),(4364,'2017-09-10',108,16537,2000),(4365,'2017-09-10',109,7717,1000),(4366,'2017-09-10',110,16537,11000),(4367,'2017-09-10',111,5512,2000),(4368,'2017-09-10',112,22050,8000),(4369,'2017-09-10',113,9922,11000),(4370,'2017-09-10',114,5512,1000),(4371,'2017-09-10',115,12127,7000),(4372,'2017-09-10',116,8820,7000),(4373,'2017-09-10',117,23152,2000),(4374,'2017-09-10',118,20947,6000),(4375,'2017-09-10',119,20947,9000),(4377,'2017-09-10',121,8820,2000),(4378,'2017-09-10',122,19845,10000),(4379,'2017-09-10',123,17640,7000),(4380,'2017-09-10',124,13230,5000),(4381,'2017-09-10',125,15435,9000),(4382,'2017-09-10',126,9922,10000),(4383,'2017-09-10',127,15435,1000),(4385,'2017-09-10',129,13230,7000),(4386,'2017-09-10',130,8820,6000),(4388,'2017-09-10',132,9922,7000),(4389,'2017-09-10',133,5512,7000),(4391,'2017-10-10',2,18742,2000),(4392,'2017-10-10',3,8820,9000),(4393,'2017-10-10',4,15435,4000),(4395,'2017-10-10',6,15435,11000),(4396,'2017-10-10',7,20947,6000),(4398,'2017-10-10',9,12127,8000),(4400,'2017-10-10',11,15435,5000),(4401,'2017-10-10',12,14332,9000),(4402,'2017-10-10',13,16537,10000),(4403,'2017-10-10',14,11025,2000),(4406,'2017-10-10',17,17640,2000),(4407,'2017-10-10',18,6615,3000),(4410,'2017-10-10',21,16537,1000),(4411,'2017-10-10',22,13230,9000),(4414,'2017-10-10',25,20947,8000),(4415,'2017-10-10',26,7717,7000),(4416,'2017-10-10',27,22050,6000),(4417,'2017-10-10',28,15435,5000),(4418,'2017-10-10',29,20947,2000),(4419,'2017-10-10',30,6615,5000),(4421,'2017-10-10',32,16537,8000),(4422,'2017-10-10',33,20947,3000),(4423,'2017-10-10',34,20947,11000),(4426,'2017-10-10',37,22050,4000),(4427,'2017-10-10',38,20947,10000),(4428,'2017-10-10',39,13230,11000),(4429,'2017-10-10',40,18742,10000),(4430,'2017-10-10',41,8820,4000),(4432,'2017-10-10',43,12127,3000),(4433,'2017-10-10',44,12127,7000),(4434,'2017-10-10',45,13230,2000),(4435,'2017-10-10',46,14332,3000),(4436,'2017-10-10',47,12127,8000),(4437,'2017-10-10',48,23152,10000),(4438,'2017-10-10',49,14332,2000),(4439,'2017-10-10',50,9922,5000),(4440,'2017-10-10',51,5512,2000),(4441,'2017-10-10',52,17640,9000),(4443,'2017-10-10',54,19845,4000),(4444,'2017-10-10',55,5512,11000),(4445,'2017-10-10',56,20947,6000),(4446,'2017-10-10',57,20947,5000),(4447,'2017-10-10',58,12127,6000),(4448,'2017-10-10',59,9922,7000),(4449,'2017-10-10',60,12127,3000),(4450,'2017-10-10',61,22050,2000),(4451,'2017-10-10',62,14332,7000),(4452,'2017-10-10',63,14332,10000),(4453,'2017-10-10',64,5512,6000),(4454,'2017-10-10',65,13230,1000),(4455,'2017-10-10',66,17640,3000),(4456,'2017-10-10',67,8820,8000),(4457,'2017-10-10',68,23152,9000),(4459,'2017-10-10',70,11025,7000),(4461,'2017-10-10',72,12127,8000),(4462,'2017-10-10',73,15435,7000),(4463,'2017-10-10',74,11025,7000),(4465,'2017-10-10',76,18742,7000),(4466,'2017-10-10',77,7717,1000),(4467,'2017-10-10',78,9922,7000),(4468,'2017-10-10',79,14332,4000),(4470,'2017-10-10',81,15435,3000),(4471,'2017-10-10',82,7717,6000),(4472,'2017-10-10',83,8820,7000),(4473,'2017-10-10',84,9922,5000),(4474,'2017-10-10',85,14332,11000),(4475,'2017-10-10',86,22050,4000),(4476,'2017-10-10',87,6615,2000),(4477,'2017-10-10',88,18742,1000),(4478,'2017-10-10',89,6615,8000),(4479,'2017-10-10',90,5512,4000),(4480,'2017-10-10',91,18742,10000),(4481,'2017-10-10',92,17640,8000),(4482,'2017-10-10',93,7717,3000),(4483,'2017-10-10',94,13230,1000),(4484,'2017-10-10',95,17640,11000),(4485,'2017-10-10',96,13230,5000),(4486,'2017-10-10',97,6615,2000),(4487,'2017-10-10',98,17640,1000),(4488,'2017-10-10',99,14332,5000),(4489,'2017-10-10',100,13230,10000),(4490,'2017-10-10',101,6615,8000),(4491,'2017-10-10',102,20947,11000),(4494,'2017-10-10',105,19845,6000),(4495,'2017-10-10',106,20947,5000),(4496,'2017-10-10',107,16537,5000),(4497,'2017-10-10',108,16537,1000),(4498,'2017-10-10',109,7717,2000),(4499,'2017-10-10',110,16537,8000),(4500,'2017-10-10',111,5512,10000),(4501,'2017-10-10',112,22050,4000),(4502,'2017-10-10',113,9922,11000),(4503,'2017-10-10',114,5512,2000),(4504,'2017-10-10',115,12127,1000),(4505,'2017-10-10',116,8820,8000),(4506,'2017-10-10',117,23152,8000),(4507,'2017-10-10',118,20947,3000),(4508,'2017-10-10',119,20947,5000),(4510,'2017-10-10',121,8820,3000),(4511,'2017-10-10',122,19845,9000),(4512,'2017-10-10',123,17640,11000),(4513,'2017-10-10',124,13230,8000),(4514,'2017-10-10',125,15435,7000),(4515,'2017-10-10',126,9922,3000),(4516,'2017-10-10',127,15435,6000),(4518,'2017-10-10',129,13230,1000),(4519,'2017-10-10',130,8820,8000),(4521,'2017-10-10',132,9922,5000),(4522,'2017-10-10',133,5512,2000),(4524,'2017-11-10',2,18742,2000),(4525,'2017-11-10',3,8820,4000),(4526,'2017-11-10',4,15435,5000),(4528,'2017-11-10',6,15435,8000),(4529,'2017-11-10',7,20947,6000),(4531,'2017-11-10',9,12127,3000),(4533,'2017-11-10',11,15435,11000),(4534,'2017-11-10',12,14332,4000),(4535,'2017-11-10',13,16537,3000),(4536,'2017-11-10',14,11025,6000),(4539,'2017-11-10',17,17640,7000),(4540,'2017-11-10',18,6615,9000),(4543,'2017-11-10',21,16537,1000),(4544,'2017-11-10',22,13230,11000),(4547,'2017-11-10',25,20947,3000),(4548,'2017-11-10',26,7717,3000),(4549,'2017-11-10',27,22050,5000),(4550,'2017-11-10',28,15435,6000),(4551,'2017-11-10',29,20947,2000),(4552,'2017-11-10',30,6615,9000),(4554,'2017-11-10',32,16537,6000),(4555,'2017-11-10',33,20947,1000),(4556,'2017-11-10',34,20947,4000),(4559,'2017-11-10',37,22050,5000),(4560,'2017-11-10',38,20947,8000),(4561,'2017-11-10',39,13230,6000),(4562,'2017-11-10',40,18742,9000),(4563,'2017-11-10',41,8820,3000),(4565,'2017-11-10',43,12127,8000),(4566,'2017-11-10',44,12127,9000),(4567,'2017-11-10',45,13230,6000),(4568,'2017-11-10',46,14332,2000),(4569,'2017-11-10',47,12127,6000),(4570,'2017-11-10',48,23152,9000),(4571,'2017-11-10',49,14332,1000),(4572,'2017-11-10',50,9922,8000),(4573,'2017-11-10',51,5512,2000),(4574,'2017-11-10',52,17640,1000),(4576,'2017-11-10',54,19845,5000),(4577,'2017-11-10',55,5512,3000),(4578,'2017-11-10',56,20947,2000),(4579,'2017-11-10',57,20947,4000),(4580,'2017-11-10',58,12127,2000),(4581,'2017-11-10',59,9922,1000),(4582,'2017-11-10',60,12127,6000),(4583,'2017-11-10',61,22050,8000),(4584,'2017-11-10',62,14332,3000),(4585,'2017-11-10',63,14332,4000),(4586,'2017-11-10',64,5512,5000),(4587,'2017-11-10',65,13230,10000),(4588,'2017-11-10',66,17640,10000),(4589,'2017-11-10',67,8820,4000),(4590,'2017-11-10',68,23152,11000),(4592,'2017-11-10',70,11025,5000),(4594,'2017-11-10',72,12127,11000),(4595,'2017-11-10',73,15435,10000),(4596,'2017-11-10',74,11025,5000),(4598,'2017-11-10',76,18742,6000),(4599,'2017-11-10',77,7717,8000),(4600,'2017-11-10',78,9922,6000),(4601,'2017-11-10',79,14332,4000),(4603,'2017-11-10',81,15435,5000),(4604,'2017-11-10',82,7717,6000),(4605,'2017-11-10',83,8820,7000),(4606,'2017-11-10',84,9922,4000),(4607,'2017-11-10',85,14332,3000),(4608,'2017-11-10',86,22050,6000),(4609,'2017-11-10',87,6615,1000),(4610,'2017-11-10',88,18742,2000),(4611,'2017-11-10',89,6615,3000),(4612,'2017-11-10',90,5512,10000),(4613,'2017-11-10',91,18742,7000),(4614,'2017-11-10',92,17640,3000),(4615,'2017-11-10',93,7717,11000),(4616,'2017-11-10',94,13230,11000),(4617,'2017-11-10',95,17640,9000),(4618,'2017-11-10',96,13230,8000),(4619,'2017-11-10',97,6615,5000),(4620,'2017-11-10',98,17640,7000),(4621,'2017-11-10',99,14332,11000),(4622,'2017-11-10',100,13230,7000),(4623,'2017-11-10',101,6615,2000),(4624,'2017-11-10',102,20947,9000),(4627,'2017-11-10',105,19845,5000),(4628,'2017-11-10',106,20947,8000),(4629,'2017-11-10',107,16537,4000),(4630,'2017-11-10',108,16537,5000),(4631,'2017-11-10',109,7717,6000),(4632,'2017-11-10',110,16537,2000),(4633,'2017-11-10',111,5512,1000),(4634,'2017-11-10',112,22050,5000),(4635,'2017-11-10',113,9922,4000),(4636,'2017-11-10',114,5512,2000),(4637,'2017-11-10',115,12127,4000),(4638,'2017-11-10',116,8820,4000),(4639,'2017-11-10',117,23152,7000),(4640,'2017-11-10',118,20947,7000),(4641,'2017-11-10',119,20947,5000),(4643,'2017-11-10',121,8820,5000),(4644,'2017-11-10',122,19845,4000),(4645,'2017-11-10',123,17640,1000),(4646,'2017-11-10',124,13230,11000),(4647,'2017-11-10',125,15435,4000),(4648,'2017-11-10',126,9922,1000),(4649,'2017-11-10',127,15435,4000),(4651,'2017-11-10',129,13230,4000),(4652,'2017-11-10',130,8820,7000),(4654,'2017-11-10',132,9922,6000),(4655,'2017-11-10',133,5512,5000),(4657,'2017-12-10',2,19679,6000),(4658,'2017-12-10',3,9261,11000),(4659,'2017-12-10',4,16206,2000),(4661,'2017-12-10',6,16206,11000),(4662,'2017-12-10',7,21994,11000),(4664,'2017-12-10',9,12733,8000),(4666,'2017-12-10',11,16206,7000),(4667,'2017-12-10',12,15048,11000),(4668,'2017-12-10',13,17363,2000),(4669,'2017-12-10',14,11576,9000),(4672,'2017-12-10',17,18522,3000),(4673,'2017-12-10',18,6945,6000),(4676,'2017-12-10',21,17363,10000),(4677,'2017-12-10',22,13891,6000),(4680,'2017-12-10',25,21994,11000),(4681,'2017-12-10',26,8102,11000),(4682,'2017-12-10',27,23152,5000),(4683,'2017-12-10',28,16206,1000),(4684,'2017-12-10',29,21994,3000),(4685,'2017-12-10',30,6945,5000),(4687,'2017-12-10',32,17363,1000),(4688,'2017-12-10',33,21994,4000),(4689,'2017-12-10',34,21994,11000),(4692,'2017-12-10',37,23152,10000),(4693,'2017-12-10',38,21994,6000),(4694,'2017-12-10',39,13891,3000),(4695,'2017-12-10',40,19679,5000),(4696,'2017-12-10',41,9261,11000),(4698,'2017-12-10',43,12733,10000),(4699,'2017-12-10',44,12733,4000),(4700,'2017-12-10',45,13891,6000),(4701,'2017-12-10',46,15048,9000),(4702,'2017-12-10',47,12733,11000),(4703,'2017-12-10',48,24309,4000),(4704,'2017-12-10',49,15048,9000),(4705,'2017-12-10',50,10418,7000),(4706,'2017-12-10',51,5787,8000),(4707,'2017-12-10',52,18522,9000),(4709,'2017-12-10',54,20837,10000),(4710,'2017-12-10',55,5787,8000),(4711,'2017-12-10',56,21994,10000),(4712,'2017-12-10',57,21994,1000),(4713,'2017-12-10',58,12733,1000),(4714,'2017-12-10',59,10418,11000),(4715,'2017-12-10',60,12733,9000),(4716,'2017-12-10',61,23152,8000),(4717,'2017-12-10',62,15048,6000),(4718,'2017-12-10',63,15048,3000),(4719,'2017-12-10',64,5787,11000),(4720,'2017-12-10',65,13891,10000),(4721,'2017-12-10',66,18522,4000),(4722,'2017-12-10',67,9261,9000),(4723,'2017-12-10',68,24309,10000),(4724,'2017-12-10',69,12733,9000),(4725,'2017-12-10',70,11576,7000),(4727,'2017-12-10',72,12733,1000),(4728,'2017-12-10',73,16206,4000),(4729,'2017-12-10',74,11576,2000),(4731,'2017-12-10',76,19679,5000),(4732,'2017-12-10',77,8102,7000),(4733,'2017-12-10',78,10418,1000),(4734,'2017-12-10',79,15048,6000),(4736,'2017-12-10',81,16206,10000),(4737,'2017-12-10',82,8102,6000),(4738,'2017-12-10',83,9261,3000),(4739,'2017-12-10',84,10418,3000),(4740,'2017-12-10',85,15048,2000),(4741,'2017-12-10',86,23152,6000),(4742,'2017-12-10',87,6945,3000),(4743,'2017-12-10',88,19679,11000),(4744,'2017-12-10',89,6945,5000),(4745,'2017-12-10',90,5787,6000),(4746,'2017-12-10',91,19679,3000),(4747,'2017-12-10',92,18522,8000),(4748,'2017-12-10',93,8102,5000),(4749,'2017-12-10',94,13891,8000),(4750,'2017-12-10',95,18522,4000),(4751,'2017-12-10',96,13891,8000),(4752,'2017-12-10',97,6945,5000),(4753,'2017-12-10',98,18522,9000),(4754,'2017-12-10',99,15048,2000),(4755,'2017-12-10',100,13891,7000),(4756,'2017-12-10',101,6945,9000),(4757,'2017-12-10',102,21994,6000),(4760,'2017-12-10',105,20837,1000),(4761,'2017-12-10',106,21994,2000),(4762,'2017-12-10',107,17363,5000),(4763,'2017-12-10',108,17363,4000),(4764,'2017-12-10',109,8102,1000),(4765,'2017-12-10',110,17363,3000),(4766,'2017-12-10',111,5787,7000),(4767,'2017-12-10',112,23152,8000),(4768,'2017-12-10',113,10418,8000),(4769,'2017-12-10',114,5787,6000),(4770,'2017-12-10',115,12733,5000),(4771,'2017-12-10',116,9261,8000),(4772,'2017-12-10',117,24309,11000),(4773,'2017-12-10',118,21994,3000),(4774,'2017-12-10',119,21994,5000),(4776,'2017-12-10',121,9261,2000),(4777,'2017-12-10',122,20837,6000),(4778,'2017-12-10',123,18522,2000),(4779,'2017-12-10',124,13891,5000),(4780,'2017-12-10',125,16206,9000),(4781,'2017-12-10',126,10418,5000),(4782,'2017-12-10',127,16206,1000),(4784,'2017-12-10',129,13891,11000),(4785,'2017-12-10',130,9261,11000),(4787,'2017-12-10',132,10418,7000),(4788,'2017-12-10',133,5787,3000),(4790,'2018-01-10',2,19679,6000),(4791,'2018-01-10',3,9261,1000),(4792,'2018-01-10',4,16206,10000),(4794,'2018-01-10',6,16206,4000),(4795,'2018-01-10',7,21994,8000),(4797,'2018-01-10',9,12733,2000),(4799,'2018-01-10',11,16206,2000),(4800,'2018-01-10',12,15048,2000),(4801,'2018-01-10',13,17363,8000),(4802,'2018-01-10',14,11576,5000),(4805,'2018-01-10',17,18522,9000),(4806,'2018-01-10',18,6945,5000),(4808,'2018-01-10',20,18522,2000),(4809,'2018-01-10',21,17363,8000),(4810,'2018-01-10',22,13891,4000),(4813,'2018-01-10',25,21994,5000),(4814,'2018-01-10',26,8102,10000),(4815,'2018-01-10',27,23152,1000),(4816,'2018-01-10',28,16206,4000),(4817,'2018-01-10',29,21994,6000),(4818,'2018-01-10',30,6945,1000),(4819,'2018-01-10',31,24309,2000),(4820,'2018-01-10',32,17363,4000),(4821,'2018-01-10',33,21994,4000),(4822,'2018-01-10',34,21994,2000),(4825,'2018-01-10',37,23152,11000),(4826,'2018-01-10',38,21994,8000),(4827,'2018-01-10',39,13891,3000),(4828,'2018-01-10',40,19679,3000),(4829,'2018-01-10',41,9261,3000),(4831,'2018-01-10',43,12733,8000),(4832,'2018-01-10',44,12733,4000),(4833,'2018-01-10',45,13891,10000),(4834,'2018-01-10',46,15048,4000),(4835,'2018-01-10',47,12733,10000),(4836,'2018-01-10',48,24309,6000),(4837,'2018-01-10',49,15048,7000),(4838,'2018-01-10',50,10418,8000),(4839,'2018-01-10',51,5787,6000),(4840,'2018-01-10',52,18522,8000),(4842,'2018-01-10',54,20837,11000),(4843,'2018-01-10',55,5787,4000),(4844,'2018-01-10',56,21994,7000),(4845,'2018-01-10',57,21994,6000),(4846,'2018-01-10',58,12733,10000),(4847,'2018-01-10',59,10418,1000),(4848,'2018-01-10',60,12733,5000),(4849,'2018-01-10',61,23152,10000),(4850,'2018-01-10',62,15048,6000),(4851,'2018-01-10',63,15048,2000),(4852,'2018-01-10',64,5787,6000),(4853,'2018-01-10',65,13891,8000),(4854,'2018-01-10',66,18522,9000),(4855,'2018-01-10',67,9261,10000),(4856,'2018-01-10',68,24309,6000),(4857,'2018-01-10',69,12733,1000),(4858,'2018-01-10',70,11576,4000),(4860,'2018-01-10',72,12733,1000),(4861,'2018-01-10',73,16206,7000),(4862,'2018-01-10',74,11576,8000),(4864,'2018-01-10',76,19679,1000),(4865,'2018-01-10',77,8102,6000),(4866,'2018-01-10',78,10418,8000),(4867,'2018-01-10',79,15048,10000),(4869,'2018-01-10',81,16206,9000),(4870,'2018-01-10',82,8102,9000),(4871,'2018-01-10',83,9261,7000),(4872,'2018-01-10',84,10418,8000),(4873,'2018-01-10',85,15048,7000),(4874,'2018-01-10',86,23152,5000),(4875,'2018-01-10',87,6945,4000),(4876,'2018-01-10',88,19679,3000),(4877,'2018-01-10',89,6945,5000),(4878,'2018-01-10',90,5787,8000),(4879,'2018-01-10',91,19679,2000),(4880,'2018-01-10',92,18522,2000),(4881,'2018-01-10',93,8102,3000),(4882,'2018-01-10',94,13891,3000),(4883,'2018-01-10',95,18522,11000),(4884,'2018-01-10',96,13891,2000),(4885,'2018-01-10',97,6945,10000),(4886,'2018-01-10',98,18522,9000),(4887,'2018-01-10',99,15048,9000),(4888,'2018-01-10',100,13891,4000),(4889,'2018-01-10',101,6945,7000),(4890,'2018-01-10',102,21994,6000),(4893,'2018-01-10',105,20837,9000),(4894,'2018-01-10',106,21994,11000),(4895,'2018-01-10',107,17363,4000),(4896,'2018-01-10',108,17363,1000),(4897,'2018-01-10',109,8102,6000),(4898,'2018-01-10',110,17363,4000),(4899,'2018-01-10',111,5787,3000),(4900,'2018-01-10',112,23152,3000),(4901,'2018-01-10',113,10418,2000),(4902,'2018-01-10',114,5787,5000),(4903,'2018-01-10',115,12733,7000),(4904,'2018-01-10',116,9261,9000),(4905,'2018-01-10',117,24309,9000),(4906,'2018-01-10',118,21994,6000),(4907,'2018-01-10',119,21994,5000),(4909,'2018-01-10',121,9261,2000),(4910,'2018-01-10',122,20837,9000),(4911,'2018-01-10',123,18522,3000),(4912,'2018-01-10',124,13891,11000),(4913,'2018-01-10',125,16206,7000),(4914,'2018-01-10',126,10418,9000),(4915,'2018-01-10',127,16206,3000),(4917,'2018-01-10',129,13891,10000),(4918,'2018-01-10',130,9261,9000),(4920,'2018-01-10',132,10418,8000),(4921,'2018-01-10',133,5787,2000),(4923,'2018-02-10',2,19679,6000),(4924,'2018-02-10',3,9261,5000),(4925,'2018-02-10',4,16206,3000),(4926,'2018-02-10',5,16206,4000),(4927,'2018-02-10',6,16206,8000),(4928,'2018-02-10',7,21994,4000),(4930,'2018-02-10',9,12733,6000),(4932,'2018-02-10',11,16206,3000),(4933,'2018-02-10',12,15048,8000),(4934,'2018-02-10',13,17363,1000),(4935,'2018-02-10',14,11576,6000),(4938,'2018-02-10',17,18522,10000),(4939,'2018-02-10',18,6945,7000),(4941,'2018-02-10',20,18522,1000),(4942,'2018-02-10',21,17363,8000),(4943,'2018-02-10',22,13891,8000),(4946,'2018-02-10',25,21994,11000),(4947,'2018-02-10',26,8102,2000),(4948,'2018-02-10',27,23152,7000),(4949,'2018-02-10',28,16206,6000),(4950,'2018-02-10',29,21994,1000),(4951,'2018-02-10',30,6945,10000),(4952,'2018-02-10',31,24309,9000),(4953,'2018-02-10',32,17363,8000),(4954,'2018-02-10',33,21994,3000),(4955,'2018-02-10',34,21994,9000),(4958,'2018-02-10',37,23152,8000),(4959,'2018-02-10',38,21994,3000),(4960,'2018-02-10',39,13891,11000),(4961,'2018-02-10',40,19679,8000),(4962,'2018-02-10',41,9261,3000),(4964,'2018-02-10',43,12733,1000),(4965,'2018-02-10',44,12733,10000),(4966,'2018-02-10',45,13891,4000),(4967,'2018-02-10',46,15048,9000),(4968,'2018-02-10',47,12733,7000),(4969,'2018-02-10',48,24309,6000),(4970,'2018-02-10',49,15048,5000),(4971,'2018-02-10',50,10418,5000),(4972,'2018-02-10',51,5787,7000),(4973,'2018-02-10',52,18522,1000),(4975,'2018-02-10',54,20837,2000),(4976,'2018-02-10',55,5787,8000),(4977,'2018-02-10',56,21994,10000),(4978,'2018-02-10',57,21994,10000),(4979,'2018-02-10',58,12733,7000),(4980,'2018-02-10',59,10418,7000),(4981,'2018-02-10',60,12733,6000),(4982,'2018-02-10',61,23152,10000),(4983,'2018-02-10',62,15048,1000),(4984,'2018-02-10',63,15048,9000),(4985,'2018-02-10',64,5787,10000),(4986,'2018-02-10',65,13891,1000),(4987,'2018-02-10',66,18522,9000),(4988,'2018-02-10',67,9261,7000),(4989,'2018-02-10',68,24309,3000),(4990,'2018-02-10',69,12733,2000),(4991,'2018-02-10',70,11576,10000),(4993,'2018-02-10',72,12733,8000),(4994,'2018-02-10',73,16206,3000),(4995,'2018-02-10',74,11576,7000),(4997,'2018-02-10',76,19679,2000),(4998,'2018-02-10',77,8102,11000),(4999,'2018-02-10',78,10418,7000),(5000,'2018-02-10',79,15048,9000),(5002,'2018-02-10',81,16206,11000),(5003,'2018-02-10',82,8102,10000),(5004,'2018-02-10',83,9261,6000),(5005,'2018-02-10',84,10418,3000),(5006,'2018-02-10',85,15048,10000),(5007,'2018-02-10',86,23152,1000),(5008,'2018-02-10',87,6945,4000),(5009,'2018-02-10',88,19679,11000),(5010,'2018-02-10',89,6945,6000),(5011,'2018-02-10',90,5787,9000),(5012,'2018-02-10',91,19679,4000),(5013,'2018-02-10',92,18522,3000),(5014,'2018-02-10',93,8102,4000),(5015,'2018-02-10',94,13891,11000),(5016,'2018-02-10',95,18522,3000),(5017,'2018-02-10',96,13891,6000),(5018,'2018-02-10',97,6945,9000),(5019,'2018-02-10',98,18522,3000),(5020,'2018-02-10',99,15048,2000),(5021,'2018-02-10',100,13891,7000),(5022,'2018-02-10',101,6945,4000),(5023,'2018-02-10',102,21994,9000),(5026,'2018-02-10',105,20837,9000),(5027,'2018-02-10',106,21994,3000),(5028,'2018-02-10',107,17363,5000),(5029,'2018-02-10',108,17363,2000),(5030,'2018-02-10',109,8102,2000),(5031,'2018-02-10',110,17363,10000),(5032,'2018-02-10',111,5787,10000),(5033,'2018-02-10',112,23152,10000),(5034,'2018-02-10',113,10418,2000),(5035,'2018-02-10',114,5787,2000),(5036,'2018-02-10',115,12733,11000),(5037,'2018-02-10',116,9261,3000),(5038,'2018-02-10',117,24309,7000),(5039,'2018-02-10',118,21994,2000),(5040,'2018-02-10',119,21994,1000),(5042,'2018-02-10',121,9261,8000),(5043,'2018-02-10',122,20837,11000),(5044,'2018-02-10',123,18522,8000),(5045,'2018-02-10',124,13891,9000),(5046,'2018-02-10',125,16206,10000),(5047,'2018-02-10',126,10418,5000),(5048,'2018-02-10',127,16206,3000),(5050,'2018-02-10',129,13891,3000),(5051,'2018-02-10',130,9261,11000),(5053,'2018-02-10',132,10418,5000),(5054,'2018-02-10',133,5787,10000),(5056,'2018-03-10',2,19679,1000),(5057,'2018-03-10',3,9261,6000),(5058,'2018-03-10',4,16206,11000),(5059,'2018-03-10',5,16206,7000),(5060,'2018-03-10',6,16206,1000),(5061,'2018-03-10',7,21994,1000),(5063,'2018-03-10',9,12733,4000),(5065,'2018-03-10',11,16206,2000),(5066,'2018-03-10',12,15048,1000),(5067,'2018-03-10',13,17363,5000),(5068,'2018-03-10',14,11576,10000),(5071,'2018-03-10',17,18522,11000),(5072,'2018-03-10',18,6945,2000),(5074,'2018-03-10',20,18522,4000),(5075,'2018-03-10',21,17363,1000),(5076,'2018-03-10',22,13891,3000),(5079,'2018-03-10',25,21994,11000),(5080,'2018-03-10',26,8102,1000),(5081,'2018-03-10',27,23152,6000),(5082,'2018-03-10',28,16206,5000),(5083,'2018-03-10',29,21994,3000),(5084,'2018-03-10',30,6945,9000),(5085,'2018-03-10',31,24309,2000),(5086,'2018-03-10',32,17363,3000),(5087,'2018-03-10',33,21994,7000),(5088,'2018-03-10',34,21994,9000),(5091,'2018-03-10',37,23152,2000),(5092,'2018-03-10',38,21994,3000),(5093,'2018-03-10',39,13891,10000),(5094,'2018-03-10',40,19679,1000),(5095,'2018-03-10',41,9261,11000),(5097,'2018-03-10',43,12733,11000),(5098,'2018-03-10',44,12733,3000),(5099,'2018-03-10',45,13891,8000),(5100,'2018-03-10',46,15048,9000),(5101,'2018-03-10',47,12733,10000),(5102,'2018-03-10',48,24309,10000),(5103,'2018-03-10',49,15048,2000),(5104,'2018-03-10',50,10418,9000),(5105,'2018-03-10',51,5787,6000),(5106,'2018-03-10',52,18522,6000),(5108,'2018-03-10',54,20837,11000),(5109,'2018-03-10',55,5787,3000),(5110,'2018-03-10',56,21994,1000),(5111,'2018-03-10',57,21994,2000),(5112,'2018-03-10',58,12733,9000),(5113,'2018-03-10',59,10418,4000),(5114,'2018-03-10',60,12733,6000),(5115,'2018-03-10',61,23152,3000),(5116,'2018-03-10',62,15048,5000),(5117,'2018-03-10',63,15048,11000),(5118,'2018-03-10',64,5787,11000),(5119,'2018-03-10',65,13891,10000),(5120,'2018-03-10',66,18522,4000),(5121,'2018-03-10',67,9261,9000),(5122,'2018-03-10',68,24309,11000),(5123,'2018-03-10',69,12733,3000),(5124,'2018-03-10',70,11576,2000),(5126,'2018-03-10',72,12733,7000),(5127,'2018-03-10',73,16206,5000),(5128,'2018-03-10',74,11576,5000),(5130,'2018-03-10',76,19679,5000),(5131,'2018-03-10',77,8102,7000),(5132,'2018-03-10',78,10418,11000),(5133,'2018-03-10',79,15048,5000),(5135,'2018-03-10',81,16206,2000),(5136,'2018-03-10',82,8102,1000),(5137,'2018-03-10',83,9261,9000),(5138,'2018-03-10',84,10418,2000),(5139,'2018-03-10',85,15048,4000),(5140,'2018-03-10',86,23152,10000),(5141,'2018-03-10',87,6945,2000),(5142,'2018-03-10',88,19679,5000),(5143,'2018-03-10',89,6945,8000),(5144,'2018-03-10',90,5787,3000),(5145,'2018-03-10',91,19679,9000),(5146,'2018-03-10',92,18522,4000),(5147,'2018-03-10',93,8102,3000),(5148,'2018-03-10',94,13891,4000),(5149,'2018-03-10',95,18522,3000),(5150,'2018-03-10',96,13891,8000),(5151,'2018-03-10',97,6945,10000),(5152,'2018-03-10',98,18522,10000),(5153,'2018-03-10',99,15048,4000),(5154,'2018-03-10',100,13891,7000),(5155,'2018-03-10',101,6945,8000),(5156,'2018-03-10',102,21994,1000),(5159,'2018-03-10',105,20837,4000),(5160,'2018-03-10',106,21994,5000),(5161,'2018-03-10',107,17363,2000),(5162,'2018-03-10',108,17363,10000),(5163,'2018-03-10',109,8102,8000),(5164,'2018-03-10',110,17363,3000),(5165,'2018-03-10',111,5787,7000),(5166,'2018-03-10',112,23152,1000),(5167,'2018-03-10',113,10418,8000),(5168,'2018-03-10',114,5787,3000),(5169,'2018-03-10',115,12733,3000),(5170,'2018-03-10',116,9261,6000),(5171,'2018-03-10',117,24309,4000),(5172,'2018-03-10',118,21994,8000),(5173,'2018-03-10',119,21994,2000),(5175,'2018-03-10',121,9261,2000),(5176,'2018-03-10',122,20837,2000),(5177,'2018-03-10',123,18522,2000),(5178,'2018-03-10',124,13891,5000),(5179,'2018-03-10',125,16206,4000),(5180,'2018-03-10',126,10418,4000),(5181,'2018-03-10',127,16206,8000),(5183,'2018-03-10',129,13891,8000),(5184,'2018-03-10',130,9261,8000),(5186,'2018-03-10',132,10418,4000),(5187,'2018-03-10',133,5787,5000),(5189,'2018-04-10',2,19679,11000),(5190,'2018-04-10',3,9261,11000),(5191,'2018-04-10',4,16206,3000),(5192,'2018-04-10',5,16206,9000),(5193,'2018-04-10',6,16206,11000),(5194,'2018-04-10',7,21994,1000),(5196,'2018-04-10',9,12733,6000),(5198,'2018-04-10',11,16206,3000),(5199,'2018-04-10',12,15048,1000),(5200,'2018-04-10',13,17363,6000),(5201,'2018-04-10',14,11576,10000),(5202,'2018-04-10',15,10418,3000),(5204,'2018-04-10',17,18522,9000),(5205,'2018-04-10',18,6945,9000),(5207,'2018-04-10',20,18522,11000),(5208,'2018-04-10',21,17363,4000),(5209,'2018-04-10',22,13891,9000),(5212,'2018-04-10',25,21994,7000),(5213,'2018-04-10',26,8102,1000),(5214,'2018-04-10',27,23152,8000),(5215,'2018-04-10',28,16206,6000),(5216,'2018-04-10',29,21994,4000),(5217,'2018-04-10',30,6945,10000),(5218,'2018-04-10',31,24309,6000),(5219,'2018-04-10',32,17363,7000),(5220,'2018-04-10',33,21994,8000),(5221,'2018-04-10',34,21994,8000),(5224,'2018-04-10',37,23152,6000),(5225,'2018-04-10',38,21994,9000),(5226,'2018-04-10',39,13891,9000),(5227,'2018-04-10',40,19679,4000),(5228,'2018-04-10',41,9261,11000),(5230,'2018-04-10',43,12733,5000),(5231,'2018-04-10',44,12733,1000),(5232,'2018-04-10',45,13891,5000),(5233,'2018-04-10',46,15048,7000),(5234,'2018-04-10',47,12733,1000),(5235,'2018-04-10',48,24309,6000),(5236,'2018-04-10',49,15048,1000),(5237,'2018-04-10',50,10418,10000),(5238,'2018-04-10',51,5787,3000),(5239,'2018-04-10',52,18522,5000),(5241,'2018-04-10',54,20837,4000),(5242,'2018-04-10',55,5787,1000),(5243,'2018-04-10',56,21994,1000),(5244,'2018-04-10',57,21994,10000),(5245,'2018-04-10',58,12733,10000),(5246,'2018-04-10',59,10418,10000),(5247,'2018-04-10',60,12733,11000),(5248,'2018-04-10',61,23152,8000),(5249,'2018-04-10',62,15048,7000),(5250,'2018-04-10',63,15048,4000),(5251,'2018-04-10',64,5787,3000),(5252,'2018-04-10',65,13891,9000),(5253,'2018-04-10',66,18522,5000),(5254,'2018-04-10',67,9261,8000),(5255,'2018-04-10',68,24309,6000),(5256,'2018-04-10',69,12733,11000),(5257,'2018-04-10',70,11576,6000),(5259,'2018-04-10',72,12733,10000),(5260,'2018-04-10',73,16206,8000),(5261,'2018-04-10',74,11576,2000),(5263,'2018-04-10',76,19679,7000),(5264,'2018-04-10',77,8102,9000),(5265,'2018-04-10',78,10418,1000),(5266,'2018-04-10',79,15048,2000),(5268,'2018-04-10',81,16206,4000),(5269,'2018-04-10',82,8102,4000),(5270,'2018-04-10',83,9261,3000),(5271,'2018-04-10',84,10418,9000),(5272,'2018-04-10',85,15048,10000),(5273,'2018-04-10',86,23152,2000),(5274,'2018-04-10',87,6945,5000),(5275,'2018-04-10',88,19679,8000),(5276,'2018-04-10',89,6945,11000),(5277,'2018-04-10',90,5787,10000),(5278,'2018-04-10',91,19679,8000),(5279,'2018-04-10',92,18522,2000),(5280,'2018-04-10',93,8102,6000),(5281,'2018-04-10',94,13891,3000),(5282,'2018-04-10',95,18522,3000),(5283,'2018-04-10',96,13891,9000),(5284,'2018-04-10',97,6945,1000),(5285,'2018-04-10',98,18522,9000),(5286,'2018-04-10',99,15048,4000),(5287,'2018-04-10',100,13891,4000),(5288,'2018-04-10',101,6945,7000),(5289,'2018-04-10',102,21994,2000),(5292,'2018-04-10',105,20837,9000),(5293,'2018-04-10',106,21994,6000),(5294,'2018-04-10',107,17363,4000),(5295,'2018-04-10',108,17363,8000),(5296,'2018-04-10',109,8102,8000),(5297,'2018-04-10',110,17363,3000),(5298,'2018-04-10',111,5787,7000),(5299,'2018-04-10',112,23152,2000),(5300,'2018-04-10',113,10418,1000),(5301,'2018-04-10',114,5787,2000),(5302,'2018-04-10',115,12733,9000),(5303,'2018-04-10',116,9261,8000),(5304,'2018-04-10',117,24309,9000),(5305,'2018-04-10',118,21994,4000),(5306,'2018-04-10',119,21994,2000),(5307,'2018-04-10',120,10418,2000),(5308,'2018-04-10',121,9261,8000),(5309,'2018-04-10',122,20837,7000),(5310,'2018-04-10',123,18522,9000),(5311,'2018-04-10',124,13891,9000),(5312,'2018-04-10',125,16206,2000),(5313,'2018-04-10',126,10418,11000),(5314,'2018-04-10',127,16206,5000),(5316,'2018-04-10',129,13891,8000),(5317,'2018-04-10',130,9261,1000),(5319,'2018-04-10',132,10418,7000),(5320,'2018-04-10',133,5787,2000),(5322,'2018-05-10',2,19679,8000),(5323,'2018-05-10',3,9261,11000),(5324,'2018-05-10',4,16206,5000),(5325,'2018-05-10',5,16206,6000),(5326,'2018-05-10',6,16206,2000),(5327,'2018-05-10',7,21994,9000),(5329,'2018-05-10',9,12733,2000),(5331,'2018-05-10',11,16206,2000),(5332,'2018-05-10',12,15048,1000),(5333,'2018-05-10',13,17363,10000),(5334,'2018-05-10',14,11576,4000),(5335,'2018-05-10',15,10418,3000),(5337,'2018-05-10',17,18522,4000),(5338,'2018-05-10',18,6945,6000),(5340,'2018-05-10',20,18522,5000),(5341,'2018-05-10',21,17363,1000),(5342,'2018-05-10',22,13891,5000),(5345,'2018-05-10',25,21994,6000),(5346,'2018-05-10',26,8102,4000),(5347,'2018-05-10',27,23152,9000),(5348,'2018-05-10',28,16206,3000),(5349,'2018-05-10',29,21994,1000),(5350,'2018-05-10',30,6945,11000),(5351,'2018-05-10',31,24309,2000),(5352,'2018-05-10',32,17363,1000),(5353,'2018-05-10',33,21994,7000),(5354,'2018-05-10',34,21994,6000),(5357,'2018-05-10',37,23152,1000),(5358,'2018-05-10',38,21994,2000),(5359,'2018-05-10',39,13891,3000),(5360,'2018-05-10',40,19679,3000),(5361,'2018-05-10',41,9261,1000),(5363,'2018-05-10',43,12733,3000),(5364,'2018-05-10',44,12733,10000),(5365,'2018-05-10',45,13891,11000),(5366,'2018-05-10',46,15048,3000),(5367,'2018-05-10',47,12733,2000),(5368,'2018-05-10',48,24309,2000),(5369,'2018-05-10',49,15048,2000),(5370,'2018-05-10',50,10418,6000),(5371,'2018-05-10',51,5787,1000),(5372,'2018-05-10',52,18522,11000),(5373,'2018-05-10',53,24309,10000),(5374,'2018-05-10',54,20837,11000),(5375,'2018-05-10',55,5787,11000),(5376,'2018-05-10',56,21994,6000),(5377,'2018-05-10',57,21994,3000),(5378,'2018-05-10',58,12733,7000),(5379,'2018-05-10',59,10418,7000),(5380,'2018-05-10',60,12733,3000),(5381,'2018-05-10',61,23152,3000),(5382,'2018-05-10',62,15048,4000),(5383,'2018-05-10',63,15048,4000),(5384,'2018-05-10',64,5787,11000),(5385,'2018-05-10',65,13891,8000),(5386,'2018-05-10',66,18522,3000),(5387,'2018-05-10',67,9261,10000),(5388,'2018-05-10',68,24309,3000),(5389,'2018-05-10',69,12733,2000),(5390,'2018-05-10',70,11576,4000),(5392,'2018-05-10',72,12733,3000),(5393,'2018-05-10',73,16206,10000),(5394,'2018-05-10',74,11576,1000),(5396,'2018-05-10',76,19679,3000),(5397,'2018-05-10',77,8102,9000),(5398,'2018-05-10',78,10418,7000),(5399,'2018-05-10',79,15048,8000),(5401,'2018-05-10',81,16206,6000),(5402,'2018-05-10',82,8102,8000),(5403,'2018-05-10',83,9261,6000),(5404,'2018-05-10',84,10418,5000),(5405,'2018-05-10',85,15048,2000),(5406,'2018-05-10',86,23152,9000),(5407,'2018-05-10',87,6945,9000),(5408,'2018-05-10',88,19679,6000),(5409,'2018-05-10',89,6945,7000),(5410,'2018-05-10',90,5787,11000),(5411,'2018-05-10',91,19679,5000),(5412,'2018-05-10',92,18522,2000),(5413,'2018-05-10',93,8102,11000),(5414,'2018-05-10',94,13891,6000),(5415,'2018-05-10',95,18522,6000),(5416,'2018-05-10',96,13891,4000),(5417,'2018-05-10',97,6945,9000),(5418,'2018-05-10',98,18522,2000),(5419,'2018-05-10',99,15048,7000),(5420,'2018-05-10',100,13891,5000),(5421,'2018-05-10',101,6945,11000),(5422,'2018-05-10',102,21994,2000),(5425,'2018-05-10',105,20837,2000),(5426,'2018-05-10',106,21994,2000),(5427,'2018-05-10',107,17363,9000),(5428,'2018-05-10',108,17363,1000),(5429,'2018-05-10',109,8102,11000),(5430,'2018-05-10',110,17363,11000),(5431,'2018-05-10',111,5787,3000),(5432,'2018-05-10',112,23152,5000),(5433,'2018-05-10',113,10418,5000),(5434,'2018-05-10',114,5787,7000),(5435,'2018-05-10',115,12733,4000),(5436,'2018-05-10',116,9261,4000),(5437,'2018-05-10',117,24309,2000),(5438,'2018-05-10',118,21994,3000),(5439,'2018-05-10',119,21994,10000),(5440,'2018-05-10',120,10418,5000),(5441,'2018-05-10',121,9261,11000),(5442,'2018-05-10',122,20837,9000),(5443,'2018-05-10',123,18522,10000),(5444,'2018-05-10',124,13891,6000),(5445,'2018-05-10',125,16206,8000),(5446,'2018-05-10',126,10418,9000),(5447,'2018-05-10',127,16206,9000),(5449,'2018-05-10',129,13891,9000),(5450,'2018-05-10',130,9261,7000),(5452,'2018-05-10',132,10418,9000),(5453,'2018-05-10',133,5787,9000),(5455,'2018-06-10',2,19679,9000),(5456,'2018-06-10',3,9261,1000),(5457,'2018-06-10',4,16206,9000),(5458,'2018-06-10',5,16206,7000),(5459,'2018-06-10',6,16206,10000),(5460,'2018-06-10',7,21994,1000),(5462,'2018-06-10',9,12733,1000),(5464,'2018-06-10',11,16206,3000),(5465,'2018-06-10',12,15048,5000),(5466,'2018-06-10',13,17363,1000),(5467,'2018-06-10',14,11576,10000),(5468,'2018-06-10',15,10418,5000),(5470,'2018-06-10',17,18522,11000),(5471,'2018-06-10',18,6945,1000),(5473,'2018-06-10',20,18522,1000),(5474,'2018-06-10',21,17363,3000),(5475,'2018-06-10',22,13891,8000),(5478,'2018-06-10',25,21994,5000),(5479,'2018-06-10',26,8102,10000),(5480,'2018-06-10',27,23152,5000),(5481,'2018-06-10',28,16206,2000),(5482,'2018-06-10',29,21994,2000),(5483,'2018-06-10',30,6945,5000),(5484,'2018-06-10',31,24309,9000),(5485,'2018-06-10',32,17363,10000),(5486,'2018-06-10',33,21994,10000),(5487,'2018-06-10',34,21994,9000),(5490,'2018-06-10',37,23152,11000),(5491,'2018-06-10',38,21994,1000),(5492,'2018-06-10',39,13891,5000),(5493,'2018-06-10',40,19679,4000),(5494,'2018-06-10',41,9261,1000),(5496,'2018-06-10',43,12733,7000),(5497,'2018-06-10',44,12733,5000),(5498,'2018-06-10',45,13891,9000),(5499,'2018-06-10',46,15048,11000),(5500,'2018-06-10',47,12733,4000),(5501,'2018-06-10',48,24309,2000),(5502,'2018-06-10',49,15048,6000),(5503,'2018-06-10',50,10418,9000),(5504,'2018-06-10',51,5787,5000),(5505,'2018-06-10',52,18522,6000),(5506,'2018-06-10',53,24309,2000),(5507,'2018-06-10',54,20837,9000),(5508,'2018-06-10',55,5787,3000),(5509,'2018-06-10',56,21994,7000),(5510,'2018-06-10',57,21994,2000),(5511,'2018-06-10',58,12733,6000),(5512,'2018-06-10',59,10418,5000),(5513,'2018-06-10',60,12733,2000),(5514,'2018-06-10',61,23152,6000),(5515,'2018-06-10',62,15048,8000),(5516,'2018-06-10',63,15048,3000),(5517,'2018-06-10',64,5787,3000),(5518,'2018-06-10',65,13891,10000),(5519,'2018-06-10',66,18522,5000),(5520,'2018-06-10',67,9261,10000),(5521,'2018-06-10',68,24309,3000),(5522,'2018-06-10',69,12733,1000),(5523,'2018-06-10',70,11576,6000),(5525,'2018-06-10',72,12733,7000),(5526,'2018-06-10',73,16206,3000),(5527,'2018-06-10',74,11576,5000),(5529,'2018-06-10',76,19679,3000),(5530,'2018-06-10',77,8102,3000),(5531,'2018-06-10',78,10418,6000),(5532,'2018-06-10',79,15048,9000),(5534,'2018-06-10',81,16206,6000),(5535,'2018-06-10',82,8102,11000),(5536,'2018-06-10',83,9261,4000),(5537,'2018-06-10',84,10418,5000),(5538,'2018-06-10',85,15048,3000),(5539,'2018-06-10',86,23152,9000),(5540,'2018-06-10',87,6945,9000),(5541,'2018-06-10',88,19679,3000),(5542,'2018-06-10',89,6945,6000),(5543,'2018-06-10',90,5787,11000),(5544,'2018-06-10',91,19679,7000),(5545,'2018-06-10',92,18522,9000),(5546,'2018-06-10',93,8102,9000),(5547,'2018-06-10',94,13891,11000),(5548,'2018-06-10',95,18522,10000),(5549,'2018-06-10',96,13891,11000),(5550,'2018-06-10',97,6945,6000),(5551,'2018-06-10',98,18522,5000),(5552,'2018-06-10',99,15048,7000),(5553,'2018-06-10',100,13891,8000),(5554,'2018-06-10',101,6945,9000),(5555,'2018-06-10',102,21994,6000),(5558,'2018-06-10',105,20837,11000),(5559,'2018-06-10',106,21994,4000),(5560,'2018-06-10',107,17363,3000),(5561,'2018-06-10',108,17363,10000),(5562,'2018-06-10',109,8102,9000),(5563,'2018-06-10',110,17363,6000),(5564,'2018-06-10',111,5787,2000),(5565,'2018-06-10',112,23152,8000),(5566,'2018-06-10',113,10418,7000),(5567,'2018-06-10',114,5787,8000),(5568,'2018-06-10',115,12733,4000),(5569,'2018-06-10',116,9261,1000),(5570,'2018-06-10',117,24309,10000),(5571,'2018-06-10',118,21994,9000),(5572,'2018-06-10',119,21994,1000),(5573,'2018-06-10',120,10418,3000),(5574,'2018-06-10',121,9261,6000),(5575,'2018-06-10',122,20837,3000),(5576,'2018-06-10',123,18522,2000),(5577,'2018-06-10',124,13891,5000),(5578,'2018-06-10',125,16206,10000),(5579,'2018-06-10',126,10418,1000),(5580,'2018-06-10',127,16206,10000),(5582,'2018-06-10',129,13891,8000),(5583,'2018-06-10',130,9261,11000),(5585,'2018-06-10',132,10418,8000),(5586,'2018-06-10',133,5787,5000),(5587,'2018-07-10',1,16206,11000),(5588,'2018-07-10',2,19679,10000),(5589,'2018-07-10',3,9261,3000),(5590,'2018-07-10',4,16206,8000),(5591,'2018-07-10',5,16206,2000),(5592,'2018-07-10',6,16206,3000),(5593,'2018-07-10',7,21994,1000),(5595,'2018-07-10',9,12733,1000),(5597,'2018-07-10',11,16206,11000),(5598,'2018-07-10',12,15048,8000),(5599,'2018-07-10',13,17363,1000),(5600,'2018-07-10',14,11576,4000),(5601,'2018-07-10',15,10418,7000),(5603,'2018-07-10',17,18522,8000),(5604,'2018-07-10',18,6945,5000),(5606,'2018-07-10',20,18522,1000),(5607,'2018-07-10',21,17363,1000),(5608,'2018-07-10',22,13891,4000),(5611,'2018-07-10',25,21994,11000),(5612,'2018-07-10',26,8102,1000),(5613,'2018-07-10',27,23152,5000),(5614,'2018-07-10',28,16206,11000),(5615,'2018-07-10',29,21994,6000),(5616,'2018-07-10',30,6945,5000),(5617,'2018-07-10',31,24309,5000),(5618,'2018-07-10',32,17363,8000),(5619,'2018-07-10',33,21994,2000),(5620,'2018-07-10',34,21994,1000),(5623,'2018-07-10',37,23152,11000),(5624,'2018-07-10',38,21994,2000),(5625,'2018-07-10',39,13891,7000),(5626,'2018-07-10',40,19679,9000),(5627,'2018-07-10',41,9261,3000),(5629,'2018-07-10',43,12733,3000),(5630,'2018-07-10',44,12733,2000),(5631,'2018-07-10',45,13891,6000),(5632,'2018-07-10',46,15048,6000),(5633,'2018-07-10',47,12733,11000),(5634,'2018-07-10',48,24309,8000),(5635,'2018-07-10',49,15048,8000),(5636,'2018-07-10',50,10418,6000),(5637,'2018-07-10',51,5787,8000),(5638,'2018-07-10',52,18522,8000),(5639,'2018-07-10',53,24309,1000),(5640,'2018-07-10',54,20837,9000),(5641,'2018-07-10',55,5787,10000),(5642,'2018-07-10',56,21994,4000),(5643,'2018-07-10',57,21994,6000),(5644,'2018-07-10',58,12733,4000),(5645,'2018-07-10',59,10418,4000),(5646,'2018-07-10',60,12733,10000),(5647,'2018-07-10',61,23152,9000),(5648,'2018-07-10',62,15048,1000),(5649,'2018-07-10',63,15048,7000),(5650,'2018-07-10',64,5787,9000),(5651,'2018-07-10',65,13891,11000),(5652,'2018-07-10',66,18522,4000),(5653,'2018-07-10',67,9261,6000),(5654,'2018-07-10',68,24309,2000),(5655,'2018-07-10',69,12733,1000),(5656,'2018-07-10',70,11576,9000),(5658,'2018-07-10',72,12733,2000),(5659,'2018-07-10',73,16206,11000),(5660,'2018-07-10',74,11576,9000),(5662,'2018-07-10',76,19679,10000),(5663,'2018-07-10',77,8102,3000),(5664,'2018-07-10',78,10418,9000),(5665,'2018-07-10',79,15048,5000),(5667,'2018-07-10',81,16206,4000),(5668,'2018-07-10',82,8102,2000),(5669,'2018-07-10',83,9261,9000),(5670,'2018-07-10',84,10418,5000),(5671,'2018-07-10',85,15048,7000),(5672,'2018-07-10',86,23152,11000),(5673,'2018-07-10',87,6945,8000),(5674,'2018-07-10',88,19679,11000),(5675,'2018-07-10',89,6945,2000),(5676,'2018-07-10',90,5787,1000),(5677,'2018-07-10',91,19679,11000),(5678,'2018-07-10',92,18522,3000),(5679,'2018-07-10',93,8102,6000),(5680,'2018-07-10',94,13891,3000),(5681,'2018-07-10',95,18522,6000),(5682,'2018-07-10',96,13891,8000),(5683,'2018-07-10',97,6945,7000),(5684,'2018-07-10',98,18522,8000),(5685,'2018-07-10',99,15048,10000),(5686,'2018-07-10',100,13891,5000),(5687,'2018-07-10',101,6945,7000),(5688,'2018-07-10',102,21994,9000),(5691,'2018-07-10',105,20837,6000),(5692,'2018-07-10',106,21994,10000),(5693,'2018-07-10',107,17363,4000),(5694,'2018-07-10',108,17363,9000),(5695,'2018-07-10',109,8102,4000),(5696,'2018-07-10',110,17363,7000),(5697,'2018-07-10',111,5787,4000),(5698,'2018-07-10',112,23152,5000),(5699,'2018-07-10',113,10418,4000),(5700,'2018-07-10',114,5787,9000),(5701,'2018-07-10',115,12733,1000),(5702,'2018-07-10',116,9261,5000),(5703,'2018-07-10',117,24309,10000),(5704,'2018-07-10',118,21994,1000),(5705,'2018-07-10',119,21994,6000),(5706,'2018-07-10',120,10418,5000),(5707,'2018-07-10',121,9261,11000),(5708,'2018-07-10',122,20837,9000),(5709,'2018-07-10',123,18522,5000),(5710,'2018-07-10',124,13891,3000),(5711,'2018-07-10',125,16206,1000),(5712,'2018-07-10',126,10418,7000),(5713,'2018-07-10',127,16206,3000),(5715,'2018-07-10',129,13891,8000),(5716,'2018-07-10',130,9261,3000),(5718,'2018-07-10',132,10418,9000),(5719,'2018-07-10',133,5787,3000),(5720,'2018-08-10',1,16206,8000),(5721,'2018-08-10',2,19679,5000),(5722,'2018-08-10',3,9261,9000),(5723,'2018-08-10',4,16206,3000),(5724,'2018-08-10',5,16206,9000),(5725,'2018-08-10',6,16206,11000),(5726,'2018-08-10',7,21994,5000),(5728,'2018-08-10',9,12733,10000),(5730,'2018-08-10',11,16206,11000),(5731,'2018-08-10',12,15048,5000),(5732,'2018-08-10',13,17363,10000),(5733,'2018-08-10',14,11576,9000),(5734,'2018-08-10',15,10418,5000),(5736,'2018-08-10',17,18522,10000),(5737,'2018-08-10',18,6945,1000),(5739,'2018-08-10',20,18522,11000),(5740,'2018-08-10',21,17363,10000),(5741,'2018-08-10',22,13891,11000),(5744,'2018-08-10',25,21994,7000),(5745,'2018-08-10',26,8102,8000),(5746,'2018-08-10',27,23152,9000),(5747,'2018-08-10',28,16206,3000),(5748,'2018-08-10',29,21994,8000),(5749,'2018-08-10',30,6945,5000),(5750,'2018-08-10',31,24309,11000),(5751,'2018-08-10',32,17363,8000),(5752,'2018-08-10',33,21994,2000),(5753,'2018-08-10',34,21994,2000),(5756,'2018-08-10',37,23152,10000),(5757,'2018-08-10',38,21994,5000),(5758,'2018-08-10',39,13891,7000),(5759,'2018-08-10',40,19679,2000),(5760,'2018-08-10',41,9261,7000),(5762,'2018-08-10',43,12733,11000),(5763,'2018-08-10',44,12733,3000),(5764,'2018-08-10',45,13891,8000),(5765,'2018-08-10',46,15048,6000),(5766,'2018-08-10',47,12733,7000),(5767,'2018-08-10',48,24309,4000),(5768,'2018-08-10',49,15048,11000),(5769,'2018-08-10',50,10418,7000),(5770,'2018-08-10',51,5787,6000),(5771,'2018-08-10',52,18522,2000),(5772,'2018-08-10',53,24309,3000),(5773,'2018-08-10',54,20837,3000),(5774,'2018-08-10',55,5787,3000),(5775,'2018-08-10',56,21994,4000),(5776,'2018-08-10',57,21994,7000),(5777,'2018-08-10',58,12733,8000),(5778,'2018-08-10',59,10418,4000),(5779,'2018-08-10',60,12733,11000),(5780,'2018-08-10',61,23152,10000),(5781,'2018-08-10',62,15048,4000),(5782,'2018-08-10',63,15048,3000),(5783,'2018-08-10',64,5787,6000),(5784,'2018-08-10',65,13891,6000),(5785,'2018-08-10',66,18522,6000),(5786,'2018-08-10',67,9261,8000),(5787,'2018-08-10',68,24309,7000),(5788,'2018-08-10',69,12733,6000),(5789,'2018-08-10',70,11576,5000),(5791,'2018-08-10',72,12733,2000),(5792,'2018-08-10',73,16206,4000),(5793,'2018-08-10',74,11576,11000),(5795,'2018-08-10',76,19679,3000),(5796,'2018-08-10',77,8102,11000),(5797,'2018-08-10',78,10418,1000),(5798,'2018-08-10',79,15048,6000),(5800,'2018-08-10',81,16206,9000),(5801,'2018-08-10',82,8102,7000),(5802,'2018-08-10',83,9261,9000),(5803,'2018-08-10',84,10418,6000),(5804,'2018-08-10',85,15048,6000),(5805,'2018-08-10',86,23152,1000),(5806,'2018-08-10',87,6945,3000),(5807,'2018-08-10',88,19679,2000),(5808,'2018-08-10',89,6945,3000),(5809,'2018-08-10',90,5787,11000),(5810,'2018-08-10',91,19679,10000),(5811,'2018-08-10',92,18522,8000),(5812,'2018-08-10',93,8102,1000),(5813,'2018-08-10',94,13891,6000),(5814,'2018-08-10',95,18522,5000),(5815,'2018-08-10',96,13891,6000),(5816,'2018-08-10',97,6945,7000),(5817,'2018-08-10',98,18522,7000),(5818,'2018-08-10',99,15048,9000),(5819,'2018-08-10',100,13891,8000),(5820,'2018-08-10',101,6945,6000),(5821,'2018-08-10',102,21994,4000),(5824,'2018-08-10',105,20837,8000),(5825,'2018-08-10',106,21994,10000),(5826,'2018-08-10',107,17363,4000),(5827,'2018-08-10',108,17363,6000),(5828,'2018-08-10',109,8102,11000),(5829,'2018-08-10',110,17363,5000),(5830,'2018-08-10',111,5787,10000),(5831,'2018-08-10',112,23152,8000),(5832,'2018-08-10',113,10418,11000),(5833,'2018-08-10',114,5787,11000),(5834,'2018-08-10',115,12733,8000),(5835,'2018-08-10',116,9261,3000),(5836,'2018-08-10',117,24309,7000),(5837,'2018-08-10',118,21994,10000),(5838,'2018-08-10',119,21994,4000),(5839,'2018-08-10',120,10418,11000),(5840,'2018-08-10',121,9261,11000),(5841,'2018-08-10',122,20837,11000),(5842,'2018-08-10',123,18522,2000),(5843,'2018-08-10',124,13891,1000),(5844,'2018-08-10',125,16206,1000),(5845,'2018-08-10',126,10418,1000),(5846,'2018-08-10',127,16206,2000),(5848,'2018-08-10',129,13891,2000),(5849,'2018-08-10',130,9261,3000),(5851,'2018-08-10',132,10418,10000),(5852,'2018-08-10',133,5787,7000),(5853,'2018-09-10',1,16206,8000),(5854,'2018-09-10',2,19679,5000),(5855,'2018-09-10',3,9261,1000),(5856,'2018-09-10',4,16206,1000),(5857,'2018-09-10',5,16206,10000),(5858,'2018-09-10',6,16206,1000),(5859,'2018-09-10',7,21994,4000),(5861,'2018-09-10',9,12733,11000),(5862,'2018-09-10',10,20837,4000),(5863,'2018-09-10',11,16206,3000),(5864,'2018-09-10',12,15048,9000),(5865,'2018-09-10',13,17363,6000),(5866,'2018-09-10',14,11576,7000),(5867,'2018-09-10',15,10418,5000),(5868,'2018-09-10',16,20837,8000),(5869,'2018-09-10',17,18522,2000),(5870,'2018-09-10',18,6945,1000),(5872,'2018-09-10',20,18522,5000),(5873,'2018-09-10',21,17363,3000),(5874,'2018-09-10',22,13891,4000),(5877,'2018-09-10',25,21994,9000),(5878,'2018-09-10',26,8102,3000),(5879,'2018-09-10',27,23152,4000),(5880,'2018-09-10',28,16206,9000),(5881,'2018-09-10',29,21994,8000),(5882,'2018-09-10',30,6945,10000),(5883,'2018-09-10',31,24309,11000),(5884,'2018-09-10',32,17363,6000),(5885,'2018-09-10',33,21994,9000),(5886,'2018-09-10',34,21994,7000),(5889,'2018-09-10',37,23152,5000),(5890,'2018-09-10',38,21994,10000),(5891,'2018-09-10',39,13891,3000),(5892,'2018-09-10',40,19679,9000),(5893,'2018-09-10',41,9261,4000),(5895,'2018-09-10',43,12733,1000),(5896,'2018-09-10',44,12733,2000),(5897,'2018-09-10',45,13891,9000),(5898,'2018-09-10',46,15048,3000),(5899,'2018-09-10',47,12733,11000),(5900,'2018-09-10',48,24309,4000),(5901,'2018-09-10',49,15048,7000),(5902,'2018-09-10',50,10418,4000),(5903,'2018-09-10',51,5787,4000),(5904,'2018-09-10',52,18522,11000),(5905,'2018-09-10',53,24309,1000),(5906,'2018-09-10',54,20837,1000),(5907,'2018-09-10',55,5787,4000),(5908,'2018-09-10',56,21994,7000),(5909,'2018-09-10',57,21994,8000),(5910,'2018-09-10',58,12733,3000),(5911,'2018-09-10',59,10418,6000),(5912,'2018-09-10',60,12733,10000),(5913,'2018-09-10',61,23152,9000),(5914,'2018-09-10',62,15048,5000),(5915,'2018-09-10',63,15048,8000),(5916,'2018-09-10',64,5787,2000),(5917,'2018-09-10',65,13891,9000),(5918,'2018-09-10',66,18522,5000),(5919,'2018-09-10',67,9261,9000),(5920,'2018-09-10',68,24309,6000),(5921,'2018-09-10',69,12733,1000),(5922,'2018-09-10',70,11576,6000),(5924,'2018-09-10',72,12733,11000),(5925,'2018-09-10',73,16206,10000),(5926,'2018-09-10',74,11576,1000),(5928,'2018-09-10',76,19679,4000),(5929,'2018-09-10',77,8102,1000),(5930,'2018-09-10',78,10418,7000),(5931,'2018-09-10',79,15048,4000),(5933,'2018-09-10',81,16206,11000),(5934,'2018-09-10',82,8102,7000),(5935,'2018-09-10',83,9261,3000),(5936,'2018-09-10',84,10418,2000),(5937,'2018-09-10',85,15048,3000),(5938,'2018-09-10',86,23152,7000),(5939,'2018-09-10',87,6945,9000),(5940,'2018-09-10',88,19679,11000),(5941,'2018-09-10',89,6945,7000),(5942,'2018-09-10',90,5787,10000),(5943,'2018-09-10',91,19679,1000),(5944,'2018-09-10',92,18522,6000),(5945,'2018-09-10',93,8102,4000),(5946,'2018-09-10',94,13891,6000),(5947,'2018-09-10',95,18522,3000),(5948,'2018-09-10',96,13891,11000),(5949,'2018-09-10',97,6945,8000),(5950,'2018-09-10',98,18522,7000),(5951,'2018-09-10',99,15048,6000),(5952,'2018-09-10',100,13891,2000),(5953,'2018-09-10',101,6945,10000),(5954,'2018-09-10',102,21994,6000),(5957,'2018-09-10',105,20837,8000),(5958,'2018-09-10',106,21994,6000),(5959,'2018-09-10',107,17363,11000),(5960,'2018-09-10',108,17363,10000),(5961,'2018-09-10',109,8102,6000),(5962,'2018-09-10',110,17363,10000),(5963,'2018-09-10',111,5787,1000),(5964,'2018-09-10',112,23152,2000),(5965,'2018-09-10',113,10418,7000),(5966,'2018-09-10',114,5787,4000),(5967,'2018-09-10',115,12733,10000),(5968,'2018-09-10',116,9261,5000),(5969,'2018-09-10',117,24309,11000),(5970,'2018-09-10',118,21994,5000),(5971,'2018-09-10',119,21994,10000),(5972,'2018-09-10',120,10418,10000),(5973,'2018-09-10',121,9261,7000),(5974,'2018-09-10',122,20837,11000),(5975,'2018-09-10',123,18522,2000),(5976,'2018-09-10',124,13891,4000),(5977,'2018-09-10',125,16206,2000),(5978,'2018-09-10',126,10418,4000),(5979,'2018-09-10',127,16206,7000),(5981,'2018-09-10',129,13891,5000),(5982,'2018-09-10',130,9261,9000),(5984,'2018-09-10',132,10418,10000),(5985,'2018-09-10',133,5787,7000),(5986,'2018-10-10',1,16206,11000),(5987,'2018-10-10',2,19679,11000),(5988,'2018-10-10',3,9261,6000),(5989,'2018-10-10',4,16206,8000),(5990,'2018-10-10',5,16206,1000),(5991,'2018-10-10',6,16206,7000),(5992,'2018-10-10',7,21994,4000),(5994,'2018-10-10',9,12733,5000),(5995,'2018-10-10',10,20837,11000),(5996,'2018-10-10',11,16206,5000),(5997,'2018-10-10',12,15048,5000),(5998,'2018-10-10',13,17363,2000),(5999,'2018-10-10',14,11576,9000),(6000,'2018-10-10',15,10418,3000),(6001,'2018-10-10',16,20837,9000),(6002,'2018-10-10',17,18522,5000),(6003,'2018-10-10',18,6945,3000),(6005,'2018-10-10',20,18522,10000),(6006,'2018-10-10',21,17363,4000),(6007,'2018-10-10',22,13891,4000),(6010,'2018-10-10',25,21994,5000),(6011,'2018-10-10',26,8102,2000),(6012,'2018-10-10',27,23152,5000),(6013,'2018-10-10',28,16206,3000),(6014,'2018-10-10',29,21994,7000),(6015,'2018-10-10',30,6945,6000),(6016,'2018-10-10',31,24309,7000),(6017,'2018-10-10',32,17363,10000),(6018,'2018-10-10',33,21994,1000),(6019,'2018-10-10',34,21994,4000),(6022,'2018-10-10',37,23152,6000),(6023,'2018-10-10',38,21994,9000),(6024,'2018-10-10',39,13891,10000),(6025,'2018-10-10',40,19679,11000),(6026,'2018-10-10',41,9261,6000),(6028,'2018-10-10',43,12733,9000),(6029,'2018-10-10',44,12733,2000),(6030,'2018-10-10',45,13891,9000),(6031,'2018-10-10',46,15048,3000),(6032,'2018-10-10',47,12733,5000),(6033,'2018-10-10',48,24309,11000),(6034,'2018-10-10',49,15048,6000),(6035,'2018-10-10',50,10418,4000),(6036,'2018-10-10',51,5787,6000),(6037,'2018-10-10',52,18522,3000),(6038,'2018-10-10',53,24309,1000),(6039,'2018-10-10',54,20837,9000),(6040,'2018-10-10',55,5787,4000),(6041,'2018-10-10',56,21994,11000),(6042,'2018-10-10',57,21994,8000),(6043,'2018-10-10',58,12733,8000),(6044,'2018-10-10',59,10418,5000),(6045,'2018-10-10',60,12733,7000),(6046,'2018-10-10',61,23152,4000),(6047,'2018-10-10',62,15048,11000),(6048,'2018-10-10',63,15048,7000),(6049,'2018-10-10',64,5787,5000),(6050,'2018-10-10',65,13891,11000),(6051,'2018-10-10',66,18522,5000),(6052,'2018-10-10',67,9261,11000),(6053,'2018-10-10',68,24309,5000),(6054,'2018-10-10',69,12733,6000),(6055,'2018-10-10',70,11576,10000),(6057,'2018-10-10',72,12733,9000),(6058,'2018-10-10',73,16206,5000),(6059,'2018-10-10',74,11576,8000),(6061,'2018-10-10',76,19679,11000),(6062,'2018-10-10',77,8102,10000),(6063,'2018-10-10',78,10418,2000),(6064,'2018-10-10',79,15048,5000),(6066,'2018-10-10',81,16206,4000),(6067,'2018-10-10',82,8102,7000),(6068,'2018-10-10',83,9261,5000),(6069,'2018-10-10',84,10418,4000),(6070,'2018-10-10',85,15048,10000),(6071,'2018-10-10',86,23152,6000),(6072,'2018-10-10',87,6945,5000),(6073,'2018-10-10',88,19679,8000),(6074,'2018-10-10',89,6945,3000),(6075,'2018-10-10',90,5787,5000),(6076,'2018-10-10',91,19679,11000),(6077,'2018-10-10',92,18522,8000),(6078,'2018-10-10',93,8102,2000),(6079,'2018-10-10',94,13891,2000),(6080,'2018-10-10',95,18522,6000),(6081,'2018-10-10',96,13891,6000),(6082,'2018-10-10',97,6945,5000),(6083,'2018-10-10',98,18522,4000),(6084,'2018-10-10',99,15048,11000),(6085,'2018-10-10',100,13891,6000),(6086,'2018-10-10',101,6945,10000),(6087,'2018-10-10',102,21994,1000),(6090,'2018-10-10',105,20837,5000),(6091,'2018-10-10',106,21994,7000),(6092,'2018-10-10',107,17363,7000),(6093,'2018-10-10',108,17363,11000),(6094,'2018-10-10',109,8102,10000),(6095,'2018-10-10',110,17363,9000),(6096,'2018-10-10',111,5787,1000),(6097,'2018-10-10',112,23152,9000),(6098,'2018-10-10',113,10418,4000),(6099,'2018-10-10',114,5787,5000),(6100,'2018-10-10',115,12733,10000),(6101,'2018-10-10',116,9261,6000),(6102,'2018-10-10',117,24309,1000),(6103,'2018-10-10',118,21994,1000),(6104,'2018-10-10',119,21994,6000),(6105,'2018-10-10',120,10418,6000),(6106,'2018-10-10',121,9261,2000),(6107,'2018-10-10',122,20837,9000),(6108,'2018-10-10',123,18522,7000),(6109,'2018-10-10',124,13891,1000),(6110,'2018-10-10',125,16206,11000),(6111,'2018-10-10',126,10418,5000),(6112,'2018-10-10',127,16206,6000),(6114,'2018-10-10',129,13891,10000),(6115,'2018-10-10',130,9261,11000),(6117,'2018-10-10',132,10418,6000),(6118,'2018-10-10',133,5787,9000),(6119,'2018-11-10',1,16206,8000),(6120,'2018-11-10',2,19679,10000),(6121,'2018-11-10',3,9261,4000),(6122,'2018-11-10',4,16206,4000),(6123,'2018-11-10',5,16206,11000),(6124,'2018-11-10',6,16206,3000),(6125,'2018-11-10',7,21994,7000),(6127,'2018-11-10',9,12733,9000),(6128,'2018-11-10',10,20837,9000),(6129,'2018-11-10',11,16206,6000),(6130,'2018-11-10',12,15048,3000),(6131,'2018-11-10',13,17363,7000),(6132,'2018-11-10',14,11576,6000),(6133,'2018-11-10',15,10418,1000),(6134,'2018-11-10',16,20837,10000),(6135,'2018-11-10',17,18522,10000),(6136,'2018-11-10',18,6945,1000),(6138,'2018-11-10',20,18522,11000),(6139,'2018-11-10',21,17363,4000),(6140,'2018-11-10',22,13891,2000),(6143,'2018-11-10',25,21994,8000),(6144,'2018-11-10',26,8102,11000),(6145,'2018-11-10',27,23152,2000),(6146,'2018-11-10',28,16206,8000),(6147,'2018-11-10',29,21994,1000),(6148,'2018-11-10',30,6945,6000),(6149,'2018-11-10',31,24309,9000),(6150,'2018-11-10',32,17363,7000),(6151,'2018-11-10',33,21994,8000),(6152,'2018-11-10',34,21994,6000),(6155,'2018-11-10',37,23152,9000),(6156,'2018-11-10',38,21994,2000),(6157,'2018-11-10',39,13891,5000),(6158,'2018-11-10',40,19679,11000),(6159,'2018-11-10',41,9261,3000),(6161,'2018-11-10',43,12733,7000),(6162,'2018-11-10',44,12733,1000),(6163,'2018-11-10',45,13891,5000),(6164,'2018-11-10',46,15048,5000),(6165,'2018-11-10',47,12733,6000),(6166,'2018-11-10',48,24309,7000),(6167,'2018-11-10',49,15048,4000),(6168,'2018-11-10',50,10418,10000),(6169,'2018-11-10',51,5787,1000),(6170,'2018-11-10',52,18522,11000),(6171,'2018-11-10',53,24309,4000),(6172,'2018-11-10',54,20837,2000),(6173,'2018-11-10',55,5787,11000),(6174,'2018-11-10',56,21994,3000),(6175,'2018-11-10',57,21994,6000),(6176,'2018-11-10',58,12733,6000),(6177,'2018-11-10',59,10418,2000),(6178,'2018-11-10',60,12733,7000),(6179,'2018-11-10',61,23152,4000),(6180,'2018-11-10',62,15048,5000),(6181,'2018-11-10',63,15048,2000),(6182,'2018-11-10',64,5787,2000),(6183,'2018-11-10',65,13891,4000),(6184,'2018-11-10',66,18522,8000),(6185,'2018-11-10',67,9261,2000),(6186,'2018-11-10',68,24309,7000),(6187,'2018-11-10',69,12733,10000),(6188,'2018-11-10',70,11576,9000),(6190,'2018-11-10',72,12733,11000),(6191,'2018-11-10',73,16206,1000),(6192,'2018-11-10',74,11576,6000),(6194,'2018-11-10',76,19679,8000),(6195,'2018-11-10',77,8102,7000),(6196,'2018-11-10',78,10418,8000),(6197,'2018-11-10',79,15048,6000),(6199,'2018-11-10',81,16206,5000),(6200,'2018-11-10',82,8102,3000),(6201,'2018-11-10',83,9261,3000),(6202,'2018-11-10',84,10418,7000),(6203,'2018-11-10',85,15048,10000),(6204,'2018-11-10',86,23152,5000),(6205,'2018-11-10',87,6945,2000),(6206,'2018-11-10',88,19679,7000),(6207,'2018-11-10',89,6945,1000),(6208,'2018-11-10',90,5787,11000),(6209,'2018-11-10',91,19679,2000),(6210,'2018-11-10',92,18522,8000),(6211,'2018-11-10',93,8102,10000),(6212,'2018-11-10',94,13891,2000),(6213,'2018-11-10',95,18522,7000),(6214,'2018-11-10',96,13891,8000),(6215,'2018-11-10',97,6945,9000),(6216,'2018-11-10',98,18522,3000),(6217,'2018-11-10',99,15048,2000),(6218,'2018-11-10',100,13891,11000),(6219,'2018-11-10',101,6945,5000),(6220,'2018-11-10',102,21994,3000),(6223,'2018-11-10',105,20837,11000),(6224,'2018-11-10',106,21994,10000),(6225,'2018-11-10',107,17363,4000),(6226,'2018-11-10',108,17363,4000),(6227,'2018-11-10',109,8102,7000),(6228,'2018-11-10',110,17363,9000),(6229,'2018-11-10',111,5787,11000),(6230,'2018-11-10',112,23152,2000),(6231,'2018-11-10',113,10418,3000),(6232,'2018-11-10',114,5787,5000),(6233,'2018-11-10',115,12733,1000),(6234,'2018-11-10',116,9261,6000),(6235,'2018-11-10',117,24309,1000),(6236,'2018-11-10',118,21994,11000),(6237,'2018-11-10',119,21994,1000),(6238,'2018-11-10',120,10418,4000),(6239,'2018-11-10',121,9261,9000),(6240,'2018-11-10',122,20837,7000),(6241,'2018-11-10',123,18522,6000),(6242,'2018-11-10',124,13891,4000),(6243,'2018-11-10',125,16206,6000),(6244,'2018-11-10',126,10418,1000),(6245,'2018-11-10',127,16206,6000),(6247,'2018-11-10',129,13891,2000),(6248,'2018-11-10',130,9261,6000),(6250,'2018-11-10',132,10418,4000),(6251,'2018-11-10',133,5787,11000),(6252,'2018-12-10',1,17016,7000),(6253,'2018-12-10',2,20662,9000),(6254,'2018-12-10',3,9724,8000),(6255,'2018-12-10',4,17016,2000),(6256,'2018-12-10',5,17016,3000),(6257,'2018-12-10',6,17016,1000),(6258,'2018-12-10',7,23093,4000),(6259,'2018-12-10',8,23093,2000),(6260,'2018-12-10',9,13369,2000),(6261,'2018-12-10',10,21878,8000),(6262,'2018-12-10',11,17016,8000),(6263,'2018-12-10',12,15800,4000),(6264,'2018-12-10',13,18231,3000),(6265,'2018-12-10',14,12154,5000),(6266,'2018-12-10',15,10938,10000),(6267,'2018-12-10',16,21878,8000),(6268,'2018-12-10',17,19448,7000),(6269,'2018-12-10',18,7292,2000),(6271,'2018-12-10',20,19448,3000),(6272,'2018-12-10',21,18231,11000),(6273,'2018-12-10',22,14585,1000),(6276,'2018-12-10',25,23093,3000),(6277,'2018-12-10',26,8507,5000),(6278,'2018-12-10',27,24309,5000),(6279,'2018-12-10',28,17016,9000),(6280,'2018-12-10',29,23093,1000),(6281,'2018-12-10',30,7292,8000),(6282,'2018-12-10',31,25524,9000),(6283,'2018-12-10',32,18231,11000),(6284,'2018-12-10',33,23093,6000),(6285,'2018-12-10',34,23093,1000),(6288,'2018-12-10',37,24309,4000),(6289,'2018-12-10',38,23093,3000),(6290,'2018-12-10',39,14585,5000),(6291,'2018-12-10',40,20662,2000),(6292,'2018-12-10',41,9724,9000),(6294,'2018-12-10',43,13369,5000),(6295,'2018-12-10',44,13369,6000),(6296,'2018-12-10',45,14585,10000),(6297,'2018-12-10',46,15800,7000),(6298,'2018-12-10',47,13369,8000),(6299,'2018-12-10',48,25524,1000),(6300,'2018-12-10',49,15800,9000),(6301,'2018-12-10',50,10938,6000),(6302,'2018-12-10',51,6076,1000),(6303,'2018-12-10',52,19448,9000),(6304,'2018-12-10',53,25524,8000),(6305,'2018-12-10',54,21878,9000),(6306,'2018-12-10',55,6076,5000),(6307,'2018-12-10',56,23093,3000),(6308,'2018-12-10',57,23093,3000),(6309,'2018-12-10',58,13369,11000),(6310,'2018-12-10',59,10938,6000),(6311,'2018-12-10',60,13369,10000),(6312,'2018-12-10',61,24309,3000),(6313,'2018-12-10',62,15800,4000),(6314,'2018-12-10',63,15800,8000),(6315,'2018-12-10',64,6076,2000),(6316,'2018-12-10',65,14585,9000),(6317,'2018-12-10',66,19448,7000),(6318,'2018-12-10',67,9724,9000),(6319,'2018-12-10',68,25524,9000),(6320,'2018-12-10',69,13369,4000),(6321,'2018-12-10',70,12154,3000),(6323,'2018-12-10',72,13369,4000),(6324,'2018-12-10',73,17016,10000),(6325,'2018-12-10',74,12154,8000),(6327,'2018-12-10',76,20662,11000),(6328,'2018-12-10',77,8507,11000),(6329,'2018-12-10',78,10938,10000),(6330,'2018-12-10',79,15800,4000),(6332,'2018-12-10',81,17016,3000),(6333,'2018-12-10',82,8507,8000),(6334,'2018-12-10',83,9724,1000),(6335,'2018-12-10',84,10938,7000),(6336,'2018-12-10',85,15800,1000),(6337,'2018-12-10',86,24309,4000),(6338,'2018-12-10',87,7292,5000),(6339,'2018-12-10',88,20662,2000),(6340,'2018-12-10',89,7292,5000),(6341,'2018-12-10',90,6076,1000),(6342,'2018-12-10',91,20662,11000),(6343,'2018-12-10',92,19448,2000),(6344,'2018-12-10',93,8507,2000),(6345,'2018-12-10',94,14585,6000),(6346,'2018-12-10',95,19448,8000),(6347,'2018-12-10',96,14585,11000),(6348,'2018-12-10',97,7292,1000),(6349,'2018-12-10',98,19448,9000),(6350,'2018-12-10',99,15800,5000),(6351,'2018-12-10',100,14585,11000),(6352,'2018-12-10',101,7292,9000),(6353,'2018-12-10',102,23093,3000),(6356,'2018-12-10',105,21878,8000),(6357,'2018-12-10',106,23093,5000),(6358,'2018-12-10',107,18231,7000),(6359,'2018-12-10',108,18231,2000),(6360,'2018-12-10',109,8507,11000),(6361,'2018-12-10',110,18231,2000),(6362,'2018-12-10',111,6076,3000),(6363,'2018-12-10',112,24309,9000),(6364,'2018-12-10',113,10938,1000),(6365,'2018-12-10',114,6076,3000),(6366,'2018-12-10',115,13369,7000),(6367,'2018-12-10',116,9724,11000),(6368,'2018-12-10',117,25524,11000),(6369,'2018-12-10',118,23093,3000),(6370,'2018-12-10',119,23093,10000),(6371,'2018-12-10',120,10938,3000),(6372,'2018-12-10',121,9724,7000),(6373,'2018-12-10',122,21878,2000),(6374,'2018-12-10',123,19448,10000),(6375,'2018-12-10',124,14585,9000),(6376,'2018-12-10',125,17016,5000),(6377,'2018-12-10',126,10938,11000),(6378,'2018-12-10',127,17016,6000),(6380,'2018-12-10',129,14585,7000),(6381,'2018-12-10',130,9724,11000),(6383,'2018-12-10',132,10938,11000),(6384,'2018-12-10',133,6076,7000),(6385,'2019-01-10',1,17016,5000),(6386,'2019-01-10',2,20662,10000),(6387,'2019-01-10',3,9724,3000),(6388,'2019-01-10',4,17016,5000),(6389,'2019-01-10',5,17016,8000),(6390,'2019-01-10',6,17016,6000),(6391,'2019-01-10',7,23093,10000),(6392,'2019-01-10',8,23093,1000),(6393,'2019-01-10',9,13369,2000),(6394,'2019-01-10',10,21878,11000),(6395,'2019-01-10',11,17016,9000),(6396,'2019-01-10',12,15800,11000),(6397,'2019-01-10',13,18231,9000),(6398,'2019-01-10',14,12154,10000),(6399,'2019-01-10',15,10938,6000),(6400,'2019-01-10',16,21878,6000),(6401,'2019-01-10',17,19448,8000),(6402,'2019-01-10',18,7292,1000),(6404,'2019-01-10',20,19448,3000),(6405,'2019-01-10',21,18231,11000),(6406,'2019-01-10',22,14585,5000),(6409,'2019-01-10',25,23093,7000),(6410,'2019-01-10',26,8507,2000),(6411,'2019-01-10',27,24309,6000),(6412,'2019-01-10',28,17016,1000),(6413,'2019-01-10',29,23093,4000),(6414,'2019-01-10',30,7292,1000),(6415,'2019-01-10',31,25524,6000),(6416,'2019-01-10',32,18231,3000),(6417,'2019-01-10',33,23093,10000),(6418,'2019-01-10',34,23093,1000),(6421,'2019-01-10',37,24309,11000),(6422,'2019-01-10',38,23093,9000),(6423,'2019-01-10',39,14585,5000),(6424,'2019-01-10',40,20662,3000),(6425,'2019-01-10',41,9724,5000),(6427,'2019-01-10',43,13369,8000),(6428,'2019-01-10',44,13369,3000),(6429,'2019-01-10',45,14585,6000),(6430,'2019-01-10',46,15800,9000),(6431,'2019-01-10',47,13369,5000),(6432,'2019-01-10',48,25524,4000),(6433,'2019-01-10',49,15800,4000),(6434,'2019-01-10',50,10938,4000),(6435,'2019-01-10',51,6076,2000),(6436,'2019-01-10',52,19448,1000),(6437,'2019-01-10',53,25524,2000),(6438,'2019-01-10',54,21878,6000),(6439,'2019-01-10',55,6076,5000),(6440,'2019-01-10',56,23093,11000),(6441,'2019-01-10',57,23093,1000),(6442,'2019-01-10',58,13369,1000),(6443,'2019-01-10',59,10938,6000),(6444,'2019-01-10',60,13369,9000),(6445,'2019-01-10',61,24309,9000),(6446,'2019-01-10',62,15800,4000),(6447,'2019-01-10',63,15800,6000),(6448,'2019-01-10',64,6076,4000),(6449,'2019-01-10',65,14585,5000),(6450,'2019-01-10',66,19448,10000),(6451,'2019-01-10',67,9724,7000),(6452,'2019-01-10',68,25524,6000),(6453,'2019-01-10',69,13369,7000),(6454,'2019-01-10',70,12154,4000),(6456,'2019-01-10',72,13369,1000),(6457,'2019-01-10',73,17016,9000),(6458,'2019-01-10',74,12154,5000),(6459,'2019-01-10',75,13369,11000),(6460,'2019-01-10',76,20662,6000),(6461,'2019-01-10',77,8507,6000),(6462,'2019-01-10',78,10938,9000),(6463,'2019-01-10',79,15800,6000),(6465,'2019-01-10',81,17016,4000),(6466,'2019-01-10',82,8507,9000),(6467,'2019-01-10',83,9724,6000),(6468,'2019-01-10',84,10938,3000),(6469,'2019-01-10',85,15800,4000),(6470,'2019-01-10',86,24309,4000),(6471,'2019-01-10',87,7292,5000),(6472,'2019-01-10',88,20662,2000),(6473,'2019-01-10',89,7292,5000),(6474,'2019-01-10',90,6076,3000),(6475,'2019-01-10',91,20662,3000),(6476,'2019-01-10',92,19448,5000),(6477,'2019-01-10',93,8507,2000),(6478,'2019-01-10',94,14585,6000),(6479,'2019-01-10',95,19448,10000),(6480,'2019-01-10',96,14585,1000),(6481,'2019-01-10',97,7292,5000),(6482,'2019-01-10',98,19448,4000),(6483,'2019-01-10',99,15800,1000),(6484,'2019-01-10',100,14585,4000),(6485,'2019-01-10',101,7292,3000),(6486,'2019-01-10',102,23093,6000),(6489,'2019-01-10',105,21878,5000),(6490,'2019-01-10',106,23093,3000),(6491,'2019-01-10',107,18231,11000),(6492,'2019-01-10',108,18231,5000),(6493,'2019-01-10',109,8507,3000),(6494,'2019-01-10',110,18231,7000),(6495,'2019-01-10',111,6076,10000),(6496,'2019-01-10',112,24309,8000),(6497,'2019-01-10',113,10938,6000),(6498,'2019-01-10',114,6076,8000),(6499,'2019-01-10',115,13369,11000),(6500,'2019-01-10',116,9724,7000),(6501,'2019-01-10',117,25524,7000),(6502,'2019-01-10',118,23093,7000),(6503,'2019-01-10',119,23093,6000),(6504,'2019-01-10',120,10938,10000),(6505,'2019-01-10',121,9724,5000),(6506,'2019-01-10',122,21878,10000),(6507,'2019-01-10',123,19448,9000),(6508,'2019-01-10',124,14585,5000),(6509,'2019-01-10',125,17016,3000),(6510,'2019-01-10',126,10938,9000),(6511,'2019-01-10',127,17016,1000),(6513,'2019-01-10',129,14585,9000),(6514,'2019-01-10',130,9724,2000),(6516,'2019-01-10',132,10938,4000),(6517,'2019-01-10',133,6076,4000),(6518,'2019-02-10',1,17016,2000),(6519,'2019-02-10',2,20662,7000),(6520,'2019-02-10',3,9724,4000),(6521,'2019-02-10',4,17016,9000),(6522,'2019-02-10',5,17016,5000),(6523,'2019-02-10',6,17016,8000),(6524,'2019-02-10',7,23093,2000),(6525,'2019-02-10',8,23093,4000),(6526,'2019-02-10',9,13369,1000),(6527,'2019-02-10',10,21878,7000),(6528,'2019-02-10',11,17016,7000),(6529,'2019-02-10',12,15800,10000),(6530,'2019-02-10',13,18231,8000),(6531,'2019-02-10',14,12154,9000),(6532,'2019-02-10',15,10938,6000),(6533,'2019-02-10',16,21878,4000),(6534,'2019-02-10',17,19448,3000),(6535,'2019-02-10',18,7292,2000),(6537,'2019-02-10',20,19448,1000),(6538,'2019-02-10',21,18231,3000),(6539,'2019-02-10',22,14585,9000),(6542,'2019-02-10',25,23093,7000),(6543,'2019-02-10',26,8507,5000),(6544,'2019-02-10',27,24309,1000),(6545,'2019-02-10',28,17016,7000),(6546,'2019-02-10',29,23093,11000),(6547,'2019-02-10',30,7292,10000),(6548,'2019-02-10',31,25524,1000),(6549,'2019-02-10',32,18231,9000),(6550,'2019-02-10',33,23093,7000),(6551,'2019-02-10',34,23093,8000),(6554,'2019-02-10',37,24309,8000),(6555,'2019-02-10',38,23093,6000),(6556,'2019-02-10',39,14585,8000),(6557,'2019-02-10',40,20662,10000),(6558,'2019-02-10',41,9724,7000),(6560,'2019-02-10',43,13369,7000),(6561,'2019-02-10',44,13369,1000),(6562,'2019-02-10',45,14585,6000),(6563,'2019-02-10',46,15800,2000),(6564,'2019-02-10',47,13369,2000),(6565,'2019-02-10',48,25524,3000),(6566,'2019-02-10',49,15800,7000),(6567,'2019-02-10',50,10938,11000),(6568,'2019-02-10',51,6076,2000),(6569,'2019-02-10',52,19448,11000),(6570,'2019-02-10',53,25524,8000),(6571,'2019-02-10',54,21878,8000),(6572,'2019-02-10',55,6076,5000),(6573,'2019-02-10',56,23093,10000),(6574,'2019-02-10',57,23093,9000),(6575,'2019-02-10',58,13369,11000),(6576,'2019-02-10',59,10938,7000),(6577,'2019-02-10',60,13369,1000),(6578,'2019-02-10',61,24309,3000),(6579,'2019-02-10',62,15800,2000),(6580,'2019-02-10',63,15800,10000),(6581,'2019-02-10',64,6076,7000),(6582,'2019-02-10',65,14585,9000),(6583,'2019-02-10',66,19448,1000),(6584,'2019-02-10',67,9724,1000),(6585,'2019-02-10',68,25524,11000),(6586,'2019-02-10',69,13369,4000),(6587,'2019-02-10',70,12154,1000),(6589,'2019-02-10',72,13369,1000),(6590,'2019-02-10',73,17016,4000),(6591,'2019-02-10',74,12154,10000),(6592,'2019-02-10',75,13369,4000),(6593,'2019-02-10',76,20662,2000),(6594,'2019-02-10',77,8507,4000),(6595,'2019-02-10',78,10938,4000),(6596,'2019-02-10',79,15800,10000),(6598,'2019-02-10',81,17016,5000),(6599,'2019-02-10',82,8507,11000),(6600,'2019-02-10',83,9724,5000),(6601,'2019-02-10',84,10938,7000),(6602,'2019-02-10',85,15800,5000),(6603,'2019-02-10',86,24309,10000),(6604,'2019-02-10',87,7292,4000),(6605,'2019-02-10',88,20662,2000),(6606,'2019-02-10',89,7292,1000),(6607,'2019-02-10',90,6076,9000),(6608,'2019-02-10',91,20662,1000),(6609,'2019-02-10',92,19448,1000),(6610,'2019-02-10',93,8507,7000),(6611,'2019-02-10',94,14585,2000),(6612,'2019-02-10',95,19448,2000),(6613,'2019-02-10',96,14585,6000),(6614,'2019-02-10',97,7292,6000),(6615,'2019-02-10',98,19448,4000),(6616,'2019-02-10',99,15800,4000),(6617,'2019-02-10',100,14585,8000),(6618,'2019-02-10',101,7292,9000),(6619,'2019-02-10',102,23093,10000),(6622,'2019-02-10',105,21878,3000),(6623,'2019-02-10',106,23093,6000),(6624,'2019-02-10',107,18231,3000),(6625,'2019-02-10',108,18231,1000),(6626,'2019-02-10',109,8507,9000),(6627,'2019-02-10',110,18231,4000),(6628,'2019-02-10',111,6076,8000),(6629,'2019-02-10',112,24309,5000),(6630,'2019-02-10',113,10938,8000),(6631,'2019-02-10',114,6076,9000),(6632,'2019-02-10',115,13369,8000),(6633,'2019-02-10',116,9724,1000),(6634,'2019-02-10',117,25524,1000),(6635,'2019-02-10',118,23093,7000),(6636,'2019-02-10',119,23093,3000),(6637,'2019-02-10',120,10938,9000),(6638,'2019-02-10',121,9724,7000),(6639,'2019-02-10',122,21878,7000),(6640,'2019-02-10',123,19448,7000),(6641,'2019-02-10',124,14585,10000),(6642,'2019-02-10',125,17016,9000),(6643,'2019-02-10',126,10938,4000),(6644,'2019-02-10',127,17016,5000),(6646,'2019-02-10',129,14585,2000),(6647,'2019-02-10',130,9724,7000),(6649,'2019-02-10',132,10938,1000),(6650,'2019-02-10',133,6076,6000),(6651,'2019-03-10',1,17016,7000),(6652,'2019-03-10',2,20662,3000),(6653,'2019-03-10',3,9724,1000),(6654,'2019-03-10',4,17016,4000),(6655,'2019-03-10',5,17016,9000),(6656,'2019-03-10',6,17016,3000),(6657,'2019-03-10',7,23093,11000),(6658,'2019-03-10',8,23093,10000),(6659,'2019-03-10',9,13369,2000),(6660,'2019-03-10',10,21878,3000),(6661,'2019-03-10',11,17016,4000),(6662,'2019-03-10',12,15800,6000),(6663,'2019-03-10',13,18231,4000),(6664,'2019-03-10',14,12154,8000),(6665,'2019-03-10',15,10938,3000),(6666,'2019-03-10',16,21878,7000),(6667,'2019-03-10',17,19448,6000),(6668,'2019-03-10',18,7292,6000),(6670,'2019-03-10',20,19448,5000),(6671,'2019-03-10',21,18231,1000),(6672,'2019-03-10',22,14585,5000),(6675,'2019-03-10',25,23093,6000),(6676,'2019-03-10',26,8507,5000),(6677,'2019-03-10',27,24309,11000),(6678,'2019-03-10',28,17016,10000),(6679,'2019-03-10',29,23093,4000),(6680,'2019-03-10',30,7292,5000),(6681,'2019-03-10',31,25524,11000),(6682,'2019-03-10',32,18231,11000),(6683,'2019-03-10',33,23093,6000),(6684,'2019-03-10',34,23093,8000),(6687,'2019-03-10',37,24309,2000),(6688,'2019-03-10',38,23093,3000),(6689,'2019-03-10',39,14585,11000),(6690,'2019-03-10',40,20662,10000),(6691,'2019-03-10',41,9724,6000),(6693,'2019-03-10',43,13369,6000),(6694,'2019-03-10',44,13369,1000),(6695,'2019-03-10',45,14585,11000),(6696,'2019-03-10',46,15800,9000),(6697,'2019-03-10',47,13369,9000),(6698,'2019-03-10',48,25524,10000),(6699,'2019-03-10',49,15800,5000),(6700,'2019-03-10',50,10938,11000),(6701,'2019-03-10',51,6076,4000),(6702,'2019-03-10',52,19448,9000),(6703,'2019-03-10',53,25524,1000),(6704,'2019-03-10',54,21878,1000),(6705,'2019-03-10',55,6076,1000),(6706,'2019-03-10',56,23093,2000),(6707,'2019-03-10',57,23093,3000),(6708,'2019-03-10',58,13369,1000),(6709,'2019-03-10',59,10938,9000),(6710,'2019-03-10',60,13369,9000),(6711,'2019-03-10',61,24309,1000),(6712,'2019-03-10',62,15800,1000),(6713,'2019-03-10',63,15800,1000),(6714,'2019-03-10',64,6076,9000),(6715,'2019-03-10',65,14585,8000),(6716,'2019-03-10',66,19448,9000),(6717,'2019-03-10',67,9724,11000),(6718,'2019-03-10',68,25524,4000),(6719,'2019-03-10',69,13369,3000),(6720,'2019-03-10',70,12154,10000),(6722,'2019-03-10',72,13369,2000),(6723,'2019-03-10',73,17016,10000),(6724,'2019-03-10',74,12154,4000),(6725,'2019-03-10',75,13369,10000),(6726,'2019-03-10',76,20662,5000),(6727,'2019-03-10',77,8507,2000),(6728,'2019-03-10',78,10938,9000),(6729,'2019-03-10',79,15800,3000),(6731,'2019-03-10',81,17016,8000),(6732,'2019-03-10',82,8507,10000),(6733,'2019-03-10',83,9724,4000),(6734,'2019-03-10',84,10938,4000),(6735,'2019-03-10',85,15800,3000),(6736,'2019-03-10',86,24309,7000),(6737,'2019-03-10',87,7292,8000),(6738,'2019-03-10',88,20662,10000),(6739,'2019-03-10',89,7292,5000),(6740,'2019-03-10',90,6076,4000),(6741,'2019-03-10',91,20662,8000),(6742,'2019-03-10',92,19448,7000),(6743,'2019-03-10',93,8507,4000),(6744,'2019-03-10',94,14585,5000),(6745,'2019-03-10',95,19448,6000),(6746,'2019-03-10',96,14585,10000),(6747,'2019-03-10',97,7292,11000),(6748,'2019-03-10',98,19448,9000),(6749,'2019-03-10',99,15800,9000),(6750,'2019-03-10',100,14585,8000),(6751,'2019-03-10',101,7292,9000),(6752,'2019-03-10',102,23093,10000),(6755,'2019-03-10',105,21878,8000),(6756,'2019-03-10',106,23093,9000),(6757,'2019-03-10',107,18231,7000),(6758,'2019-03-10',108,18231,5000),(6759,'2019-03-10',109,8507,11000),(6760,'2019-03-10',110,18231,7000),(6761,'2019-03-10',111,6076,10000),(6762,'2019-03-10',112,24309,2000),(6763,'2019-03-10',113,10938,8000),(6764,'2019-03-10',114,6076,6000),(6765,'2019-03-10',115,13369,10000),(6766,'2019-03-10',116,9724,4000),(6767,'2019-03-10',117,25524,10000),(6768,'2019-03-10',118,23093,6000),(6769,'2019-03-10',119,23093,1000),(6770,'2019-03-10',120,10938,2000),(6771,'2019-03-10',121,9724,9000),(6772,'2019-03-10',122,21878,3000),(6773,'2019-03-10',123,19448,8000),(6774,'2019-03-10',124,14585,3000),(6775,'2019-03-10',125,17016,5000),(6776,'2019-03-10',126,10938,2000),(6777,'2019-03-10',127,17016,4000),(6779,'2019-03-10',129,14585,1000),(6780,'2019-03-10',130,9724,4000),(6782,'2019-03-10',132,10938,6000),(6783,'2019-03-10',133,6076,11000),(6784,'2019-04-10',1,17016,2000),(6785,'2019-04-10',2,20662,9000),(6786,'2019-04-10',3,9724,3000),(6787,'2019-04-10',4,17016,5000),(6788,'2019-04-10',5,17016,8000),(6789,'2019-04-10',6,17016,9000),(6790,'2019-04-10',7,23093,2000),(6791,'2019-04-10',8,23093,1000),(6792,'2019-04-10',9,13369,10000),(6793,'2019-04-10',10,21878,10000),(6794,'2019-04-10',11,17016,10000),(6795,'2019-04-10',12,15800,6000),(6796,'2019-04-10',13,18231,7000),(6797,'2019-04-10',14,12154,11000),(6798,'2019-04-10',15,10938,10000),(6799,'2019-04-10',16,21878,6000),(6800,'2019-04-10',17,19448,3000),(6801,'2019-04-10',18,7292,5000),(6803,'2019-04-10',20,19448,10000),(6804,'2019-04-10',21,18231,1000),(6805,'2019-04-10',22,14585,8000),(6808,'2019-04-10',25,23093,8000),(6809,'2019-04-10',26,8507,10000),(6810,'2019-04-10',27,24309,7000),(6811,'2019-04-10',28,17016,8000),(6812,'2019-04-10',29,23093,9000),(6813,'2019-04-10',30,7292,6000),(6814,'2019-04-10',31,25524,8000),(6815,'2019-04-10',32,18231,4000),(6816,'2019-04-10',33,23093,3000),(6817,'2019-04-10',34,23093,4000),(6820,'2019-04-10',37,24309,10000),(6821,'2019-04-10',38,23093,6000),(6822,'2019-04-10',39,14585,7000),(6823,'2019-04-10',40,20662,7000),(6824,'2019-04-10',41,9724,2000),(6826,'2019-04-10',43,13369,3000),(6827,'2019-04-10',44,13369,10000),(6828,'2019-04-10',45,14585,5000),(6829,'2019-04-10',46,15800,9000),(6830,'2019-04-10',47,13369,2000),(6831,'2019-04-10',48,25524,9000),(6832,'2019-04-10',49,15800,2000),(6833,'2019-04-10',50,10938,10000),(6834,'2019-04-10',51,6076,11000),(6835,'2019-04-10',52,19448,1000),(6836,'2019-04-10',53,25524,8000),(6837,'2019-04-10',54,21878,1000),(6838,'2019-04-10',55,6076,9000),(6839,'2019-04-10',56,23093,5000),(6840,'2019-04-10',57,23093,9000),(6841,'2019-04-10',58,13369,7000),(6842,'2019-04-10',59,10938,2000),(6843,'2019-04-10',60,13369,7000),(6844,'2019-04-10',61,24309,7000),(6845,'2019-04-10',62,15800,6000),(6846,'2019-04-10',63,15800,11000),(6847,'2019-04-10',64,6076,2000),(6848,'2019-04-10',65,14585,1000),(6849,'2019-04-10',66,19448,4000),(6850,'2019-04-10',67,9724,6000),(6851,'2019-04-10',68,25524,6000),(6852,'2019-04-10',69,13369,7000),(6853,'2019-04-10',70,12154,1000),(6855,'2019-04-10',72,13369,9000),(6856,'2019-04-10',73,17016,11000),(6857,'2019-04-10',74,12154,8000),(6858,'2019-04-10',75,13369,2000),(6859,'2019-04-10',76,20662,11000),(6860,'2019-04-10',77,8507,9000),(6861,'2019-04-10',78,10938,6000),(6862,'2019-04-10',79,15800,10000),(6864,'2019-04-10',81,17016,10000),(6865,'2019-04-10',82,8507,7000),(6866,'2019-04-10',83,9724,6000),(6867,'2019-04-10',84,10938,6000),(6868,'2019-04-10',85,15800,1000),(6869,'2019-04-10',86,24309,1000),(6870,'2019-04-10',87,7292,8000),(6871,'2019-04-10',88,20662,9000),(6872,'2019-04-10',89,7292,3000),(6873,'2019-04-10',90,6076,6000),(6874,'2019-04-10',91,20662,5000),(6875,'2019-04-10',92,19448,11000),(6876,'2019-04-10',93,8507,11000),(6877,'2019-04-10',94,14585,7000),(6878,'2019-04-10',95,19448,6000),(6879,'2019-04-10',96,14585,7000),(6880,'2019-04-10',97,7292,6000),(6881,'2019-04-10',98,19448,5000),(6882,'2019-04-10',99,15800,5000),(6883,'2019-04-10',100,14585,6000),(6884,'2019-04-10',101,7292,1000),(6885,'2019-04-10',102,23093,3000),(6888,'2019-04-10',105,21878,2000),(6889,'2019-04-10',106,23093,4000),(6890,'2019-04-10',107,18231,8000),(6891,'2019-04-10',108,18231,3000),(6892,'2019-04-10',109,8507,2000),(6893,'2019-04-10',110,18231,9000),(6894,'2019-04-10',111,6076,4000),(6895,'2019-04-10',112,24309,10000),(6896,'2019-04-10',113,10938,3000),(6897,'2019-04-10',114,6076,6000),(6898,'2019-04-10',115,13369,3000),(6899,'2019-04-10',116,9724,1000),(6900,'2019-04-10',117,25524,2000),(6901,'2019-04-10',118,23093,8000),(6902,'2019-04-10',119,23093,10000),(6903,'2019-04-10',120,10938,6000),(6904,'2019-04-10',121,9724,8000),(6905,'2019-04-10',122,21878,2000),(6906,'2019-04-10',123,19448,9000),(6907,'2019-04-10',124,14585,9000),(6908,'2019-04-10',125,17016,8000),(6909,'2019-04-10',126,10938,6000),(6910,'2019-04-10',127,17016,4000),(6912,'2019-04-10',129,14585,6000),(6913,'2019-04-10',130,9724,2000),(6915,'2019-04-10',132,10938,4000),(6916,'2019-04-10',133,6076,8000),(6917,'2019-05-10',1,17016,7000),(6918,'2019-05-10',2,20662,8000),(6919,'2019-05-10',3,9724,2000),(6920,'2019-05-10',4,17016,5000),(6921,'2019-05-10',5,17016,11000),(6922,'2019-05-10',6,17016,9000),(6923,'2019-05-10',7,23093,6000),(6924,'2019-05-10',8,23093,4000),(6925,'2019-05-10',9,13369,2000),(6926,'2019-05-10',10,21878,4000),(6927,'2019-05-10',11,17016,2000),(6928,'2019-05-10',12,15800,11000),(6929,'2019-05-10',13,18231,10000),(6930,'2019-05-10',14,12154,8000),(6931,'2019-05-10',15,10938,7000),(6932,'2019-05-10',16,21878,2000),(6933,'2019-05-10',17,19448,8000),(6934,'2019-05-10',18,7292,4000),(6936,'2019-05-10',20,19448,9000),(6937,'2019-05-10',21,18231,4000),(6938,'2019-05-10',22,14585,11000),(6941,'2019-05-10',25,23093,7000),(6942,'2019-05-10',26,8507,1000),(6943,'2019-05-10',27,24309,4000),(6944,'2019-05-10',28,17016,7000),(6945,'2019-05-10',29,23093,1000),(6946,'2019-05-10',30,7292,1000),(6947,'2019-05-10',31,25524,4000),(6948,'2019-05-10',32,18231,4000),(6949,'2019-05-10',33,23093,10000),(6950,'2019-05-10',34,23093,11000),(6953,'2019-05-10',37,24309,4000),(6954,'2019-05-10',38,23093,4000),(6955,'2019-05-10',39,14585,7000),(6956,'2019-05-10',40,20662,7000),(6957,'2019-05-10',41,9724,1000),(6959,'2019-05-10',43,13369,1000),(6960,'2019-05-10',44,13369,6000),(6961,'2019-05-10',45,14585,3000),(6962,'2019-05-10',46,15800,11000),(6963,'2019-05-10',47,13369,3000),(6964,'2019-05-10',48,25524,6000),(6965,'2019-05-10',49,15800,7000),(6966,'2019-05-10',50,10938,5000),(6967,'2019-05-10',51,6076,1000),(6968,'2019-05-10',52,19448,1000),(6969,'2019-05-10',53,25524,7000),(6970,'2019-05-10',54,21878,3000),(6971,'2019-05-10',55,6076,4000),(6972,'2019-05-10',56,23093,9000),(6973,'2019-05-10',57,23093,6000),(6974,'2019-05-10',58,13369,4000),(6975,'2019-05-10',59,10938,1000),(6976,'2019-05-10',60,13369,2000),(6977,'2019-05-10',61,24309,4000),(6978,'2019-05-10',62,15800,8000),(6979,'2019-05-10',63,15800,10000),(6980,'2019-05-10',64,6076,2000),(6981,'2019-05-10',65,14585,11000),(6982,'2019-05-10',66,19448,8000),(6983,'2019-05-10',67,9724,5000),(6984,'2019-05-10',68,25524,2000),(6985,'2019-05-10',69,13369,3000),(6986,'2019-05-10',70,12154,6000),(6988,'2019-05-10',72,13369,10000),(6989,'2019-05-10',73,17016,9000),(6990,'2019-05-10',74,12154,3000),(6991,'2019-05-10',75,13369,4000),(6992,'2019-05-10',76,20662,2000),(6993,'2019-05-10',77,8507,1000),(6994,'2019-05-10',78,10938,9000),(6995,'2019-05-10',79,15800,8000),(6997,'2019-05-10',81,17016,5000),(6998,'2019-05-10',82,8507,8000),(6999,'2019-05-10',83,9724,2000),(7000,'2019-05-10',84,10938,8000),(7001,'2019-05-10',85,15800,5000),(7002,'2019-05-10',86,24309,2000),(7003,'2019-05-10',87,7292,4000),(7004,'2019-05-10',88,20662,5000),(7005,'2019-05-10',89,7292,4000),(7006,'2019-05-10',90,6076,3000),(7007,'2019-05-10',91,20662,9000),(7008,'2019-05-10',92,19448,10000),(7009,'2019-05-10',93,8507,9000),(7010,'2019-05-10',94,14585,6000),(7011,'2019-05-10',95,19448,5000),(7012,'2019-05-10',96,14585,8000),(7013,'2019-05-10',97,7292,6000),(7014,'2019-05-10',98,19448,3000),(7015,'2019-05-10',99,15800,10000),(7016,'2019-05-10',100,14585,10000),(7017,'2019-05-10',101,7292,5000),(7018,'2019-05-10',102,23093,3000),(7021,'2019-05-10',105,21878,6000),(7022,'2019-05-10',106,23093,2000),(7023,'2019-05-10',107,18231,10000),(7024,'2019-05-10',108,18231,5000),(7025,'2019-05-10',109,8507,7000),(7026,'2019-05-10',110,18231,1000),(7027,'2019-05-10',111,6076,3000),(7028,'2019-05-10',112,24309,2000),(7029,'2019-05-10',113,10938,2000),(7030,'2019-05-10',114,6076,9000),(7031,'2019-05-10',115,13369,1000),(7032,'2019-05-10',116,9724,5000),(7033,'2019-05-10',117,25524,6000),(7034,'2019-05-10',118,23093,3000),(7035,'2019-05-10',119,23093,6000),(7036,'2019-05-10',120,10938,8000),(7037,'2019-05-10',121,9724,4000),(7038,'2019-05-10',122,21878,1000),(7039,'2019-05-10',123,19448,10000),(7040,'2019-05-10',124,14585,11000),(7041,'2019-05-10',125,17016,8000),(7042,'2019-05-10',126,10938,7000),(7043,'2019-05-10',127,17016,8000),(7045,'2019-05-10',129,14585,4000),(7046,'2019-05-10',130,9724,7000),(7048,'2019-05-10',132,10938,6000),(7049,'2019-05-10',133,6076,2000),(7050,'2019-06-10',1,17016,9000),(7051,'2019-06-10',2,20662,4000),(7052,'2019-06-10',3,9724,10000),(7053,'2019-06-10',4,17016,7000),(7054,'2019-06-10',5,17016,11000),(7055,'2019-06-10',6,17016,6000),(7056,'2019-06-10',7,23093,3000),(7057,'2019-06-10',8,23093,7000),(7058,'2019-06-10',9,13369,6000),(7059,'2019-06-10',10,21878,11000),(7060,'2019-06-10',11,17016,3000),(7061,'2019-06-10',12,15800,8000),(7062,'2019-06-10',13,18231,11000),(7063,'2019-06-10',14,12154,8000),(7064,'2019-06-10',15,10938,2000),(7065,'2019-06-10',16,21878,11000),(7066,'2019-06-10',17,19448,3000),(7067,'2019-06-10',18,7292,10000),(7069,'2019-06-10',20,19448,10000),(7070,'2019-06-10',21,18231,6000),(7071,'2019-06-10',22,14585,11000),(7074,'2019-06-10',25,23093,1000),(7075,'2019-06-10',26,8507,1000),(7076,'2019-06-10',27,24309,3000),(7077,'2019-06-10',28,17016,5000),(7078,'2019-06-10',29,23093,10000),(7079,'2019-06-10',30,7292,6000),(7080,'2019-06-10',31,25524,7000),(7081,'2019-06-10',32,18231,8000),(7082,'2019-06-10',33,23093,1000),(7083,'2019-06-10',34,23093,1000),(7086,'2019-06-10',37,24309,11000),(7087,'2019-06-10',38,23093,7000),(7088,'2019-06-10',39,14585,10000),(7089,'2019-06-10',40,20662,5000),(7090,'2019-06-10',41,9724,1000),(7092,'2019-06-10',43,13369,3000),(7093,'2019-06-10',44,13369,6000),(7094,'2019-06-10',45,14585,1000),(7095,'2019-06-10',46,15800,10000),(7096,'2019-06-10',47,13369,2000),(7097,'2019-06-10',48,25524,4000),(7098,'2019-06-10',49,15800,9000),(7099,'2019-06-10',50,10938,4000),(7100,'2019-06-10',51,6076,11000),(7101,'2019-06-10',52,19448,11000),(7102,'2019-06-10',53,25524,5000),(7103,'2019-06-10',54,21878,8000),(7104,'2019-06-10',55,6076,5000),(7105,'2019-06-10',56,23093,7000),(7106,'2019-06-10',57,23093,9000),(7107,'2019-06-10',58,13369,11000),(7108,'2019-06-10',59,10938,4000),(7109,'2019-06-10',60,13369,2000),(7110,'2019-06-10',61,24309,6000),(7111,'2019-06-10',62,15800,5000),(7112,'2019-06-10',63,15800,6000),(7113,'2019-06-10',64,6076,8000),(7114,'2019-06-10',65,14585,5000),(7115,'2019-06-10',66,19448,5000),(7116,'2019-06-10',67,9724,9000),(7117,'2019-06-10',68,25524,5000),(7118,'2019-06-10',69,13369,6000),(7119,'2019-06-10',70,12154,11000),(7120,'2019-06-10',71,10938,10000),(7121,'2019-06-10',72,13369,1000),(7122,'2019-06-10',73,17016,3000),(7123,'2019-06-10',74,12154,9000),(7124,'2019-06-10',75,13369,8000),(7125,'2019-06-10',76,20662,7000),(7126,'2019-06-10',77,8507,1000),(7127,'2019-06-10',78,10938,10000),(7128,'2019-06-10',79,15800,2000),(7129,'2019-06-10',80,17016,9000),(7130,'2019-06-10',81,17016,8000),(7131,'2019-06-10',82,8507,10000),(7132,'2019-06-10',83,9724,1000),(7133,'2019-06-10',84,10938,4000),(7134,'2019-06-10',85,15800,1000),(7135,'2019-06-10',86,24309,8000),(7136,'2019-06-10',87,7292,4000),(7137,'2019-06-10',88,20662,1000),(7138,'2019-06-10',89,7292,1000),(7139,'2019-06-10',90,6076,10000),(7140,'2019-06-10',91,20662,4000),(7141,'2019-06-10',92,19448,3000),(7142,'2019-06-10',93,8507,4000),(7143,'2019-06-10',94,14585,5000),(7144,'2019-06-10',95,19448,8000),(7145,'2019-06-10',96,14585,7000),(7146,'2019-06-10',97,7292,3000),(7147,'2019-06-10',98,19448,10000),(7148,'2019-06-10',99,15800,8000),(7149,'2019-06-10',100,14585,1000),(7150,'2019-06-10',101,7292,11000),(7151,'2019-06-10',102,23093,2000),(7154,'2019-06-10',105,21878,4000),(7155,'2019-06-10',106,23093,8000),(7156,'2019-06-10',107,18231,7000),(7157,'2019-06-10',108,18231,11000),(7158,'2019-06-10',109,8507,6000),(7159,'2019-06-10',110,18231,5000),(7160,'2019-06-10',111,6076,7000),(7161,'2019-06-10',112,24309,11000),(7162,'2019-06-10',113,10938,7000),(7163,'2019-06-10',114,6076,3000),(7164,'2019-06-10',115,13369,8000),(7165,'2019-06-10',116,9724,8000),(7166,'2019-06-10',117,25524,11000),(7167,'2019-06-10',118,23093,4000),(7168,'2019-06-10',119,23093,5000),(7169,'2019-06-10',120,10938,4000),(7170,'2019-06-10',121,9724,1000),(7171,'2019-06-10',122,21878,1000),(7172,'2019-06-10',123,19448,5000),(7173,'2019-06-10',124,14585,7000),(7174,'2019-06-10',125,17016,3000),(7175,'2019-06-10',126,10938,2000),(7176,'2019-06-10',127,17016,8000),(7178,'2019-06-10',129,14585,11000),(7179,'2019-06-10',130,9724,7000),(7181,'2019-06-10',132,10938,2000),(7182,'2019-06-10',133,6076,11000),(7183,'2019-07-10',1,17016,4000),(7184,'2019-07-10',2,20662,3000),(7185,'2019-07-10',3,9724,10000),(7186,'2019-07-10',4,17016,3000),(7187,'2019-07-10',5,17016,1000),(7188,'2019-07-10',6,17016,1000),(7189,'2019-07-10',7,23093,3000),(7190,'2019-07-10',8,23093,6000),(7191,'2019-07-10',9,13369,9000),(7192,'2019-07-10',10,21878,2000),(7193,'2019-07-10',11,17016,5000),(7194,'2019-07-10',12,15800,1000),(7195,'2019-07-10',13,18231,8000),(7196,'2019-07-10',14,12154,11000),(7197,'2019-07-10',15,10938,11000),(7198,'2019-07-10',16,21878,3000),(7199,'2019-07-10',17,19448,2000),(7200,'2019-07-10',18,7292,11000),(7201,'2019-07-10',19,25524,9000),(7202,'2019-07-10',20,19448,8000),(7203,'2019-07-10',21,18231,2000),(7204,'2019-07-10',22,14585,5000),(7207,'2019-07-10',25,23093,3000),(7208,'2019-07-10',26,8507,11000),(7209,'2019-07-10',27,24309,2000),(7210,'2019-07-10',28,17016,3000),(7211,'2019-07-10',29,23093,7000),(7212,'2019-07-10',30,7292,4000),(7213,'2019-07-10',31,25524,3000),(7214,'2019-07-10',32,18231,3000),(7215,'2019-07-10',33,23093,10000),(7216,'2019-07-10',34,23093,3000),(7219,'2019-07-10',37,24309,2000),(7220,'2019-07-10',38,23093,10000),(7221,'2019-07-10',39,14585,9000),(7222,'2019-07-10',40,20662,5000),(7223,'2019-07-10',41,9724,11000),(7225,'2019-07-10',43,13369,1000),(7226,'2019-07-10',44,13369,11000),(7227,'2019-07-10',45,14585,9000),(7228,'2019-07-10',46,15800,2000),(7229,'2019-07-10',47,13369,9000),(7230,'2019-07-10',48,25524,8000),(7231,'2019-07-10',49,15800,4000),(7232,'2019-07-10',50,10938,7000),(7233,'2019-07-10',51,6076,2000),(7234,'2019-07-10',52,19448,5000),(7235,'2019-07-10',53,25524,6000),(7236,'2019-07-10',54,21878,8000),(7237,'2019-07-10',55,6076,3000),(7238,'2019-07-10',56,23093,3000),(7239,'2019-07-10',57,23093,9000),(7240,'2019-07-10',58,13369,1000),(7241,'2019-07-10',59,10938,6000),(7242,'2019-07-10',60,13369,6000),(7243,'2019-07-10',61,24309,4000),(7244,'2019-07-10',62,15800,11000),(7245,'2019-07-10',63,15800,10000),(7246,'2019-07-10',64,6076,9000),(7247,'2019-07-10',65,14585,7000),(7248,'2019-07-10',66,19448,3000),(7249,'2019-07-10',67,9724,6000),(7250,'2019-07-10',68,25524,9000),(7251,'2019-07-10',69,13369,10000),(7252,'2019-07-10',70,12154,9000),(7253,'2019-07-10',71,10938,11000),(7254,'2019-07-10',72,13369,3000),(7255,'2019-07-10',73,17016,2000),(7256,'2019-07-10',74,12154,4000),(7257,'2019-07-10',75,13369,2000),(7258,'2019-07-10',76,20662,10000),(7259,'2019-07-10',77,8507,5000),(7260,'2019-07-10',78,10938,6000),(7261,'2019-07-10',79,15800,5000),(7262,'2019-07-10',80,17016,7000),(7263,'2019-07-10',81,17016,9000),(7264,'2019-07-10',82,8507,2000),(7265,'2019-07-10',83,9724,2000),(7266,'2019-07-10',84,10938,6000),(7267,'2019-07-10',85,15800,2000),(7268,'2019-07-10',86,24309,7000),(7269,'2019-07-10',87,7292,7000),(7270,'2019-07-10',88,20662,1000),(7271,'2019-07-10',89,7292,4000),(7272,'2019-07-10',90,6076,8000),(7273,'2019-07-10',91,20662,10000),(7274,'2019-07-10',92,19448,6000),(7275,'2019-07-10',93,8507,8000),(7276,'2019-07-10',94,14585,6000),(7277,'2019-07-10',95,19448,5000),(7278,'2019-07-10',96,14585,1000),(7279,'2019-07-10',97,7292,8000),(7280,'2019-07-10',98,19448,7000),(7281,'2019-07-10',99,15800,10000),(7282,'2019-07-10',100,14585,2000),(7283,'2019-07-10',101,7292,9000),(7284,'2019-07-10',102,23093,10000),(7287,'2019-07-10',105,21878,2000),(7288,'2019-07-10',106,23093,3000),(7289,'2019-07-10',107,18231,1000),(7290,'2019-07-10',108,18231,4000),(7291,'2019-07-10',109,8507,10000),(7292,'2019-07-10',110,18231,3000),(7293,'2019-07-10',111,6076,7000),(7294,'2019-07-10',112,24309,11000),(7295,'2019-07-10',113,10938,10000),(7296,'2019-07-10',114,6076,1000),(7297,'2019-07-10',115,13369,8000),(7298,'2019-07-10',116,9724,3000),(7299,'2019-07-10',117,25524,1000),(7300,'2019-07-10',118,23093,1000),(7301,'2019-07-10',119,23093,6000),(7302,'2019-07-10',120,10938,11000),(7303,'2019-07-10',121,9724,1000),(7304,'2019-07-10',122,21878,9000),(7305,'2019-07-10',123,19448,4000),(7306,'2019-07-10',124,14585,6000),(7307,'2019-07-10',125,17016,3000),(7308,'2019-07-10',126,10938,2000),(7309,'2019-07-10',127,17016,2000),(7311,'2019-07-10',129,14585,9000),(7312,'2019-07-10',130,9724,3000),(7314,'2019-07-10',132,10938,6000),(7315,'2019-07-10',133,6076,7000),(7316,'2019-08-10',1,17016,6000),(7317,'2019-08-10',2,20662,5000),(7318,'2019-08-10',3,9724,11000),(7319,'2019-08-10',4,17016,2000),(7320,'2019-08-10',5,17016,2000),(7321,'2019-08-10',6,17016,10000),(7322,'2019-08-10',7,23093,9000),(7323,'2019-08-10',8,23093,1000),(7324,'2019-08-10',9,13369,7000),(7325,'2019-08-10',10,21878,7000),(7326,'2019-08-10',11,17016,9000),(7327,'2019-08-10',12,15800,2000),(7328,'2019-08-10',13,18231,1000),(7329,'2019-08-10',14,12154,4000),(7330,'2019-08-10',15,10938,10000),(7331,'2019-08-10',16,21878,11000),(7332,'2019-08-10',17,19448,10000),(7333,'2019-08-10',18,7292,10000),(7334,'2019-08-10',19,25524,7000),(7335,'2019-08-10',20,19448,5000),(7336,'2019-08-10',21,18231,1000),(7337,'2019-08-10',22,14585,5000),(7340,'2019-08-10',25,23093,3000),(7341,'2019-08-10',26,8507,10000),(7342,'2019-08-10',27,24309,2000),(7343,'2019-08-10',28,17016,6000),(7344,'2019-08-10',29,23093,9000),(7345,'2019-08-10',30,7292,1000),(7346,'2019-08-10',31,25524,6000),(7347,'2019-08-10',32,18231,6000),(7348,'2019-08-10',33,23093,10000),(7349,'2019-08-10',34,23093,7000),(7352,'2019-08-10',37,24309,10000),(7353,'2019-08-10',38,23093,4000),(7354,'2019-08-10',39,14585,6000),(7355,'2019-08-10',40,20662,7000),(7356,'2019-08-10',41,9724,8000),(7358,'2019-08-10',43,13369,4000),(7359,'2019-08-10',44,13369,6000),(7360,'2019-08-10',45,14585,7000),(7361,'2019-08-10',46,15800,10000),(7362,'2019-08-10',47,13369,1000),(7363,'2019-08-10',48,25524,2000),(7364,'2019-08-10',49,15800,5000),(7365,'2019-08-10',50,10938,4000),(7366,'2019-08-10',51,6076,7000),(7367,'2019-08-10',52,19448,5000),(7368,'2019-08-10',53,25524,11000),(7369,'2019-08-10',54,21878,10000),(7370,'2019-08-10',55,6076,9000),(7371,'2019-08-10',56,23093,5000),(7372,'2019-08-10',57,23093,8000),(7373,'2019-08-10',58,13369,7000),(7374,'2019-08-10',59,10938,1000),(7375,'2019-08-10',60,13369,9000),(7376,'2019-08-10',61,24309,7000),(7377,'2019-08-10',62,15800,8000),(7378,'2019-08-10',63,15800,8000),(7379,'2019-08-10',64,6076,8000),(7380,'2019-08-10',65,14585,11000),(7381,'2019-08-10',66,19448,8000),(7382,'2019-08-10',67,9724,3000),(7383,'2019-08-10',68,25524,11000),(7384,'2019-08-10',69,13369,8000),(7385,'2019-08-10',70,12154,3000),(7386,'2019-08-10',71,10938,9000),(7387,'2019-08-10',72,13369,11000),(7388,'2019-08-10',73,17016,11000),(7389,'2019-08-10',74,12154,2000),(7390,'2019-08-10',75,13369,10000),(7391,'2019-08-10',76,20662,9000),(7392,'2019-08-10',77,8507,3000),(7393,'2019-08-10',78,10938,10000),(7394,'2019-08-10',79,15800,6000),(7395,'2019-08-10',80,17016,3000),(7396,'2019-08-10',81,17016,6000),(7397,'2019-08-10',82,8507,1000),(7398,'2019-08-10',83,9724,8000),(7399,'2019-08-10',84,10938,10000),(7400,'2019-08-10',85,15800,11000),(7401,'2019-08-10',86,24309,11000),(7402,'2019-08-10',87,7292,10000),(7403,'2019-08-10',88,20662,2000),(7404,'2019-08-10',89,7292,9000),(7405,'2019-08-10',90,6076,11000),(7406,'2019-08-10',91,20662,2000),(7407,'2019-08-10',92,19448,2000),(7408,'2019-08-10',93,8507,4000),(7409,'2019-08-10',94,14585,6000),(7410,'2019-08-10',95,19448,5000),(7411,'2019-08-10',96,14585,11000),(7412,'2019-08-10',97,7292,11000),(7413,'2019-08-10',98,19448,1000),(7414,'2019-08-10',99,15800,1000),(7415,'2019-08-10',100,14585,7000),(7416,'2019-08-10',101,7292,5000),(7417,'2019-08-10',102,23093,4000),(7420,'2019-08-10',105,21878,9000),(7421,'2019-08-10',106,23093,11000),(7422,'2019-08-10',107,18231,7000),(7423,'2019-08-10',108,18231,6000),(7424,'2019-08-10',109,8507,7000),(7425,'2019-08-10',110,18231,3000),(7426,'2019-08-10',111,6076,8000),(7427,'2019-08-10',112,24309,6000),(7428,'2019-08-10',113,10938,4000),(7429,'2019-08-10',114,6076,2000),(7430,'2019-08-10',115,13369,10000),(7431,'2019-08-10',116,9724,3000),(7432,'2019-08-10',117,25524,7000),(7433,'2019-08-10',118,23093,1000),(7434,'2019-08-10',119,23093,10000),(7435,'2019-08-10',120,10938,2000),(7436,'2019-08-10',121,9724,1000),(7437,'2019-08-10',122,21878,7000),(7438,'2019-08-10',123,19448,10000),(7439,'2019-08-10',124,14585,9000),(7440,'2019-08-10',125,17016,6000),(7441,'2019-08-10',126,10938,8000),(7442,'2019-08-10',127,17016,7000),(7444,'2019-08-10',129,14585,4000),(7445,'2019-08-10',130,9724,6000),(7447,'2019-08-10',132,10938,4000),(7448,'2019-08-10',133,6076,8000),(7449,'2019-09-10',1,17016,9000),(7450,'2019-09-10',2,20662,11000),(7451,'2019-09-10',3,9724,11000),(7452,'2019-09-10',4,17016,4000),(7453,'2019-09-10',5,17016,9000),(7454,'2019-09-10',6,17016,7000),(7455,'2019-09-10',7,23093,10000),(7456,'2019-09-10',8,23093,1000),(7457,'2019-09-10',9,13369,10000),(7458,'2019-09-10',10,21878,10000),(7459,'2019-09-10',11,17016,11000),(7460,'2019-09-10',12,15800,6000),(7461,'2019-09-10',13,18231,4000),(7462,'2019-09-10',14,12154,5000),(7463,'2019-09-10',15,10938,1000),(7464,'2019-09-10',16,21878,6000),(7465,'2019-09-10',17,19448,7000),(7466,'2019-09-10',18,7292,8000),(7467,'2019-09-10',19,25524,6000),(7468,'2019-09-10',20,19448,11000),(7469,'2019-09-10',21,18231,3000),(7470,'2019-09-10',22,14585,3000),(7473,'2019-09-10',25,23093,3000),(7474,'2019-09-10',26,8507,5000),(7475,'2019-09-10',27,24309,10000),(7476,'2019-09-10',28,17016,4000),(7477,'2019-09-10',29,23093,8000),(7478,'2019-09-10',30,7292,1000),(7479,'2019-09-10',31,25524,9000),(7480,'2019-09-10',32,18231,4000),(7481,'2019-09-10',33,23093,11000),(7482,'2019-09-10',34,23093,10000),(7484,'2019-09-10',36,17016,3000),(7485,'2019-09-10',37,24309,4000),(7486,'2019-09-10',38,23093,7000),(7487,'2019-09-10',39,14585,7000),(7488,'2019-09-10',40,20662,4000),(7489,'2019-09-10',41,9724,8000),(7491,'2019-09-10',43,13369,4000),(7492,'2019-09-10',44,13369,5000),(7493,'2019-09-10',45,14585,7000),(7494,'2019-09-10',46,15800,5000),(7495,'2019-09-10',47,13369,5000),(7496,'2019-09-10',48,25524,11000),(7497,'2019-09-10',49,15800,3000),(7498,'2019-09-10',50,10938,3000),(7499,'2019-09-10',51,6076,5000),(7500,'2019-09-10',52,19448,3000),(7501,'2019-09-10',53,25524,11000),(7502,'2019-09-10',54,21878,8000),(7503,'2019-09-10',55,6076,6000),(7504,'2019-09-10',56,23093,5000),(7505,'2019-09-10',57,23093,10000),(7506,'2019-09-10',58,13369,3000),(7507,'2019-09-10',59,10938,5000),(7508,'2019-09-10',60,13369,11000),(7509,'2019-09-10',61,24309,2000),(7510,'2019-09-10',62,15800,9000),(7511,'2019-09-10',63,15800,5000),(7512,'2019-09-10',64,6076,2000),(7513,'2019-09-10',65,14585,5000),(7514,'2019-09-10',66,19448,6000),(7515,'2019-09-10',67,9724,7000),(7516,'2019-09-10',68,25524,5000),(7517,'2019-09-10',69,13369,1000),(7518,'2019-09-10',70,12154,10000),(7519,'2019-09-10',71,10938,4000),(7520,'2019-09-10',72,13369,2000),(7521,'2019-09-10',73,17016,10000),(7522,'2019-09-10',74,12154,4000),(7523,'2019-09-10',75,13369,1000),(7524,'2019-09-10',76,20662,6000),(7525,'2019-09-10',77,8507,9000),(7526,'2019-09-10',78,10938,6000),(7527,'2019-09-10',79,15800,7000),(7528,'2019-09-10',80,17016,5000),(7529,'2019-09-10',81,17016,5000),(7530,'2019-09-10',82,8507,9000),(7531,'2019-09-10',83,9724,10000),(7532,'2019-09-10',84,10938,4000),(7533,'2019-09-10',85,15800,7000),(7534,'2019-09-10',86,24309,7000),(7535,'2019-09-10',87,7292,6000),(7536,'2019-09-10',88,20662,5000),(7537,'2019-09-10',89,7292,2000),(7538,'2019-09-10',90,6076,1000),(7539,'2019-09-10',91,20662,10000),(7540,'2019-09-10',92,19448,8000),(7541,'2019-09-10',93,8507,9000),(7542,'2019-09-10',94,14585,2000),(7543,'2019-09-10',95,19448,7000),(7544,'2019-09-10',96,14585,10000),(7545,'2019-09-10',97,7292,9000),(7546,'2019-09-10',98,19448,5000),(7547,'2019-09-10',99,15800,5000),(7548,'2019-09-10',100,14585,2000),(7549,'2019-09-10',101,7292,4000),(7550,'2019-09-10',102,23093,9000),(7553,'2019-09-10',105,21878,2000),(7554,'2019-09-10',106,23093,2000),(7555,'2019-09-10',107,18231,7000),(7556,'2019-09-10',108,18231,7000),(7557,'2019-09-10',109,8507,11000),(7558,'2019-09-10',110,18231,3000),(7559,'2019-09-10',111,6076,1000),(7560,'2019-09-10',112,24309,9000),(7561,'2019-09-10',113,10938,3000),(7562,'2019-09-10',114,6076,5000),(7563,'2019-09-10',115,13369,7000),(7564,'2019-09-10',116,9724,5000),(7565,'2019-09-10',117,25524,1000),(7566,'2019-09-10',118,23093,9000),(7567,'2019-09-10',119,23093,8000),(7568,'2019-09-10',120,10938,9000),(7569,'2019-09-10',121,9724,1000),(7570,'2019-09-10',122,21878,11000),(7571,'2019-09-10',123,19448,3000),(7572,'2019-09-10',124,14585,8000),(7573,'2019-09-10',125,17016,9000),(7574,'2019-09-10',126,10938,7000),(7575,'2019-09-10',127,17016,2000),(7577,'2019-09-10',129,14585,8000),(7578,'2019-09-10',130,9724,7000),(7580,'2019-09-10',132,10938,2000),(7581,'2019-09-10',133,6076,10000),(7582,'2019-10-10',1,17016,6000),(7583,'2019-10-10',2,20662,3000),(7584,'2019-10-10',3,9724,7000),(7585,'2019-10-10',4,17016,2000),(7586,'2019-10-10',5,17016,10000),(7587,'2019-10-10',6,17016,5000),(7588,'2019-10-10',7,23093,6000),(7589,'2019-10-10',8,23093,8000),(7590,'2019-10-10',9,13369,4000),(7591,'2019-10-10',10,21878,11000),(7592,'2019-10-10',11,17016,10000),(7593,'2019-10-10',12,15800,11000),(7594,'2019-10-10',13,18231,9000),(7595,'2019-10-10',14,12154,5000),(7596,'2019-10-10',15,10938,11000),(7597,'2019-10-10',16,21878,11000),(7598,'2019-10-10',17,19448,11000),(7599,'2019-10-10',18,7292,8000),(7600,'2019-10-10',19,25524,5000),(7601,'2019-10-10',20,19448,8000),(7602,'2019-10-10',21,18231,1000),(7603,'2019-10-10',22,14585,10000),(7606,'2019-10-10',25,23093,7000),(7607,'2019-10-10',26,8507,2000),(7608,'2019-10-10',27,24309,2000),(7609,'2019-10-10',28,17016,8000),(7610,'2019-10-10',29,23093,8000),(7611,'2019-10-10',30,7292,1000),(7612,'2019-10-10',31,25524,2000),(7613,'2019-10-10',32,18231,11000),(7614,'2019-10-10',33,23093,5000),(7615,'2019-10-10',34,23093,10000),(7617,'2019-10-10',36,17016,11000),(7618,'2019-10-10',37,24309,3000),(7619,'2019-10-10',38,23093,9000),(7620,'2019-10-10',39,14585,8000),(7621,'2019-10-10',40,20662,5000),(7622,'2019-10-10',41,9724,6000),(7624,'2019-10-10',43,13369,5000),(7625,'2019-10-10',44,13369,10000),(7626,'2019-10-10',45,14585,10000),(7627,'2019-10-10',46,15800,6000),(7628,'2019-10-10',47,13369,1000),(7629,'2019-10-10',48,25524,5000),(7630,'2019-10-10',49,15800,8000),(7631,'2019-10-10',50,10938,5000),(7632,'2019-10-10',51,6076,4000),(7633,'2019-10-10',52,19448,1000),(7634,'2019-10-10',53,25524,11000),(7635,'2019-10-10',54,21878,1000),(7636,'2019-10-10',55,6076,2000),(7637,'2019-10-10',56,23093,6000),(7638,'2019-10-10',57,23093,2000),(7639,'2019-10-10',58,13369,11000),(7640,'2019-10-10',59,10938,1000),(7641,'2019-10-10',60,13369,11000),(7642,'2019-10-10',61,24309,5000),(7643,'2019-10-10',62,15800,4000),(7644,'2019-10-10',63,15800,1000),(7645,'2019-10-10',64,6076,8000),(7646,'2019-10-10',65,14585,6000),(7647,'2019-10-10',66,19448,6000),(7648,'2019-10-10',67,9724,11000),(7649,'2019-10-10',68,25524,3000),(7650,'2019-10-10',69,13369,3000),(7651,'2019-10-10',70,12154,9000),(7652,'2019-10-10',71,10938,4000),(7653,'2019-10-10',72,13369,4000),(7654,'2019-10-10',73,17016,2000),(7655,'2019-10-10',74,12154,5000),(7656,'2019-10-10',75,13369,7000),(7657,'2019-10-10',76,20662,10000),(7658,'2019-10-10',77,8507,2000),(7659,'2019-10-10',78,10938,7000),(7660,'2019-10-10',79,15800,7000),(7661,'2019-10-10',80,17016,11000),(7662,'2019-10-10',81,17016,11000),(7663,'2019-10-10',82,8507,7000),(7664,'2019-10-10',83,9724,2000),(7665,'2019-10-10',84,10938,11000),(7666,'2019-10-10',85,15800,6000),(7667,'2019-10-10',86,24309,4000),(7668,'2019-10-10',87,7292,4000),(7669,'2019-10-10',88,20662,7000),(7670,'2019-10-10',89,7292,9000),(7671,'2019-10-10',90,6076,9000),(7672,'2019-10-10',91,20662,3000),(7673,'2019-10-10',92,19448,9000),(7674,'2019-10-10',93,8507,4000),(7675,'2019-10-10',94,14585,3000),(7676,'2019-10-10',95,19448,7000),(7677,'2019-10-10',96,14585,8000),(7678,'2019-10-10',97,7292,8000),(7679,'2019-10-10',98,19448,8000),(7680,'2019-10-10',99,15800,6000),(7681,'2019-10-10',100,14585,3000),(7682,'2019-10-10',101,7292,1000),(7683,'2019-10-10',102,23093,10000),(7686,'2019-10-10',105,21878,5000),(7687,'2019-10-10',106,23093,8000),(7688,'2019-10-10',107,18231,11000),(7689,'2019-10-10',108,18231,11000),(7690,'2019-10-10',109,8507,8000),(7691,'2019-10-10',110,18231,4000),(7692,'2019-10-10',111,6076,2000),(7693,'2019-10-10',112,24309,9000),(7694,'2019-10-10',113,10938,3000),(7695,'2019-10-10',114,6076,9000),(7696,'2019-10-10',115,13369,11000),(7697,'2019-10-10',116,9724,2000),(7698,'2019-10-10',117,25524,10000),(7699,'2019-10-10',118,23093,2000),(7700,'2019-10-10',119,23093,9000),(7701,'2019-10-10',120,10938,2000),(7702,'2019-10-10',121,9724,3000),(7703,'2019-10-10',122,21878,7000),(7704,'2019-10-10',123,19448,8000),(7705,'2019-10-10',124,14585,9000),(7706,'2019-10-10',125,17016,4000),(7707,'2019-10-10',126,10938,2000),(7708,'2019-10-10',127,17016,9000),(7710,'2019-10-10',129,14585,2000),(7711,'2019-10-10',130,9724,10000),(7713,'2019-10-10',132,10938,2000),(7714,'2019-10-10',133,6076,2000),(7715,'2019-11-10',1,17016,2000),(7716,'2019-11-10',2,20662,10000),(7717,'2019-11-10',3,9724,2000),(7718,'2019-11-10',4,17016,3000),(7719,'2019-11-10',5,17016,10000),(7720,'2019-11-10',6,17016,9000),(7721,'2019-11-10',7,23093,4000),(7722,'2019-11-10',8,23093,10000),(7723,'2019-11-10',9,13369,3000),(7724,'2019-11-10',10,21878,8000),(7725,'2019-11-10',11,17016,5000),(7726,'2019-11-10',12,15800,5000),(7727,'2019-11-10',13,18231,5000),(7728,'2019-11-10',14,12154,2000),(7729,'2019-11-10',15,10938,1000),(7730,'2019-11-10',16,21878,7000),(7731,'2019-11-10',17,19448,5000),(7732,'2019-11-10',18,7292,6000),(7733,'2019-11-10',19,25524,10000),(7734,'2019-11-10',20,19448,10000),(7735,'2019-11-10',21,18231,6000),(7736,'2019-11-10',22,14585,3000),(7739,'2019-11-10',25,23093,6000),(7740,'2019-11-10',26,8507,2000),(7741,'2019-11-10',27,24309,4000),(7742,'2019-11-10',28,17016,6000),(7743,'2019-11-10',29,23093,5000),(7744,'2019-11-10',30,7292,1000),(7745,'2019-11-10',31,25524,4000),(7746,'2019-11-10',32,18231,11000),(7747,'2019-11-10',33,23093,7000),(7748,'2019-11-10',34,23093,2000),(7750,'2019-11-10',36,17016,3000),(7751,'2019-11-10',37,24309,6000),(7752,'2019-11-10',38,23093,10000),(7753,'2019-11-10',39,14585,1000),(7754,'2019-11-10',40,20662,10000),(7755,'2019-11-10',41,9724,1000),(7757,'2019-11-10',43,13369,10000),(7758,'2019-11-10',44,13369,7000),(7759,'2019-11-10',45,14585,8000),(7760,'2019-11-10',46,15800,11000),(7761,'2019-11-10',47,13369,3000),(7762,'2019-11-10',48,25524,5000),(7763,'2019-11-10',49,15800,11000),(7764,'2019-11-10',50,10938,8000),(7765,'2019-11-10',51,6076,4000),(7766,'2019-11-10',52,19448,3000),(7767,'2019-11-10',53,25524,3000),(7768,'2019-11-10',54,21878,4000),(7769,'2019-11-10',55,6076,10000),(7770,'2019-11-10',56,23093,1000),(7771,'2019-11-10',57,23093,1000),(7772,'2019-11-10',58,13369,11000),(7773,'2019-11-10',59,10938,3000),(7774,'2019-11-10',60,13369,1000),(7775,'2019-11-10',61,24309,5000),(7776,'2019-11-10',62,15800,5000),(7777,'2019-11-10',63,15800,3000),(7778,'2019-11-10',64,6076,7000),(7779,'2019-11-10',65,14585,3000),(7780,'2019-11-10',66,19448,10000),(7781,'2019-11-10',67,9724,11000),(7782,'2019-11-10',68,25524,1000),(7783,'2019-11-10',69,13369,7000),(7784,'2019-11-10',70,12154,9000),(7785,'2019-11-10',71,10938,5000),(7786,'2019-11-10',72,13369,11000),(7787,'2019-11-10',73,17016,5000),(7788,'2019-11-10',74,12154,1000),(7789,'2019-11-10',75,13369,4000),(7790,'2019-11-10',76,20662,7000),(7791,'2019-11-10',77,8507,4000),(7792,'2019-11-10',78,10938,6000),(7793,'2019-11-10',79,15800,5000),(7794,'2019-11-10',80,17016,4000),(7795,'2019-11-10',81,17016,9000),(7796,'2019-11-10',82,8507,2000),(7797,'2019-11-10',83,9724,1000),(7798,'2019-11-10',84,10938,4000),(7799,'2019-11-10',85,15800,11000),(7800,'2019-11-10',86,24309,1000),(7801,'2019-11-10',87,7292,8000),(7802,'2019-11-10',88,20662,4000),(7803,'2019-11-10',89,7292,2000),(7804,'2019-11-10',90,6076,5000),(7805,'2019-11-10',91,20662,2000),(7806,'2019-11-10',92,19448,7000),(7807,'2019-11-10',93,8507,8000),(7808,'2019-11-10',94,14585,11000),(7809,'2019-11-10',95,19448,7000),(7810,'2019-11-10',96,14585,11000),(7811,'2019-11-10',97,7292,4000),(7812,'2019-11-10',98,19448,9000),(7813,'2019-11-10',99,15800,6000),(7814,'2019-11-10',100,14585,9000),(7815,'2019-11-10',101,7292,10000),(7816,'2019-11-10',102,23093,4000),(7818,'2019-11-10',104,23093,7000),(7819,'2019-11-10',105,21878,10000),(7820,'2019-11-10',106,23093,3000),(7821,'2019-11-10',107,18231,7000),(7822,'2019-11-10',108,18231,6000),(7823,'2019-11-10',109,8507,3000),(7824,'2019-11-10',110,18231,6000),(7825,'2019-11-10',111,6076,7000),(7826,'2019-11-10',112,24309,4000),(7827,'2019-11-10',113,10938,4000),(7828,'2019-11-10',114,6076,10000),(7829,'2019-11-10',115,13369,11000),(7830,'2019-11-10',116,9724,11000),(7831,'2019-11-10',117,25524,5000),(7832,'2019-11-10',118,23093,3000),(7833,'2019-11-10',119,23093,1000),(7834,'2019-11-10',120,10938,7000),(7835,'2019-11-10',121,9724,9000),(7836,'2019-11-10',122,21878,5000),(7837,'2019-11-10',123,19448,8000),(7838,'2019-11-10',124,14585,1000),(7839,'2019-11-10',125,17016,7000),(7840,'2019-11-10',126,10938,9000),(7841,'2019-11-10',127,17016,6000),(7843,'2019-11-10',129,14585,6000),(7844,'2019-11-10',130,9724,8000),(7846,'2019-11-10',132,10938,7000),(7847,'2019-11-10',133,6076,3000),(7848,'2019-12-10',1,17866,3000),(7849,'2019-12-10',2,21695,4000),(7850,'2019-12-10',3,10210,6000),(7851,'2019-12-10',4,17866,9000),(7852,'2019-12-10',5,17866,9000),(7853,'2019-12-10',6,17866,5000),(7854,'2019-12-10',7,24247,1000),(7855,'2019-12-10',8,24247,10000),(7856,'2019-12-10',9,14037,10000),(7857,'2019-12-10',10,22971,11000),(7858,'2019-12-10',11,17866,2000),(7859,'2019-12-10',12,16590,2000),(7860,'2019-12-10',13,19142,8000),(7861,'2019-12-10',14,12761,3000),(7862,'2019-12-10',15,11484,10000),(7863,'2019-12-10',16,22971,2000),(7864,'2019-12-10',17,20420,10000),(7865,'2019-12-10',18,7656,6000),(7866,'2019-12-10',19,26800,6000),(7867,'2019-12-10',20,20420,7000),(7868,'2019-12-10',21,19142,9000),(7869,'2019-12-10',22,15314,8000),(7872,'2019-12-10',25,24247,11000),(7873,'2019-12-10',26,8932,2000),(7874,'2019-12-10',27,25524,1000),(7875,'2019-12-10',28,17866,1000),(7876,'2019-12-10',29,24247,10000),(7877,'2019-12-10',30,7656,10000),(7878,'2019-12-10',31,26800,2000),(7879,'2019-12-10',32,19142,9000),(7880,'2019-12-10',33,24247,2000),(7881,'2019-12-10',34,24247,11000),(7883,'2019-12-10',36,17866,10000),(7884,'2019-12-10',37,25524,2000),(7885,'2019-12-10',38,24247,2000),(7886,'2019-12-10',39,15314,4000),(7887,'2019-12-10',40,21695,9000),(7888,'2019-12-10',41,10210,8000),(7890,'2019-12-10',43,14037,1000),(7891,'2019-12-10',44,14037,1000),(7892,'2019-12-10',45,15314,2000),(7893,'2019-12-10',46,16590,2000),(7894,'2019-12-10',47,14037,2000),(7895,'2019-12-10',48,26800,3000),(7896,'2019-12-10',49,16590,10000),(7897,'2019-12-10',50,11484,8000),(7898,'2019-12-10',51,6379,6000),(7899,'2019-12-10',52,20420,2000),(7900,'2019-12-10',53,26800,6000),(7901,'2019-12-10',54,22971,7000),(7902,'2019-12-10',55,6379,3000),(7903,'2019-12-10',56,24247,8000),(7904,'2019-12-10',57,24247,10000),(7905,'2019-12-10',58,14037,7000),(7906,'2019-12-10',59,11484,5000),(7907,'2019-12-10',60,14037,8000),(7908,'2019-12-10',61,25524,5000),(7909,'2019-12-10',62,16590,3000),(7910,'2019-12-10',63,16590,7000),(7911,'2019-12-10',64,6379,1000),(7912,'2019-12-10',65,15314,8000),(7913,'2019-12-10',66,20420,7000),(7914,'2019-12-10',67,10210,4000),(7915,'2019-12-10',68,26800,8000),(7916,'2019-12-10',69,14037,2000),(7917,'2019-12-10',70,12761,2000),(7918,'2019-12-10',71,11484,11000),(7919,'2019-12-10',72,14037,1000),(7920,'2019-12-10',73,17866,6000),(7921,'2019-12-10',74,12761,9000),(7922,'2019-12-10',75,14037,10000),(7923,'2019-12-10',76,21695,1000),(7924,'2019-12-10',77,8932,3000),(7925,'2019-12-10',78,11484,3000),(7926,'2019-12-10',79,16590,8000),(7927,'2019-12-10',80,17866,8000),(7928,'2019-12-10',81,17866,6000),(7929,'2019-12-10',82,8932,8000),(7930,'2019-12-10',83,10210,10000),(7931,'2019-12-10',84,11484,7000),(7932,'2019-12-10',85,16590,7000),(7933,'2019-12-10',86,25524,10000),(7934,'2019-12-10',87,7656,10000),(7935,'2019-12-10',88,21695,2000),(7936,'2019-12-10',89,7656,3000),(7937,'2019-12-10',90,6379,10000),(7938,'2019-12-10',91,21695,10000),(7939,'2019-12-10',92,20420,2000),(7940,'2019-12-10',93,8932,4000),(7941,'2019-12-10',94,15314,7000),(7942,'2019-12-10',95,20420,1000),(7943,'2019-12-10',96,15314,2000),(7944,'2019-12-10',97,7656,7000),(7945,'2019-12-10',98,20420,1000),(7946,'2019-12-10',99,16590,6000),(7947,'2019-12-10',100,15314,2000),(7948,'2019-12-10',101,7656,1000),(7949,'2019-12-10',102,24247,7000),(7951,'2019-12-10',104,24247,9000),(7952,'2019-12-10',105,22971,11000),(7953,'2019-12-10',106,24247,11000),(7954,'2019-12-10',107,19142,6000),(7955,'2019-12-10',108,19142,9000),(7956,'2019-12-10',109,8932,5000),(7957,'2019-12-10',110,19142,3000),(7958,'2019-12-10',111,6379,4000),(7959,'2019-12-10',112,25524,9000),(7960,'2019-12-10',113,11484,9000),(7961,'2019-12-10',114,6379,3000),(7962,'2019-12-10',115,14037,7000),(7963,'2019-12-10',116,10210,6000),(7964,'2019-12-10',117,26800,10000),(7965,'2019-12-10',118,24247,2000),(7966,'2019-12-10',119,24247,3000),(7967,'2019-12-10',120,11484,4000),(7968,'2019-12-10',121,10210,1000),(7969,'2019-12-10',122,22971,10000),(7970,'2019-12-10',123,20420,2000),(7971,'2019-12-10',124,15314,9000),(7972,'2019-12-10',125,17866,9000),(7973,'2019-12-10',126,11484,3000),(7974,'2019-12-10',127,17866,8000),(7976,'2019-12-10',129,15314,11000),(7977,'2019-12-10',130,10210,5000),(7978,'2019-12-10',131,16590,1000),(7979,'2019-12-10',132,11484,7000),(7980,'2019-12-10',133,6379,5000),(7981,'2020-01-10',1,17866,3000),(7982,'2020-01-10',2,21695,1000),(7983,'2020-01-10',3,10210,4000),(7984,'2020-01-10',4,17866,10000),(7985,'2020-01-10',5,17866,1000),(7986,'2020-01-10',6,17866,2000),(7987,'2020-01-10',7,24247,9000),(7988,'2020-01-10',8,24247,8000),(7989,'2020-01-10',9,14037,11000),(7990,'2020-01-10',10,22971,2000),(7991,'2020-01-10',11,17866,2000),(7992,'2020-01-10',12,16590,4000),(7993,'2020-01-10',13,19142,11000),(7994,'2020-01-10',14,12761,1000),(7995,'2020-01-10',15,11484,7000),(7996,'2020-01-10',16,22971,4000),(7997,'2020-01-10',17,20420,10000),(7998,'2020-01-10',18,7656,6000),(7999,'2020-01-10',19,26800,5000),(8000,'2020-01-10',20,20420,1000),(8001,'2020-01-10',21,19142,1000),(8002,'2020-01-10',22,15314,9000),(8005,'2020-01-10',25,24247,8000),(8006,'2020-01-10',26,8932,8000),(8007,'2020-01-10',27,25524,3000),(8008,'2020-01-10',28,17866,7000),(8009,'2020-01-10',29,24247,7000),(8010,'2020-01-10',30,7656,6000),(8011,'2020-01-10',31,26800,1000),(8012,'2020-01-10',32,19142,3000),(8013,'2020-01-10',33,24247,4000),(8014,'2020-01-10',34,24247,5000),(8016,'2020-01-10',36,17866,8000),(8017,'2020-01-10',37,25524,9000),(8018,'2020-01-10',38,24247,8000),(8019,'2020-01-10',39,15314,11000),(8020,'2020-01-10',40,21695,2000),(8021,'2020-01-10',41,10210,1000),(8023,'2020-01-10',43,14037,6000),(8024,'2020-01-10',44,14037,9000),(8025,'2020-01-10',45,15314,8000),(8026,'2020-01-10',46,16590,10000),(8027,'2020-01-10',47,14037,4000),(8028,'2020-01-10',48,26800,1000),(8029,'2020-01-10',49,16590,9000),(8030,'2020-01-10',50,11484,10000),(8031,'2020-01-10',51,6379,6000),(8032,'2020-01-10',52,20420,9000),(8033,'2020-01-10',53,26800,11000),(8034,'2020-01-10',54,22971,10000),(8035,'2020-01-10',55,6379,1000),(8036,'2020-01-10',56,24247,8000),(8037,'2020-01-10',57,24247,10000),(8038,'2020-01-10',58,14037,7000),(8039,'2020-01-10',59,11484,7000),(8040,'2020-01-10',60,14037,3000),(8041,'2020-01-10',61,25524,7000),(8042,'2020-01-10',62,16590,9000),(8043,'2020-01-10',63,16590,4000),(8044,'2020-01-10',64,6379,10000),(8045,'2020-01-10',65,15314,11000),(8046,'2020-01-10',66,20420,4000),(8047,'2020-01-10',67,10210,5000),(8048,'2020-01-10',68,26800,9000),(8049,'2020-01-10',69,14037,9000),(8050,'2020-01-10',70,12761,1000),(8051,'2020-01-10',71,11484,11000),(8052,'2020-01-10',72,14037,11000),(8053,'2020-01-10',73,17866,9000),(8054,'2020-01-10',74,12761,2000),(8055,'2020-01-10',75,14037,10000),(8056,'2020-01-10',76,21695,7000),(8057,'2020-01-10',77,8932,1000),(8058,'2020-01-10',78,11484,10000),(8059,'2020-01-10',79,16590,1000),(8060,'2020-01-10',80,17866,2000),(8061,'2020-01-10',81,17866,8000),(8062,'2020-01-10',82,8932,2000),(8063,'2020-01-10',83,10210,5000),(8064,'2020-01-10',84,11484,3000),(8065,'2020-01-10',85,16590,10000),(8066,'2020-01-10',86,25524,10000),(8067,'2020-01-10',87,7656,9000),(8068,'2020-01-10',88,21695,10000),(8069,'2020-01-10',89,7656,7000),(8070,'2020-01-10',90,6379,2000),(8071,'2020-01-10',91,21695,7000),(8072,'2020-01-10',92,20420,3000),(8073,'2020-01-10',93,8932,11000),(8074,'2020-01-10',94,15314,11000),(8075,'2020-01-10',95,20420,8000),(8076,'2020-01-10',96,15314,9000),(8077,'2020-01-10',97,7656,4000),(8078,'2020-01-10',98,20420,11000),(8079,'2020-01-10',99,16590,10000),(8080,'2020-01-10',100,15314,7000),(8081,'2020-01-10',101,7656,11000),(8082,'2020-01-10',102,24247,10000),(8084,'2020-01-10',104,24247,2000),(8085,'2020-01-10',105,22971,4000),(8086,'2020-01-10',106,24247,1000),(8087,'2020-01-10',107,19142,2000),(8088,'2020-01-10',108,19142,8000),(8089,'2020-01-10',109,8932,8000),(8090,'2020-01-10',110,19142,7000),(8091,'2020-01-10',111,6379,10000),(8092,'2020-01-10',112,25524,3000),(8093,'2020-01-10',113,11484,10000),(8094,'2020-01-10',114,6379,7000),(8095,'2020-01-10',115,14037,7000),(8096,'2020-01-10',116,10210,9000),(8097,'2020-01-10',117,26800,6000),(8098,'2020-01-10',118,24247,5000),(8099,'2020-01-10',119,24247,7000),(8100,'2020-01-10',120,11484,10000),(8101,'2020-01-10',121,10210,7000),(8102,'2020-01-10',122,22971,10000),(8103,'2020-01-10',123,20420,4000),(8104,'2020-01-10',124,15314,9000),(8105,'2020-01-10',125,17866,11000),(8106,'2020-01-10',126,11484,8000),(8107,'2020-01-10',127,17866,5000),(8109,'2020-01-10',129,15314,11000),(8110,'2020-01-10',130,10210,2000),(8111,'2020-01-10',131,16590,8000),(8112,'2020-01-10',132,11484,1000),(8113,'2020-01-10',133,6379,2000),(8114,'2020-02-10',1,17866,4000),(8115,'2020-02-10',2,21695,3000),(8116,'2020-02-10',3,10210,7000),(8117,'2020-02-10',4,17866,5000),(8118,'2020-02-10',5,17866,10000),(8119,'2020-02-10',6,17866,6000),(8120,'2020-02-10',7,24247,5000),(8121,'2020-02-10',8,24247,1000),(8122,'2020-02-10',9,14037,5000),(8123,'2020-02-10',10,22971,11000),(8124,'2020-02-10',11,17866,8000),(8125,'2020-02-10',12,16590,11000),(8126,'2020-02-10',13,19142,3000),(8127,'2020-02-10',14,12761,2000),(8128,'2020-02-10',15,11484,9000),(8129,'2020-02-10',16,22971,4000),(8130,'2020-02-10',17,20420,5000),(8131,'2020-02-10',18,7656,10000),(8132,'2020-02-10',19,26800,10000),(8133,'2020-02-10',20,20420,1000),(8134,'2020-02-10',21,19142,1000),(8135,'2020-02-10',22,15314,2000),(8138,'2020-02-10',25,24247,9000),(8139,'2020-02-10',26,8932,1000),(8140,'2020-02-10',27,25524,10000),(8141,'2020-02-10',28,17866,9000),(8142,'2020-02-10',29,24247,4000),(8143,'2020-02-10',30,7656,4000),(8144,'2020-02-10',31,26800,5000),(8145,'2020-02-10',32,19142,6000),(8146,'2020-02-10',33,24247,11000),(8147,'2020-02-10',34,24247,5000),(8149,'2020-02-10',36,17866,3000),(8150,'2020-02-10',37,25524,1000),(8151,'2020-02-10',38,24247,7000),(8152,'2020-02-10',39,15314,8000),(8153,'2020-02-10',40,21695,8000),(8154,'2020-02-10',41,10210,7000),(8156,'2020-02-10',43,14037,3000),(8157,'2020-02-10',44,14037,4000),(8158,'2020-02-10',45,15314,11000),(8159,'2020-02-10',46,16590,3000),(8160,'2020-02-10',47,14037,3000),(8161,'2020-02-10',48,26800,8000),(8162,'2020-02-10',49,16590,2000),(8163,'2020-02-10',50,11484,7000),(8164,'2020-02-10',51,6379,4000),(8165,'2020-02-10',52,20420,7000),(8166,'2020-02-10',53,26800,4000),(8167,'2020-02-10',54,22971,3000),(8168,'2020-02-10',55,6379,2000),(8169,'2020-02-10',56,24247,4000),(8170,'2020-02-10',57,24247,11000),(8171,'2020-02-10',58,14037,8000),(8172,'2020-02-10',59,11484,6000),(8173,'2020-02-10',60,14037,10000),(8174,'2020-02-10',61,25524,1000),(8175,'2020-02-10',62,16590,8000),(8176,'2020-02-10',63,16590,9000),(8177,'2020-02-10',64,6379,8000),(8178,'2020-02-10',65,15314,1000),(8179,'2020-02-10',66,20420,1000),(8180,'2020-02-10',67,10210,8000),(8181,'2020-02-10',68,26800,10000),(8182,'2020-02-10',69,14037,3000),(8183,'2020-02-10',70,12761,5000),(8184,'2020-02-10',71,11484,5000),(8185,'2020-02-10',72,14037,5000),(8186,'2020-02-10',73,17866,7000),(8187,'2020-02-10',74,12761,2000),(8188,'2020-02-10',75,14037,5000),(8189,'2020-02-10',76,21695,10000),(8190,'2020-02-10',77,8932,6000),(8191,'2020-02-10',78,11484,11000),(8192,'2020-02-10',79,16590,10000),(8193,'2020-02-10',80,17866,8000),(8194,'2020-02-10',81,17866,1000),(8195,'2020-02-10',82,8932,9000),(8196,'2020-02-10',83,10210,6000),(8197,'2020-02-10',84,11484,5000),(8198,'2020-02-10',85,16590,7000),(8199,'2020-02-10',86,25524,11000),(8200,'2020-02-10',87,7656,4000),(8201,'2020-02-10',88,21695,7000),(8202,'2020-02-10',89,7656,6000),(8203,'2020-02-10',90,6379,9000),(8204,'2020-02-10',91,21695,3000),(8205,'2020-02-10',92,20420,1000),(8206,'2020-02-10',93,8932,6000),(8207,'2020-02-10',94,15314,2000),(8208,'2020-02-10',95,20420,4000),(8209,'2020-02-10',96,15314,3000),(8210,'2020-02-10',97,7656,5000),(8211,'2020-02-10',98,20420,8000),(8212,'2020-02-10',99,16590,8000),(8213,'2020-02-10',100,15314,3000),(8214,'2020-02-10',101,7656,11000),(8215,'2020-02-10',102,24247,3000),(8217,'2020-02-10',104,24247,9000),(8218,'2020-02-10',105,22971,9000),(8219,'2020-02-10',106,24247,2000),(8220,'2020-02-10',107,19142,5000),(8221,'2020-02-10',108,19142,3000),(8222,'2020-02-10',109,8932,6000),(8223,'2020-02-10',110,19142,10000),(8224,'2020-02-10',111,6379,1000),(8225,'2020-02-10',112,25524,5000),(8226,'2020-02-10',113,11484,5000),(8227,'2020-02-10',114,6379,9000),(8228,'2020-02-10',115,14037,1000),(8229,'2020-02-10',116,10210,11000),(8230,'2020-02-10',117,26800,7000),(8231,'2020-02-10',118,24247,9000),(8232,'2020-02-10',119,24247,9000),(8233,'2020-02-10',120,11484,3000),(8234,'2020-02-10',121,10210,8000),(8235,'2020-02-10',122,22971,4000),(8236,'2020-02-10',123,20420,9000),(8237,'2020-02-10',124,15314,3000),(8238,'2020-02-10',125,17866,2000),(8239,'2020-02-10',126,11484,6000),(8240,'2020-02-10',127,17866,3000),(8242,'2020-02-10',129,15314,7000),(8243,'2020-02-10',130,10210,4000),(8244,'2020-02-10',131,16590,1000),(8245,'2020-02-10',132,11484,5000),(8246,'2020-02-10',133,6379,1000),(8247,'2020-03-10',1,17866,8000),(8248,'2020-03-10',2,21695,1000),(8249,'2020-03-10',3,10210,9000),(8250,'2020-03-10',4,17866,7000),(8251,'2020-03-10',5,17866,10000),(8252,'2020-03-10',6,17866,9000),(8253,'2020-03-10',7,24247,11000),(8254,'2020-03-10',8,24247,10000),(8255,'2020-03-10',9,14037,9000),(8256,'2020-03-10',10,22971,3000),(8257,'2020-03-10',11,17866,8000),(8258,'2020-03-10',12,16590,3000),(8259,'2020-03-10',13,19142,3000),(8260,'2020-03-10',14,12761,2000),(8261,'2020-03-10',15,11484,9000),(8262,'2020-03-10',16,22971,1000),(8263,'2020-03-10',17,20420,3000),(8264,'2020-03-10',18,7656,3000),(8265,'2020-03-10',19,26800,2000),(8266,'2020-03-10',20,20420,4000),(8267,'2020-03-10',21,19142,11000),(8268,'2020-03-10',22,15314,3000),(8271,'2020-03-10',25,24247,11000),(8272,'2020-03-10',26,8932,4000),(8273,'2020-03-10',27,25524,2000),(8274,'2020-03-10',28,17866,11000),(8275,'2020-03-10',29,24247,11000),(8276,'2020-03-10',30,7656,6000),(8277,'2020-03-10',31,26800,4000),(8278,'2020-03-10',32,19142,6000),(8279,'2020-03-10',33,24247,1000),(8280,'2020-03-10',34,24247,10000),(8282,'2020-03-10',36,17866,2000),(8283,'2020-03-10',37,25524,4000),(8284,'2020-03-10',38,24247,1000),(8285,'2020-03-10',39,15314,8000),(8286,'2020-03-10',40,21695,7000),(8287,'2020-03-10',41,10210,6000),(8289,'2020-03-10',43,14037,7000),(8290,'2020-03-10',44,14037,5000),(8291,'2020-03-10',45,15314,2000),(8292,'2020-03-10',46,16590,3000),(8293,'2020-03-10',47,14037,7000),(8294,'2020-03-10',48,26800,5000),(8295,'2020-03-10',49,16590,4000),(8296,'2020-03-10',50,11484,10000),(8297,'2020-03-10',51,6379,8000),(8298,'2020-03-10',52,20420,3000),(8299,'2020-03-10',53,26800,9000),(8300,'2020-03-10',54,22971,4000),(8301,'2020-03-10',55,6379,3000),(8302,'2020-03-10',56,24247,10000),(8303,'2020-03-10',57,24247,7000),(8304,'2020-03-10',58,14037,7000),(8305,'2020-03-10',59,11484,4000),(8306,'2020-03-10',60,14037,1000),(8307,'2020-03-10',61,25524,3000),(8308,'2020-03-10',62,16590,1000),(8309,'2020-03-10',63,16590,7000),(8310,'2020-03-10',64,6379,8000),(8311,'2020-03-10',65,15314,10000),(8312,'2020-03-10',66,20420,6000),(8313,'2020-03-10',67,10210,2000),(8314,'2020-03-10',68,26800,2000),(8315,'2020-03-10',69,14037,7000),(8316,'2020-03-10',70,12761,7000),(8317,'2020-03-10',71,11484,10000),(8318,'2020-03-10',72,14037,7000),(8319,'2020-03-10',73,17866,1000),(8320,'2020-03-10',74,12761,2000),(8321,'2020-03-10',75,14037,7000),(8322,'2020-03-10',76,21695,8000),(8323,'2020-03-10',77,8932,7000),(8324,'2020-03-10',78,11484,7000),(8325,'2020-03-10',79,16590,2000),(8326,'2020-03-10',80,17866,11000),(8327,'2020-03-10',81,17866,9000),(8328,'2020-03-10',82,8932,10000),(8329,'2020-03-10',83,10210,7000),(8330,'2020-03-10',84,11484,6000),(8331,'2020-03-10',85,16590,5000),(8332,'2020-03-10',86,25524,8000),(8333,'2020-03-10',87,7656,10000),(8334,'2020-03-10',88,21695,4000),(8335,'2020-03-10',89,7656,8000),(8336,'2020-03-10',90,6379,10000),(8337,'2020-03-10',91,21695,1000),(8338,'2020-03-10',92,20420,3000),(8339,'2020-03-10',93,8932,3000),(8340,'2020-03-10',94,15314,3000),(8341,'2020-03-10',95,20420,2000),(8342,'2020-03-10',96,15314,6000),(8343,'2020-03-10',97,7656,7000),(8344,'2020-03-10',98,20420,9000),(8345,'2020-03-10',99,16590,3000),(8346,'2020-03-10',100,15314,7000),(8347,'2020-03-10',101,7656,3000),(8348,'2020-03-10',102,24247,11000),(8350,'2020-03-10',104,24247,11000),(8351,'2020-03-10',105,22971,5000),(8352,'2020-03-10',106,24247,11000),(8353,'2020-03-10',107,19142,9000),(8354,'2020-03-10',108,19142,3000),(8355,'2020-03-10',109,8932,3000),(8356,'2020-03-10',110,19142,2000),(8357,'2020-03-10',111,6379,2000),(8358,'2020-03-10',112,25524,11000),(8359,'2020-03-10',113,11484,1000),(8360,'2020-03-10',114,6379,11000),(8361,'2020-03-10',115,14037,7000),(8362,'2020-03-10',116,10210,10000),(8363,'2020-03-10',117,26800,10000),(8364,'2020-03-10',118,24247,8000),(8365,'2020-03-10',119,24247,10000),(8366,'2020-03-10',120,11484,3000),(8367,'2020-03-10',121,10210,9000),(8368,'2020-03-10',122,22971,6000),(8369,'2020-03-10',123,20420,3000),(8370,'2020-03-10',124,15314,3000),(8371,'2020-03-10',125,17866,4000),(8372,'2020-03-10',126,11484,8000),(8373,'2020-03-10',127,17866,11000),(8375,'2020-03-10',129,15314,3000),(8376,'2020-03-10',130,10210,8000),(8377,'2020-03-10',131,16590,11000),(8378,'2020-03-10',132,11484,5000),(8379,'2020-03-10',133,6379,4000),(8380,'2020-04-10',1,17866,7000),(8381,'2020-04-10',2,21695,7000),(8382,'2020-04-10',3,10210,6000),(8383,'2020-04-10',4,17866,4000),(8384,'2020-04-10',5,17866,1000),(8385,'2020-04-10',6,17866,1000),(8386,'2020-04-10',7,24247,2000),(8387,'2020-04-10',8,24247,4000),(8388,'2020-04-10',9,14037,3000),(8389,'2020-04-10',10,22971,7000),(8390,'2020-04-10',11,17866,1000),(8391,'2020-04-10',12,16590,7000),(8392,'2020-04-10',13,19142,1000),(8393,'2020-04-10',14,12761,5000),(8394,'2020-04-10',15,11484,5000),(8395,'2020-04-10',16,22971,10000),(8396,'2020-04-10',17,20420,4000),(8397,'2020-04-10',18,7656,7000),(8398,'2020-04-10',19,26800,1000),(8399,'2020-04-10',20,20420,10000),(8400,'2020-04-10',21,19142,3000),(8401,'2020-04-10',22,15314,4000),(8404,'2020-04-10',25,24247,8000),(8405,'2020-04-10',26,8932,7000),(8406,'2020-04-10',27,25524,6000),(8407,'2020-04-10',28,17866,10000),(8408,'2020-04-10',29,24247,5000),(8409,'2020-04-10',30,7656,5000),(8410,'2020-04-10',31,26800,3000),(8411,'2020-04-10',32,19142,5000),(8412,'2020-04-10',33,24247,8000),(8413,'2020-04-10',34,24247,5000),(8415,'2020-04-10',36,17866,5000),(8416,'2020-04-10',37,25524,6000),(8417,'2020-04-10',38,24247,10000),(8418,'2020-04-10',39,15314,7000),(8419,'2020-04-10',40,21695,2000),(8420,'2020-04-10',41,10210,7000),(8422,'2020-04-10',43,14037,10000),(8423,'2020-04-10',44,14037,6000),(8424,'2020-04-10',45,15314,5000),(8425,'2020-04-10',46,16590,7000),(8426,'2020-04-10',47,14037,7000),(8427,'2020-04-10',48,26800,6000),(8428,'2020-04-10',49,16590,11000),(8429,'2020-04-10',50,11484,10000),(8430,'2020-04-10',51,6379,3000),(8431,'2020-04-10',52,20420,3000),(8432,'2020-04-10',53,26800,8000),(8433,'2020-04-10',54,22971,3000),(8434,'2020-04-10',55,6379,3000),(8435,'2020-04-10',56,24247,9000),(8436,'2020-04-10',57,24247,1000),(8437,'2020-04-10',58,14037,8000),(8438,'2020-04-10',59,11484,7000),(8439,'2020-04-10',60,14037,7000),(8440,'2020-04-10',61,25524,10000),(8441,'2020-04-10',62,16590,9000),(8442,'2020-04-10',63,16590,3000),(8443,'2020-04-10',64,6379,11000),(8444,'2020-04-10',65,15314,8000),(8445,'2020-04-10',66,20420,4000),(8446,'2020-04-10',67,10210,1000),(8447,'2020-04-10',68,26800,8000),(8448,'2020-04-10',69,14037,9000),(8449,'2020-04-10',70,12761,9000),(8450,'2020-04-10',71,11484,7000),(8451,'2020-04-10',72,14037,8000),(8452,'2020-04-10',73,17866,1000),(8453,'2020-04-10',74,12761,10000),(8454,'2020-04-10',75,14037,2000),(8455,'2020-04-10',76,21695,3000),(8456,'2020-04-10',77,8932,1000),(8457,'2020-04-10',78,11484,5000),(8458,'2020-04-10',79,16590,3000),(8459,'2020-04-10',80,17866,7000),(8460,'2020-04-10',81,17866,8000),(8461,'2020-04-10',82,8932,8000),(8462,'2020-04-10',83,10210,5000),(8463,'2020-04-10',84,11484,5000),(8464,'2020-04-10',85,16590,1000),(8465,'2020-04-10',86,25524,2000),(8466,'2020-04-10',87,7656,4000),(8467,'2020-04-10',88,21695,4000),(8468,'2020-04-10',89,7656,9000),(8469,'2020-04-10',90,6379,1000),(8470,'2020-04-10',91,21695,2000),(8471,'2020-04-10',92,20420,4000),(8472,'2020-04-10',93,8932,6000),(8473,'2020-04-10',94,15314,4000),(8474,'2020-04-10',95,20420,4000),(8475,'2020-04-10',96,15314,3000),(8476,'2020-04-10',97,7656,5000),(8477,'2020-04-10',98,20420,1000),(8478,'2020-04-10',99,16590,4000),(8479,'2020-04-10',100,15314,11000),(8480,'2020-04-10',101,7656,9000),(8481,'2020-04-10',102,24247,7000),(8483,'2020-04-10',104,24247,7000),(8484,'2020-04-10',105,22971,6000),(8485,'2020-04-10',106,24247,7000),(8486,'2020-04-10',107,19142,3000),(8487,'2020-04-10',108,19142,2000),(8488,'2020-04-10',109,8932,1000),(8489,'2020-04-10',110,19142,11000),(8490,'2020-04-10',111,6379,7000),(8491,'2020-04-10',112,25524,9000),(8492,'2020-04-10',113,11484,8000),(8493,'2020-04-10',114,6379,5000),(8494,'2020-04-10',115,14037,5000),(8495,'2020-04-10',116,10210,4000),(8496,'2020-04-10',117,26800,3000),(8497,'2020-04-10',118,24247,6000),(8498,'2020-04-10',119,24247,1000),(8499,'2020-04-10',120,11484,1000),(8500,'2020-04-10',121,10210,6000),(8501,'2020-04-10',122,22971,1000),(8502,'2020-04-10',123,20420,5000),(8503,'2020-04-10',124,15314,11000),(8504,'2020-04-10',125,17866,11000),(8505,'2020-04-10',126,11484,6000),(8506,'2020-04-10',127,17866,4000),(8508,'2020-04-10',129,15314,4000),(8509,'2020-04-10',130,10210,4000),(8510,'2020-04-10',131,16590,8000),(8511,'2020-04-10',132,11484,10000),(8512,'2020-04-10',133,6379,10000),(8513,'2020-05-10',1,17866,6000),(8514,'2020-05-10',2,21695,8000),(8515,'2020-05-10',3,10210,10000),(8516,'2020-05-10',4,17866,8000),(8517,'2020-05-10',5,17866,11000),(8518,'2020-05-10',6,17866,9000),(8519,'2020-05-10',7,24247,2000),(8520,'2020-05-10',8,24247,2000),(8521,'2020-05-10',9,14037,8000),(8522,'2020-05-10',10,22971,6000),(8523,'2020-05-10',11,17866,2000),(8524,'2020-05-10',12,16590,6000),(8525,'2020-05-10',13,19142,7000),(8526,'2020-05-10',14,12761,4000),(8527,'2020-05-10',15,11484,7000),(8528,'2020-05-10',16,22971,4000),(8529,'2020-05-10',17,20420,10000),(8530,'2020-05-10',18,7656,2000),(8531,'2020-05-10',19,26800,9000),(8532,'2020-05-10',20,20420,1000),(8533,'2020-05-10',21,19142,6000),(8534,'2020-05-10',22,15314,10000),(8537,'2020-05-10',25,24247,7000),(8538,'2020-05-10',26,8932,5000),(8539,'2020-05-10',27,25524,3000),(8540,'2020-05-10',28,17866,10000),(8541,'2020-05-10',29,24247,2000),(8542,'2020-05-10',30,7656,6000),(8543,'2020-05-10',31,26800,10000),(8544,'2020-05-10',32,19142,10000),(8545,'2020-05-10',33,24247,11000),(8546,'2020-05-10',34,24247,6000),(8548,'2020-05-10',36,17866,4000),(8549,'2020-05-10',37,25524,11000),(8550,'2020-05-10',38,24247,9000),(8551,'2020-05-10',39,15314,10000),(8552,'2020-05-10',40,21695,2000),(8553,'2020-05-10',41,10210,5000),(8555,'2020-05-10',43,14037,10000),(8556,'2020-05-10',44,14037,9000),(8557,'2020-05-10',45,15314,2000),(8558,'2020-05-10',46,16590,7000),(8559,'2020-05-10',47,14037,3000),(8560,'2020-05-10',48,26800,3000),(8561,'2020-05-10',49,16590,2000),(8562,'2020-05-10',50,11484,11000),(8563,'2020-05-10',51,6379,10000),(8564,'2020-05-10',52,20420,3000),(8565,'2020-05-10',53,26800,7000),(8566,'2020-05-10',54,22971,11000),(8567,'2020-05-10',55,6379,10000),(8568,'2020-05-10',56,24247,2000),(8569,'2020-05-10',57,24247,5000),(8570,'2020-05-10',58,14037,7000),(8571,'2020-05-10',59,11484,5000),(8572,'2020-05-10',60,14037,1000),(8573,'2020-05-10',61,25524,11000),(8574,'2020-05-10',62,16590,2000),(8575,'2020-05-10',63,16590,5000),(8576,'2020-05-10',64,6379,6000),(8577,'2020-05-10',65,15314,11000),(8578,'2020-05-10',66,20420,6000),(8579,'2020-05-10',67,10210,4000),(8580,'2020-05-10',68,26800,7000),(8581,'2020-05-10',69,14037,5000),(8582,'2020-05-10',70,12761,9000),(8583,'2020-05-10',71,11484,2000),(8584,'2020-05-10',72,14037,7000),(8585,'2020-05-10',73,17866,6000),(8586,'2020-05-10',74,12761,3000),(8587,'2020-05-10',75,14037,4000),(8588,'2020-05-10',76,21695,8000),(8589,'2020-05-10',77,8932,5000),(8590,'2020-05-10',78,11484,2000),(8591,'2020-05-10',79,16590,11000),(8592,'2020-05-10',80,17866,2000),(8593,'2020-05-10',81,17866,11000),(8594,'2020-05-10',82,8932,2000),(8595,'2020-05-10',83,10210,6000),(8596,'2020-05-10',84,11484,10000),(8597,'2020-05-10',85,16590,11000),(8598,'2020-05-10',86,25524,10000),(8599,'2020-05-10',87,7656,1000),(8600,'2020-05-10',88,21695,4000),(8601,'2020-05-10',89,7656,9000),(8602,'2020-05-10',90,6379,10000),(8603,'2020-05-10',91,21695,7000),(8604,'2020-05-10',92,20420,6000),(8605,'2020-05-10',93,8932,11000),(8606,'2020-05-10',94,15314,10000),(8607,'2020-05-10',95,20420,4000),(8608,'2020-05-10',96,15314,6000),(8609,'2020-05-10',97,7656,10000),(8610,'2020-05-10',98,20420,6000),(8611,'2020-05-10',99,16590,1000),(8612,'2020-05-10',100,15314,11000),(8613,'2020-05-10',101,7656,10000),(8614,'2020-05-10',102,24247,10000),(8616,'2020-05-10',104,24247,4000),(8617,'2020-05-10',105,22971,5000),(8618,'2020-05-10',106,24247,3000),(8619,'2020-05-10',107,19142,7000),(8620,'2020-05-10',108,19142,3000),(8621,'2020-05-10',109,8932,3000),(8622,'2020-05-10',110,19142,9000),(8623,'2020-05-10',111,6379,6000),(8624,'2020-05-10',112,25524,6000),(8625,'2020-05-10',113,11484,7000),(8626,'2020-05-10',114,6379,7000),(8627,'2020-05-10',115,14037,11000),(8628,'2020-05-10',116,10210,11000),(8629,'2020-05-10',117,26800,1000),(8630,'2020-05-10',118,24247,2000),(8631,'2020-05-10',119,24247,11000),(8632,'2020-05-10',120,11484,6000),(8633,'2020-05-10',121,10210,2000),(8634,'2020-05-10',122,22971,10000),(8635,'2020-05-10',123,20420,6000),(8636,'2020-05-10',124,15314,1000),(8637,'2020-05-10',125,17866,1000),(8638,'2020-05-10',126,11484,3000),(8639,'2020-05-10',127,17866,6000),(8641,'2020-05-10',129,15314,7000),(8642,'2020-05-10',130,10210,2000),(8643,'2020-05-10',131,16590,9000),(8644,'2020-05-10',132,11484,8000),(8645,'2020-05-10',133,6379,5000),(8646,'2020-06-10',1,17866,3000),(8647,'2020-06-10',2,21695,4000),(8648,'2020-06-10',3,10210,7000),(8649,'2020-06-10',4,17866,6000),(8650,'2020-06-10',5,17866,6000),(8651,'2020-06-10',6,17866,4000),(8652,'2020-06-10',7,24247,9000),(8653,'2020-06-10',8,24247,9000),(8654,'2020-06-10',9,14037,10000),(8655,'2020-06-10',10,22971,11000),(8656,'2020-06-10',11,17866,3000),(8657,'2020-06-10',12,16590,1000),(8658,'2020-06-10',13,19142,2000),(8659,'2020-06-10',14,12761,11000),(8660,'2020-06-10',15,11484,3000),(8661,'2020-06-10',16,22971,6000),(8662,'2020-06-10',17,20420,4000),(8663,'2020-06-10',18,7656,7000),(8664,'2020-06-10',19,26800,1000),(8665,'2020-06-10',20,20420,7000),(8666,'2020-06-10',21,19142,11000),(8667,'2020-06-10',22,15314,7000),(8670,'2020-06-10',25,24247,3000),(8671,'2020-06-10',26,8932,2000),(8672,'2020-06-10',27,25524,3000),(8673,'2020-06-10',28,17866,3000),(8674,'2020-06-10',29,24247,2000),(8675,'2020-06-10',30,7656,9000),(8676,'2020-06-10',31,26800,10000),(8677,'2020-06-10',32,19142,10000),(8678,'2020-06-10',33,24247,11000),(8679,'2020-06-10',34,24247,11000),(8681,'2020-06-10',36,17866,9000),(8682,'2020-06-10',37,25524,9000),(8683,'2020-06-10',38,24247,6000),(8684,'2020-06-10',39,15314,2000),(8685,'2020-06-10',40,21695,1000),(8686,'2020-06-10',41,10210,9000),(8688,'2020-06-10',43,14037,11000),(8689,'2020-06-10',44,14037,8000),(8690,'2020-06-10',45,15314,3000),(8691,'2020-06-10',46,16590,9000),(8692,'2020-06-10',47,14037,8000),(8693,'2020-06-10',48,26800,10000),(8694,'2020-06-10',49,16590,1000),(8695,'2020-06-10',50,11484,3000),(8696,'2020-06-10',51,6379,1000),(8697,'2020-06-10',52,20420,2000),(8698,'2020-06-10',53,26800,5000),(8699,'2020-06-10',54,22971,11000),(8700,'2020-06-10',55,6379,3000),(8701,'2020-06-10',56,24247,8000),(8702,'2020-06-10',57,24247,8000),(8703,'2020-06-10',58,14037,3000),(8704,'2020-06-10',59,11484,4000),(8705,'2020-06-10',60,14037,10000),(8706,'2020-06-10',61,25524,3000),(8707,'2020-06-10',62,16590,10000),(8708,'2020-06-10',63,16590,3000),(8709,'2020-06-10',64,6379,2000),(8710,'2020-06-10',65,15314,10000),(8711,'2020-06-10',66,20420,10000),(8712,'2020-06-10',67,10210,2000),(8713,'2020-06-10',68,26800,9000),(8714,'2020-06-10',69,14037,2000),(8715,'2020-06-10',70,12761,7000),(8716,'2020-06-10',71,11484,7000),(8717,'2020-06-10',72,14037,6000),(8718,'2020-06-10',73,17866,5000),(8719,'2020-06-10',74,12761,6000),(8720,'2020-06-10',75,14037,7000),(8721,'2020-06-10',76,21695,2000),(8722,'2020-06-10',77,8932,3000),(8723,'2020-06-10',78,11484,7000),(8724,'2020-06-10',79,16590,2000),(8725,'2020-06-10',80,17866,9000),(8726,'2020-06-10',81,17866,10000),(8727,'2020-06-10',82,8932,7000),(8728,'2020-06-10',83,10210,2000),(8729,'2020-06-10',84,11484,3000),(8730,'2020-06-10',85,16590,6000),(8731,'2020-06-10',86,25524,1000),(8732,'2020-06-10',87,7656,8000),(8733,'2020-06-10',88,21695,2000),(8734,'2020-06-10',89,7656,1000),(8735,'2020-06-10',90,6379,6000),(8736,'2020-06-10',91,21695,3000),(8737,'2020-06-10',92,20420,2000),(8738,'2020-06-10',93,8932,1000),(8739,'2020-06-10',94,15314,10000),(8740,'2020-06-10',95,20420,7000),(8741,'2020-06-10',96,15314,3000),(8742,'2020-06-10',97,7656,1000),(8743,'2020-06-10',98,20420,7000),(8744,'2020-06-10',99,16590,2000),(8745,'2020-06-10',100,15314,6000),(8746,'2020-06-10',101,7656,11000),(8747,'2020-06-10',102,24247,8000),(8749,'2020-06-10',104,24247,4000),(8750,'2020-06-10',105,22971,6000),(8751,'2020-06-10',106,24247,9000),(8752,'2020-06-10',107,19142,10000),(8753,'2020-06-10',108,19142,1000),(8754,'2020-06-10',109,8932,11000),(8755,'2020-06-10',110,19142,3000),(8756,'2020-06-10',111,6379,3000),(8757,'2020-06-10',112,25524,1000),(8758,'2020-06-10',113,11484,2000),(8759,'2020-06-10',114,6379,1000),(8760,'2020-06-10',115,14037,3000),(8761,'2020-06-10',116,10210,6000),(8762,'2020-06-10',117,26800,6000),(8763,'2020-06-10',118,24247,2000),(8764,'2020-06-10',119,24247,5000),(8765,'2020-06-10',120,11484,3000),(8766,'2020-06-10',121,10210,7000),(8767,'2020-06-10',122,22971,3000),(8768,'2020-06-10',123,20420,4000),(8769,'2020-06-10',124,15314,5000),(8770,'2020-06-10',125,17866,11000),(8771,'2020-06-10',126,11484,9000),(8772,'2020-06-10',127,17866,8000),(8774,'2020-06-10',129,15314,9000),(8775,'2020-06-10',130,10210,3000),(8776,'2020-06-10',131,16590,6000),(8777,'2020-06-10',132,11484,5000),(8778,'2020-06-10',133,6379,4000),(8779,'2020-07-10',1,17866,11000),(8780,'2020-07-10',2,21695,11000),(8781,'2020-07-10',3,10210,3000),(8782,'2020-07-10',4,17866,1000),(8783,'2020-07-10',5,17866,6000),(8784,'2020-07-10',6,17866,5000),(8785,'2020-07-10',7,24247,3000),(8786,'2020-07-10',8,24247,5000),(8787,'2020-07-10',9,14037,3000),(8788,'2020-07-10',10,22971,5000),(8789,'2020-07-10',11,17866,10000),(8790,'2020-07-10',12,16590,11000),(8791,'2020-07-10',13,19142,9000),(8792,'2020-07-10',14,12761,2000),(8793,'2020-07-10',15,11484,7000),(8794,'2020-07-10',16,22971,10000),(8795,'2020-07-10',17,20420,9000),(8796,'2020-07-10',18,7656,9000),(8797,'2020-07-10',19,26800,1000),(8798,'2020-07-10',20,20420,11000),(8799,'2020-07-10',21,19142,11000),(8800,'2020-07-10',22,15314,10000),(8803,'2020-07-10',25,24247,11000),(8804,'2020-07-10',26,8932,2000),(8805,'2020-07-10',27,25524,3000),(8806,'2020-07-10',28,17866,6000),(8807,'2020-07-10',29,24247,3000),(8808,'2020-07-10',30,7656,9000),(8809,'2020-07-10',31,26800,9000),(8810,'2020-07-10',32,19142,7000),(8811,'2020-07-10',33,24247,4000),(8812,'2020-07-10',34,24247,10000),(8814,'2020-07-10',36,17866,11000),(8815,'2020-07-10',37,25524,3000),(8816,'2020-07-10',38,24247,5000),(8817,'2020-07-10',39,15314,3000),(8818,'2020-07-10',40,21695,9000),(8819,'2020-07-10',41,10210,1000),(8821,'2020-07-10',43,14037,4000),(8822,'2020-07-10',44,14037,5000),(8823,'2020-07-10',45,15314,8000),(8824,'2020-07-10',46,16590,7000),(8825,'2020-07-10',47,14037,8000),(8826,'2020-07-10',48,26800,8000),(8827,'2020-07-10',49,16590,7000),(8828,'2020-07-10',50,11484,11000),(8829,'2020-07-10',51,6379,11000),(8830,'2020-07-10',52,20420,11000),(8831,'2020-07-10',53,26800,6000),(8832,'2020-07-10',54,22971,4000),(8833,'2020-07-10',55,6379,11000),(8834,'2020-07-10',56,24247,2000),(8835,'2020-07-10',57,24247,5000),(8836,'2020-07-10',58,14037,2000),(8837,'2020-07-10',59,11484,9000),(8838,'2020-07-10',60,14037,1000),(8839,'2020-07-10',61,25524,10000),(8840,'2020-07-10',62,16590,1000),(8841,'2020-07-10',63,16590,5000),(8842,'2020-07-10',64,6379,1000),(8843,'2020-07-10',65,15314,4000),(8844,'2020-07-10',66,20420,4000),(8845,'2020-07-10',67,10210,11000),(8846,'2020-07-10',68,26800,1000),(8847,'2020-07-10',69,14037,9000),(8848,'2020-07-10',70,12761,5000),(8849,'2020-07-10',71,11484,6000),(8850,'2020-07-10',72,14037,1000),(8851,'2020-07-10',73,17866,6000),(8852,'2020-07-10',74,12761,3000),(8853,'2020-07-10',75,14037,11000),(8854,'2020-07-10',76,21695,7000),(8855,'2020-07-10',77,8932,1000),(8856,'2020-07-10',78,11484,10000),(8857,'2020-07-10',79,16590,2000),(8858,'2020-07-10',80,17866,7000),(8859,'2020-07-10',81,17866,8000),(8860,'2020-07-10',82,8932,3000),(8861,'2020-07-10',83,10210,1000),(8862,'2020-07-10',84,11484,10000),(8863,'2020-07-10',85,16590,5000),(8864,'2020-07-10',86,25524,3000),(8865,'2020-07-10',87,7656,11000),(8866,'2020-07-10',88,21695,10000),(8867,'2020-07-10',89,7656,10000),(8868,'2020-07-10',90,6379,2000),(8869,'2020-07-10',91,21695,3000),(8870,'2020-07-10',92,20420,7000),(8871,'2020-07-10',93,8932,6000),(8872,'2020-07-10',94,15314,8000),(8873,'2020-07-10',95,20420,7000),(8874,'2020-07-10',96,15314,3000),(8875,'2020-07-10',97,7656,8000),(8876,'2020-07-10',98,20420,8000),(8877,'2020-07-10',99,16590,7000),(8878,'2020-07-10',100,15314,3000),(8879,'2020-07-10',101,7656,2000),(8880,'2020-07-10',102,24247,2000),(8881,'2020-07-10',103,26800,10000),(8882,'2020-07-10',104,24247,4000),(8883,'2020-07-10',105,22971,8000),(8884,'2020-07-10',106,24247,3000),(8885,'2020-07-10',107,19142,11000),(8886,'2020-07-10',108,19142,1000),(8887,'2020-07-10',109,8932,10000),(8888,'2020-07-10',110,19142,8000),(8889,'2020-07-10',111,6379,3000),(8890,'2020-07-10',112,25524,5000),(8891,'2020-07-10',113,11484,6000),(8892,'2020-07-10',114,6379,1000),(8893,'2020-07-10',115,14037,11000),(8894,'2020-07-10',116,10210,10000),(8895,'2020-07-10',117,26800,4000),(8896,'2020-07-10',118,24247,5000),(8897,'2020-07-10',119,24247,2000),(8898,'2020-07-10',120,11484,1000),(8899,'2020-07-10',121,10210,7000),(8900,'2020-07-10',122,22971,4000),(8901,'2020-07-10',123,20420,11000),(8902,'2020-07-10',124,15314,11000),(8903,'2020-07-10',125,17866,3000),(8904,'2020-07-10',126,11484,9000),(8905,'2020-07-10',127,17866,3000),(8907,'2020-07-10',129,15314,9000),(8908,'2020-07-10',130,10210,9000),(8909,'2020-07-10',131,16590,7000),(8910,'2020-07-10',132,11484,7000),(8911,'2020-07-10',133,6379,1000),(8912,'2020-08-10',1,17866,3000),(8913,'2020-08-10',2,21695,5000),(8914,'2020-08-10',3,10210,3000),(8915,'2020-08-10',4,17866,11000),(8916,'2020-08-10',5,17866,3000),(8917,'2020-08-10',6,17866,9000),(8918,'2020-08-10',7,24247,5000),(8919,'2020-08-10',8,24247,4000),(8920,'2020-08-10',9,14037,8000),(8921,'2020-08-10',10,22971,2000),(8922,'2020-08-10',11,17866,5000),(8923,'2020-08-10',12,16590,9000),(8924,'2020-08-10',13,19142,3000),(8925,'2020-08-10',14,12761,4000),(8926,'2020-08-10',15,11484,9000),(8927,'2020-08-10',16,22971,11000),(8928,'2020-08-10',17,20420,8000),(8929,'2020-08-10',18,7656,6000),(8930,'2020-08-10',19,26800,11000),(8931,'2020-08-10',20,20420,7000),(8932,'2020-08-10',21,19142,10000),(8933,'2020-08-10',22,15314,1000),(8936,'2020-08-10',25,24247,2000),(8937,'2020-08-10',26,8932,9000),(8938,'2020-08-10',27,25524,8000),(8939,'2020-08-10',28,17866,4000),(8940,'2020-08-10',29,24247,11000),(8941,'2020-08-10',30,7656,10000),(8942,'2020-08-10',31,26800,9000),(8943,'2020-08-10',32,19142,1000),(8944,'2020-08-10',33,24247,7000),(8945,'2020-08-10',34,24247,3000),(8947,'2020-08-10',36,17866,10000),(8948,'2020-08-10',37,25524,3000),(8949,'2020-08-10',38,24247,6000),(8950,'2020-08-10',39,15314,7000),(8951,'2020-08-10',40,21695,7000),(8952,'2020-08-10',41,10210,2000),(8954,'2020-08-10',43,14037,8000),(8955,'2020-08-10',44,14037,4000),(8956,'2020-08-10',45,15314,11000),(8957,'2020-08-10',46,16590,7000),(8958,'2020-08-10',47,14037,9000),(8959,'2020-08-10',48,26800,7000),(8960,'2020-08-10',49,16590,8000),(8961,'2020-08-10',50,11484,4000),(8962,'2020-08-10',51,6379,1000),(8963,'2020-08-10',52,20420,6000),(8964,'2020-08-10',53,26800,11000),(8965,'2020-08-10',54,22971,1000),(8966,'2020-08-10',55,6379,11000),(8967,'2020-08-10',56,24247,3000),(8968,'2020-08-10',57,24247,11000),(8969,'2020-08-10',58,14037,10000),(8970,'2020-08-10',59,11484,9000),(8971,'2020-08-10',60,14037,9000),(8972,'2020-08-10',61,25524,9000),(8973,'2020-08-10',62,16590,3000),(8974,'2020-08-10',63,16590,3000),(8975,'2020-08-10',64,6379,7000),(8976,'2020-08-10',65,15314,7000),(8977,'2020-08-10',66,20420,8000),(8978,'2020-08-10',67,10210,6000),(8979,'2020-08-10',68,26800,8000),(8980,'2020-08-10',69,14037,7000),(8981,'2020-08-10',70,12761,3000),(8982,'2020-08-10',71,11484,11000),(8983,'2020-08-10',72,14037,5000),(8984,'2020-08-10',73,17866,9000),(8985,'2020-08-10',74,12761,3000),(8986,'2020-08-10',75,14037,9000),(8987,'2020-08-10',76,21695,7000),(8988,'2020-08-10',77,8932,3000),(8989,'2020-08-10',78,11484,3000),(8990,'2020-08-10',79,16590,10000),(8991,'2020-08-10',80,17866,6000),(8992,'2020-08-10',81,17866,1000),(8993,'2020-08-10',82,8932,1000),(8994,'2020-08-10',83,10210,9000),(8995,'2020-08-10',84,11484,6000),(8996,'2020-08-10',85,16590,9000),(8997,'2020-08-10',86,25524,7000),(8998,'2020-08-10',87,7656,8000),(8999,'2020-08-10',88,21695,6000),(9000,'2020-08-10',89,7656,2000),(9001,'2020-08-10',90,6379,7000),(9002,'2020-08-10',91,21695,10000),(9003,'2020-08-10',92,20420,2000),(9004,'2020-08-10',93,8932,8000),(9005,'2020-08-10',94,15314,1000),(9006,'2020-08-10',95,20420,5000),(9007,'2020-08-10',96,15314,6000),(9008,'2020-08-10',97,7656,4000),(9009,'2020-08-10',98,20420,11000),(9010,'2020-08-10',99,16590,10000),(9011,'2020-08-10',100,15314,9000),(9012,'2020-08-10',101,7656,4000),(9013,'2020-08-10',102,24247,2000),(9014,'2020-08-10',103,26800,8000),(9015,'2020-08-10',104,24247,8000),(9016,'2020-08-10',105,22971,8000),(9017,'2020-08-10',106,24247,11000),(9018,'2020-08-10',107,19142,1000),(9019,'2020-08-10',108,19142,10000),(9020,'2020-08-10',109,8932,4000),(9021,'2020-08-10',110,19142,5000),(9022,'2020-08-10',111,6379,7000),(9023,'2020-08-10',112,25524,5000),(9024,'2020-08-10',113,11484,4000),(9025,'2020-08-10',114,6379,1000),(9026,'2020-08-10',115,14037,1000),(9027,'2020-08-10',116,10210,1000),(9028,'2020-08-10',117,26800,10000),(9029,'2020-08-10',118,24247,10000),(9030,'2020-08-10',119,24247,4000),(9031,'2020-08-10',120,11484,10000),(9032,'2020-08-10',121,10210,3000),(9033,'2020-08-10',122,22971,11000),(9034,'2020-08-10',123,20420,1000),(9035,'2020-08-10',124,15314,6000),(9036,'2020-08-10',125,17866,3000),(9037,'2020-08-10',126,11484,2000),(9038,'2020-08-10',127,17866,7000),(9040,'2020-08-10',129,15314,4000),(9041,'2020-08-10',130,10210,1000),(9042,'2020-08-10',131,16590,3000),(9043,'2020-08-10',132,11484,4000),(9044,'2020-08-10',133,6379,9000),(9045,'2020-09-10',1,17866,7000),(9046,'2020-09-10',2,21695,2000),(9047,'2020-09-10',3,10210,9000),(9048,'2020-09-10',4,17866,6000),(9049,'2020-09-10',5,17866,7000),(9050,'2020-09-10',6,17866,10000),(9051,'2020-09-10',7,24247,8000),(9052,'2020-09-10',8,24247,1000),(9053,'2020-09-10',9,14037,6000),(9054,'2020-09-10',10,22971,7000),(9055,'2020-09-10',11,17866,9000),(9056,'2020-09-10',12,16590,8000),(9057,'2020-09-10',13,19142,1000),(9058,'2020-09-10',14,12761,8000),(9059,'2020-09-10',15,11484,1000),(9060,'2020-09-10',16,22971,1000),(9061,'2020-09-10',17,20420,5000),(9062,'2020-09-10',18,7656,5000),(9063,'2020-09-10',19,26800,7000),(9064,'2020-09-10',20,20420,7000),(9065,'2020-09-10',21,19142,8000),(9066,'2020-09-10',22,15314,11000),(9068,'2020-09-10',24,20420,3000),(9069,'2020-09-10',25,24247,7000),(9070,'2020-09-10',26,8932,9000),(9071,'2020-09-10',27,25524,5000),(9072,'2020-09-10',28,17866,9000),(9073,'2020-09-10',29,24247,6000),(9074,'2020-09-10',30,7656,5000),(9075,'2020-09-10',31,26800,6000),(9076,'2020-09-10',32,19142,11000),(9077,'2020-09-10',33,24247,4000),(9078,'2020-09-10',34,24247,3000),(9080,'2020-09-10',36,17866,11000),(9081,'2020-09-10',37,25524,9000),(9082,'2020-09-10',38,24247,11000),(9083,'2020-09-10',39,15314,4000),(9084,'2020-09-10',40,21695,10000),(9085,'2020-09-10',41,10210,3000),(9087,'2020-09-10',43,14037,7000),(9088,'2020-09-10',44,14037,10000),(9089,'2020-09-10',45,15314,5000),(9090,'2020-09-10',46,16590,11000),(9091,'2020-09-10',47,14037,9000),(9092,'2020-09-10',48,26800,1000),(9093,'2020-09-10',49,16590,7000),(9094,'2020-09-10',50,11484,1000),(9095,'2020-09-10',51,6379,8000),(9096,'2020-09-10',52,20420,6000),(9097,'2020-09-10',53,26800,10000),(9098,'2020-09-10',54,22971,4000),(9099,'2020-09-10',55,6379,2000),(9100,'2020-09-10',56,24247,10000),(9101,'2020-09-10',57,24247,10000),(9102,'2020-09-10',58,14037,7000),(9103,'2020-09-10',59,11484,10000),(9104,'2020-09-10',60,14037,10000),(9105,'2020-09-10',61,25524,10000),(9106,'2020-09-10',62,16590,9000),(9107,'2020-09-10',63,16590,4000),(9108,'2020-09-10',64,6379,10000),(9109,'2020-09-10',65,15314,11000),(9110,'2020-09-10',66,20420,5000),(9111,'2020-09-10',67,10210,4000),(9112,'2020-09-10',68,26800,6000),(9113,'2020-09-10',69,14037,10000),(9114,'2020-09-10',70,12761,11000),(9115,'2020-09-10',71,11484,9000),(9116,'2020-09-10',72,14037,7000),(9117,'2020-09-10',73,17866,9000),(9118,'2020-09-10',74,12761,2000),(9119,'2020-09-10',75,14037,4000),(9120,'2020-09-10',76,21695,9000),(9121,'2020-09-10',77,8932,4000),(9122,'2020-09-10',78,11484,6000),(9123,'2020-09-10',79,16590,1000),(9124,'2020-09-10',80,17866,11000),(9125,'2020-09-10',81,17866,3000),(9126,'2020-09-10',82,8932,8000),(9127,'2020-09-10',83,10210,11000),(9128,'2020-09-10',84,11484,8000),(9129,'2020-09-10',85,16590,6000),(9130,'2020-09-10',86,25524,3000),(9131,'2020-09-10',87,7656,1000),(9132,'2020-09-10',88,21695,10000),(9133,'2020-09-10',89,7656,10000),(9134,'2020-09-10',90,6379,5000),(9135,'2020-09-10',91,21695,6000),(9136,'2020-09-10',92,20420,7000),(9137,'2020-09-10',93,8932,11000),(9138,'2020-09-10',94,15314,3000),(9139,'2020-09-10',95,20420,10000),(9140,'2020-09-10',96,15314,2000),(9141,'2020-09-10',97,7656,3000),(9142,'2020-09-10',98,20420,7000),(9143,'2020-09-10',99,16590,5000),(9144,'2020-09-10',100,15314,4000),(9145,'2020-09-10',101,7656,4000),(9146,'2020-09-10',102,24247,9000),(9147,'2020-09-10',103,26800,2000),(9148,'2020-09-10',104,24247,10000),(9149,'2020-09-10',105,22971,9000),(9150,'2020-09-10',106,24247,3000),(9151,'2020-09-10',107,19142,1000),(9152,'2020-09-10',108,19142,3000),(9153,'2020-09-10',109,8932,5000),(9154,'2020-09-10',110,19142,9000),(9155,'2020-09-10',111,6379,1000),(9156,'2020-09-10',112,25524,7000),(9157,'2020-09-10',113,11484,11000),(9158,'2020-09-10',114,6379,9000),(9159,'2020-09-10',115,14037,11000),(9160,'2020-09-10',116,10210,11000),(9161,'2020-09-10',117,26800,7000),(9162,'2020-09-10',118,24247,7000),(9163,'2020-09-10',119,24247,2000),(9164,'2020-09-10',120,11484,1000),(9165,'2020-09-10',121,10210,5000),(9166,'2020-09-10',122,22971,6000),(9167,'2020-09-10',123,20420,6000),(9168,'2020-09-10',124,15314,8000),(9169,'2020-09-10',125,17866,11000),(9170,'2020-09-10',126,11484,1000),(9171,'2020-09-10',127,17866,1000),(9172,'2020-09-10',128,10210,3000),(9173,'2020-09-10',129,15314,11000),(9174,'2020-09-10',130,10210,5000),(9175,'2020-09-10',131,16590,7000),(9176,'2020-09-10',132,11484,9000),(9177,'2020-09-10',133,6379,9000),(9178,'2020-10-10',1,17866,11000),(9179,'2020-10-10',2,21695,8000),(9180,'2020-10-10',3,10210,6000),(9181,'2020-10-10',4,17866,1000),(9182,'2020-10-10',5,17866,8000),(9183,'2020-10-10',6,17866,10000),(9184,'2020-10-10',7,24247,2000),(9185,'2020-10-10',8,24247,6000),(9186,'2020-10-10',9,14037,7000),(9187,'2020-10-10',10,22971,6000),(9188,'2020-10-10',11,17866,2000),(9189,'2020-10-10',12,16590,8000),(9190,'2020-10-10',13,19142,5000),(9191,'2020-10-10',14,12761,6000),(9192,'2020-10-10',15,11484,6000),(9193,'2020-10-10',16,22971,7000),(9194,'2020-10-10',17,20420,3000),(9195,'2020-10-10',18,7656,5000),(9196,'2020-10-10',19,26800,5000),(9197,'2020-10-10',20,20420,10000),(9198,'2020-10-10',21,19142,1000),(9199,'2020-10-10',22,15314,3000),(9201,'2020-10-10',24,20420,1000),(9202,'2020-10-10',25,24247,8000),(9203,'2020-10-10',26,8932,11000),(9204,'2020-10-10',27,25524,5000),(9205,'2020-10-10',28,17866,1000),(9206,'2020-10-10',29,24247,1000),(9207,'2020-10-10',30,7656,10000),(9208,'2020-10-10',31,26800,8000),(9209,'2020-10-10',32,19142,3000),(9210,'2020-10-10',33,24247,7000),(9211,'2020-10-10',34,24247,9000),(9212,'2020-10-10',35,24247,9000),(9213,'2020-10-10',36,17866,6000),(9214,'2020-10-10',37,25524,8000),(9215,'2020-10-10',38,24247,11000),(9216,'2020-10-10',39,15314,1000),(9217,'2020-10-10',40,21695,8000),(9218,'2020-10-10',41,10210,1000),(9219,'2020-10-10',42,25524,4000),(9220,'2020-10-10',43,14037,10000),(9221,'2020-10-10',44,14037,6000),(9222,'2020-10-10',45,15314,3000),(9223,'2020-10-10',46,16590,7000),(9224,'2020-10-10',47,14037,3000),(9225,'2020-10-10',48,26800,5000),(9226,'2020-10-10',49,16590,7000),(9227,'2020-10-10',50,11484,5000),(9228,'2020-10-10',51,6379,3000),(9229,'2020-10-10',52,20420,11000),(9230,'2020-10-10',53,26800,3000),(9231,'2020-10-10',54,22971,3000),(9232,'2020-10-10',55,6379,9000),(9233,'2020-10-10',56,24247,9000),(9234,'2020-10-10',57,24247,5000),(9235,'2020-10-10',58,14037,9000),(9236,'2020-10-10',59,11484,1000),(9237,'2020-10-10',60,14037,2000),(9238,'2020-10-10',61,25524,7000),(9239,'2020-10-10',62,16590,2000),(9240,'2020-10-10',63,16590,1000),(9241,'2020-10-10',64,6379,11000),(9242,'2020-10-10',65,15314,1000),(9243,'2020-10-10',66,20420,4000),(9244,'2020-10-10',67,10210,10000),(9245,'2020-10-10',68,26800,1000),(9246,'2020-10-10',69,14037,4000),(9247,'2020-10-10',70,12761,4000),(9248,'2020-10-10',71,11484,7000),(9249,'2020-10-10',72,14037,2000),(9250,'2020-10-10',73,17866,3000),(9251,'2020-10-10',74,12761,11000),(9252,'2020-10-10',75,14037,7000),(9253,'2020-10-10',76,21695,7000),(9254,'2020-10-10',77,8932,5000),(9255,'2020-10-10',78,11484,6000),(9256,'2020-10-10',79,16590,11000),(9257,'2020-10-10',80,17866,9000),(9258,'2020-10-10',81,17866,1000),(9259,'2020-10-10',82,8932,1000),(9260,'2020-10-10',83,10210,5000),(9261,'2020-10-10',84,11484,4000),(9262,'2020-10-10',85,16590,2000),(9263,'2020-10-10',86,25524,5000),(9264,'2020-10-10',87,7656,7000),(9265,'2020-10-10',88,21695,11000),(9266,'2020-10-10',89,7656,4000),(9267,'2020-10-10',90,6379,7000),(9268,'2020-10-10',91,21695,6000),(9269,'2020-10-10',92,20420,1000),(9270,'2020-10-10',93,8932,9000),(9271,'2020-10-10',94,15314,4000),(9272,'2020-10-10',95,20420,5000),(9273,'2020-10-10',96,15314,5000),(9274,'2020-10-10',97,7656,9000),(9275,'2020-10-10',98,20420,7000),(9276,'2020-10-10',99,16590,3000),(9277,'2020-10-10',100,15314,4000),(9278,'2020-10-10',101,7656,8000),(9279,'2020-10-10',102,24247,5000),(9280,'2020-10-10',103,26800,7000),(9281,'2020-10-10',104,24247,11000),(9282,'2020-10-10',105,22971,4000),(9283,'2020-10-10',106,24247,11000),(9284,'2020-10-10',107,19142,2000),(9285,'2020-10-10',108,19142,6000),(9286,'2020-10-10',109,8932,6000),(9287,'2020-10-10',110,19142,10000),(9288,'2020-10-10',111,6379,8000),(9289,'2020-10-10',112,25524,9000),(9290,'2020-10-10',113,11484,9000),(9291,'2020-10-10',114,6379,7000),(9292,'2020-10-10',115,14037,11000),(9293,'2020-10-10',116,10210,9000),(9294,'2020-10-10',117,26800,10000),(9295,'2020-10-10',118,24247,3000),(9296,'2020-10-10',119,24247,5000),(9297,'2020-10-10',120,11484,3000),(9298,'2020-10-10',121,10210,4000),(9299,'2020-10-10',122,22971,7000),(9300,'2020-10-10',123,20420,5000),(9301,'2020-10-10',124,15314,6000),(9302,'2020-10-10',125,17866,4000),(9303,'2020-10-10',126,11484,2000),(9304,'2020-10-10',127,17866,6000),(9305,'2020-10-10',128,10210,8000),(9306,'2020-10-10',129,15314,1000),(9307,'2020-10-10',130,10210,10000),(9308,'2020-10-10',131,16590,5000),(9309,'2020-10-10',132,11484,9000),(9310,'2020-10-10',133,6379,7000),(9311,'2020-11-10',1,17866,2000),(9312,'2020-11-10',2,21695,9000),(9313,'2020-11-10',3,10210,3000),(9314,'2020-11-10',4,17866,4000),(9315,'2020-11-10',5,17866,1000),(9316,'2020-11-10',6,17866,11000),(9317,'2020-11-10',7,24247,7000),(9318,'2020-11-10',8,24247,1000),(9319,'2020-11-10',9,14037,7000),(9320,'2020-11-10',10,22971,7000),(9321,'2020-11-10',11,17866,1000),(9322,'2020-11-10',12,16590,7000),(9323,'2020-11-10',13,19142,7000),(9324,'2020-11-10',14,12761,8000),(9325,'2020-11-10',15,11484,3000),(9326,'2020-11-10',16,22971,10000),(9327,'2020-11-10',17,20420,5000),(9328,'2020-11-10',18,7656,1000),(9329,'2020-11-10',19,26800,11000),(9330,'2020-11-10',20,20420,3000),(9331,'2020-11-10',21,19142,4000),(9332,'2020-11-10',22,15314,10000),(9334,'2020-11-10',24,20420,3000),(9335,'2020-11-10',25,24247,10000),(9336,'2020-11-10',26,8932,2000),(9337,'2020-11-10',27,25524,2000),(9338,'2020-11-10',28,17866,3000),(9339,'2020-11-10',29,24247,1000),(9340,'2020-11-10',30,7656,3000),(9341,'2020-11-10',31,26800,6000),(9342,'2020-11-10',32,19142,7000),(9343,'2020-11-10',33,24247,8000),(9344,'2020-11-10',34,24247,1000),(9345,'2020-11-10',35,24247,11000),(9346,'2020-11-10',36,17866,5000),(9347,'2020-11-10',37,25524,5000),(9348,'2020-11-10',38,24247,2000),(9349,'2020-11-10',39,15314,2000),(9350,'2020-11-10',40,21695,7000),(9351,'2020-11-10',41,10210,5000),(9352,'2020-11-10',42,25524,8000),(9353,'2020-11-10',43,14037,11000),(9354,'2020-11-10',44,14037,2000),(9355,'2020-11-10',45,15314,9000),(9356,'2020-11-10',46,16590,4000),(9357,'2020-11-10',47,14037,7000),(9358,'2020-11-10',48,26800,11000),(9359,'2020-11-10',49,16590,7000),(9360,'2020-11-10',50,11484,6000),(9361,'2020-11-10',51,6379,4000),(9362,'2020-11-10',52,20420,5000),(9363,'2020-11-10',53,26800,11000),(9364,'2020-11-10',54,22971,1000),(9365,'2020-11-10',55,6379,5000),(9366,'2020-11-10',56,24247,4000),(9367,'2020-11-10',57,24247,1000),(9368,'2020-11-10',58,14037,2000),(9369,'2020-11-10',59,11484,3000),(9370,'2020-11-10',60,14037,7000),(9371,'2020-11-10',61,25524,8000),(9372,'2020-11-10',62,16590,1000),(9373,'2020-11-10',63,16590,8000),(9374,'2020-11-10',64,6379,1000),(9375,'2020-11-10',65,15314,2000),(9376,'2020-11-10',66,20420,4000),(9377,'2020-11-10',67,10210,9000),(9378,'2020-11-10',68,26800,2000),(9379,'2020-11-10',69,14037,4000),(9380,'2020-11-10',70,12761,8000),(9381,'2020-11-10',71,11484,3000),(9382,'2020-11-10',72,14037,10000),(9383,'2020-11-10',73,17866,2000),(9384,'2020-11-10',74,12761,6000),(9385,'2020-11-10',75,14037,9000),(9386,'2020-11-10',76,21695,7000),(9387,'2020-11-10',77,8932,10000),(9388,'2020-11-10',78,11484,2000),(9389,'2020-11-10',79,16590,4000),(9390,'2020-11-10',80,17866,9000),(9391,'2020-11-10',81,17866,11000),(9392,'2020-11-10',82,8932,8000),(9393,'2020-11-10',83,10210,11000),(9394,'2020-11-10',84,11484,1000),(9395,'2020-11-10',85,16590,4000),(9396,'2020-11-10',86,25524,3000),(9397,'2020-11-10',87,7656,7000),(9398,'2020-11-10',88,21695,8000),(9399,'2020-11-10',89,7656,6000),(9400,'2020-11-10',90,6379,3000),(9401,'2020-11-10',91,21695,4000),(9402,'2020-11-10',92,20420,7000),(9403,'2020-11-10',93,8932,8000),(9404,'2020-11-10',94,15314,1000),(9405,'2020-11-10',95,20420,11000),(9406,'2020-11-10',96,15314,6000),(9407,'2020-11-10',97,7656,5000),(9408,'2020-11-10',98,20420,11000),(9409,'2020-11-10',99,16590,8000),(9410,'2020-11-10',100,15314,4000),(9411,'2020-11-10',101,7656,2000),(9412,'2020-11-10',102,24247,4000),(9413,'2020-11-10',103,26800,5000),(9414,'2020-11-10',104,24247,3000),(9415,'2020-11-10',105,22971,6000),(9416,'2020-11-10',106,24247,5000),(9417,'2020-11-10',107,19142,1000),(9418,'2020-11-10',108,19142,11000),(9419,'2020-11-10',109,8932,1000),(9420,'2020-11-10',110,19142,5000),(9421,'2020-11-10',111,6379,7000),(9422,'2020-11-10',112,25524,1000),(9423,'2020-11-10',113,11484,5000),(9424,'2020-11-10',114,6379,4000),(9425,'2020-11-10',115,14037,5000),(9426,'2020-11-10',116,10210,8000),(9427,'2020-11-10',117,26800,2000),(9428,'2020-11-10',118,24247,11000),(9429,'2020-11-10',119,24247,11000),(9430,'2020-11-10',120,11484,1000),(9431,'2020-11-10',121,10210,7000),(9432,'2020-11-10',122,22971,5000),(9433,'2020-11-10',123,20420,7000),(9434,'2020-11-10',124,15314,6000),(9435,'2020-11-10',125,17866,5000),(9436,'2020-11-10',126,11484,5000),(9437,'2020-11-10',127,17866,6000),(9438,'2020-11-10',128,10210,2000),(9439,'2020-11-10',129,15314,4000),(9440,'2020-11-10',130,10210,1000),(9441,'2020-11-10',131,16590,9000),(9442,'2020-11-10',132,11484,6000),(9443,'2020-11-10',133,6379,11000),(9444,'2020-12-10',1,18759,9000),(9445,'2020-12-10',2,22779,6000),(9446,'2020-12-10',3,10720,8000),(9447,'2020-12-10',4,18759,4000),(9448,'2020-12-10',5,18759,4000),(9449,'2020-12-10',6,18759,1000),(9450,'2020-12-10',7,25459,2000),(9451,'2020-12-10',8,25459,2000),(9452,'2020-12-10',9,14738,9000),(9453,'2020-12-10',10,24119,4000),(9454,'2020-12-10',11,18759,8000),(9455,'2020-12-10',12,17419,10000),(9456,'2020-12-10',13,20099,7000),(9457,'2020-12-10',14,13399,2000),(9458,'2020-12-10',15,12058,9000),(9459,'2020-12-10',16,24119,6000),(9460,'2020-12-10',17,21441,2000),(9461,'2020-12-10',18,8038,3000),(9462,'2020-12-10',19,28140,4000),(9463,'2020-12-10',20,21441,3000),(9464,'2020-12-10',21,20099,6000),(9465,'2020-12-10',22,16079,11000),(9467,'2020-12-10',24,21441,8000),(9468,'2020-12-10',25,25459,8000),(9469,'2020-12-10',26,9378,7000),(9470,'2020-12-10',27,26800,9000),(9471,'2020-12-10',28,18759,7000),(9472,'2020-12-10',29,25459,5000),(9473,'2020-12-10',30,8038,7000),(9474,'2020-12-10',31,28140,5000),(9475,'2020-12-10',32,20099,3000),(9476,'2020-12-10',33,25459,5000),(9477,'2020-12-10',34,25459,1000),(9478,'2020-12-10',35,25459,4000),(9479,'2020-12-10',36,18759,6000),(9480,'2020-12-10',37,26800,11000),(9481,'2020-12-10',38,25459,9000),(9482,'2020-12-10',39,16079,1000),(9483,'2020-12-10',40,22779,2000),(9484,'2020-12-10',41,10720,4000),(9485,'2020-12-10',42,26800,5000),(9486,'2020-12-10',43,14738,3000),(9487,'2020-12-10',44,14738,5000),(9488,'2020-12-10',45,16079,7000),(9489,'2020-12-10',46,17419,11000),(9490,'2020-12-10',47,14738,7000),(9491,'2020-12-10',48,28140,6000),(9492,'2020-12-10',49,17419,9000),(9493,'2020-12-10',50,12058,6000),(9494,'2020-12-10',51,6697,1000),(9495,'2020-12-10',52,21441,4000),(9496,'2020-12-10',53,28140,7000),(9497,'2020-12-10',54,24119,4000),(9498,'2020-12-10',55,6697,6000),(9499,'2020-12-10',56,25459,7000),(9500,'2020-12-10',57,25459,5000),(9501,'2020-12-10',58,14738,5000),(9502,'2020-12-10',59,12058,10000),(9503,'2020-12-10',60,14738,3000),(9504,'2020-12-10',61,26800,3000),(9505,'2020-12-10',62,17419,5000),(9506,'2020-12-10',63,17419,11000),(9507,'2020-12-10',64,6697,3000),(9508,'2020-12-10',65,16079,5000),(9509,'2020-12-10',66,21441,5000),(9510,'2020-12-10',67,10720,3000),(9511,'2020-12-10',68,28140,6000),(9512,'2020-12-10',69,14738,3000),(9513,'2020-12-10',70,13399,1000),(9514,'2020-12-10',71,12058,4000),(9515,'2020-12-10',72,14738,8000),(9516,'2020-12-10',73,18759,11000),(9517,'2020-12-10',74,13399,8000),(9518,'2020-12-10',75,14738,2000),(9519,'2020-12-10',76,22779,9000),(9520,'2020-12-10',77,9378,9000),(9521,'2020-12-10',78,12058,2000),(9522,'2020-12-10',79,17419,5000),(9523,'2020-12-10',80,18759,1000),(9524,'2020-12-10',81,18759,1000),(9525,'2020-12-10',82,9378,7000),(9526,'2020-12-10',83,10720,10000),(9527,'2020-12-10',84,12058,9000),(9528,'2020-12-10',85,17419,11000),(9529,'2020-12-10',86,26800,9000),(9530,'2020-12-10',87,8038,8000),(9531,'2020-12-10',88,22779,11000),(9532,'2020-12-10',89,8038,10000),(9533,'2020-12-10',90,6697,3000),(9534,'2020-12-10',91,22779,2000),(9535,'2020-12-10',92,21441,9000),(9536,'2020-12-10',93,9378,8000),(9537,'2020-12-10',94,16079,9000),(9538,'2020-12-10',95,21441,8000),(9539,'2020-12-10',96,16079,6000),(9540,'2020-12-10',97,8038,8000),(9541,'2020-12-10',98,21441,1000),(9542,'2020-12-10',99,17419,6000),(9543,'2020-12-10',100,16079,10000),(9544,'2020-12-10',101,8038,4000),(9545,'2020-12-10',102,25459,7000),(9546,'2020-12-10',103,28140,1000),(9547,'2020-12-10',104,25459,9000),(9548,'2020-12-10',105,24119,5000),(9549,'2020-12-10',106,25459,8000),(9550,'2020-12-10',107,20099,11000),(9551,'2020-12-10',108,20099,3000),(9552,'2020-12-10',109,9378,3000),(9553,'2020-12-10',110,20099,2000),(9554,'2020-12-10',111,6697,11000),(9555,'2020-12-10',112,26800,6000),(9556,'2020-12-10',113,12058,1000),(9557,'2020-12-10',114,6697,8000),(9558,'2020-12-10',115,14738,2000),(9559,'2020-12-10',116,10720,1000),(9560,'2020-12-10',117,28140,7000),(9561,'2020-12-10',118,25459,7000),(9562,'2020-12-10',119,25459,2000),(9563,'2020-12-10',120,12058,4000),(9564,'2020-12-10',121,10720,8000),(9565,'2020-12-10',122,24119,2000),(9566,'2020-12-10',123,21441,3000),(9567,'2020-12-10',124,16079,2000),(9568,'2020-12-10',125,18759,10000),(9569,'2020-12-10',126,12058,11000),(9570,'2020-12-10',127,18759,7000),(9571,'2020-12-10',128,10720,1000),(9572,'2020-12-10',129,16079,10000),(9573,'2020-12-10',130,10720,10000),(9574,'2020-12-10',131,17419,2000),(9575,'2020-12-10',132,12058,8000),(9576,'2020-12-10',133,6697,4000);
/*!40000 ALTER TABLE `salary` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `user`
--
DROP TABLE IF EXISTS `user`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `user` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` char(20) DEFAULT NULL,
`password` char(1) DEFAULT NULL,
`uid` int(11) DEFAULT NULL,
`gid` int(11) DEFAULT NULL,
`comment` varchar(50) DEFAULT NULL,
`homedir` varchar(80) DEFAULT NULL,
`shell` char(30) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=28 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `user`
--
LOCK TABLES `user` WRITE;
/*!40000 ALTER TABLE `user` DISABLE KEYS */;
INSERT INTO `user` VALUES (1,'root','x',0,0,'root','/root','/bin/bash'),(2,'bin','x',1,1,'bin','/bin','/sbin/nologin'),(3,'daemon','x',2,2,'daemon','/sbin','/sbin/nologin'),(4,'adm','x',3,4,'adm','/var/adm','/sbin/nologin'),(5,'lp','x',4,7,'lp','/var/spool/lpd','/sbin/nologin'),(6,'sync','x',5,0,'sync','/sbin','/bin/sync'),(7,'shutdown','x',6,0,'shutdown','/sbin','/sbin/shutdown'),(8,'halt','x',7,0,'halt','/sbin','/sbin/halt'),(9,'mail','x',8,12,'mail','/var/spool/mail','/sbin/nologin'),(10,'operator','x',11,0,'operator','/root','/sbin/nologin'),(11,'games','x',12,100,'games','/usr/games','/sbin/nologin'),(12,'ftp','x',14,50,'FTP User','/var/ftp','/sbin/nologin'),(13,'nobody','x',99,99,'Nobody','/','/sbin/nologin'),(14,'systemd-network','x',192,192,'systemd Network Management','/','/sbin/nologin'),(15,'dbus','x',81,81,'System message bus','/','/sbin/nologin'),(16,'polkitd','x',999,998,'User for polkitd','/','/sbin/nologin'),(17,'sshd','x',74,74,'Privilege-separated SSH','/var/empty/sshd','/sbin/nologin'),(18,'postfix','x',89,89,'','/var/spool/postfix','/sbin/nologin'),(19,'chrony','x',998,996,'','/var/lib/chrony','/sbin/nologin'),(20,'rpc','x',32,32,'Rpcbind Daemon','/var/lib/rpcbind','/sbin/nologin'),(21,'rpcuser','x',29,29,'RPC Service User','/var/lib/nfs','/sbin/nologin'),(22,'nfsnobody','x',65534,65534,'Anonymous NFS User','/var/lib/nfs','/sbin/nologin'),(23,'haproxy','x',188,188,'haproxy','/var/lib/haproxy','/sbin/nologin');
/*!40000 ALTER TABLE `user` 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 2021-09-09 18:06:10
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/tang-gitee-hh/dba.git
git@gitee.com:tang-gitee-hh/dba.git
tang-gitee-hh
dba
第四阶段庞丽静
master

搜索帮助