-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpblog.sql
330 lines (283 loc) · 204 KB
/
pblog.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
-- MySQL dump 10.13 Distrib 5.6.24, for Win32 (x86)
--
-- Host: localhost Database: pblog
-- ------------------------------------------------------
-- Server version 5.6.24
/*!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 */;
--
-- Table structure for table `article_info`
--
DROP TABLE IF EXISTS `article_info`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `article_info` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`title` varchar(200) DEFAULT NULL,
`content` longtext,
`slug` bigint(20) DEFAULT NULL,
`createTime` datetime DEFAULT NULL,
`lastModifyTime` datetime DEFAULT NULL,
`categorySlug` bigint(20) DEFAULT NULL,
`tag` varchar(200) DEFAULT NULL,
`thumb` int(11) DEFAULT '0',
`enabled` tinyint(4) DEFAULT NULL,
`description` longtext,
`descriptionMd` longtext,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `article_info`
--
LOCK TABLES `article_info` WRITE;
/*!40000 ALTER TABLE `article_info` DISABLE KEYS */;
INSERT INTO `article_info` VALUES (1,'PBlog安装使用说明','PBlog是一款使用Java开发的、以markdown作为文章写作语法的单页应用blog,目的是供作为学习交流使用,也可以用来构建个人网站。\r\n\r\n本文描述作为项目安装使用说明,由于论文答辩以及琐事,尚有一部分功能未能够实现,会在以后慢慢完善。欢迎提交 _Pr_ 以及 <em>Issue</em>\r\n\r\n[view this project on github](https://github.com/penglongli/PBlog)\r\n\r\n## 简介\r\nPBlog基于<em>Spring Framework</em> + <em>Mybatis</em>,前端使用 <em>Less</em> 作为预处理样式, <em>marked.js</em> 来处理markdown格式内容,并且通过 <em>AngularJS</em> 控制视图跳转实现PC端单页应用, <em>gulp</em> 作为前端自动化构建工具;\r\n移动端页面采用 <em>HTML5</em> + <em>CSS3</em> 标准实现。\r\n\r\n### 使用到的开源项目:\r\n- [Spring Framework](http://spring.io/) famework\r\n- [MyBatis](http://www.mybatis.org/mybatis-3/) persistence framework\r\n- [jQuery](http://jquery.com) \r\n- [Less](http://lesscss.org/)\r\n- [Font Awesome](http://www.bootcss.com/p/font-awesome/)\r\n- [AngularJS](https://angularjs.org/)\r\n- [angular-loading-bar.js](https://github.com/chieffancypants/angular-loading-bar)\r\n- [marked.js](https://github.com/chjj/marked)\r\n- [highlight.js](https://highlightjs.org/)\r\n- [gulp](http://gulpjs.com/)\r\n\r\n### 开发环境:\r\n- **JDK:** java version \"1.7.0_80\" \r\n- **JVM:** HotSpot(TM) 64-Bit Server VM (build 24.80-b11, mixed mode)\r\n- **MySQL:** 5.6.24\r\n- **IDE:** IntelliJ IDEA 15.0.2\r\n\r\n## 安装使用\r\n\r\n**Completed**:\r\n\r\n* 首页 (PC端和移动端)\r\n* 归档 (PC端和移动端)\r\n* 分类 (PC端和移动端)\r\n* 关于 (PC端和移动端)\r\n* 文章管理\r\n\r\n**TODO List:**\r\n* 增加日志记录\r\n* 读书\r\n* 日记\r\n* 单元测试覆盖(coveralls)\r\n\r\n**使用方式:**\r\n\r\n1. 下载 [PBlog.war](https://github.com/penglongli/PBlog/releases/download/0.1.0/PBlog.war);\r\n2. 下载 pblog.sql(见源码目录), 创建数据库: pblog, 导入pblog.sql;\r\n3. 移动PBog.war重命名为ROOT.war,并移动至tomcat/webapps目录下,启动tomcat。 启动后webapps目录下会生成ROOT目录;\r\n4. 修改**ROOT/WEB-INF/classes/properties/pblog-local.properties**文件中的数据库账户密码\r\n5. 重启tomcat,打开浏览器访问。\r\n6. 文章管理uri: **/manage/article/list**(由于使用nginx作为登录,所以并未写用户登录模块。所以未配置nginx的用户使用的时候是可以自由访问的)\r\n\r\n*具体使用请参见:* [PBlog-releases](https://github.com/penglongli/PBlog/releases/)\r\n\r\n## 项目构建\r\n**NOTE:** \r\n\r\n* [Maven 3+](http://maven.apache.org/download.cgi)\r\n* 添加Maven的bin路径到Path中\r\n\r\nclone项目源码后,在项目根目录执行:\r\n```\r\nmvn package -DskipTests\r\n```\r\n\r\n## 交流贡献\r\n\r\n源码下载、使用、阅读、修改请参见 [wiki文档](https://github.com/penglongli/PBlog/wiki)\r\n\r\n## 版权\r\nThis project is open-sourced under [Apache License 2.0](http://www.apache.org/licenses/LICENSE-2.0)',93246051,'2016-05-04 19:43:36','2016-05-04 19:43:36',93246051,'PBlog,使用说明',0,1,'<p>PBlog是一款使用Java开发的、以markdown作为文章写作语法的单页应用blog,目的是供作为学习交流使用,也可以用来构建个人网站。</p>\r\n<p>本文描述作为项目安装使用说明,由于论文答辩以及琐事,尚有一部分功能未能够实现,会在以后慢慢完善。欢迎提交 <em>Pr</em> 以及 <em>Issue</em></p>\r\n','PBlog是一款使用Java开发的、以markdown作为文章写作语法的单页应用blog,目的是供作为学习交流使用,也可以用来构建个人网站。\r\n\r\n本文描述作为项目安装使用说明,由于论文答辩以及琐事,尚有一部分功能未能够实现,会在以后慢慢完善。欢迎提交 <em>Pr</em> 以及 <em>Issue</em>\r\n'),(4,'Java的内存区域和内存溢出异常','JVM的自动内存管理机制让开发者不需要去为每一个对象释放(delete/free)内存,如果出现内存泄漏和溢出的问题,需要了解\r\nJVM对内存的使用情况才能够更好地解决问题\r\n\r\n## 1. 内存区域\r\nJVM在执行Java程序的过程中会把管理的内存划分为不同的数据区域。每个区域有各自的用途,以及创建和销毁的时间,有的区域随着进程的启动而存在,有的区域依赖用户线程的启动和结束而建立和销毁。\r\n\r\n### 1.1 程序计数器\r\n程序计数器仅占用一块较小的空间,是独立的内存空间,每个线程都有且仅有一个程序计数器,并且是线程私有的(不共享)。\r\n\r\n程序计数器(PC)当执行的是Java方法时,存储当前指令(或操作码)的地址;当执行的是原生(Native)方法时,计数器的值为Undefined。计数器在指令执行过后会增加,并且会持有下一条将要执行的指令的地址。JVM使用计数器来跟踪指令的执行情况,存储的是Java方法的地址,这个地址指向方法区(Method Area)。\r\n\r\n计数器是唯一一个在JVM规范中没有规定任何OutOfMemory情况的区域。\r\n\r\n### 1.2 Java虚拟机栈\r\n\r\nJava的虚拟机栈是线程私有的,在线程创建的时候创建。每一个Java方法在执行的时候都会创建一个栈帧(Stack Frame)来存储局部变量和返回值,方法的调用到完成的过程就是对应的栈帧在虚拟机栈push到pop的过程。\r\n\r\n虚拟机栈除了push和pop操作栈帧外并不被直接操作,所以栈帧可能是堆内存分配的,这就造成了Java虚拟机栈的地址并不一定是连续的。虚拟机规范也并没有要求虚拟机栈的地址是连续的。\r\n\r\n根据虚拟机规范,Java虚拟机栈的大小可以被用户控制设置成固定大小或者在最小和最大尺寸之间动态扩展。以下的异常情况和Java虚拟机栈相关:\r\n* 如果一个线程的计算需要比允许的值更大的Java虚拟机栈,将会抛出StackOverflowError错误\r\n* 如果虚拟机栈可以动态扩展,但是在扩展的时候无法申请到足够的内存,将会抛出OutOfMemoryError错误\r\n\r\n### 1.3 本地方法栈\r\n本地方法栈与虚拟机栈的作用相似,它们之间的区别是本地方法栈为Native方法服务,虚拟机栈为Java指令服务。\r\n\r\n并不是所有的JVM都支持Native Method Stack,但是不支持的JVM也会创建一个本地方法栈。对于一个使用JNI(Java Native Interface, Java和其他语法通信接口)实现的虚拟机的Native方法栈将会是一个\"C栈\"\r\n\r\n### 1.4 Java堆\r\nJava堆是所有JVM线程之间共享的一块内存区域,所有的类实例和数组都是在堆上创建内存。但是根据JIT编译器的发展和逃逸分析技术主键成熟,栈上分配、标量替换这些优化技术将会导致所有的类实例和数组在堆上分配内存不再是那么绝对。\r\n\r\n堆是在虚拟机启动的时候创建,对象的堆存储由自动内存管理系统(垃圾回收器)回收,并且对象并不会被明确释放。根据Java虚拟机规范规定,Java堆存储在物理上不连续的空间中,只需要逻辑连续即可。如果虚拟机实现时设置为可以动态扩展,当堆中内实例分配不到内存并且无法扩展时,将会抛出OutOfMemoryError错误。\r\n\r\n### 1.5 方法区\r\n方法区与Java堆一样,是各个线程共享的内存区域。它存储每个类结构,如运行时常量池、字段、方法返回值以及方法和构造方法的代码,包括在类和实例初始化和接口初始化时所使用的特殊方法。\r\n\r\n方法区在虚拟机启动时创建。根据虚拟机规范,方法区被描述成是堆的一部分。但是根据具体的JVM实现,方法区可以选择不实现垃圾回收和压缩。当方法区的可用内存无法满足内存需要并且无法扩展时,JVM会抛出OutOfMemoryError错误\r\n\r\n### 1.6 运行时常量池\r\n运行时常量池是方法区的一部分,一个类文件或接口文件中包含一项信息:常量池。\r\n\r\n每一个运行时常量池都是从方法区的内存中分配。当JVM创建类或者接口时,运行时常量池就会被构造出来。当运行时常量池构建时,如果无法满足内存分配的需求,将会抛出OutOfMemoryError错误。\r\n\r\n### 1.7 直接内存\r\n直接内存不输入虚拟机运行时数据区的一部分,也不是Java虚拟机规范中定义的内存区域。\r\n\r\nJDK 1.4对直接内存进行了介绍。新的I/O(NIO)类引入了一种基于通道(Channel)与缓冲区(Buffer)的I/O方法。NIO增加了对ByteBuffer(字节缓冲区)的支持,字节缓冲区的DirectByteBuffer(直接缓冲区)增加了堆外的实现。如果缓冲区是直接缓冲区,在调用操作系统的I/O操作之前(或之后),JVM都会尽量避免在Java堆和Native堆之间来回复制数据。\r\n\r\nByteBuffer类在JDK中定义如下所示:\r\n``` java\r\njava.lang.Object\r\n java.nio.Buffer\r\n java.nio.ByteBuffer\r\n```\r\n\r\n虽然直接内存不会受到Java堆大小的限制,但是当本机内存不够的时候,在动态扩展时会出现OutOfMemoryError错误。\r\n\r\n\r\n## 2. 堆中的对象',51397482,'2016-05-27 01:56:17','2016-05-27 01:56:17',37518692,'内存区域,内存溢出',0,1,'<p>JVM的自动内存管理机制让开发者不需要去为每一个对象释放(delete/free)内存,如果出现内存泄漏和溢出的问题,需要了解\r\nJVM对内存的使用情况才能够更好地解决问题</p>\r\n','JVM的自动内存管理机制让开发者不需要去为每一个对象释放(delete/free)内存,如果出现内存泄漏和溢出的问题,需要了解\r\nJVM对内存的使用情况才能够更好地解决问题'),(5,'使用awt中的类操作图片缩放、变圆透明、水印、合并','本文是因为以前写过的一个公众号,需要做这些操作,现在总结一下。当时对awt只限于了解,用到的时候看了看文档和别人的代码,做了几次测试后写的一个整合工具。\r\n\r\n本文会依据先后顺序介绍使用awt的工具类对图片进行缩放、变圆透明、合并、水印,虽然每个都是分步的,但是使用者可以看下api根据实际情况把缩放、变圆透明这些功能放在一个方法中。\r\n\r\n## 图片缩放大小\r\n使用者可以根据具体API和代码的例子自行实现(_下述示例的代码并不规范,仅作为演示功能使用_)\r\n``` java\r\n\r\npublic void testResizeImage() throws IOException {\r\n File imageFile = new File(\"E:\\\\test\\\\header.png\");\r\n //缩放后的宽度和高度\r\n int width = 120, height = 120;\r\n\r\n BufferedImage imageBuffer = ImageIO.read(imageFile);\r\n BufferedImage tempBuffer = new BufferedImage(width, height, BufferedImage.TYPE_INT_BGR);\r\n\r\n //使用tempBuffer创建一个temp画板\r\n Graphics graphics = tempBuffer.createGraphics();\r\n //把原文件画在这个画板上\r\n graphics.drawImage(imageBuffer, 0, 0, width, height, null);\r\n imageBuffer.flush();\r\n tempBuffer.flush();\r\n\r\n String filePath = \"E:\\\\test\\\\header-120x120.png\";\r\n File temp = new File(filePath);\r\n temp.createNewFile();\r\n //把画出来120*120图片的buffer写到temp文件\r\n ImageIO.write(tempBuffer, \"png\", temp);\r\n }\r\n\r\n```\r\n\r\n**效果图如下所示:**\r\n\r\n\r\n\r\n## 图片变圆透明\r\n使用者可以根据具体API和代码的例子自行实现(_下述示例的代码并不规范,仅作为演示功能使用_)\r\n``` java\r\n\r\n /**\r\n * 图片变圆,四个角变透明\r\n * @throws IOException\r\n */\r\n public void testResizeCircle() throws IOException {\r\n File imageFile = new File(\"E:\\\\test\\\\header-120x120.png\");\r\n BufferedImage imageBuffer = ImageIO.read(imageFile);\r\n int width = imageBuffer.getWidth(), height = imageBuffer.getHeight();\r\n\r\n BufferedImage tempBuffer = new BufferedImage(width, height, BufferedImage.TYPE_INT_ARGB);\r\n Ellipse2D.Double shape = new Ellipse2D.Double(0, 0, width, height);\r\n\r\n Graphics2D g2 = tempBuffer.createGraphics();\r\n tempBuffer = g2.getDeviceConfiguration().createCompatibleImage(width, height, Transparency.TRANSLUCENT);\r\n g2 = tempBuffer.createGraphics();\r\n g2.setComposite(AlphaComposite.Clear);\r\n g2.fill(new Rectangle(width, height));\r\n g2.setComposite(AlphaComposite.getInstance(AlphaComposite.SRC, 1.0f));\r\n g2.setClip(shape);\r\n g2.drawImage(imageBuffer, 0, 0, null);\r\n g2.dispose();\r\n\r\n\r\n ImageIO.write(tempBuffer, \"png\", imageFile);\r\n }\r\n\r\n```\r\n\r\n**效果图如下所示:**\r\n\r\n\r\n\r\n## 图片合并\r\n\r\n使用者可以根据具体API和代码的例子自行实现(_下述示例的代码并不规范,仅作为演示功能使用_)\r\n\r\n``` java\r\n //合并两个图片(也可以合并多个)\r\n public void testMerge() throws IOException {\r\n File newFile = new File(\"E:\\\\test\\\\merge.jpg\");\r\n File backgroundFile = new File(\"E:\\\\test\\\\background.jpg\");\r\n File headerFile = new File(\"E:\\\\test\\\\header-120x120.png\");\r\n BufferedImage backgroundImage = ImageIO.read(backgroundFile); //背景图片\r\n BufferedImage headerImage = ImageIO.read(headerFile); //头像图片\r\n int bWidth = backgroundImage.getWidth(), bHeight = backgroundImage.getHeight();\r\n int hWidth = headerImage.getWidth(), hHeight = headerImage.getHeight();\r\n\r\n BufferedImage combined = new BufferedImage(bWidth, bHeight, BufferedImage.TYPE_INT_RGB);\r\n Graphics g = combined.getGraphics();\r\n //先把背景图画到画板上\r\n g.drawImage(backgroundImage, 0, 0, null);\r\n\r\n //计算出头像放置的 Y 轴位置\r\n Double tempHeight1 = backgroundImage.getHeight() * 0.2;\r\n Long tempHeight2 = Math.round(tempHeight1);\r\n Integer headerImageY = Integer.valueOf(tempHeight2.toString());\r\n g.drawImage(headerImage, (bWidth - hWidth) / 2, headerImageY, null);\r\n\r\n newFile.createNewFile();\r\n ImageIO.write(combined, \"jpg\", newFile);\r\n }\r\n```\r\n\r\n**效果图如下所示:**\r\n\r\n\r\n\r\n## 图片水印\r\n\r\n使用者可以根据具体API和代码的例子自行实现(_下述示例的代码并不规范,仅作为演示功能使用_)\r\n\r\n``` java\r\n//图片加水印\r\n public void testWaterMark() throws IOException {\r\n File uploadFile = new File(\"E:\\\\test\\\\background.jpg\");\r\n Font font = new Font(Font.MONOSPACED, Font.BOLD, 20);// 添加字体的属性设置\r\n\r\n BufferedImage uploadImage = ImageIO.read(uploadFile);\r\n int width = uploadImage.getWidth();\r\n int height = uploadImage.getHeight();\r\n\r\n BufferedImage combined = new BufferedImage(width, height, BufferedImage.TYPE_INT_RGB);\r\n Graphics g = combined.getGraphics();\r\n g.drawImage(uploadImage, 0, 0, null);\r\n g.setFont(font);\r\n g.setColor(Color.RED);\r\n g.drawString(\"PBlog | www.pelinli.com\", 10, 20);\r\n g.drawString(\"https://github.com/penglongli\", 10, 40);\r\n\r\n ImageIO.write(combined, \"png\", uploadFile);\r\n }\r\n```\r\n\r\n**效果图如下所示:**\r\n\r\n\r\n\r\n>原文链接:<http://www.pelinli.com/#/article/31726509>',31726509,'2016-05-30 01:56:03','2016-05-30 01:56:03',85369401,'awt,java操作图片',0,1,'<p>本文是因为以前写过的一个公众号,需要做这些操作,现在总结一下。当时对awt只限于了解,用到的时候看了看文档和别人的代码,做了几次测试后写的一个整合工具。</p>\r\n','本文是因为以前写过的一个公众号,需要做这些操作,现在总结一下。当时对awt只限于了解,用到的时候看了看文档和别人的代码,做了几次测试后写的一个整合工具。');
/*!40000 ALTER TABLE `article_info` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `article_read_log`
--
DROP TABLE IF EXISTS `article_read_log`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `article_read_log` (
`id` bigint(20) NOT NULL AUTO_INCREMENT,
`articleSlug` bigint(20) DEFAULT NULL,
`ipAddress` varchar(200) DEFAULT NULL,
`createTime` datetime DEFAULT NULL,
`type` int(11) DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `idx_artSlug` (`articleSlug`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `article_read_log`
--
LOCK TABLES `article_read_log` WRITE;
/*!40000 ALTER TABLE `article_read_log` DISABLE KEYS */;
INSERT INTO `article_read_log` VALUES (1,31726509,'127.0.0.1','2016-05-30 20:54:12',1);
/*!40000 ALTER TABLE `article_read_log` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `author_info`
--
DROP TABLE IF EXISTS `author_info`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `author_info` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(30) DEFAULT NULL,
`motto` varchar(100) DEFAULT NULL,
`email` varchar(100) DEFAULT NULL,
`address` varchar(100) DEFAULT NULL,
`github` varchar(100) DEFAULT NULL,
`zhihu` varchar(100) DEFAULT NULL,
`csdn` varchar(100) DEFAULT NULL,
`headImage` varchar(200) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `author_info`
--
LOCK TABLES `author_info` WRITE;
/*!40000 ALTER TABLE `author_info` DISABLE KEYS */;
/*!40000 ALTER TABLE `author_info` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `book_info`
--
DROP TABLE IF EXISTS `book_info`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `book_info` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`title` varchar(200) DEFAULT NULL,
`createTime` datetime DEFAULT NULL,
`slug` bigint(20) DEFAULT NULL,
`banner` varchar(200) DEFAULT NULL,
`thumb` int(11) DEFAULT NULL,
`introduction` varchar(200) DEFAULT NULL,
`content` longtext,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `book_info`
--
LOCK TABLES `book_info` WRITE;
/*!40000 ALTER TABLE `book_info` DISABLE KEYS */;
INSERT INTO `book_info` VALUES (1,'伯罗奔尼撒战争: 这是一场战争,也是一场胜利123123','2016-05-08 00:32:09',93246051,'https://img3.doubanio.com/lpic/s28576995.jpg',0,'介绍123123','书评正文');
/*!40000 ALTER TABLE `book_info` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `book_read_log`
--
DROP TABLE IF EXISTS `book_read_log`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `book_read_log` (
`id` bigint(20) NOT NULL AUTO_INCREMENT,
`bookId` int(11) DEFAULT NULL,
`ipAddress` varchar(200) DEFAULT NULL,
`createTime` datetime DEFAULT NULL,
`type` int(11) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `book_read_log`
--
LOCK TABLES `book_read_log` WRITE;
/*!40000 ALTER TABLE `book_read_log` DISABLE KEYS */;
/*!40000 ALTER TABLE `book_read_log` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `book_table`
--
DROP TABLE IF EXISTS `book_table`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `book_table` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`bookName` varchar(50) DEFAULT NULL,
`bookUrl` varchar(100) DEFAULT NULL,
`bookBanner` varchar(100) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `book_table`
--
LOCK TABLES `book_table` WRITE;
/*!40000 ALTER TABLE `book_table` DISABLE KEYS */;
INSERT INTO `book_table` VALUES (8,'知更鸟女孩','https://book.douban.com/subject/26707942/?icn=index-editionrecommend','https://img3.doubanio.com/mpic/s28535995.jpg'),(9,'我的衣橱故事','https://book.douban.com/subject/26745200/?icn=index-latestbook-subject','https://img1.doubanio.com/lpic/s28685469.jpg');
/*!40000 ALTER TABLE `book_table` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `category_info`
--
DROP TABLE IF EXISTS `category_info`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `category_info` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`createTime` datetime DEFAULT NULL,
`title` varchar(50) DEFAULT NULL,
`slug` bigint(20) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `category_info`
--
LOCK TABLES `category_info` WRITE;
/*!40000 ALTER TABLE `category_info` DISABLE KEYS */;
INSERT INTO `category_info` VALUES (1,'2016-05-26 00:00:00','其他',93246051),(2,'2016-05-26 00:00:00','深入理解JVM',37518692),(3,'2016-05-30 00:00:00','Java基础',85369401);
/*!40000 ALTER TABLE `category_info` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `pic_info`
--
DROP TABLE IF EXISTS `pic_info`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `pic_info` (
`id` bigint(24) NOT NULL AUTO_INCREMENT,
`relativePath` varchar(100) DEFAULT NULL,
`physicalPath` varchar(100) DEFAULT NULL,
`createTime` date DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `pic_info`
--
LOCK TABLES `pic_info` WRITE;
/*!40000 ALTER TABLE `pic_info` DISABLE KEYS */;
INSERT INTO `pic_info` VALUES (1,'/static/image/f6f12ce714174b839186f6583cf9e577.png','/var/static/pblog/image//f6f12ce714174b839186f6583cf9e577.png','2016-05-26'),(3,'/static/image/8c1ba0ed13644803850f06aaaf0f0596.png','/var/static/pblog/image//8c1ba0ed13644803850f06aaaf0f0596.png','2016-05-26'),(4,'/static/image/cd8390d10f6f46eeab7b463f59995475.png','/var/static/pblog/image//cd8390d10f6f46eeab7b463f59995475.png','2016-05-30'),(5,'/static/image/a6ec8f9fe27c4762b92ff7fafc54f33b.png','/var/static/pblog/image//a6ec8f9fe27c4762b92ff7fafc54f33b.png','2016-05-30'),(7,'/static/image/ddb14648f9874a92870036336a741c80.png','/var/static/pblog/image/ddb14648f9874a92870036336a741c80.png','2016-05-30'),(8,'/static/image/6d1d9df84b984660897177417b1e0bbe.png','/var/static/pblog/image/6d1d9df84b984660897177417b1e0bbe.png','2016-05-30');
/*!40000 ALTER TABLE `pic_info` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `record_info`
--
DROP TABLE IF EXISTS `record_info`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `record_info` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`title` varchar(200) DEFAULT NULL,
`createTime` datetime DEFAULT NULL,
`content` longtext,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `record_info`
--
LOCK TABLES `record_info` WRITE;
/*!40000 ALTER TABLE `record_info` DISABLE KEYS */;
INSERT INTO `record_info` VALUES (2,'预上线','2016-05-11 21:07:31','PBlog的大概功能已经开发完成,剩余的功能暂且不会影响正常使用\r\n\r\n暂定于2016年5月31日正式上线。\r\n\r\n域名:www.pelinli.com\r\n\r\n源代码:<https://github.com/penglongli/pblog>');
/*!40000 ALTER TABLE `record_info` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `slug_info`
--
DROP TABLE IF EXISTS `slug_info`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `slug_info` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`slug` bigint(20) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=6000 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `slug_info`
--
LOCK TABLES `slug_info` WRITE;
/*!40000 ALTER TABLE `slug_info` DISABLE KEYS */;
INSERT INTO `slug_info` VALUES (1,93246051),(2,37518692),(3,85369401),(4,51397482),(5,31726509),(6,61457230),(7,67951824),(8,21304567),(9,65820194),(10,50297814),(11,17849503),(12,83650479),(13,21760935),(14,48107293),(15,9534628),(16,1856249),(17,48516730),(18,25173864),(19,19735608),(20,78350924),(21,80965472),(22,51924368),(23,70961432),(24,20419367),(25,17394680),(26,82517364),(27,67054839),(28,25347896),(29,92701863),(30,60125937),(31,14026938),(32,20631749),(33,45120938),(34,41257308),(35,75246830),(36,52167490),(37,43516028),(38,21458396),(39,27689054),(40,15286704),(41,60739582),(42,37058624),(43,85271463),(44,18302475),(45,27560894),(46,25831469),(47,6913472),(48,71258046),(49,9675234),(50,60237418),(51,30182576),(52,81709263),(53,21849503),(54,45709123),(55,1258793),(56,81749263),(57,92680731),(58,32978604),(59,46592137),(60,96140857),(61,79281504),(62,4395621),(63,50492387),(64,56970843),(65,82013459),(66,60493258),(67,75410962),(68,68154320),(69,57193840),(70,85760423),(71,48716530),(72,53940867),(73,86517403),(74,51429870),(75,62408975),(76,16275048),(77,49086532),(78,24539678),(79,42319085),(80,35128496),(81,36845917),(82,53160749),(83,4368715),(84,37902568),(85,31429067),(86,53470218),(87,57942831),(88,84376129),(89,18920467),(90,41627958),(91,15260487),(92,80925374),(93,31960487),(94,63510728),(95,10798653),(96,89067415),(97,35481972),(98,86170294),(99,14930576),(100,71402985),(101,4318257),(102,72958316),(103,5381674),(104,71283496),(105,48609153),(106,38649572),(107,71629503),(108,10569348),(109,63091245),(110,76519842),(111,75093641),(112,58094127),(113,46928071),(114,9834751),(115,14273805),(116,82149650),(117,25871460),(118,50416987),(119,17950638),(120,37865209),(121,83512764),(122,52813409),(123,35296480),(124,7583164),(125,92561873),(126,79816054),(127,27409536),(128,45608193),(129,93561472),(130,47029153),(131,59261074),(132,81357269),(133,90785314),(134,87324590),(135,24781953),(136,40875216),(137,51347920),(138,40265398),(139,51972640),(140,70368419),(141,56048239),(142,41368790),(143,27314650),(144,74308126),(145,57382910),(146,12634509),(147,98507623),(148,65329781),(149,81760435),(150,34561872),(151,15947032),(152,8524619),(153,63980514),(154,19687435),(155,70461859),(156,7631492),(157,41956023),(158,34502916),(159,79534806),(160,84561920),(161,14738952),(162,32041659),(163,76853104),(164,14920753),(165,9354687),(166,14509278),(167,53607298),(168,32981705),(169,96581732),(170,96320584),(171,14928657),(172,90138672),(173,34781520),(174,38901547),(175,10462958),(176,71504389),(177,81345726),(178,9586473),(179,96847153),(180,58267193),(181,29751364),(182,87213946),(183,54812967),(184,42703685),(185,74086925),(186,72681405),(187,30456812),(188,74623051),(189,54120983),(190,67102954),(191,20937648),(192,97804213),(193,83265410),(194,28563109),(195,45309718),(196,26309487),(197,71360248),(198,74123650),(199,50387261),(200,38615297),(201,40613852),(202,12046385),(203,25063948),(204,18567234),(205,87194360),(206,5987412),(207,15436097),(208,63174528),(209,94728561),(210,63812054),(211,64098231),(212,14865372),(213,2358417),(214,37561049),(215,64721830),(216,57368149),(217,10639857),(218,46071832),(219,15832706),(220,14825079),(221,41267903),(222,76049352),(223,46392571),(224,72840569),(225,70986142),(226,1893752),(227,12687043),(228,84519236),(229,69035872),(230,56374082),(231,13059276),(232,26948051),(233,70639428),(234,12953604),(235,56410879),(236,40278316),(237,78146395),(238,13059674),(239,53104726),(240,93647025),(241,31964208),(242,85697021),(243,53049276),(244,34176802),(245,54089713),(246,57941320),(247,47610253),(248,53971086),(249,78351062),(250,21430865),(251,6915273),(252,97065234),(253,9564231),(254,12405396),(255,35764192),(256,28460579),(257,63257084),(258,8352764),(259,92508617),(260,95627184),(261,31897452),(262,32914685),(263,78963150),(264,20475689),(265,9613752),(266,95173624),(267,5189374),(268,59438027),(269,63489502),(270,64180235),(271,81053947),(272,15864729),(273,45681230),(274,52846937),(275,24195780),(276,70694328),(277,78450123),(278,52483917),(279,2165394),(280,68173209),(281,58143927),(282,52403891),(283,71952648),(284,97013685),(285,14367209),(286,27385096),(287,81952674),(288,76350941),(289,53067984),(290,64502879),(291,45901736),(292,67325410),(293,48293560),(294,63218970),(295,14867905),(296,94825610),(297,92715384),(298,45702139),(299,53670421),(300,80735964),(301,6485912),(302,32175846),(303,14325789),(304,85210497),(305,26017389),(306,5413962),(307,64519283),(308,12948036),(309,14350296),(310,87609453),(311,69812754),(312,63908412),(313,75024963),(314,17583049),(315,91570346),(316,25934618),(317,43821506),(318,43972108),(319,15709642),(320,36497180),(321,27096541),(322,93182705),(323,76218594),(324,29583640),(325,35614879),(326,42513068),(327,67258103),(328,67031459),(329,4283615),(330,71980352),(331,90481325),(332,38609741),(333,19786305),(334,31624580),(335,13572690),(336,40351762),(337,80923516),(338,18523946),(339,41725039),(340,93157260),(341,36290745),(342,23914087),(343,59671432),(344,32967180),(345,82194376),(346,40369782),(347,63284179),(348,51968720),(349,85194027),(350,82416573),(351,93754028),(352,45832170),(353,1395426),(354,29764105),(355,30291786),(356,82439605),(357,58036972),(358,34916085),(359,1934728),(360,34572809),(361,89725361),(362,57928034),(363,53410789),(364,64830517),(365,35847209),(366,94128357),(367,30251684),(368,23154790),(369,84592301),(370,23465901),(371,18072365),(372,49762803),(373,51768249),(374,72893510),(375,6213859),(376,45109372),(377,30426817),(378,41592870),(379,21704385),(380,17084395),(381,89715302),(382,48076521),(383,3524719),(384,89032741),(385,29846071),(386,35489160),(387,92760153),(388,21406537),(389,86712309),(390,6572413),(391,98420175),(392,60741928),(393,68910245),(394,13849627),(395,61854320),(396,49058271),(397,12963705),(398,57024691),(399,13046295),(400,75048236),(401,62387540),(402,57293801),(403,89576214),(404,8512764),(405,46729801),(406,14506738),(407,80913426),(408,40918752),(409,79502861),(410,43795168),(411,92043187),(412,80953716),(413,54379162),(414,21876304),(415,16894205),(416,6517928),(417,37125096),(418,50328679),(419,54617890),(420,23160847),(421,98632705),(422,17854263),(423,32145098),(424,10365849),(425,20157864),(426,39068417),(427,78430265),(428,8493165),(429,45361807),(430,53184970),(431,98475013),(432,79016325),(433,52839670),(434,29765104),(435,85104392),(436,20594167),(437,2758469),(438,91327685),(439,53471826),(440,54637298),(441,15749802),(442,40512693),(443,43856901),(444,71968405),(445,34289761),(446,6123745),(447,57426810),(448,40851293),(449,25837160),(450,89265704),(451,40568317),(452,2351746),(453,54173862),(454,60831457),(455,28740519),(456,45170328),(457,59302146),(458,68241375),(459,16972043),(460,31542906),(461,56839174),(462,32864957),(463,91038256),(464,78536942),(465,76318249),(466,57491830),(467,83601752),(468,45169308),(469,51684297),(470,35481079),(471,18430256),(472,17254609),(473,92458601),(474,97364102),(475,93154206),(476,87391625),(477,48061592),(478,42631970),(479,12954708),(480,94501637),(481,13089625),(482,78453190),(483,28305947),(484,29817350),(485,5312764),(486,5379861),(487,23876149),(488,32814056),(489,47012658),(490,78563912),(491,14023795),(492,68140937),(493,42875309),(494,8531269),(495,35610789),(496,28304165),(497,64058912),(498,8375214),(499,85092316),(500,2495831),(501,14362809),(502,38254017),(503,84061392),(504,54671932),(505,29735864),(506,25841739),(507,23650971),(508,64275013),(509,50617843),(510,96172043),(511,21358096),(512,92164738),(513,42315968),(514,38264517),(515,80362579),(516,38792154),(517,29063751),(518,49653017),(519,36495081),(520,92061374),(521,19482670),(522,25091487),(523,52687394),(524,34620981),(525,98364271),(526,53107468),(527,6145293),(528,17425638),(529,39761402),(530,63789041),(531,49501872),(532,79640821),(533,51872043),(534,76195842),(535,60139584),(536,4293568),(537,18279564),(538,27586301),(539,41356879),(540,87423109),(541,74068915),(542,20439156),(543,39682715),(544,65907214),(545,14786320),(546,18960732),(547,71436290),(548,32041579),(549,46071253),(550,53042187),(551,51879263),(552,37126908),(553,9285463),(554,94756801),(555,81392064),(556,25180643),(557,29736185),(558,54279013),(559,42906178),(560,76304918),(561,9675384),(562,43169258),(563,14026837),(564,80139267),(565,78194365),(566,7126953),(567,17326048),(568,46185320),(569,9731865),(570,10683452),(571,80562973),(572,40591682),(573,32847069),(574,5763248),(575,65204317),(576,82470639),(577,86350729),(578,45698172),(579,9261483),(580,9713526),(581,36495028),(582,45867139),(583,81957063),(584,7253941),(585,78504319),(586,51429067),(587,37820456),(588,64237501),(589,49351278),(590,43210679),(591,26340197),(592,29513047),(593,91857063),(594,31542896),(595,3582417),(596,3578642),(597,98263105),(598,46578213),(599,1725963),(600,79386041),(601,48903267),(602,29805637),(603,17594083),(604,23860947),(605,16972503),(606,1642587),(607,41580729),(608,80276914),(609,59820146),(610,29085134),(611,1357986),(612,95384071),(613,79864213),(614,15627908),(615,12769038),(616,97182540),(617,63978120),(618,12763540),(619,7286194),(620,83470219),(621,92514687),(622,94162083),(623,32768104),(624,56138947),(625,93801745),(626,92561738),(627,32571689),(628,25610843),(629,7319648),(630,10468752),(631,94315278),(632,17492035),(633,23475690),(634,70492361),(635,43859176),(636,79683405),(637,74051689),(638,89346051),(639,34286579),(640,57820691),(641,18957204),(642,3178495),(643,41738596),(644,90365241),(645,35920786),(646,79685012),(647,98713052),(648,23741809),(649,94780631),(650,54803217),(651,75930468),(652,94376805),(653,64953720),(654,56410379),(655,91235768),(656,9341786),(657,43081625),(658,40217963),(659,80925714),(660,52184936),(661,28593704),(662,76420351),(663,10259368),(664,1824365),(665,81670532),(666,41539062),(667,4792816),(668,95026413),(669,8269473),(670,83512074),(671,39716528),(672,71239685),(673,56274091),(674,49307852),(675,78395104),(676,46372058),(677,16052843),(678,36950814),(679,64873590),(680,86425170),(681,20648375),(682,93502746),(683,32750146),(684,51724980),(685,30847169),(686,83491720),(687,81243950),(688,80371594),(689,47056312),(690,57910834),(691,8375642),(692,73462905),(693,70685294),(694,73926804),(695,5394268),(696,75986243),(697,97820136),(698,47691083),(699,36019847),(700,37458629),(701,76105289),(702,51742863),(703,21670438),(704,85260971),(705,40687135),(706,2319468),(707,90541762),(708,21578690),(709,84127650),(710,73451698),(711,38912574),(712,12904758),(713,69512873),(714,57390164),(715,23705894),(716,85213967),(717,46085127),(718,32468095),(719,20694158),(720,20547169),(721,40152678),(722,84102593),(723,6831954),(724,6812943),(725,61802974),(726,57218396),(727,46219385),(728,73651894),(729,64295718),(730,80623945),(731,23174809),(732,41806293),(733,95186372),(734,19862340),(735,30754918),(736,83724190),(737,98724036),(738,71653248),(739,71490258),(740,63214978),(741,53176480),(742,8374652),(743,94587230),(744,32805197),(745,47152869),(746,52896074),(747,30149286),(748,10237486),(749,9836412),(750,24963518),(751,34708251),(752,94671083),(753,20857164),(754,57398462),(755,89605341),(756,89516204),(757,35871962),(758,82641509),(759,72631905),(760,67093281),(761,94052687),(762,40217538),(763,94583126),(764,80729641),(765,65982014),(766,21057834),(767,28356940),(768,61482579),(769,78529634),(770,2561874),(771,42695708),(772,29615738),(773,9748312),(774,18942703),(775,87923014),(776,78531409),(777,23564971),(778,95820713),(779,58376149),(780,34859721),(781,29306154),(782,78126534),(783,9236741),(784,10854732),(785,42376501),(786,98715642),(787,59764231),(788,30642958),(789,73594826),(790,92805643),(791,95874213),(792,38649057),(793,32480571),(794,42395061),(795,54108729),(796,14576930),(797,50637891),(798,20317695),(799,18967432),(800,38095426),(801,9864532),(802,91283075),(803,65719403),(804,91570436),(805,73546280),(806,28475310),(807,68792530),(808,56492187),(809,21468705),(810,57342169),(811,9237146),(812,1348279),(813,3987265),(814,70428195),(815,60851742),(816,3265174),(817,20846157),(818,82074531),(819,97380154),(820,9856417),(821,82450791),(822,37902854),(823,95824031),(824,12796834),(825,6197428),(826,18627095),(827,10763528),(828,26807319),(829,48206197),(830,28167095),(831,97025834),(832,30158694),(833,38456127),(834,91073245),(835,93807561),(836,24571638),(837,80429156),(838,47831695),(839,91462805),(840,90258371),(841,4762318),(842,45813760),(843,60894512),(844,34076281),(845,53172804),(846,35489061),(847,35709641),(848,50249163),(849,6178253),(850,52098146),(851,20843975),(852,71250394),(853,94517368),(854,29501876),(855,43827590),(856,13948650),(857,4128965),(858,97481032),(859,63751084),(860,50784692),(861,56217309),(862,45013786),(863,75681402),(864,32145960),(865,91048356),(866,85623704),(867,26134578),(868,94025861),(869,10738952),(870,10589243),(871,83529074),(872,25437106),(873,10653284),(874,94875036),(875,96431780),(876,49802563),(877,49327016),(878,27104936),(879,71462083),(880,1267859),(881,97408236),(882,57629401),(883,47213956),(884,85970361),(885,15768329),(886,6453179),(887,92374586),(888,9275136),(889,93057286),(890,81073659),(891,68704519),(892,61940832),(893,64180579),(894,95716043),(895,90761854),(896,31062597),(897,50931842),(898,95347816),(899,86052971),(900,82547106),(901,30857421),(902,45286713),(903,30598742),(904,84570629),(905,98514706),(906,18674329),(907,76048195),(908,28471063),(909,34259768),(910,23054798),(911,76513894),(912,2865917),(913,92548710),(914,19230467),(915,51094362),(916,36025981),(917,16273598),(918,49120387),(919,20467918),(920,20485619),(921,29781604),(922,65439802),(923,85374210),(924,13498260),(925,4572836),(926,63501742),(927,52893607),(928,56341097),(929,82694503),(930,75340892),(931,5672938),(932,78302416),(933,25093184),(934,14695028),(935,13407952),(936,31045692),(937,91246053),(938,3765829),(939,35470129),(940,45276391),(941,27436518),(942,4398562),(943,91638542),(944,57928361),(945,52908316),(946,10349875),(947,10568794),(948,67012359),(949,16790423),(950,92546308),(951,46107982),(952,21705369),(953,42073916),(954,16024953),(955,9827354),(956,71830952),(957,31704596),(958,52960138),(959,46938721),(960,96104287),(961,50931487),(962,8753461),(963,21836574),(964,26094371),(965,4593218),(966,19805243),(967,40235197),(968,9831742),(969,45192673),(970,45280167),(971,4896371),(972,62457390),(973,62103584),(974,80521963),(975,29058364),(976,92107468),(977,50132468),(978,89642371),(979,65029841),(980,18235470),(981,3786451),(982,61945732),(983,82647139),(984,82710946),(985,89371640),(986,37502468),(987,98023571),(988,95271860),(989,14369702),(990,54761983),(991,45296178),(992,51238607),(993,16579384),(994,16853094),(995,43185609),(996,8365274),(997,59283614),(998,8365279),(999,24706318),(1000,85492073),(1001,76032591),(1002,74153698),(1003,68093742),(1004,87612345),(1005,86297540),(1006,61740932),(1007,4758192),(1008,7586432),(1009,86497251),(1010,58634192),(1011,51794836),(1012,48693152),(1013,17809365),(1014,28674591),(1015,18794026),(1016,23460817),(1017,36592781),(1018,27043169),(1019,29340586),(1020,37561980),(1021,35276408),(1022,10243658),(1023,58731204),(1024,72610549),(1025,50819273),(1026,68975413),(1027,82306714),(1028,36740291),(1029,73419865),(1030,38697104),(1031,89547630),(1032,92483561),(1033,71435026),(1034,70324851),(1035,1428536),(1036,27915846),(1037,21780456),(1038,42568310),(1039,90427836),(1040,73108295),(1041,7598214),(1042,94618573),(1043,28145037),(1044,63902154),(1045,8279135),(1046,30987514),(1047,39571204),(1048,18247630),(1049,81762405),(1050,1763429),(1051,18973645),(1052,3179452),(1053,31865274),(1054,52706948),(1055,83910475),(1056,60384729),(1057,39146508),(1058,31758604),(1059,97126853),(1060,63180524),(1061,97510243),(1062,26405183),(1063,71364258),(1064,42087369),(1065,41389607),(1066,86174023),(1067,53209674),(1068,90815746),(1069,47026891),(1070,6235971),(1071,81540263),(1072,13506829),(1073,91507263),(1074,13654907),(1075,94527136),(1076,92874036),(1077,6132987),(1078,86452019),(1079,5936487),(1080,58972163),(1081,68754391),(1082,35976182),(1083,46130978),(1084,18526073),(1085,18034976),(1086,5691473),(1087,87640139),(1088,48507291),(1089,74869530),(1090,82579063),(1091,59416870),(1092,58307469),(1093,91842367),(1094,28576491),(1095,61845027),(1096,85192036),(1097,8632419),(1098,5734928),(1099,24387615),(1100,97813605),(1101,86491702),(1102,4561389),(1103,70863194),(1104,21647583),(1105,34897516),(1106,79523148),(1107,41862037),(1108,45360198),(1109,34817690),(1110,36189520),(1111,89751420),(1112,6539287),(1113,89146352),(1114,76498301),(1115,93528746),(1116,2418639),(1117,17352046),(1118,58410627),(1119,10427658),(1120,13642987),(1121,81726530),(1122,65793402),(1123,79023451),(1124,52479638),(1125,59238710),(1126,72094638),(1127,69537142),(1128,17694830),(1129,53819760),(1130,75036842),(1131,48127590),(1132,15830642),(1133,19372806),(1134,37645982),(1135,80246719),(1136,37162048),(1137,82159706),(1138,83562094),(1139,47098213),(1140,93072846),(1141,94681057),(1142,30256748),(1143,49018235),(1144,45386972),(1145,12846370),(1146,34980615),(1147,7124569),(1148,27103964),(1149,23974518),(1150,12590736),(1151,38512604),(1152,79486153),(1153,91824507),(1154,12039674),(1155,35028194),(1156,49753280),(1157,24685103),(1158,81607392),(1159,25968407),(1160,45307281),(1161,91280436),(1162,94513687),(1163,6391247),(1164,73801956),(1165,85723096),(1166,19483270),(1167,41730892),(1168,71652903),(1169,87340251),(1170,89671054),(1171,10489527),(1172,69581734),(1173,62470591),(1174,70845619),(1175,86435012),(1176,72680135),(1177,31290674),(1178,12549867),(1179,81092364),(1180,96823704),(1181,21895463),(1182,45028973),(1183,18736459),(1184,47603185),(1185,98415637),(1186,78312546),(1187,68150327),(1188,2436879),(1189,76902853),(1190,18059736),(1191,43108269),(1192,37506189),(1193,46572031),(1194,68524031),(1195,64051879),(1196,75403981),(1197,65402893),(1198,76034198),(1199,71345629),(1200,49576180),(1201,9487562),(1202,68219370),(1203,20639478),(1204,61298540),(1205,43829156),(1206,82570419),(1207,36480572),(1208,1846957),(1209,95271048),(1210,18509437),(1211,52791348),(1212,52378461),(1213,25678103),(1214,54170628),(1215,53460719),(1216,69285037),(1217,35214869),(1218,84790165),(1219,15968742),(1220,84517236),(1221,21645307),(1222,24508136),(1223,29365840),(1224,65748901),(1225,5937162),(1226,92130586),(1227,39870524),(1228,17854032),(1229,91245637),(1230,53971286),(1231,6485193),(1232,4752918),(1233,52941806),(1234,20874931),(1235,2659178),(1236,81460593),(1237,58196427),(1238,76450293),(1239,72369085),(1240,30861452),(1241,37928510),(1242,82735104),(1243,46981250),(1244,31078694),(1245,97281350),(1246,85409261),(1247,32496870),(1248,20195734),(1249,56893724),(1250,35428607),(1251,7912863),(1252,39021468),(1253,86597341),(1254,53912468),(1255,68025314),(1256,25749013),(1257,61320479),(1258,4365872),(1259,85091346),(1260,91238670),(1261,68379450),(1262,17546209),(1263,65821430),(1264,81470359),(1265,12754309),(1266,17946305),(1267,95720136),(1268,46832190),(1269,67284513),(1270,69175203),(1271,49853207),(1272,93571648),(1273,2681574),(1274,74325601),(1275,10625879),(1276,87051439),(1277,63470521),(1278,9425731),(1279,32476108),(1280,69423871),(1281,83517092),(1282,7158624),(1283,89352410),(1284,19574860),(1285,98721504),(1286,18649573),(1287,70134582),(1288,71583402),(1289,82417056),(1290,76452801),(1291,65038792),(1292,74890536),(1293,68504179),(1294,23467891),(1295,90325741),(1296,98236574),(1297,49608271),(1298,31250986),(1299,57613290),(1300,24597610),(1301,37256014),(1302,53417209),(1303,4938752),(1304,4687351),(1305,12947085),(1306,8271694),(1307,51923074),(1308,81247650),(1309,67189035),(1310,97132560),(1311,18476503),(1312,38675190),(1313,12789305),(1314,92301584),(1315,36871420),(1316,46028593),(1317,19058732),(1318,61493702),(1319,87053291),(1320,65932084),(1321,13256987),(1322,51473290),(1323,96174235),(1324,20614537),(1325,74529638),(1326,25637489),(1327,12940365),(1328,60281794),(1329,24853690),(1330,37102698),(1331,70569824),(1332,36159487),(1333,37825461),(1334,1672958),(1335,42189036),(1336,73840956),(1337,39510642),(1338,53069148),(1339,17203459),(1340,87920543),(1341,76952108),(1342,69081753),(1343,14037829),(1344,18973246),(1345,3924578),(1346,2465319),(1347,31279054),(1348,64120578),(1349,40978321),(1350,46389275),(1351,3852471),(1352,81602759),(1353,32586907),(1354,56209748),(1355,45218607),(1356,72954810),(1357,1589437),(1358,82370491),(1359,91037852),(1360,82063754),(1361,49723501),(1362,73561209),(1363,10958423),(1364,45629073),(1365,40635192),(1366,28367145),(1367,37586014),(1368,89512760),(1369,75814906),(1370,1287465),(1371,58039721),(1372,8651743),(1373,34892057),(1374,89576401),(1375,97103245),(1376,48136275),(1377,25387419),(1378,57102836),(1379,58069732),(1380,89021753),(1381,48721956),(1382,25983407),(1383,89243076),(1384,28641093),(1385,86974015),(1386,72834510),(1387,63109745),(1388,3819764),(1389,36902417),(1390,18690274),(1391,61074238),(1392,29670845),(1393,14970623),(1394,25763091),(1395,61870459),(1396,23067945),(1397,36518470),(1398,85476032),(1399,86054937),(1400,46509718),(1401,4759632),(1402,79421036),(1403,84703592),(1404,57823401),(1405,26854391),(1406,24391056),(1407,72504893),(1408,41962807),(1409,28609417),(1410,79368502),(1411,29186074),(1412,6184937),(1413,61092837),(1414,4791523),(1415,3791546),(1416,26485170),(1417,64830725),(1418,94016235),(1419,56723418),(1420,92531487),(1421,74582693),(1422,50129683),(1423,38250697),(1424,95210384),(1425,72403685),(1426,74586293),(1427,16309784),(1428,96381024),(1429,54236780),(1430,32851679),(1431,27681390),(1432,96271504),(1433,38942517),(1434,64507289),(1435,78416295),(1436,86205349),(1437,57813024),(1438,81760325),(1439,28537941),(1440,10726583),(1441,47398512),(1442,21340675),(1443,97102645),(1444,41930267),(1445,91684530),(1446,82510643),(1447,2631584),(1448,71904358),(1449,30567942),(1450,13604287),(1451,14756908),(1452,56390128),(1453,25867910),(1454,53240689),(1455,48953207),(1456,82761945),(1457,25063794),(1458,79201548),(1459,40759216),(1460,37542601),(1461,17286490),(1462,68941732),(1463,64218057),(1464,3982517),(1465,71369805),(1466,9745312),(1467,80965174),(1468,30471592),(1469,70419382),(1470,96238510),(1471,4251836),(1472,41526390),(1473,1487356),(1474,42960358),(1475,3856941),(1476,74960831),(1477,18790342),(1478,92703861),(1479,53682740),(1480,72503968),(1481,72684351),(1482,57832601),(1483,42369178),(1484,92386741),(1485,8539746),(1486,21479063),(1487,32549168),(1488,92510678),(1489,97648201),(1490,1543879),(1491,75329408),(1492,29684135),(1493,7184236),(1494,53074168),(1495,7849126),(1496,16708539),(1497,10269457),(1498,29860534),(1499,68925713),(1500,74821365),(1501,3954871),(1502,46157280),(1503,8314759),(1504,34157608),(1505,48197053),(1506,56420973),(1507,32860591),(1508,7684239),(1509,37140269),(1510,37052164),(1511,32504968),(1512,49608512),(1513,59386041),(1514,89502316),(1515,31276805),(1516,69153047),(1517,21986074),(1518,45360827),(1519,70485692),(1520,5891436),(1521,25148673),(1522,36851792),(1523,94310682),(1524,1475293),(1525,94275813),(1526,6897312),(1527,53279106),(1528,93267108),(1529,12850367),(1530,5912378),(1531,1538692),(1532,64937805),(1533,80752639),(1534,86052749),(1535,5613784),(1536,30285647),(1537,2891547),(1538,30975681),(1539,32856749),(1540,92530817),(1541,23159087),(1542,5624738),(1543,98756231),(1544,68297430),(1545,28743619),(1546,65380279),(1547,17426059),(1548,94185603),(1549,86749031),(1550,13984702),(1551,25741608),(1552,42538710),(1553,17640938),(1554,57380219),(1555,79635124),(1556,80639471),(1557,52891637),(1558,39568127),(1559,40728915),(1560,38175094),(1561,28419507),(1562,67802593),(1563,69584173),(1564,61258493),(1565,8239764),(1566,23519468),(1567,46197523),(1568,50286479),(1569,27904815),(1570,90178625),(1571,7385216),(1572,85964037),(1573,74860135),(1574,85126074),(1575,62058943),(1576,49023815),(1577,40736251),(1578,18325940),(1579,94723815),(1580,9617843),(1581,15872043),(1582,19502734),(1583,60927384),(1584,96418570),(1585,21489065),(1586,59401236),(1587,68057329),(1588,12067954),(1589,26043985),(1590,27380514),(1591,41952867),(1592,84620137),(1593,15962738),(1594,70125394),(1595,52960348),(1596,48056293),(1597,47693210),(1598,72986145),(1599,79126543),(1600,39746085),(1601,90745218),(1602,6853271),(1603,91480756),(1604,94273158),(1605,36972540),(1606,5184736),(1607,57146239),(1608,87501924),(1609,69580721),(1610,74305162),(1611,69572043),(1612,12879653),(1613,73061925),(1614,68513974),(1615,76214509),(1616,96420175),(1617,97306145),(1618,80465921),(1619,36504197),(1620,72315608),(1621,40816523),(1622,25801974),(1623,40532617),(1624,42915306),(1625,74315690),(1626,97316058),(1627,2147653),(1628,72061953),(1629,78260549),(1630,73106924),(1631,52310498),(1632,25907318),(1633,67459312),(1634,40862537),(1635,73284609),(1636,17523864),(1637,15062748),(1638,27684905),(1639,91506234),(1640,79542138),(1641,48295706),(1642,18236470),(1643,85974163),(1644,94620185),(1645,19024836),(1646,10348975),(1647,17248039),(1648,49873652),(1649,57680143),(1650,25879046),(1651,20984637),(1652,70289456),(1653,63140972),(1654,21650789),(1655,58219470),(1656,61274098),(1657,90821647),(1658,14236089),(1659,81274056),(1660,46983710),(1661,78943250),(1662,80156732),(1663,9214583),(1664,13092857),(1665,94508721),(1666,65123847),(1667,8691435),(1668,52891073),(1669,95318746),(1670,39187426),(1671,37902648),(1672,63492185),(1673,16802543),(1674,21769485),(1675,6927351),(1676,15627308),(1677,59087413),(1678,60521839),(1679,41037268),(1680,10632548),(1681,42871356),(1682,76802954),(1683,57021869),(1684,92051387),(1685,98472015),(1686,86531902),(1687,93046517),(1688,80375429),(1689,71864092),(1690,35964071),(1691,78624109),(1692,3719284),(1693,50873196),(1694,8137249),(1695,87456329),(1696,91674823),(1697,59306842),(1698,5461238),(1699,20463518),(1700,51263470),(1701,75641308),(1702,32189640),(1703,43570812),(1704,30978261),(1705,63275104),(1706,50316247),(1707,12305894),(1708,92743105),(1709,85740163),(1710,14256308),(1711,36508419),(1712,56917320),(1713,9428617),(1714,46952381),(1715,21098657),(1716,91835462),(1717,73142586),(1718,1234658),(1719,37048562),(1720,47256908),(1721,92734185),(1722,8641395),(1723,34102675),(1724,62479583),(1725,81275940),(1726,85692140),(1727,20671439),(1728,15624730),(1729,42687930),(1730,82403615),(1731,98014253),(1732,93085176),(1733,96305214),(1734,38046259),(1735,48173206),(1736,98017645),(1737,82574163),(1738,13746895),(1739,27604893),(1740,1794863),(1741,28076351),(1742,75840963),(1743,90135846),(1744,19705843),(1745,84690157),(1746,96053412),(1747,37459602),(1748,89234560),(1749,39068714),(1750,75842190),(1751,87940235),(1752,85301427),(1753,73126859),(1754,30475986),(1755,3287654),(1756,27841596),(1757,54812307),(1758,19862537),(1759,72081493),(1760,82495610),(1761,86034297),(1762,30716294),(1763,6872935),(1764,59401762),(1765,8673429),(1766,95014782),(1767,7685239),(1768,68095431),(1769,29873641),(1770,20471698),(1771,59084637),(1772,68350714),(1773,73521906),(1774,64925031),(1775,31058942),(1776,97814532),(1777,29571630),(1778,28403179),(1779,39185674),(1780,75304861),(1781,37924615),(1782,97236850),(1783,36749158),(1784,98631542),(1785,29406517),(1786,19507236),(1787,78134629),(1788,93824507),(1789,28401739),(1790,29178643),(1791,45819263),(1792,74302169),(1793,2935861),(1794,30497126),(1795,56473219),(1796,4869523),(1797,93824501),(1798,60895134),(1799,39280641),(1800,40516728),(1801,39185260),(1802,45217096),(1803,5978263),(1804,73621805),(1805,30871429),(1806,95310748),(1807,53421906),(1808,80794623),(1809,61537290),(1810,68503927),(1811,47358910),(1812,14032865),(1813,10483567),(1814,14256780),(1815,79850362),(1816,64829501),(1817,26978041),(1818,83549276),(1819,24189567),(1820,56347198),(1821,35426179),(1822,29034581),(1823,4367192),(1824,13089457),(1825,23698540),(1826,61859702),(1827,47291308),(1828,32450187),(1829,18357462),(1830,31746290),(1831,58927103),(1832,62037498),(1833,53918640),(1834,48069725),(1835,2719846),(1836,65829743),(1837,20185796),(1838,2365784),(1839,16527890),(1840,72194056),(1841,25719604),(1842,53098241),(1843,72836459),(1844,92417853),(1845,49638521),(1846,3419576),(1847,79240358),(1848,61084293),(1849,82457301),(1850,74381926),(1851,20698417),(1852,89615203),(1853,52931086),(1854,82956017),(1855,43627019),(1856,40695238),(1857,74690538),(1858,68504297),(1859,63205198),(1860,16708235),(1861,65903271),(1862,46239517),(1863,5862943),(1864,51348062),(1865,3526478),(1866,78609134),(1867,85209617),(1868,12948730),(1869,98306251),(1870,29034168),(1871,49576318),(1872,12634059),(1873,10745396),(1874,86150923),(1875,26054791),(1876,79036251),(1877,50836417),(1878,43708615),(1879,71264958),(1880,50796423),(1881,9385471),(1882,95623140),(1883,1643279),(1884,37856412),(1885,61297543),(1886,54723068),(1887,20958473),(1888,10739428),(1889,74309286),(1890,36751920),(1891,41865379),(1892,6214875),(1893,87195623),(1894,2415968),(1895,38460217),(1896,3916827),(1897,27018659),(1898,15963842),(1899,63057492),(1900,86702543),(1901,50623497),(1902,3248561),(1903,32069754),(1904,58192307),(1905,23504978),(1906,59643127),(1907,36059412),(1908,39406287),(1909,19872065),(1910,89103625),(1911,7698321),(1912,31469285),(1913,97430518),(1914,23560194),(1915,40695281),(1916,64358297),(1917,65092743),(1918,67592183),(1919,12968734),(1920,19854376),(1921,26935784),(1922,2658471),(1923,84967032),(1924,57120439),(1925,58047132),(1926,96531784),(1927,49156703),(1928,75132486),(1929,35907164),(1930,97625401),(1931,51029673),(1932,10294587),(1933,5348176),(1934,51483620),(1935,13692087),(1936,49281536),(1937,58910472),(1938,96581470),(1939,75132860),(1940,53294187),(1941,51876432),(1942,92845136),(1943,94275361),(1944,38417609),(1945,45316987),(1946,48321697),(1947,9426718),(1948,45812937),(1949,83579160),(1950,14568073),(1951,75139680),(1952,52437968),(1953,19257863),(1954,89510723),(1955,64279130),(1956,61935284),(1957,86517294),(1958,26783419),(1959,49528301),(1960,36984517),(1961,10978654),(1962,71590328),(1963,78630429),(1964,57902341),(1965,53016947),(1966,82537109),(1967,20759314),(1968,50693217),(1969,48137069),(1970,54937216),(1971,20513476),(1972,24830517),(1973,32958067),(1974,56148072),(1975,28047536),(1976,38072564),(1977,39712468),(1978,74912836),(1979,87519643),(1980,10273964),(1981,36584019),(1982,50697412),(1983,20953714),(1984,27351908),(1985,52617394),(1986,16923570),(1987,94501367),(1988,21465380),(1989,8142637),(1990,84127059),(1991,95023418),(1992,81647953),(1993,53876192),(1994,52483619),(1995,94750813),(1996,21360957),(1997,96241530),(1998,90725416),(1999,59348016),(2000,70846519),(2001,24610359),(2002,21603895),(2003,32790854),(2004,2573618),(2005,62480751),(2006,30156829),(2007,69351847),(2008,86301492),(2009,68942051),(2010,39516807),(2011,91568273),(2012,26839501),(2013,2581967),(2014,70312569),(2015,95741263),(2016,72659143),(2017,43718569),(2018,91530642),(2019,56384012),(2020,42136709),(2021,58209764),(2022,71348569),(2023,40528791),(2024,36985471),(2025,43691852),(2026,5847236),(2027,15706389),(2028,51420398),(2029,67102459),(2030,38057926),(2031,72430568),(2032,16743985),(2033,6184239),(2034,76490512),(2035,43170692),(2036,6891237),(2037,68015329),(2038,34658019),(2039,31548029),(2040,46903721),(2041,95820431),(2042,52794031),(2043,41829530),(2044,29154087),(2045,48635710),(2046,10964387),(2047,15403867),(2048,61957024),(2049,26745301),(2050,31678204),(2051,32710864),(2052,74956123),(2053,90418762),(2054,43907216),(2055,26038975),(2056,70234891),(2057,37205681),(2058,31528960),(2059,50319768),(2060,46185279),(2061,79260514),(2062,4318295),(2063,6582917),(2064,72950348),(2065,59147806),(2066,5621487),(2067,23957601),(2068,50274693),(2069,49675802),(2070,14578236),(2071,30189625),(2072,68412537),(2073,95641730),(2074,67598320),(2075,71834526),(2076,3425617),(2077,38096142),(2078,49283510),(2079,89354216),(2080,4683729),(2081,10385764),(2082,74502163),(2083,15482730),(2084,2739156),(2085,73184295),(2086,80647352),(2087,74095132),(2088,14798256),(2089,81942053),(2090,43695127),(2091,81403265),(2092,90246851),(2093,74359012),(2094,9856127),(2095,87642591),(2096,27395184),(2097,4915823),(2098,1894376),(2099,19472568),(2100,52086341),(2101,20758693),(2102,56403281),(2103,78649251),(2104,48751306),(2105,36792801),(2106,96823501),(2107,89520431),(2108,25106439),(2109,70614392),(2110,79125683),(2111,27543089),(2112,98306124),(2113,93572806),(2114,84306597),(2115,13274985),(2116,53129746),(2117,47396152),(2118,76180539),(2119,72341956),(2120,34079561),(2121,36802917),(2122,70548129),(2123,80765249),(2124,13425876),(2125,8472956),(2126,42906857),(2127,50941327),(2128,5469837),(2129,83621597),(2130,4162759),(2131,56724318),(2132,25708413),(2133,79524018),(2134,4582179),(2135,73814290),(2136,75196208),(2137,12935460),(2138,41528607),(2139,35978421),(2140,96482531),(2141,20795613),(2142,85372061),(2143,17950628),(2144,34295016),(2145,12406579),(2146,47825013),(2147,35682014),(2148,23890751),(2149,46023958),(2150,91064873),(2151,58392104),(2152,24860913),(2153,30126847),(2154,68279140),(2155,62087451),(2156,83209651),(2157,41058936),(2158,5361249),(2159,32584609),(2160,56208173),(2161,6197348),(2162,87150436),(2163,4362819),(2164,72693401),(2165,51723460),(2166,58931047),(2167,54792810),(2168,4935281),(2169,18502397),(2170,86705214),(2171,3247951),(2172,89025473),(2173,46859213),(2174,48126709),(2175,69548310),(2176,12503984),(2177,78051469),(2178,36901587),(2179,4675821),(2180,60541287),(2181,4791852),(2182,21756943),(2183,31620485),(2184,18390746),(2185,51328746),(2186,61573280),(2187,34150267),(2188,9468325),(2189,3751428),(2190,68397015),(2191,34921586),(2192,34219508),(2193,84607915),(2194,50486379),(2195,90472836),(2196,4793825),(2197,80364179),(2198,57913804),(2199,42791608),(2200,62198304),(2201,56420873),(2202,51860479),(2203,62948351),(2204,13427659),(2205,96028451),(2206,90314825),(2207,82761345),(2208,67431502),(2209,42517368),(2210,23509647),(2211,20396857),(2212,96708153),(2213,79846512),(2214,12508674),(2215,49302876),(2216,93410526),(2217,52860719),(2218,36174920),(2219,5213476),(2220,28354607),(2221,51908276),(2222,64250731),(2223,5493726),(2224,83156407),(2225,54317869),(2226,91275304),(2227,64379018),(2228,80427931),(2229,78635429),(2230,18032649),(2231,80614295),(2232,85610347),(2233,38126594),(2234,79613820),(2235,52694380),(2236,97853620),(2237,71854693),(2238,1954278),(2239,61798543),(2240,70826945),(2241,68012975),(2242,87105234),(2243,41082695),(2244,46190357),(2245,68041937),(2246,14762580),(2247,15640328),(2248,3758624),(2249,92704685),(2250,4316958),(2251,16825739),(2252,12689370),(2253,96413078),(2254,97014258),(2255,27580936),(2256,63204795),(2257,58107324),(2258,84317590),(2259,86925413),(2260,21096734),(2261,67813504),(2262,48269571),(2263,17936520),(2264,8235769),(2265,14860927),(2266,73962840),(2267,17309842),(2268,80946253),(2269,62704981),(2270,87526341),(2271,96751280),(2272,38507291),(2273,36985072),(2274,60398542),(2275,28531749),(2276,78394521),(2277,80973651),(2278,13892640),(2279,49135078),(2280,50246318),(2281,94206357),(2282,84602917),(2283,64375189),(2284,75142083),(2285,9825671),(2286,8321546),(2287,6158479),(2288,96381270),(2289,43097861),(2290,94836170),(2291,72581369),(2292,17294853),(2293,95041876),(2294,1783452),(2295,28541976),(2296,86045372),(2297,41365297),(2298,17398204),(2299,10542938),(2300,7481392),(2301,81790543),(2302,78960342),(2303,50826413),(2304,73681295),(2305,94652370),(2306,70352194),(2307,59124786),(2308,43157208),(2309,58136742),(2310,43819076),(2311,79605182),(2312,81653927),(2313,56947308),(2314,56137089),(2315,87605942),(2316,25319740),(2317,38051479),(2318,90214587),(2319,20478916),(2320,18927560),(2321,31942675),(2322,2375168),(2323,54719682),(2324,39624517),(2325,74592603),(2326,7194528),(2327,49571286),(2328,95316420),(2329,54079681),(2330,43158726),(2331,13972854),(2332,37254068),(2333,71980345),(2334,16257308),(2335,14560738),(2336,14267538),(2337,68712504),(2338,96802345),(2339,82350174),(2340,27409186),(2341,5472361),(2342,97013256),(2343,68703549),(2344,3278596),(2345,49628735),(2346,81427360),(2347,69723804),(2348,83479615),(2349,95384021),(2350,8261793),(2351,42378650),(2352,64932801),(2353,90214563),(2354,56438017),(2355,75163982),(2356,75389610),(2357,46092358),(2358,17564390),(2359,27590816),(2360,43216059),(2361,35819204),(2362,56201849),(2363,6194372),(2364,89052143),(2365,53986740),(2366,68179425),(2367,13054829),(2368,81063297),(2369,8135926),(2370,56487912),(2371,54018276),(2372,6789512),(2373,10794836),(2374,24350967),(2375,14865720),(2376,7561843),(2377,68170394),(2378,51937064),(2379,9631875),(2380,40298165),(2381,95203416),(2382,90876452),(2383,40596813),(2384,83540176),(2385,73804159),(2386,30458719),(2387,53479802),(2388,98246075),(2389,28407196),(2390,45063182),(2391,58276194),(2392,61908475),(2393,42678350),(2394,78952140),(2395,7389561),(2396,61873520),(2397,29473051),(2398,3576941),(2399,20457186),(2400,9753261),(2401,21934075),(2402,93061247),(2403,12059846),(2404,53726410),(2405,85169374),(2406,94821570),(2407,23087946),(2408,67234189),(2409,82360795),(2410,80514963),(2411,96185703),(2412,43128957),(2413,34290685),(2414,94650172),(2415,25961784),(2416,75048219),(2417,68105723),(2418,27390615),(2419,84029675),(2420,29481067),(2421,38126079),(2422,29043785),(2423,85049217),(2424,7349216),(2425,89032754),(2426,52439108),(2427,5481263),(2428,25013896),(2429,80215736),(2430,17435298),(2431,39845067),(2432,18093274),(2433,91325480),(2434,54307691),(2435,59320876),(2436,74289610),(2437,74850196),(2438,28945031),(2439,73604281),(2440,20345716),(2441,19362478),(2442,10763894),(2443,9268413),(2444,95071682),(2445,40265738),(2446,9564283),(2447,21746508),(2448,75081624),(2449,82164759),(2450,95624178),(2451,38250419),(2452,34701826),(2453,61793850),(2454,14286395),(2455,35970826),(2456,10792834),(2457,90372465),(2458,65027491),(2459,93270681),(2460,24513609),(2461,91564280),(2462,40567182),(2463,38645012),(2464,74098325),(2465,46917832),(2466,86430271),(2467,6428371),(2468,38124056),(2469,49360217),(2470,24789015),(2471,28071953),(2472,80937264),(2473,70432591),(2474,24157896),(2475,85916432),(2476,56491207),(2477,92804157),(2478,28971435),(2479,45710283),(2480,7418962),(2481,12043567),(2482,45917206),(2483,15084792),(2484,89352017),(2485,56127340),(2486,60784932),(2487,23419067),(2488,42196578),(2489,37549208),(2490,26498150),(2491,4621973),(2492,79680145),(2493,59680431),(2494,50918243),(2495,28319605),(2496,89526401),(2497,32069471),(2498,56407281),(2499,78396152),(2500,38056721),(2501,26379185),(2502,62453078),(2503,24739856),(2504,40271953),(2505,96528047),(2506,57608243),(2507,8695234),(2508,98507461),(2509,85640271),(2510,58719342),(2511,39852607),(2512,70263841),(2513,14532896),(2514,60834179),(2515,23104567),(2516,69235710),(2517,47516903),(2518,71695308),(2519,92873041),(2520,10796548),(2521,81295064),(2522,31920654),(2523,29376485),(2524,53162978),(2525,48250679),(2526,7419362),(2527,23754089),(2528,97031865),(2529,98546031),(2530,92510483),(2531,97860543),(2532,60581947),(2533,65892741),(2534,13290654),(2535,58367904),(2536,21896074),(2537,96872104),(2538,78491256),(2539,75418693),(2540,25970843),(2541,81059276),(2542,16820375),(2543,63527914),(2544,79046231),(2545,21405763),(2546,35710962),(2547,62307154),(2548,9134685),(2549,43752816),(2550,23104589),(2551,12856407),(2552,67519280),(2553,39024158),(2554,32501896),(2555,1948657),(2556,41359276),(2557,64981327),(2558,93860542),(2559,39514078),(2560,25760934),(2561,8573429),(2562,79420358),(2563,17253806),(2564,83157624),(2565,89365147),(2566,9842537),(2567,98012357),(2568,12798630),(2569,19654837),(2570,69453782),(2571,20957813),(2572,82037561),(2573,90217364),(2574,6952813),(2575,72846930),(2576,9246387),(2577,34560182),(2578,40697138),(2579,75296381),(2580,57024913),(2581,69814320),(2582,14307596),(2583,95036148),(2584,24796185),(2585,78650394),(2586,35089674),(2587,16203594),(2588,71609423),(2589,87601594),(2590,95267438),(2591,84693501),(2592,29071856),(2593,51293846),(2594,13482756),(2595,15384607),(2596,45173968),(2597,94126873),(2598,24803697),(2599,54102687),(2600,94627153),(2601,61354028),(2602,59231640),(2603,27913504),(2604,20358946),(2605,76815324),(2606,20157346),(2607,98476350),(2608,16257938),(2609,91504237),(2610,46321509),(2611,10945386),(2612,32158607),(2613,30782149),(2614,68451970),(2615,65789234),(2616,98176034),(2617,75483629),(2618,70159628),(2619,72431085),(2620,9236718),(2621,61253479),(2622,37180452),(2623,86547319),(2624,29304687),(2625,35428976),(2626,71082549),(2627,73028659),(2628,40397128),(2629,86704923),(2630,81590624),(2631,2135976),(2632,21985674),(2633,93746182),(2634,37861590),(2635,6957423),(2636,72359601),(2637,68309541),(2638,29681730),(2639,51470328),(2640,3579281),(2641,64903281),(2642,31874520),(2643,95817204),(2644,50247839),(2645,35289107),(2646,56930724),(2647,18946752),(2648,3681725),(2649,50237489),(2650,86537019),(2651,83159067),(2652,39057286),(2653,70541893),(2654,87592463),(2655,86912305),(2656,29407561),(2657,1532698),(2658,49781620),(2659,50712938),(2660,43901275),(2661,91564803),(2662,70486123),(2663,3286417),(2664,78402631),(2665,10825639),(2666,94562170),(2667,85367904),(2668,48627931),(2669,7518394),(2670,95782601),(2671,16709835),(2672,46508921),(2673,1378956),(2674,13296874),(2675,91465238),(2676,94270563),(2677,52608497),(2678,32479105),(2679,3284697),(2680,85304612),(2681,23157048),(2682,60147982),(2683,37864521),(2684,69820543),(2685,60821435),(2686,24867930),(2687,72981540),(2688,46179803),(2689,61589037),(2690,15293874),(2691,4591372),(2692,79581403),(2693,60324815),(2694,38062947),(2695,19875203),(2696,75361842),(2697,24871539),(2698,85246309),(2699,50269438),(2700,61583209),(2701,86591437),(2702,31609582),(2703,69147035),(2704,41380925),(2705,68054137),(2706,21367085),(2707,65201378),(2708,24917503),(2709,35218704),(2710,92346807),(2711,41275068),(2712,70685294),(2713,85290671),(2714,41276983),(2715,78520134),(2716,62139087),(2717,1892374),(2718,83196742),(2719,62851934),(2720,29036158),(2721,90465831),(2722,35061487),(2723,16724389),(2724,2168794),(2725,4297581),(2726,14679352),(2727,94176285),(2728,1289374),(2729,72398450),(2730,49678312),(2731,72410985),(2732,52108736),(2733,31024976),(2734,2318476),(2735,48510263),(2736,30625719),(2737,19583674),(2738,20469157),(2739,91723846),(2740,72940531),(2741,10928743),(2742,41927506),(2743,52680147),(2744,53807621),(2745,72563891),(2746,30976142),(2747,87439061),(2748,86249705),(2749,9485127),(2750,21907435),(2751,12465793),(2752,4238791),(2753,90317254),(2754,29103584),(2755,71934850),(2756,85029471),(2757,30756249),(2758,1286754),(2759,63529148),(2760,94168257),(2761,81507246),(2762,9615428),(2763,73041968),(2764,46572830),(2765,69508314),(2766,4596827),(2767,12453968),(2768,91076853),(2769,13450762),(2770,28490356),(2771,36170259),(2772,19257084),(2773,67831940),(2774,51243608),(2775,21739854),(2776,75891342),(2777,76458203),(2778,81546723),(2779,91427803),(2780,76835102),(2781,14923087),(2782,83619574),(2783,60782395),(2784,93721465),(2785,46219378),(2786,9513824),(2787,69812430),(2788,84579261),(2789,32049758),(2790,25987601),(2791,71268490),(2792,24038956),(2793,79318546),(2794,13582046),(2795,3261859),(2796,42936571),(2797,8327145),(2798,19802476),(2799,98637104),(2800,2179865),(2801,9825173),(2802,42539186),(2803,80739526),(2804,7814256),(2805,12956074),(2806,28379160),(2807,47395806),(2808,80914362),(2809,72643095),(2810,67438129),(2811,27863540),(2812,31896027),(2813,65793824),(2814,92761805),(2815,65798031),(2816,65841392),(2817,43591806),(2818,23489501),(2819,4193287),(2820,39618072),(2821,57219083),(2822,40835629),(2823,7321965),(2824,43807562),(2825,62489701),(2826,42037689),(2827,93876204),(2828,47132905),(2829,19268470),(2830,63978215),(2831,17259846),(2832,76901245),(2833,87615349),(2834,62784509),(2835,92418735),(2836,42753980),(2837,19746582),(2838,59823140),(2839,89412536),(2840,2368145),(2841,10536427),(2842,61208579),(2843,69401378),(2844,42309561),(2845,6914725),(2846,95263180),(2847,17405986),(2848,37016258),(2849,61823540),(2850,83574926),(2851,59462380),(2852,52761890),(2853,76803124),(2854,1947563),(2855,67893241),(2856,45830296),(2857,25604879),(2858,97564021),(2859,91063752),(2860,74590613),(2861,9361427),(2862,90267413),(2863,25487609),(2864,65241078),(2865,41706985),(2866,47935681),(2867,97308541),(2868,25069184),(2869,81274609),(2870,67123540),(2871,69812473),(2872,85716329),(2873,36297845),(2874,70581326),(2875,29713805),(2876,13587964),(2877,91052386),(2878,32601589),(2879,83705629),(2880,85467231),(2881,5769342),(2882,76208391),(2883,27635094),(2884,92457063),(2885,2761958),(2886,95403617),(2887,84792305),(2888,28317694),(2889,58921643),(2890,90631827),(2891,30125984),(2892,62051789),(2893,97548021),(2894,61853024),(2895,51976308),(2896,74360852),(2897,32147095),(2898,62719354),(2899,18265704),(2900,84725936),(2901,83690254),(2902,81297543),(2903,5869427),(2904,48319250),(2905,25876039),(2906,54930186),(2907,15763984),(2908,67830495),(2909,96538124),(2910,8795324),(2911,32468579),(2912,14268795),(2913,83215794),(2914,78635940),(2915,80351492),(2916,60259374),(2917,35092741),(2918,57162394),(2919,69381754),(2920,87159263),(2921,78512390),(2922,45126809),(2923,30621859),(2924,16023857),(2925,69017538),(2926,73540962),(2927,94283506),(2928,67219458),(2929,42963571),(2930,96248053),(2931,52170849),(2932,94870652),(2933,42718690),(2934,29461758),(2935,81254076),(2936,37064518),(2937,40935612),(2938,67395241),(2939,4358791),(2940,48539621),(2941,95872146),(2942,32986157),(2943,40859637),(2944,13579048),(2945,64137095),(2946,71805642),(2947,13405728),(2948,65724931),(2949,74136802),(2950,1659824),(2951,46820719),(2952,8127435),(2953,15762839),(2954,31967254),(2955,25374916),(2956,41295738),(2957,87126593),(2958,82946351),(2959,68140237),(2960,14695083),(2961,16054389),(2962,72943106),(2963,47530182),(2964,5948231),(2965,26395807),(2966,40986352),(2967,85743190),(2968,3471689),(2969,51074839),(2970,4195726),(2971,97128306),(2972,96013825),(2973,26513908),(2974,79328064),(2975,20419635),(2976,48793205),(2977,36984072),(2978,9478563),(2979,83014279),(2980,30971462),(2981,31248069),(2982,46720918),(2983,26084953),(2984,47129360),(2985,23581609),(2986,12056794),(2987,40692318),(2988,69534218),(2989,51687324),(2990,91724538),(2991,75890632),(2992,98230516),(2993,18796542),(2994,10986247),(2995,8619254),(2996,16024937),(2997,28345176),(2998,76930248),(2999,41875062),(3000,62371509),(3001,7513869),(3002,64123509),(3003,50624783),(3004,93604821),(3005,48725103),(3006,62148903),(3007,45870126),(3008,13582407),(3009,23581604),(3010,3524986),(3011,85026749),(3012,53407986),(3013,60257394),(3014,96052147),(3015,65879314),(3016,52163980),(3017,50183672),(3018,61923407),(3019,95183247),(3020,2683974),(3021,42170953),(3022,5876239),(3023,15643209),(3024,39682415),(3025,14029763),(3026,57496128),(3027,18479356),(3028,41625379),(3029,78542931),(3030,39817625),(3031,49580721),(3032,75246103),(3033,70584693),(3034,74016538),(3035,79150368),(3036,13298074),(3037,81539742),(3038,73042916),(3039,10546792),(3040,28619053),(3041,9345861),(3042,3916257),(3043,27068341),(3044,35742608),(3045,20475816),(3046,13956704),(3047,42536178),(3048,78395406),(3049,79384261),(3050,20456379),(3051,91327850),(3052,25641973),(3053,78402359),(3054,98234057),(3055,18523407),(3056,79186245),(3057,38765092),(3058,13809427),(3059,54893621),(3060,6839541),(3061,94306712),(3062,91283705),(3063,95473068),(3064,4685927),(3065,84503719),(3066,61058932),(3067,28590734),(3068,65829317),(3069,4315678),(3070,79143258),(3071,57304186),(3072,34279160),(3073,87023619),(3074,85672304),(3075,58301497),(3076,54807639),(3077,48327956),(3078,48732065),(3079,68520741),(3080,52893461),(3081,81506372),(3082,36904285),(3083,43075816),(3084,16453870),(3085,98042137),(3086,68714952),(3087,24915063),(3088,57012498),(3089,43250671),(3090,67125894),(3091,56473098),(3092,95281763),(3093,51843920),(3094,36950218),(3095,21463097),(3096,56921483),(3097,79814603),(3098,68295340),(3099,97436521),(3100,80961435),(3101,28604539),(3102,19758462),(3103,36075194),(3104,64903825),(3105,7813259),(3106,78926513),(3107,16524870),(3108,96405817),(3109,63097854),(3110,83169420),(3111,39724165),(3112,61854092),(3113,21697485),(3114,26107354),(3115,97154068),(3116,93846752),(3117,46819307),(3118,82037916),(3119,2746581),(3120,14796283),(3121,60285914),(3122,37156428),(3123,73681902),(3124,67204351),(3125,29754806),(3126,6592783),(3127,78395421),(3128,14823709),(3129,23961874),(3130,6839512),(3131,91536748),(3132,38672904),(3133,14526387),(3134,41389207),(3135,32819057),(3136,40731958),(3137,25078694),(3138,79452368),(3139,5679214),(3140,14567802),(3141,15432670),(3142,41790256),(3143,97426385),(3144,74586302),(3145,56980137),(3146,78392604),(3147,23046751),(3148,82457160),(3149,84760593),(3150,19804735),(3151,38250976),(3152,60279541),(3153,7531924),(3154,15762089),(3155,9516237),(3156,87423016),(3157,56438197),(3158,16052983),(3159,67214053),(3160,21406395),(3161,94350126),(3162,23708196),(3163,81340257),(3164,37524801),(3165,63790845),(3166,89531204),(3167,46021859),(3168,49578601),(3169,47180635),(3170,50817234),(3171,10825769),(3172,35917846),(3173,47069528),(3174,2937654),(3175,89051376),(3176,97563104),(3177,94218573),(3178,42831079),(3179,10789624),(3180,9468125),(3181,90564782),(3182,76539481),(3183,45930827),(3184,92057438),(3185,50438671),(3186,94271608),(3187,86421935),(3188,30819752),(3189,2319567),(3190,20435798),(3191,23857491),(3192,98415632),(3193,56084319),(3194,63801572),(3195,96245178),(3196,79410283),(3197,32701954),(3198,98346570),(3199,4582391),(3200,29641058),(3201,71564083),(3202,46013795),(3203,76935208),(3204,97641308),(3205,61782435),(3206,26975031),(3207,83410695),(3208,38012964),(3209,27508641),(3210,85069231),(3211,64270358),(3212,65207489),(3213,81795403),(3214,50169437),(3215,14976035),(3216,86372491),(3217,31847905),(3218,95168403),(3219,31794580),(3220,53410872),(3221,13674589),(3222,83196250),(3223,52896731),(3224,42653709),(3225,20518976),(3226,15934802),(3227,14735698),(3228,64891753),(3229,60719348),(3230,53214708),(3231,32416795),(3232,13564298),(3233,31987260),(3234,93482075),(3235,35418609),(3236,56241390),(3237,62539418),(3238,27504319),(3239,60148735),(3240,14390257),(3241,23518746),(3242,52870914),(3243,79680412),(3244,2164879),(3245,90351872),(3246,10968375),(3247,18036425),(3248,95702134),(3249,65234981),(3250,2746913),(3251,73562148),(3252,39214580),(3253,96152743),(3254,35791284),(3255,69503217),(3256,20689714),(3257,13586024),(3258,94321670),(3259,65328710),(3260,15689234),(3261,61852439),(3262,43861750),(3263,57906248),(3264,63784921),(3265,69128435),(3266,89017342),(3267,53712069),(3268,57180396),(3269,43870925),(3270,7436581),(3271,8374596),(3272,75198604),(3273,39614028),(3274,75381490),(3275,42089576),(3276,85926037),(3277,9731685),(3278,75602948),(3279,76389204),(3280,97102638),(3281,62974518),(3282,1582367),(3283,95746083),(3284,62590387),(3285,56917823),(3286,21068345),(3287,8237965),(3288,63470529),(3289,1974385),(3290,56173908),(3291,14758690),(3292,62357019),(3293,39047168),(3294,39047162),(3295,97164530),(3296,16473285),(3297,97142058),(3298,9376854),(3299,3851946),(3300,36790428),(3301,91634825),(3302,60593824),(3303,85349201),(3304,96310547),(3305,72954801),(3306,84563197),(3307,21609854),(3308,25390178),(3309,47819362),(3310,36854190),(3311,43587126),(3312,54710286),(3313,2197846),(3314,93614820),(3315,7594362),(3316,74013629),(3317,84297013),(3318,39672845),(3319,42701695),(3320,92743065),(3321,75136924),(3322,69324781),(3323,28509361),(3324,10398462),(3325,94370286),(3326,13798026),(3327,10275463),(3328,25097143),(3329,92146075),(3330,51327048),(3331,82195734),(3332,63147528),(3333,26091487),(3334,70594281),(3335,42593067),(3336,91546703),(3337,78093465),(3338,78206934),(3339,72548039),(3340,56830749),(3341,24078956),(3342,85140329),(3343,34621590),(3344,19438725),(3345,25917463),(3346,23785194),(3347,24597630),(3348,84231059),(3349,79230461),(3350,61749583),(3351,65983104),(3352,60938527),(3353,2731548),(3354,40527368),(3355,3845279),(3356,16524370),(3357,75132960),(3358,31798602),(3359,54621903),(3360,64250893),(3361,8923516),(3362,96875241),(3363,85716234),(3364,84592160),(3365,67901453),(3366,54706318),(3367,92570138),(3368,60875349),(3369,50293164),(3370,70825619),(3371,52064917),(3372,7365829),(3373,36245917),(3374,86450193),(3375,46970812),(3376,46530279),(3377,58976402),(3378,85923107),(3379,96127035),(3380,10483926),(3381,34185796),(3382,97051283),(3383,37145096),(3384,12580379),(3385,85934107),(3386,10298673),(3387,82610793),(3388,5947268),(3389,68452307),(3390,94105762),(3391,29514780),(3392,69712304),(3393,37951480),(3394,45708123),(3395,2314965),(3396,67893524),(3397,7946528),(3398,96410857),(3399,39176024),(3400,7389265),(3401,34120687),(3402,84617039),(3403,80964275),(3404,70854631),(3405,60173845),(3406,76092853),(3407,8276549),(3408,5987142),(3409,6875934),(3410,7938214),(3411,91783046),(3412,7854362),(3413,17264830),(3414,2435697),(3415,63790418),(3416,87012356),(3417,21057948),(3418,34098265),(3419,60154872),(3420,31860974),(3421,54306712),(3422,30215764),(3423,37516904),(3424,94871602),(3425,31690847),(3426,47528910),(3427,89712435),(3428,91564038),(3429,1568294),(3430,31690842),(3431,89670435),(3432,57439281),(3433,52137406),(3434,73096184),(3435,2689571),(3436,15639847),(3437,85614702),(3438,26390457),(3439,48057231),(3440,31980456),(3441,82164970),(3442,60217453),(3443,95478213),(3444,9631247),(3445,64273051),(3446,76218394),(3447,6284175),(3448,96712853),(3449,49025837),(3450,3729186),(3451,51230789),(3452,56710482),(3453,94058167),(3454,10763289),(3455,3987521),(3456,40728196),(3457,96385271),(3458,39801625),(3459,3479125),(3460,13560948),(3461,75468910),(3462,90418536),(3463,7526814),(3464,71239468),(3465,43106925),(3466,50382916),(3467,4628593),(3468,36240857),(3469,38075614),(3470,29875031),(3471,25978314),(3472,53614987),(3473,48235067),(3474,69701382),(3475,94652103),(3476,71892503),(3477,75042168),(3478,9531872),(3479,93146072),(3480,80527364),(3481,28674103),(3482,41597263),(3483,30476958),(3484,12037654),(3485,14852076),(3486,18067543),(3487,98324061),(3488,38175024),(3489,98614537),(3490,20874361),(3491,14593680),(3492,67329814),(3493,32587619),(3494,78419623),(3495,82490613),(3496,60384291),(3497,10482396),(3498,81457069),(3499,39206154),(3500,5376291),(3501,24053918),(3502,49851203),(3503,65478932),(3504,28753064),(3505,73928506),(3506,61234987),(3507,21094378),(3508,58027314),(3509,73824601),(3510,38714569),(3511,90814763),(3512,41576032),(3513,68107943),(3514,29308571),(3515,43601827),(3516,72305198),(3517,93806541),(3518,12487306),(3519,26407851),(3520,17856932),(3521,68394105),(3522,73104826),(3523,72049538),(3524,70286135),(3525,57321960),(3526,12467893),(3527,54068971),(3528,91267403),(3529,19308765),(3530,40518972),(3531,92134875),(3532,29561807),(3533,13694782),(3534,95704183),(3535,69741025),(3536,17369420),(3537,74190368),(3538,15420967),(3539,80239561),(3540,24897351),(3541,24785369),(3542,67812905),(3543,46587132),(3544,7812459),(3545,61248703),(3546,69528130),(3547,75932460),(3548,10256837),(3549,40852319),(3550,75364912),(3551,14570396),(3552,21874395),(3553,75932061),(3554,39127654),(3555,47052398),(3556,16587203),(3557,36194875),(3558,48137965),(3559,74153082),(3560,67023851),(3561,1753692),(3562,10849253),(3563,96740321),(3564,12369508),(3565,81602457),(3566,84653192),(3567,94235610),(3568,60943517),(3569,9156783),(3570,94051267),(3571,37562489),(3572,39405126),(3573,95423786),(3574,50239847),(3575,7859632),(3576,1825694),(3577,41753628),(3578,87214365),(3579,27058439),(3580,30457296),(3581,18297056),(3582,62394817),(3583,63872049),(3584,79205481),(3585,38475096),(3586,61094275),(3587,12934085),(3588,14958036),(3589,24371059),(3590,32405679),(3591,94273180),(3592,73219650),(3593,92473016),(3594,70248916),(3595,18452973),(3596,76043819),(3597,60548219),(3598,45978631),(3599,40286175),(3600,62104573),(3601,15396720),(3602,50831297),(3603,92348107),(3604,8246159),(3605,30761289),(3606,73150682),(3607,57249803),(3608,90684157),(3609,38017265),(3610,56193408),(3611,96741035),(3612,76298015),(3613,39174052),(3614,25176390),(3615,65730941),(3616,5139268),(3617,43760582),(3618,59024673),(3619,98267354),(3620,94610253),(3621,19872530),(3622,5423871),(3623,52091486),(3624,74609523),(3625,26954830),(3626,73149582),(3627,80143925),(3628,49758632),(3629,19846253),(3630,65928307),(3631,21360598),(3632,31647289),(3633,70936215),(3634,5231749),(3635,90234687),(3636,32840796),(3637,51297038),(3638,45216938),(3639,45297103),(3640,71856329),(3641,78950326),(3642,91728430),(3643,84756130),(3644,75630824),(3645,7913628),(3646,65937420),(3647,12574039),(3648,64207891),(3649,72430658),(3650,98715023),(3651,46982173),(3652,32741068),(3653,48730291),(3654,98427165),(3655,42309716),(3656,40972681),(3657,23168957),(3658,45037291),(3659,34921507),(3660,29517086),(3661,84527136),(3662,65798314),(3663,98401275),(3664,45901632),(3665,53896421),(3666,3167945),(3667,51836794),(3668,84569710),(3669,47082953),(3670,32487561),(3671,53467192),(3672,10879642),(3673,90637481),(3674,60829451),(3675,49530617),(3676,17230956),(3677,3657249),(3678,68523497),(3679,38279045),(3680,50846319),(3681,79208415),(3682,64329871),(3683,74053862),(3684,2836154),(3685,74096832),(3686,86541207),(3687,65017839),(3688,85362479),(3689,31967528),(3690,53670821),(3691,37219540),(3692,38695071),(3693,71256340),(3694,95832670),(3695,64932158),(3696,25718036),(3697,26514390),(3698,41835726),(3699,27609315),(3700,47826310),(3701,83017645),(3702,51307894),(3703,97581430),(3704,9372814),(3705,65941780),(3706,63915724),(3707,78134562),(3708,46215093),(3709,39872064),(3710,60731592),(3711,78254906),(3712,36051942),(3713,34602857),(3714,63140597),(3715,10362479),(3716,78421930),(3717,37862419),(3718,79514823),(3719,42057869),(3720,45390786),(3721,6871392),(3722,17623985),(3723,37964185),(3724,86234570),(3725,5638497),(3726,65841927),(3727,82301975),(3728,92507348),(3729,45916237),(3730,71092456),(3731,26801497),(3732,60825947),(3733,53607814),(3734,37415260),(3735,41870963),(3736,2758316),(3737,39856704),(3738,89016537),(3739,58324710),(3740,23401659),(3741,82163074),(3742,4986251),(3743,32401795),(3744,56781032),(3745,36204791),(3746,31549286),(3747,97518203),(3748,82957643),(3749,71638049),(3750,51932476),(3751,50841932),(3752,56982470),(3753,31206784),(3754,5721346),(3755,91430687),(3756,83765420),(3757,83619742),(3758,25143706),(3759,62397805),(3760,83712640),(3761,53172689),(3762,48962150),(3763,97208345),(3764,2734865),(3765,78193062),(3766,26590734),(3767,2436198),(3768,14590378),(3769,72658140),(3770,51408296),(3771,82431906),(3772,65943180),(3773,25637890),(3774,54387219),(3775,26179304),(3776,72634951),(3777,51729043),(3778,93527180),(3779,42395681),(3780,39521704),(3781,69732084),(3782,21748963),(3783,61792038),(3784,73218064),(3785,79402386),(3786,51802634),(3787,2893174),(3788,81532964),(3789,5718924),(3790,92104763),(3791,38715620),(3792,76843150),(3793,30678925),(3794,45893610),(3795,32769051),(3796,35476802),(3797,34701568),(3798,84601793),(3799,60829137),(3800,85962710),(3801,89640723),(3802,96413580),(3803,15493607),(3804,45968320),(3805,58074623),(3806,80927635),(3807,1438569),(3808,37251084),(3809,18273640),(3810,94326108),(3811,71860524),(3812,98302146),(3813,3859127),(3814,76321589),(3815,91465023),(3816,74329081),(3817,37815064),(3818,79421360),(3819,70619238),(3820,86274593),(3821,76452310),(3822,79521348),(3823,23605491),(3824,36427581),(3825,12496508),(3826,21504673),(3827,62573904),(3828,47206983),(3829,62740538),(3830,23859064),(3831,47690152),(3832,64530182),(3833,31674250),(3834,85647031),(3835,17203985),(3836,93421786),(3837,28793541),(3838,93810624),(3839,8615724),(3840,48397560),(3841,79326480),(3842,3762145),(3843,6785931),(3844,34510267),(3845,2143896),(3846,92864513),(3847,70412839),(3848,17462950),(3849,42367581),(3850,6912857),(3851,69853720),(3852,79352061),(3853,37194082),(3854,27014938),(3855,39406752),(3856,87425069),(3857,21605793),(3858,1786592),(3859,39076528),(3860,27306951),(3861,17089435),(3862,57469812),(3863,8245361),(3864,42817903),(3865,68470519),(3866,59601487),(3867,10652897),(3868,31082597),(3869,85910734),(3870,68439701),(3871,7324651),(3872,91406725),(3873,72965831),(3874,72486195),(3875,48261793),(3876,6738215),(3877,87935612),(3878,43759026),(3879,83469075),(3880,37651902),(3881,52941736),(3882,14750382),(3883,10893627),(3884,40182753),(3885,91056723),(3886,42103978),(3887,65817209),(3888,12954083),(3889,21609784),(3890,31097264),(3891,12793580),(3892,3982456),(3893,69870241),(3894,2857691),(3895,40562873),(3896,73486125),(3897,41675938),(3898,5947813),(3899,47536092),(3900,91365047),(3901,17562394),(3902,1795326),(3903,51302674),(3904,58413079),(3905,37068521),(3906,94687523),(3907,54987213),(3908,96257384),(3909,42931657),(3910,31065287),(3911,21380456),(3912,46079358),(3913,95746132),(3914,38542719),(3915,17802439),(3916,38427590),(3917,62734519),(3918,51876432),(3919,47260983),(3920,2971368),(3921,1937682),(3922,32540967),(3923,31562790),(3924,59168430),(3925,86521307),(3926,65194738),(3927,70365821),(3928,60214758),(3929,90352817),(3930,40268975),(3931,92514037),(3932,63514279),(3933,3267985),(3934,29716058),(3935,97631852),(3936,35028461),(3937,75983120),(3938,42518609),(3939,16073589),(3940,31572490),(3941,34906852),(3942,30529184),(3943,32495180),(3944,86430597),(3945,16835427),(3946,42318795),(3947,30196842),(3948,24190873),(3949,30829174),(3950,26874301),(3951,81436057),(3952,86321790),(3953,93615208),(3954,35496280),(3955,25416387),(3956,30745128),(3957,26751984),(3958,34082751),(3959,13560279),(3960,82630571),(3961,7835214),(3962,19753680),(3963,30951862),(3964,16943085),(3965,51043789),(3966,95362487),(3967,36150249),(3968,49035826),(3969,20156378),(3970,18697340),(3971,98075631),(3972,85746901),(3973,91540328),(3974,12845603),(3975,14652780),(3976,84162759),(3977,3941675),(3978,40198263),(3979,68271504),(3980,71058634),(3981,26185097),(3982,1265397),(3983,27103649),(3984,56140832),(3985,30516892),(3986,86195374),(3987,26739145),(3988,64318052),(3989,72603498),(3990,14085369),(3991,79213586),(3992,62590713),(3993,28179305),(3994,97125860),(3995,18275304),(3996,90643127),(3997,32680514),(3998,64972105),(3999,50683247),(4000,34067592),(4001,73198420),(4002,91587604),(4003,87269301),(4004,93075426),(4005,14075269),(4006,49820163),(4007,19423568),(4008,10694853),(4009,64817905),(4010,39465087),(4011,52417906),(4012,45167930),(4013,20358471),(4014,17895046),(4015,91523604),(4016,57401362),(4017,47836021),(4018,94567138),(4019,69801457),(4020,92043518),(4021,92348067),(4022,10954682),(4023,85136427),(4024,73156409),(4025,78652109),(4026,46387921),(4027,95803674),(4028,12084597),(4029,96814207),(4030,56712804),(4031,81342769),(4032,29548617),(4033,35291670),(4034,2675483),(4035,36978104),(4036,28495103),(4037,98571603),(4038,45962180),(4039,97540128),(4040,98652104),(4041,10287946),(4042,70143689),(4043,80143259),(4044,10523879),(4045,8539417),(4046,39146752),(4047,6574231),(4048,79534182),(4049,71438026),(4050,93658704),(4051,31098472),(4052,96342157),(4053,61348297),(4054,42809167),(4055,65423978),(4056,78469230),(4057,96428351),(4058,7596183),(4059,15320476),(4060,28604793),(4061,51463720),(4062,81230975),(4063,40129657),(4064,71385426),(4065,24965130),(4066,87302519),(4067,53896140),(4068,98625314),(4069,9643812),(4070,84730156),(4071,64920381),(4072,29381046),(4073,3149527),(4074,9182357),(4075,24876095),(4076,12495678),(4077,45690832),(4078,70352496),(4079,21837940),(4080,25390684),(4081,56970842),(4082,5421387),(4083,96310285),(4084,64802571),(4085,34509617),(4086,15986203),(4087,4859261),(4088,50174829),(4089,25397806),(4090,1725846),(4091,28567043),(4092,31645807),(4093,47639502),(4094,32659048),(4095,69387045),(4096,87239156),(4097,70592416),(4098,3625184),(4099,36702845),(4100,5762834),(4101,47352680),(4102,4265819),(4103,8195247),(4104,6527134),(4105,23061894),(4106,83624950),(4107,26710359),(4108,92160357),(4109,5928716),(4110,96842175),(4111,92581304),(4112,34107862),(4113,67598342),(4114,32516748),(4115,32694705),(4116,37981640),(4117,29174568),(4118,37912650),(4119,97614325),(4120,53297016),(4121,21783960),(4122,48925301),(4123,58102963),(4124,83059261),(4125,34971026),(4126,38054172),(4127,81250367),(4128,24586179),(4129,2798456),(4130,14257906),(4131,24380759),(4132,31470586),(4133,37419628),(4134,71426093),(4135,82593076),(4136,23980154),(4137,94128703),(4138,47528369),(4139,14905872),(4140,74953268),(4141,80164357),(4142,67204983),(4143,14893507),(4144,56430192),(4145,57162093),(4146,70124865),(4147,52304978),(4148,23158764),(4149,52136948),(4150,7319528),(4151,20349581),(4152,70542891),(4153,54086137),(4154,67325890),(4155,61809735),(4156,46950813),(4157,45819706),(4158,41285076),(4159,24037658),(4160,17054236),(4161,94257368),(4162,80372561),(4163,34570961),(4164,78560432),(4165,30978516),(4166,37896425),(4167,12697034),(4168,67042831),(4169,20956847),(4170,5816732),(4171,80564729),(4172,43927016),(4173,1874352),(4174,50374198),(4175,34619782),(4176,4125876),(4177,9625341),(4178,1972683),(4179,8932514),(4180,59417380),(4181,20456193),(4182,48316907),(4183,56908241),(4184,32879501),(4185,58473096),(4186,13685097),(4187,1846359),(4188,92841653),(4189,20851746),(4190,42397018),(4191,87129653),(4192,73104285),(4193,95723648),(4194,13245890),(4195,71895643),(4196,21845307),(4197,73925016),(4198,52630791),(4199,67231845),(4200,70296485),(4201,46291530),(4202,71083264),(4203,75214093),(4204,41630729),(4205,29147035),(4206,85120749),(4207,75214098),(4208,93025678),(4209,36482150),(4210,37985120),(4211,65792481),(4212,62193754),(4213,94571638),(4214,16284035),(4215,53941762),(4216,72968013),(4217,64937150),(4218,24875361),(4219,7935218),(4220,35860724),(4221,41059768),(4222,68207943),(4223,85694172),(4224,86324795),(4225,67501942),(4226,49751820),(4227,48631057),(4228,16480572),(4229,63821950),(4230,40937628),(4231,8623594),(4232,61478305),(4233,10428563),(4234,42830175),(4235,1783526),(4236,27804316),(4237,10597364),(4238,14057398),(4239,58913247),(4240,85061973),(4241,23497610),(4242,89713460),(4243,90843127),(4244,5792384),(4245,71846295),(4246,8475193),(4247,8475196),(4248,62714598),(4249,92580713),(4250,74583902),(4251,31092546),(4252,13289507),(4253,64013895),(4254,18960245),(4255,45092768),(4256,17038296),(4257,13025768),(4258,80157364),(4259,69347508),(4260,81392605),(4261,8465321),(4262,60921548),(4263,56082491),(4264,4168239),(4265,18074256),(4266,73462819),(4267,28745391),(4268,49067153),(4269,56208497),(4270,4531967),(4271,28531749),(4272,41259308),(4273,25984736),(4274,16038274),(4275,38904765),(4276,57068294),(4277,98536024),(4278,61278345),(4279,25370184),(4280,81765429),(4281,49867105),(4282,4986123),(4283,14302569),(4284,19786345),(4285,2476138),(4286,85173046),(4287,47563289),(4288,93875246),(4289,74019826),(4290,91230458),(4291,38579064),(4292,31608954),(4293,18049327),(4294,31284697),(4295,19786352),(4296,56347908),(4297,80521693),(4298,8921547),(4299,42539016),(4300,20374859),(4301,78123059),(4302,35017948),(4303,3926415),(4304,21987456),(4305,28735961),(4306,40937258),(4307,83510469),(4308,54708692),(4309,21493560),(4310,17032985),(4311,31476502),(4312,30794152),(4313,93620174),(4314,47502831),(4315,72163459),(4316,78063145),(4317,30165279),(4318,67815290),(4319,93862157),(4320,52678034),(4321,61738594),(4322,95461378),(4323,46501823),(4324,40276985),(4325,38054679),(4326,63971082),(4327,10398647),(4328,34508169),(4329,37402685),(4330,1729346),(4331,49732061),(4332,94867302),(4333,49201783),(4334,58013749),(4335,6982743),(4336,47813062),(4337,31798042),(4338,2369584),(4339,81062573),(4340,92861507),(4341,59430268),(4342,89306457),(4343,49215307),(4344,64358927),(4345,15783469),(4346,45926178),(4347,46523790),(4348,90213468),(4349,16597408),(4350,91035748),(4351,52780369),(4352,58210693),(4353,89574026),(4354,49732081),(4355,5743621),(4356,98312764),(4357,17359268),(4358,1498657),(4359,98752106),(4360,79268105),(4361,38650247),(4362,17049582),(4363,16984720),(4364,68079431),(4365,69372480),(4366,71430298),(4367,68192750),(4368,24168739),(4369,92463157),(4370,73152694),(4371,47268315),(4372,27485093),(4373,19345628),(4374,30718249),(4375,67048529),(4376,3167524),(4377,50682473),(4378,50917246),(4379,71038594),(4380,21738569),(4381,60842359),(4382,40653198),(4383,38612749),(4384,74013865),(4385,18306247),(4386,73560249),(4387,2983174),(4388,82650371),(4389,79408256),(4390,42706851),(4391,86795134),(4392,70914638),(4393,62419738),(4394,50678312),(4395,97035248),(4396,54780169),(4397,46521970),(4398,51283604),(4399,40786125),(4400,12578643),(4401,38927160),(4402,81602547),(4403,13860974),(4404,23416058),(4405,36217940),(4406,18752946),(4407,75319802),(4408,73249861),(4409,6549728),(4410,14396572),(4411,69152803),(4412,65074183),(4413,53497106),(4414,89520461),(4415,39846107),(4416,74289601),(4417,83197025),(4418,4369812),(4419,63410589),(4420,26071893),(4421,45703618),(4422,86473210),(4423,96345178),(4424,49721683),(4425,57420368),(4426,89354762),(4427,8275391),(4428,6925874),(4429,50246798),(4430,10386975),(4431,94852301),(4432,26180347),(4433,36159248),(4434,37281590),(4435,3865921),(4436,73684259),(4437,52804961),(4438,27183956),(4439,7315964),(4440,70184625),(4441,21450987),(4442,32069841),(4443,47963501),(4444,45639170),(4445,45971826),(4446,67358214),(4447,17298604),(4448,25934170),(4449,19578324),(4450,72139864),(4451,68403571),(4452,68713594),(4453,96425387),(4454,4285967),(4455,59064378),(4456,56493180),(4457,14205973),(4458,13206985),(4459,91346075),(4460,31607459),(4461,30657198),(4462,12745308),(4463,16759382),(4464,86129357),(4465,58691340),(4466,82971036),(4467,30451982),(4468,40385192),(4469,54690713),(4470,3249175),(4471,12045638),(4472,30895417),(4473,52761938),(4474,4651289),(4475,6394251),(4476,57028613),(4477,65027483),(4478,14693805),(4479,91436507),(4480,17650824),(4481,36827140),(4482,83912475),(4483,79381640),(4484,42086319),(4485,37490162),(4486,29634187),(4487,67413980),(4488,14306529),(4489,71908245),(4490,39628104),(4491,43850197),(4492,85293176),(4493,74259130),(4494,31786209),(4495,4915328),(4496,75419023),(4497,78629401),(4498,86175034),(4499,20198347),(4500,92107364),(4501,93620578),(4502,56079142),(4503,40317695),(4504,8345216),(4505,59218706),(4506,79835602),(4507,13527068),(4508,8539126),(4509,46093712),(4510,47318905),(4511,25380164),(4512,75013926),(4513,21680973),(4514,60845132),(4515,39401857),(4516,28719560),(4517,72638049),(4518,24896570),(4519,50729631),(4520,47309865),(4521,80327415),(4522,13485906),(4523,82635719),(4524,94160235),(4525,68374512),(4526,9134682),(4527,72631508),(4528,40216853),(4529,79503614),(4530,68103249),(4531,7892546),(4532,5691348),(4533,2493857),(4534,61075832),(4535,92175308),(4536,35078691),(4537,93076845),(4538,61259378),(4539,54130296),(4540,68754012),(4541,79564183),(4542,53629170),(4543,96027483),(4544,70284615),(4545,3895617),(4546,23589174),(4547,71538640),(4548,49813062),(4549,50824963),(4550,36972508),(4551,3149625),(4552,72659038),(4553,42715380),(4554,85793021),(4555,65824019),(4556,23809765),(4557,61597824),(4558,20439861),(4559,15937426),(4560,25461078),(4561,59278406),(4562,49872306),(4563,20439158),(4564,57412308),(4565,36518902),(4566,91784536),(4567,28369570),(4568,26931504),(4569,57896432),(4570,32906817),(4571,48270956),(4572,42978051),(4573,41829065),(4574,4982153),(4575,34928106),(4576,87169530),(4577,84716035),(4578,71892406),(4579,54069873),(4580,61327594),(4581,54891072),(4582,82035941),(4583,12365089),(4584,57912638),(4585,6497321),(4586,71839024),(4587,10923876),(4588,9675381),(4589,50124879),(4590,29587431),(4591,36578240),(4592,18405726),(4593,64380572),(4594,34768502),(4595,1235986),(4596,30274968),(4597,40821967),(4598,30925178),(4599,48356012),(4600,90834126),(4601,85491037),(4602,9386741),(4603,54893172),(4604,78149260),(4605,94037851),(4606,16947285),(4607,9172854),(4608,62509413),(4609,72146598),(4610,43261859),(4611,86403157),(4612,18905763),(4613,46185309),(4614,84095761),(4615,79851643),(4616,51907462),(4617,17860352),(4618,98271605),(4619,46983012),(4620,14652037),(4621,40192738),(4622,95067123),(4623,73681459),(4624,79045132),(4625,25947013),(4626,68350197),(4627,60453218),(4628,65142708),(4629,43786591),(4630,54820967),(4631,62831970),(4632,54708621),(4633,36072185),(4634,52481607),(4635,19840273),(4636,37980251),(4637,29673405),(4638,61247395),(4639,47859063),(4640,9372145),(4641,95712048),(4642,84712309),(4643,60852914),(4644,2736581),(4645,25096481),(4646,43921765),(4647,75809643),(4648,92306154),(4649,87325690),(4650,47952601),(4651,15246078),(4652,20945173),(4653,69301452),(4654,14802795),(4655,6342875),(4656,89724351),(4657,40835169),(4658,47235098),(4659,14502963),(4660,37285906),(4661,32781940),(4662,26341758),(4663,71690435),(4664,60751248),(4665,27816394),(4666,89706134),(4667,3158792),(4668,52861497),(4669,93750642),(4670,23695047),(4671,12509463),(4672,83412675),(4673,61375942),(4674,76125089),(4675,9746852),(4676,94518072),(4677,89267035),(4678,24059763),(4679,20869457),(4680,76501943),(4681,43597018),(4682,47560832),(4683,10569823),(4684,95417860),(4685,41263857),(4686,61248905),(4687,49751082),(4688,31204867),(4689,80176452),(4690,49382065),(4691,95801742),(4692,62590413),(4693,98367142),(4694,29764053),(4695,16597803),(4696,32760589),(4697,53847092),(4698,56329714),(4699,40153286),(4700,17265049),(4701,93078615),(4702,12634807),(4703,40327561),(4704,8275941),(4705,78192546),(4706,59462310),(4707,82170936),(4708,41356809),(4709,72693851),(4710,42053167),(4711,71932645),(4712,36148502),(4713,61837420),(4714,17349806),(4715,8439726),(4716,75392480),(4717,79341582),(4718,51297643),(4719,32716405),(4720,64028931),(4721,84271659),(4722,68493521),(4723,41039786),(4724,64871593),(4725,50678192),(4726,60312945),(4727,87906342),(4728,78059423),(4729,10328469),(4730,79126345),(4731,51264708),(4732,74035692),(4733,85614392),(4734,95876403),(4735,43209587),(4736,65132074),(4737,17346208),(4738,71829650),(4739,9645317),(4740,49683715),(4741,39572416),(4742,57492068),(4743,41625738),(4744,85094172),(4745,26791483),(4746,72635489),(4747,42517608),(4748,96134725),(4749,3941857),(4750,13076482),(4751,64379215),(4752,91546823),(4753,46723850),(4754,64972085),(4755,62354780),(4756,71469835),(4757,51096287),(4758,27846931),(4759,7843916),(4760,4819237),(4761,68475390),(4762,57023914),(4763,19564870),(4764,68031259),(4765,12530687),(4766,13748296),(4767,8231796),(4768,71064829),(4769,50497281),(4770,15364298),(4771,41856209),(4772,93746508),(4773,5846239),(4774,69824573),(4775,14527398),(4776,78305624),(4777,80375619),(4778,5864973),(4779,27053198),(4780,10426735),(4781,53094127),(4782,78936541),(4783,49358627),(4784,62840751),(4785,6374289),(4786,4691825),(4787,87012654),(4788,98712453),(4789,78195403),(4790,4653179),(4791,87421936),(4792,52678139),(4793,65810274),(4794,92675014),(4795,89247016),(4796,12537604),(4797,52986410),(4798,64907382),(4799,96748150),(4800,37168549),(4801,97524186),(4802,69475820),(4803,27410958),(4804,35829407),(4805,47650913),(4806,40837261),(4807,29015847),(4808,94625307),(4809,40859217),(4810,26837150),(4811,26013948),(4812,40657983),(4813,39182560),(4814,63041827),(4815,17436508),(4816,58371096),(4817,78321450),(4818,25413680),(4819,56238471),(4820,29640351),(4821,65213980),(4822,51726093),(4823,54918372),(4824,42960835),(4825,29034765),(4826,29034768),(4827,85609317),(4828,6293187),(4829,93120857),(4830,95736042),(4831,86243095),(4832,59417832),(4833,56024193),(4834,96357810),(4835,17852643),(4836,65240371),(4837,30819456),(4838,98452360),(4839,58709413),(4840,76485932),(4841,47095823),(4842,30925416),(4843,54879136),(4844,7829145),(4845,89147356),(4846,70951426),(4847,43657982),(4848,57403289),(4849,3481629),(4850,43702165),(4851,83976450),(4852,19608754),(4853,26541087),(4854,89021647),(4855,24316875),(4856,37914058),(4857,30762958),(4858,68950421),(4859,20964157),(4860,75602183),(4861,84967251),(4862,47318569),(4863,38416207),(4864,42379856),(4865,70184569),(4866,81357940),(4867,80452613),(4868,53890627),(4869,64789310),(4870,87324190),(4871,45196072),(4872,24067835),(4873,85642179),(4874,36120974),(4875,75042683),(4876,57691834),(4877,19576234),(4878,80235146),(4879,78452619),(4880,43689275),(4881,96758241),(4882,90164572),(4883,17658432),(4884,25813760),(4885,42019765),(4886,36241890),(4887,34781905),(4888,56470189),(4889,58906132),(4890,24068971),(4891,63420958),(4892,7236915),(4893,65243978),(4894,40815729),(4895,64102598),(4896,41980765),(4897,1648357),(4898,51640372),(4899,62738091),(4900,89364571),(4901,31580276),(4902,70214586),(4903,57231690),(4904,12389547),(4905,85723409),(4906,92130648),(4907,34095127),(4908,39721408),(4909,30894251),(4910,58490671),(4911,67892534),(4912,48257319),(4913,51906273),(4914,92075461),(4915,71569348),(4916,18695420),(4917,92643758),(4918,5326498),(4919,29067354),(4920,48026731),(4921,78419065),(4922,91642503),(4923,16792583),(4924,70681594),(4925,97435820),(4926,74312560),(4927,30149685),(4928,15906834),(4929,63459208),(4930,76205983),(4931,42375601),(4932,10238574),(4933,21054639),(4934,56273891),(4935,94213506),(4936,81423579),(4937,37249815),(4938,75460183),(4939,69028317),(4940,80752914),(4941,98405273),(4942,34257608),(4943,69342057),(4944,39108465),(4945,69825031),(4946,97630825),(4947,65930284),(4948,97086532),(4949,53407986),(4950,89746205),(4951,38950217),(4952,34902761),(4953,50986417),(4954,91830457),(4955,51372968),(4956,84725961),(4957,7924153),(4958,78642350),(4959,97821345),(4960,42315897),(4961,73684159),(4962,67530428),(4963,59268431),(4964,89174352),(4965,69452073),(4966,82591476),(4967,34160278),(4968,19327450),(4969,31240586),(4970,94701865),(4971,5364827),(4972,39820157),(4973,69201754),(4974,74185093),(4975,43987650),(4976,29603715),(4977,83412067),(4978,43258607),(4979,16409358),(4980,32045897),(4981,69435170),(4982,49803675),(4983,27936804),(4984,59340781),(4985,81027654),(4986,43215687),(4987,95721608),(4988,6213749),(4989,64903852),(4990,49531087),(4991,14793658),(4992,84567139),(4993,27610934),(4994,59673024),(4995,76305489),(4996,95786304),(4997,76401289),(4998,78620453),(4999,45093287),(5000,14368095),(5001,64529013),(5002,56029143),(5003,71468950),(5004,91568403),(5005,57390682),(5006,50716823),(5007,95471083),(5008,75128469),(5009,78132495),(5010,41503972),(5011,24790168),(5012,60278435),(5013,13062847),(5014,69721408),(5015,60537928),(5016,50948623),(5017,43298157),(5018,6514329),(5019,69504273),(5020,87241569),(5021,58304917),(5022,69312840),(5023,49016587),(5024,23410687),(5025,84905731),(5026,72485916),(5027,85149267),(5028,76403128),(5029,24610598),(5030,89127604),(5031,48576023),(5032,62578491),(5033,89340271),(5034,59768143),(5035,4978321),(5036,35106824),(5037,69482357),(5038,48726930),(5039,46057389),(5040,17083546),(5041,48706531),(5042,30914786),(5043,75698142),(5044,36725019),(5045,24170635),(5046,85072491),(5047,29714085),(5048,97640183),(5049,19835267),(5050,98234017),(5051,15286093),(5052,86734015),(5053,79246105),(5054,15036894),(5055,39681750),(5056,10268479),(5057,78051629),(5058,6512398),(5059,62503178),(5060,89563274),(5061,32469517),(5062,29045876),(5063,23596170),(5064,83527410),(5065,13920578),(5066,82197350),(5067,4935728),(5068,18294756),(5069,73421659),(5070,17529648),(5071,4538197),(5072,10428367),(5073,59012836),(5074,48635971),(5075,67145089),(5076,47035912),(5077,53674821),(5078,37298154),(5079,95734621),(5080,28931467),(5081,3754196),(5082,87561230),(5083,30687421),(5084,28690531),(5085,39078254),(5086,59416873),(5087,92385014),(5088,36519204),(5089,58679201),(5090,59027438),(5091,9135826),(5092,61853940),(5093,52039178),(5094,79608432),(5095,30172854),(5096,93286547),(5097,24160987),(5098,46203598),(5099,21957840),(5100,4162589),(5101,75284603),(5102,67841953),(5103,50362479),(5104,51487923),(5105,17806539),(5106,90382657),(5107,69410832),(5108,13059846),(5109,80572914),(5110,93240876),(5111,14092836),(5112,98403612),(5113,31467259),(5114,49385701),(5115,42167539),(5116,54792618),(5117,93427801),(5118,31496072),(5119,56830721),(5120,14207835),(5121,96170285),(5122,65803294),(5123,58246309),(5124,34256908),(5125,97645081),(5126,16530427),(5127,80657921),(5128,74398016),(5129,39241867),(5130,35186907),(5131,71936840),(5132,70856491),(5133,14905637),(5134,96742508),(5135,3852946),(5136,1329864),(5137,3726985),(5138,18029476),(5139,5421937),(5140,89461053),(5141,14279065),(5142,93627084),(5143,45921637),(5144,12548793),(5145,74539062),(5146,65423781),(5147,37162054),(5148,54972683),(5149,63094758),(5150,10362895),(5151,62539017),(5152,34071859),(5153,7846935),(5154,67385204),(5155,94270135),(5156,48527031),(5157,60253481),(5158,18347596),(5159,24690783),(5160,80721943),(5161,58941632),(5162,61437958),(5163,86132950),(5164,40376281),(5165,63187952),(5166,65947382),(5167,6281957),(5168,51967408),(5169,53962470),(5170,12347896),(5171,97185436),(5172,28764905),(5173,29173654),(5174,41078269),(5175,69815234),(5176,18034529),(5177,51098723),(5178,85402361),(5179,6274351),(5180,37258104),(5181,96384521),(5182,92083167),(5183,72653048),(5184,45810639),(5185,91832675),(5186,25041689),(5187,84037965),(5188,1526478),(5189,29105783),(5190,63705489),(5191,42650319),(5192,54826103),(5193,23184709),(5194,71038249),(5195,85960274),(5196,34816592),(5197,6591243),(5198,49352068),(5199,80956741),(5200,97503264),(5201,96830452),(5202,47398651),(5203,16428035),(5204,21397460),(5205,31058472),(5206,85239617),(5207,10683752),(5208,31826057),(5209,60817543),(5210,20187453),(5211,39816257),(5212,15432076),(5213,8792435),(5214,79406581),(5215,53812496),(5216,13658947),(5217,96315784),(5218,1263745),(5219,98763401),(5220,47039821),(5221,37168402),(5222,63412589),(5223,39168520),(5224,86523914),(5225,20734658),(5226,21054976),(5227,14025398),(5228,26935410),(5229,94036721),(5230,96452783),(5231,65943271),(5232,71249506),(5233,58219047),(5234,14276058),(5235,87053249),(5236,62370814),(5237,86295301),(5238,78310465),(5239,83190256),(5240,14960382),(5241,37846915),(5242,79684320),(5243,95718620),(5244,41573260),(5245,23785941),(5246,82039475),(5247,90378215),(5248,16293754),(5249,59670143),(5250,17493865),(5251,38704562),(5252,39728641),(5253,98365417),(5254,82361590),(5255,85943016),(5256,70812954),(5257,56328791),(5258,28194670),(5259,68275413),(5260,46927130),(5261,26953870),(5262,87916023),(5263,34197680),(5264,46712098),(5265,41596370),(5266,21869057),(5267,49630712),(5268,61954072),(5269,4167389),(5270,52607149),(5271,52074618),(5272,5739142),(5273,16938452),(5274,97380241),(5275,68513092),(5276,6529147),(5277,37918602),(5278,78209536),(5279,85130276),(5280,26854310),(5281,24379568),(5282,1328649),(5283,45012968),(5284,29316508),(5285,18094532),(5286,85749213),(5287,80672543),(5288,57630942),(5289,92548613),(5290,7421569),(5291,3217845),(5292,70581649),(5293,76845312),(5294,41035879),(5295,68935074),(5296,47093685),(5297,54016829),(5298,79521483),(5299,19260438),(5300,90632157),(5301,15360472),(5302,59401628),(5303,53082417),(5304,1895623),(5305,84059362),(5306,89567432),(5307,46038927),(5308,47129068),(5309,79340512),(5310,48071639),(5311,53820476),(5312,90268174),(5313,71936508),(5314,98637054),(5315,34815790),(5316,40263798),(5317,20876135),(5318,9185346),(5319,64312870),(5320,23578091),(5321,24937081),(5322,57134068),(5323,48230195),(5324,48173029),(5325,83019276),(5326,93275406),(5327,60487915),(5328,80917632),(5329,28509371),(5330,49536280),(5331,9451786),(5332,47592308),(5333,69374801),(5334,27940865),(5335,56802317),(5336,37460215),(5337,71205986),(5338,97086231),(5339,37015296),(5340,54023687),(5341,14973582),(5342,30964528),(5343,15802436),(5344,57893064),(5345,89435276),(5346,87629035),(5347,27085364),(5348,91750648),(5349,87561209),(5350,68715029),(5351,71803596),(5352,74619235),(5353,46985720),(5354,58047261),(5355,80625497),(5356,20574138),(5357,1654829),(5358,8763952),(5359,48692015),(5360,89031475),(5361,19047683),(5362,72910638),(5363,4136978),(5364,62048195),(5365,17295486),(5366,2734918),(5367,24630798),(5368,15073642),(5369,28763015),(5370,83125679),(5371,13746509),(5372,26057839),(5373,81759026),(5374,57139806),(5375,51897623),(5376,15096423),(5377,83974162),(5378,38209654),(5379,90467531),(5380,30852419),(5381,18526974),(5382,65049831),(5383,13490528),(5384,20346178),(5385,65139702),(5386,80693415),(5387,12768954),(5388,35491078),(5389,82137095),(5390,61920453),(5391,28074659),(5392,13407856),(5393,39501842),(5394,7283641),(5395,3614798),(5396,91085473),(5397,65249871),(5398,13947685),(5399,13240758),(5400,68743012),(5401,16329587),(5402,76230985),(5403,70168592),(5404,32698514),(5405,97562310),(5406,73152469),(5407,21480579),(5408,95867130),(5409,59821376),(5410,4251867),(5411,36824510),(5412,29384571),(5413,31485279),(5414,14203985),(5415,24513096),(5416,49803621),(5417,9457821),(5418,32410869),(5419,87154906),(5420,16587942),(5421,81520479),(5422,70921654),(5423,58029637),(5424,92648710),(5425,54196830),(5426,85431290),(5427,76480193),(5428,46902317),(5429,39612875),(5430,6723958),(5431,57024839),(5432,73459618),(5433,94502361),(5434,72850346),(5435,20973465),(5436,31052798),(5437,40796315),(5438,39061842),(5439,93015486),(5440,48502796),(5441,63214857),(5442,31692074),(5443,40763582),(5444,93785642),(5445,69051283),(5446,28469710),(5447,21973056),(5448,35674912),(5449,35610487),(5450,16293708),(5451,89543620),(5452,67138940),(5453,15832460),(5454,5946872),(5455,14532697),(5456,35087621),(5457,59326041),(5458,58742106),(5459,38715249),(5460,91406283),(5461,56830147),(5462,24785396),(5463,36491580),(5464,25067184),(5465,80569247),(5466,38570421),(5467,74283160),(5468,67138205),(5469,14328759),(5470,61739058),(5471,92730864),(5472,1984267),(5473,39251847),(5474,43897516),(5475,3789465),(5476,80317954),(5477,27869014),(5478,12078349),(5479,78652401),(5480,7251684),(5481,30548291),(5482,7452683),(5483,41023598),(5484,83024697),(5485,79104653),(5486,28146705),(5487,17948035),(5488,49103675),(5489,57126048),(5490,41960352),(5491,80475269),(5492,50174926),(5493,83954210),(5494,90374618),(5495,8254367),(5496,38796421),(5497,68471239),(5498,56739481),(5499,12078359),(5500,37192640),(5501,79146308),(5502,19465238),(5503,65738409),(5504,38071295),(5505,19302468),(5506,40781692),(5507,17254869),(5508,68941073),(5509,86725439),(5510,18647059),(5511,60794123),(5512,45329687),(5513,92174065),(5514,67140529),(5515,79061543),(5516,84059716),(5517,26534170),(5518,34789651),(5519,13596487),(5520,60124538),(5521,34586920),(5522,13047895),(5523,39572648),(5524,6421985),(5525,86497153),(5526,91206548),(5527,62514893),(5528,25198347),(5529,5198672),(5530,72945036),(5531,65417089),(5532,14638902),(5533,75260493),(5534,59804237),(5535,72610839),(5536,24810795),(5537,53270914),(5538,13528470),(5539,7462139),(5540,17640932),(5541,14320758),(5542,31069724),(5543,53028649),(5544,54389062),(5545,4239568),(5546,5246873),(5547,96123084),(5548,74126950),(5549,73251864),(5550,27490356),(5551,50417389),(5552,59783160),(5553,76280951),(5554,48502716),(5555,2591347),(5556,62917480),(5557,34179658),(5558,37860521),(5559,54963210),(5560,98421057),(5561,71654083),(5562,70591684),(5563,52019346),(5564,9567234),(5565,35768901),(5566,79624031),(5567,79561423),(5568,92410763),(5569,69254137),(5570,40956837),(5571,72950431),(5572,96450283),(5573,94062517),(5574,71059483),(5575,97253186),(5576,14598023),(5577,63251497),(5578,89304615),(5579,1457839),(5580,89650231),(5581,36798421),(5582,54817620),(5583,9347265),(5584,90453216),(5585,9736528),(5586,48309721),(5587,5374219),(5588,74906825),(5589,9823561),(5590,98215703),(5591,92548107),(5592,30965148),(5593,39586201),(5594,24609378),(5595,45180937),(5596,48701962),(5597,47091863),(5598,78609523),(5599,67890325),(5600,53610789),(5601,73019586),(5602,6859743),(5603,75403816),(5604,67810245),(5605,9415872),(5606,48563702),(5607,45608731),(5608,10735642),(5609,49150376),(5610,17892504),(5611,58729163),(5612,85407196),(5613,89320746),(5614,4973682),(5615,68407395),(5616,94307526),(5617,40981623),(5618,87409132),(5619,34756120),(5620,30126549),(5621,24593106),(5622,89625703),(5623,95361702),(5624,92680453),(5625,35071289),(5626,31289456),(5627,61305879),(5628,89634571),(5629,93461072),(5630,46518039),(5631,87035142),(5632,56217093),(5633,7186925),(5634,24736198),(5635,21487530),(5636,53960472),(5637,67259418),(5638,71456092),(5639,84916250),(5640,60892573),(5641,97306548),(5642,61273459),(5643,96234518),(5644,37154896),(5645,68423759),(5646,47196028),(5647,60981235),(5648,84532679),(5649,94176582),(5650,47619358),(5651,60281475),(5652,2197648),(5653,67234058),(5654,80962415),(5655,73615942),(5656,64981532),(5657,98670142),(5658,93452081),(5659,2478615),(5660,53870621),(5661,40517862),(5662,18596740),(5663,81537042),(5664,6154873),(5665,74561098),(5666,16047859),(5667,6721935),(5668,91276534),(5669,36705192),(5670,97602318),(5671,41362079),(5672,4865217),(5673,19327548),(5674,94071583),(5675,2346879),(5676,37824610),(5677,91483562),(5678,20546137),(5679,20584736),(5680,60475921),(5681,26548731),(5682,3754219),(5683,50392847),(5684,12468093),(5685,60594317),(5686,98403156),(5687,75023918),(5688,36174820),(5689,86920345),(5690,85362410),(5691,8462791),(5692,17042569),(5693,91578642),(5694,54692180),(5695,2847615),(5696,21390645),(5697,21978634),(5698,46027319),(5699,63217894),(5700,63279158),(5701,23510864),(5702,10895263),(5703,31950846),(5704,40981672),(5705,67328014),(5706,17042536),(5707,23547018),(5708,60594837),(5709,84057396),(5710,29516387),(5711,89154326),(5712,25091648),(5713,40251386),(5714,47295638),(5715,50864379),(5716,13065428),(5717,93840625),(5718,43215768),(5719,83164059),(5720,47920658),(5721,71840529),(5722,50843261),(5723,20934518),(5724,70829435),(5725,89756123),(5726,80972531),(5727,48921560),(5728,16092874),(5729,80746192),(5730,73061452),(5731,21930548),(5732,86024357),(5733,34067819),(5734,53987241),(5735,94567832),(5736,98025736),(5737,83456172),(5738,14386057),(5739,82539746),(5740,90746381),(5741,59174802),(5742,4527183),(5743,98013257),(5744,13574902),(5745,21950867),(5746,27013849),(5747,89250617),(5748,41275639),(5749,79103268),(5750,95016248),(5751,52069731),(5752,59736012),(5753,46580397),(5754,27186459),(5755,98724510),(5756,8657213),(5757,70962581),(5758,3958476),(5759,86241970),(5760,68571094),(5761,83926741),(5762,89231457),(5763,73902685),(5764,85264170),(5765,65412379),(5766,8216435),(5767,91638720),(5768,14297085),(5769,64851370),(5770,15726309),(5771,52108346),(5772,87152639),(5773,69853704),(5774,57802346),(5775,15298764),(5776,19862534),(5777,59346872),(5778,87615924),(5779,81724059),(5780,91235847),(5781,29710634),(5782,62943157),(5783,91472560),(5784,43670982),(5785,51692308),(5786,62593184),(5787,74623189),(5788,7645129),(5789,73829054),(5790,91475206),(5791,36128570),(5792,76354902),(5793,45930286),(5794,32976841),(5795,40178263),(5796,18632459),(5797,46925870),(5798,7146952),(5799,90724685),(5800,92375081),(5801,51376298),(5802,83451207),(5803,92470138),(5804,10237968),(5805,95742316),(5806,25109874),(5807,97815024),(5808,6421597),(5809,14376520),(5810,7264395),(5811,18692754),(5812,79065148),(5813,24056317),(5814,42067958),(5815,90538671),(5816,51364870),(5817,70652348),(5818,6759184),(5819,2918364),(5820,57142803),(5821,17395682),(5822,14809265),(5823,43698205),(5824,9864721),(5825,10297485),(5826,37649218),(5827,62498351),(5828,94752138),(5829,36729401),(5830,28940753),(5831,40678215),(5832,3158962),(5833,9216347),(5834,46759812),(5835,27819534),(5836,35790642),(5837,90172456),(5838,2965874),(5839,90542681),(5840,49286073),(5841,78456210),(5842,49062815),(5843,56803729),(5844,93084617),(5845,73019546),(5846,92018473),(5847,32514978),(5848,30487912),(5849,36419825),(5850,75462901),(5851,89260347),(5852,17942358),(5853,4768153),(5854,93182046),(5855,19325748),(5856,72546893),(5857,36049752),(5858,87320614),(5859,45380129),(5860,90523461),(5861,38629750),(5862,52630978),(5863,89574132),(5864,79154268),(5865,15726380),(5866,9264871),(5867,38210956),(5868,19340825),(5869,32764051),(5870,26498013),(5871,31685079),(5872,96245708),(5873,8245361),(5874,60452378),(5875,70463598),(5876,93245018),(5877,81903547),(5878,65140729),(5879,82619403),(5880,16593048),(5881,48567932),(5882,59342718),(5883,97415632),(5884,78320954),(5885,1469587),(5886,73182456),(5887,35021496),(5888,38541920),(5889,40352186),(5890,82047396),(5891,67981234),(5892,41237580),(5893,20143865),(5894,34152786),(5895,1596873),(5896,67329048),(5897,14362509),(5898,83972154),(5899,81360945),(5900,56730841),(5901,89452370),(5902,46509827),(5903,91528403),(5904,6394857),(5905,19260738),(5906,49287165),(5907,36851207),(5908,8342195),(5909,15349726),(5910,72891530),(5911,17564203),(5912,31846702),(5913,91270854),(5914,17695023),(5915,48791265),(5916,54720681),(5917,30248691),(5918,54723096),(5919,83924567),(5920,48215697),(5921,80376945),(5922,64791038),(5923,1527839),(5924,96248701),(5925,42135796),(5926,83946251),(5927,60413857),(5928,86071259),(5929,52473069),(5930,9235418),(5931,15072893),(5932,8127695),(5933,68391245),(5934,80723965),(5935,40195387),(5936,26540137),(5937,1648573),(5938,85324691),(5939,57268410),(5940,69031274),(5941,38429156),(5942,14652793),(5943,37562418),(5944,47520896),(5945,62517904),(5946,18263795),(5947,37821409),(5948,61082549),(5949,74318269),(5950,92758046),(5951,21650378),(5952,12930584),(5953,31580946),(5954,50761843),(5955,21384509),(5956,61203794),(5957,62540387),(5958,59647302),(5959,56238097),(5960,62859317),(5961,98203615),(5962,28391604),(5963,64209138),(5964,28715964),(5965,29784306),(5966,70952486),(5967,59084213),(5968,9276851),(5969,21896743),(5970,2645317),(5971,38174056),(5972,48910327),(5973,13569248),(5974,64158032),(5975,78503924),(5976,80124935),(5977,51390428),(5978,90461285),(5979,78250431),(5980,14076953),(5981,37492056),(5982,86370924),(5983,4319275),(5984,85049321),(5985,70832619),(5986,92630475),(5987,85490637),(5988,78291406),(5989,40352796),(5990,89754306),(5991,80723145),(5992,68520713),(5993,1847635),(5994,3714982),(5995,27439805),(5996,39120745),(5997,25069374),(5998,86794510),(5999,40596281);
/*!40000 ALTER TABLE `slug_info` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `website_traffic`
--
DROP TABLE IF EXISTS `website_traffic`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `website_traffic` (
`id` bigint(24) NOT NULL AUTO_INCREMENT,
`ipAddress` varchar(20) DEFAULT NULL,
`createTime` datetime DEFAULT NULL,
`operateSystem` varchar(20) DEFAULT NULL,
`browser` varchar(20) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=1230 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `website_traffic`
--
LOCK TABLES `website_traffic` WRITE;
/*!40000 ALTER TABLE `website_traffic` DISABLE KEYS */;
INSERT INTO `website_traffic` VALUES (1,'171.11.220.61','2016-05-18 18:04:50','Windows 7','Chrome'),(2,'117.136.36.199','2016-05-18 18:32:55','Android 6.x','Chrome Mobile'),(3,'93.158.216.145','2016-05-18 18:35:45','Unknown','Unknown'),(4,'120.24.251.13','2016-05-18 18:40:03','Unknown','Unknown'),(5,'115.29.112.160','2016-05-18 18:41:28','Unknown','Unknown'),(6,'222.186.55.226','2016-05-18 18:50:40','Windows 8','Internet Explorer 10'),(7,'120.194.82.142','2016-05-18 19:06:27','Windows 7','Chrome'),(8,'80.82.78.38','2016-05-18 19:36:08','Unknown','Mozilla'),(9,'117.136.36.61','2016-05-18 19:47:35','Android 6.x','Chrome Mobile'),(10,'115.239.228.202','2016-05-18 19:53:23','Windows 7','Internet Explorer 9'),(11,'106.120.121.156','2016-05-18 19:55:24','Windows 7','Firefox 25'),(12,'120.25.103.140','2016-05-18 20:30:40','Unknown','Unknown'),(13,'115.239.228.202','2016-05-18 21:03:47','Windows 7','Internet Explorer 9'),(14,'66.249.66.27','2016-05-18 21:12:01','Unknown','Robot/Spider'),(15,'66.249.66.24','2016-05-18 21:12:02','Unknown','Robot/Spider'),(16,'120.194.82.142','2016-05-18 21:16:35','Windows 7','Chrome'),(17,'61.135.190.102','2016-05-18 22:05:57','iOS 5 (iPhone)','Mobile Safari'),(18,'61.135.190.105','2016-05-18 22:05:57','iOS 5 (iPhone)','Mobile Safari'),(19,'213.246.45.128','2016-05-18 22:09:31','Unknown','Mozilla'),(20,'222.186.55.226','2016-05-18 22:11:22','Windows 8','Internet Explorer 10'),(21,'61.135.190.223','2016-05-18 22:14:18','Windows 7','Chrome 36'),(22,'61.160.195.222','2016-05-18 22:31:39','Windows 7','Internet Explorer 9'),(23,'115.239.228.202','2016-05-18 23:24:56','Windows 7','Internet Explorer 9'),(24,'80.82.78.38','2016-05-18 23:36:39','Unknown','Mozilla'),(25,'61.157.96.193','2016-05-18 23:51:56','Windows 7','Internet Explorer 10'),(26,'222.186.55.226','2016-05-18 23:52:26','Windows 8','Internet Explorer 10'),(27,'180.153.6.103','2016-05-18 23:58:11','iOS 4 (iPhone)','Mobile Safari'),(28,'113.105.95.122','2016-05-18 23:58:11','Android 4.x','Mobile Safari'),(29,'183.60.15.20','2016-05-18 23:58:13','Windows 7','Internet Explorer 9'),(30,'101.226.33.218','2016-05-18 23:58:13','Android 4.x','Mobile Safari'),(31,'171.11.220.61','2016-05-18 23:58:15','Windows 7','Chrome'),(32,'14.130.86.113','2016-05-18 23:58:19','iOS 9 (iPhone)','Apple WebKit'),(33,'14.17.29.92','2016-05-18 23:58:36','Android 4.x','Mobile Safari'),(34,'223.104.19.218','2016-05-19 00:02:25','Android 6.x','Chrome 37'),(35,'183.60.35.29','2016-05-19 00:02:32','Android 4.x','Mobile Safari'),(36,'104.250.146.212','2016-05-19 00:27:58','Windows 7','Chrome'),(37,'123.151.42.61','2016-05-19 00:31:39','Unknown','Unknown'),(38,'115.239.228.202','2016-05-19 00:35:08','Windows 7','Internet Explorer 9'),(39,'120.194.82.150','2016-05-19 00:55:44','iOS 9 (iPhone)','Apple WebKit'),(40,'171.11.220.61','2016-05-19 01:06:20','Windows 7','Chrome'),(41,'115.239.228.202','2016-05-19 01:45:36','Windows 7','Internet Explorer 9'),(42,'80.82.78.38','2016-05-19 01:49:35','Unknown','Mozilla'),(43,'222.186.129.226','2016-05-19 02:49:36','Windows 7','Internet Explorer 9'),(44,'115.239.228.202','2016-05-19 02:56:24','Windows 7','Internet Explorer 9'),(45,'80.82.78.38','2016-05-19 03:30:53','Unknown','Mozilla'),(46,'84.211.207.125','2016-05-19 03:53:16','Unknown','Unknown'),(47,'115.239.228.202','2016-05-19 04:06:35','Windows 7','Internet Explorer 9'),(48,'118.193.27.2','2016-05-19 04:21:27','Unknown','Unknown'),(49,'106.185.47.161','2016-05-19 04:24:09','Unknown','Mozilla'),(50,'13.91.50.137','2016-05-19 04:29:29','Unknown','Unknown'),(51,'172.82.166.210','2016-05-19 04:37:53','Unknown','Mozilla'),(52,'216.38.216.197','2016-05-19 04:42:19','Mac OS X','Chrome 13'),(53,'115.239.228.202','2016-05-19 05:16:58','Windows 7','Internet Explorer 9'),(54,'106.120.173.129','2016-05-19 05:24:47','Unknown','Robot/Spider'),(55,'123.59.59.52','2016-05-19 05:34:30','Windows 7','Firefox 29'),(56,'80.82.78.38','2016-05-19 05:49:03','Unknown','Mozilla'),(57,'115.239.228.202','2016-05-19 06:27:41','Windows 7','Internet Explorer 9'),(58,'93.158.203.166','2016-05-19 06:29:53','Unknown','Unknown'),(59,'23.251.63.45','2016-05-19 06:44:27','Windows XP','Internet Explorer 6'),(60,'121.42.0.34','2016-05-19 07:04:19','Unknown','Robot/Spider'),(61,'80.82.78.38','2016-05-19 07:32:54','Unknown','Mozilla'),(62,'115.239.228.202','2016-05-19 07:38:09','Windows 7','Internet Explorer 9'),(63,'121.42.0.33','2016-05-19 07:42:58','Unknown','Robot/Spider'),(64,'208.80.192.33','2016-05-19 08:00:44','Windows XP','Opera'),(65,'123.125.71.91','2016-05-19 08:39:29','Unknown','Robot/Spider'),(66,'115.239.228.202','2016-05-19 08:48:38','Windows 7','Internet Explorer 9'),(67,'23.251.63.45','2016-05-19 08:49:07','Windows XP','Internet Explorer 6'),(68,'121.42.0.33','2016-05-19 08:51:46','Unknown','Robot/Spider'),(69,'222.85.130.130','2016-05-19 09:15:37','Windows 10','Chrome 38'),(70,'144.76.61.6','2016-05-19 09:38:11','Windows 8','Chrome 35'),(71,'80.82.78.38','2016-05-19 09:52:18','Unknown','Mozilla'),(72,'27.17.29.181','2016-05-19 09:58:20','Windows 8','Chrome 38'),(73,'61.157.96.193','2016-05-19 10:51:11','Windows 7','Internet Explorer 10'),(74,'213.246.45.128','2016-05-19 11:04:09','Unknown','Mozilla'),(75,'115.239.228.202','2016-05-19 11:09:42','Windows 7','Internet Explorer 9'),(76,'101.95.128.50','2016-05-19 11:13:32','Windows 7','Chrome'),(77,'116.226.150.47','2016-05-19 11:18:05','Mac OS X','Safari 9'),(78,'80.82.78.38','2016-05-19 11:35:47','Unknown','Mozilla'),(79,'115.239.228.202','2016-05-19 12:19:50','Windows 7','Internet Explorer 9'),(80,'123.151.42.61','2016-05-19 12:31:36','Unknown','Unknown'),(81,'222.186.34.83','2016-05-19 12:45:28','Windows XP','Internet Explorer 6'),(82,'106.120.173.129','2016-05-19 12:45:58','Unknown','Robot/Spider'),(83,'213.246.45.128','2016-05-19 12:45:58','Unknown','Mozilla'),(84,'101.226.64.174','2016-05-19 13:19:32','iOS 4 (iPhone)','Mobile Safari'),(85,'23.251.63.45','2016-05-19 13:28:58','Windows XP','Internet Explorer 6'),(86,'115.239.228.202','2016-05-19 13:30:55','Windows 7','Internet Explorer 9'),(87,'115.239.228.202','2016-05-19 14:43:37','Windows 7','Internet Explorer 9'),(88,'222.186.3.103','2016-05-19 14:46:43','Windows XP','Internet Explorer 6'),(89,'222.186.23.112','2016-05-19 15:31:10','Windows','Unknown'),(90,'80.82.78.38','2016-05-19 15:38:32','Unknown','Mozilla'),(91,'120.26.55.211','2016-05-19 15:51:48','Unknown','Unknown'),(92,'115.239.228.202','2016-05-19 15:56:36','Windows 7','Internet Explorer 9'),(93,'115.239.228.202','2016-05-19 17:08:07','Windows 7','Internet Explorer 9'),(94,'213.246.45.128','2016-05-19 17:35:48','Unknown','Mozilla'),(95,'80.82.78.38','2016-05-19 17:58:34','Unknown','Mozilla'),(96,'115.239.228.202','2016-05-19 18:20:20','Windows 7','Internet Explorer 9'),(97,'23.251.63.45','2016-05-19 18:42:00','Windows XP','Internet Explorer 6'),(98,'91.196.50.33','2016-05-19 18:44:56','Windows XP','Firefox 31'),(99,'158.69.228.18','2016-05-19 19:02:45','Android','Firefox 5'),(100,'171.11.220.61','2016-05-19 19:07:12','Windows 7','Chrome'),(101,'107.150.87.47','2016-05-19 19:09:22','Windows 8','Firefox 35'),(102,'172.82.166.210','2016-05-19 19:11:53','Unknown','Mozilla'),(103,'80.82.78.38','2016-05-19 19:43:23','Unknown','Mozilla'),(104,'61.157.96.193','2016-05-19 20:04:44','Windows 7','Internet Explorer 10'),(105,'106.120.121.158','2016-05-19 20:30:42','Windows 7','Firefox 25'),(106,'115.239.228.202','2016-05-19 20:45:48','Windows 7','Internet Explorer 9'),(107,'106.120.173.129','2016-05-19 20:59:34','Unknown','Robot/Spider'),(108,'115.239.228.202','2016-05-19 21:58:18','Windows 7','Internet Explorer 9'),(109,'80.82.78.38','2016-05-19 22:01:54','Unknown','Mozilla'),(110,'115.239.228.202','2016-05-19 23:10:21','Windows 7','Internet Explorer 9'),(111,'61.157.96.193','2016-05-19 23:45:07','Windows 7','Internet Explorer 10'),(112,'80.82.78.38','2016-05-19 23:45:50','Unknown','Mozilla'),(113,'172.82.166.210','2016-05-20 00:01:27','Unknown','Mozilla'),(114,'23.251.63.45','2016-05-20 00:06:29','Windows XP','Internet Explorer 6'),(115,'139.196.201.81','2016-05-20 00:22:59','Windows 8','Internet Explorer 10'),(116,'115.239.228.202','2016-05-20 00:23:42','Windows 7','Internet Explorer 9'),(117,'114.119.40.120','2016-05-20 00:30:10','Windows XP','Internet Explorer 6'),(118,'123.151.42.61','2016-05-20 01:26:14','Unknown','Unknown'),(119,'115.239.228.202','2016-05-20 01:37:01','Windows 7','Internet Explorer 9'),(120,'172.82.166.210','2016-05-20 01:42:24','Unknown','Mozilla'),(121,'120.132.50.135','2016-05-20 01:54:58','Windows 7','Firefox 29'),(122,'80.82.78.38','2016-05-20 02:00:14','Unknown','Mozilla'),(123,'36.110.147.103','2016-05-20 02:21:47','Linux','Safari'),(124,'139.196.201.81','2016-05-20 02:43:54','Windows 8','Internet Explorer 10'),(125,'58.221.62.81','2016-05-20 02:47:24','Windows','Unknown'),(126,'157.55.39.50','2016-05-20 03:08:56','Unknown','Robot/Spider'),(127,'61.157.96.193','2016-05-20 03:26:13','Windows 7','Internet Explorer 10'),(128,'80.82.78.38','2016-05-20 03:37:46','Unknown','Mozilla'),(129,'115.239.228.202','2016-05-20 05:16:05','Windows 7','Internet Explorer 9'),(130,'120.27.128.245','2016-05-20 05:27:28','Windows 8','Internet Explorer 10'),(131,'122.224.153.106','2016-05-20 05:30:27','Unknown','Unknown'),(132,'80.82.78.38','2016-05-20 05:49:03','Unknown','Mozilla'),(133,'42.120.161.94','2016-05-20 06:01:52','Unknown','Robot/Spider'),(134,'198.27.69.229','2016-05-20 06:07:22','Windows 8.1','Chrome 39'),(135,'91.236.75.4','2016-05-20 06:09:59','Windows XP','Internet Explorer 6'),(136,'172.82.166.210','2016-05-20 06:22:09','Unknown','Mozilla'),(137,'208.80.192.33','2016-05-20 06:55:49','Windows XP','Internet Explorer 6'),(138,'121.42.0.35','2016-05-20 07:02:14','Unknown','Robot/Spider'),(139,'80.82.78.38','2016-05-20 07:27:39','Unknown','Mozilla'),(140,'115.239.228.202','2016-05-20 07:43:01','Windows 7','Internet Explorer 9'),(141,'222.186.21.195','2016-05-20 08:32:23','Windows XP','Internet Explorer 6'),(142,'123.125.71.14','2016-05-20 08:41:23','Unknown','Robot/Spider'),(143,'116.236.146.22','2016-05-20 08:44:16','Unknown','Unknown'),(144,'121.42.0.34','2016-05-20 08:46:31','Unknown','Robot/Spider'),(145,'80.82.78.38','2016-05-20 09:42:23','Unknown','Mozilla'),(146,'61.157.96.193','2016-05-20 10:44:22','Windows 7','Internet Explorer 10'),(147,'121.42.0.89','2016-05-20 10:52:00','Unknown','Unknown'),(148,'139.196.201.81','2016-05-20 11:08:20','Windows 8','Internet Explorer 10'),(149,'94.102.51.38','2016-05-20 11:16:18','Windows 7','Firefox 31'),(150,'115.239.228.202','2016-05-20 11:22:13','Windows 7','Internet Explorer 9'),(151,'80.82.78.38','2016-05-20 11:26:03','Unknown','Mozilla'),(152,'112.74.131.107','2016-05-20 11:47:48','Unknown','Mozilla'),(153,'1.202.147.194','2016-05-20 11:56:19','Windows 7','Internet Explorer 9'),(154,'115.239.228.202','2016-05-20 12:34:33','Windows 7','Internet Explorer 9'),(155,'213.246.45.128','2016-05-20 12:54:30','Unknown','Mozilla'),(156,'157.55.39.145','2016-05-20 13:05:49','Unknown','Robot/Spider'),(157,'185.25.148.240','2016-05-20 13:11:30','Windows XP','Firefox 31'),(158,'121.43.115.102','2016-05-20 13:23:25','Unknown','Unknown'),(159,'123.151.42.61','2016-05-20 13:25:10','Unknown','Unknown'),(160,'80.82.78.38','2016-05-20 13:46:35','Unknown','Mozilla'),(161,'61.157.96.193','2016-05-20 14:23:09','Windows 7','Internet Explorer 10'),(162,'116.236.146.22','2016-05-20 14:24:02','Windows XP','Internet Explorer 6'),(163,'172.82.166.210','2016-05-20 14:34:41','Unknown','Mozilla'),(164,'115.239.228.202','2016-05-20 15:01:09','Windows 7','Internet Explorer 9'),(165,'158.69.228.18','2016-05-20 15:24:54','Windows 7','Firefox 25'),(166,'114.119.40.120','2016-05-20 15:32:14','Windows XP','Internet Explorer 6'),(167,'222.186.56.108','2016-05-20 16:00:21','Windows','Unknown'),(168,'115.239.228.202','2016-05-20 16:14:17','Windows 7','Internet Explorer 9'),(169,'106.120.173.129','2016-05-20 17:22:20','Unknown','Robot/Spider'),(170,'115.239.228.202','2016-05-20 17:27:05','Windows 7','Internet Explorer 9'),(171,'120.26.55.211','2016-05-20 17:28:06','Unknown','Unknown'),(172,'121.43.115.102','2016-05-20 17:33:39','Unknown','Unknown'),(173,'80.82.78.38','2016-05-20 17:49:43','Unknown','Mozilla'),(174,'106.120.121.157','2016-05-20 18:33:15','Windows XP','Internet Explorer 6'),(175,'115.239.228.202','2016-05-20 18:39:27','Windows 7','Internet Explorer 9'),(176,'185.49.14.190','2016-05-20 18:50:00','Windows XP','Firefox 31'),(177,'172.82.166.210','2016-05-20 19:24:23','Unknown','Mozilla'),(178,'80.82.78.38','2016-05-20 19:34:41','Unknown','Mozilla'),(179,'36.251.86.93','2016-05-20 19:45:22','Windows 7','Chrome 21'),(180,'119.147.207.158','2016-05-20 20:04:42','iOS 4 (iPhone)','Mobile Safari'),(181,'180.153.206.36','2016-05-20 20:04:43','Android 4.x','Mobile Safari'),(182,'14.17.34.189','2016-05-20 20:04:44','Android 4.x','Mobile Safari'),(183,'1.196.19.20','2016-05-20 20:28:11','Windows XP','Chrome 45'),(184,'171.11.220.61','2016-05-20 20:32:12','Android 6.x','Chrome Mobile'),(185,'112.74.131.107','2016-05-20 20:33:02','Unknown','Mozilla'),(186,'115.239.228.202','2016-05-20 21:04:56','Windows 7','Internet Explorer 9'),(187,'172.82.166.210','2016-05-20 21:05:59','Unknown','Mozilla'),(188,'101.200.126.60','2016-05-20 21:09:48','Windows Vista','Internet Explorer 9'),(189,'61.157.96.193','2016-05-20 21:44:59','Windows 7','Internet Explorer 10'),(190,'80.82.78.38','2016-05-20 21:54:44','Unknown','Mozilla'),(191,'115.239.228.202','2016-05-20 22:17:54','Windows 7','Internet Explorer 9'),(192,'216.99.154.178','2016-05-20 22:33:54','Mac OS X','Firefox'),(193,'171.11.220.61','2016-05-20 22:48:32','Windows 7','Chrome'),(194,'122.224.153.106','2016-05-20 23:00:39','Unknown','Unknown'),(195,'115.239.228.202','2016-05-20 23:30:47','Windows 7','Internet Explorer 9'),(196,'80.82.78.38','2016-05-20 23:38:27','Unknown','Mozilla'),(197,'222.186.34.83','2016-05-20 23:38:27','Windows XP','Internet Explorer 6'),(198,'104.250.146.212','2016-05-21 00:23:00','Windows 7','Chrome'),(199,'219.82.201.126','2016-05-21 00:28:52','Mac OS X','Chrome'),(200,'66.249.79.83','2016-05-21 00:36:54','Unknown','Robot/Spider'),(201,'66.249.79.85','2016-05-21 00:36:55','Android 6.x','Chrome Mobile'),(202,'115.239.228.202','2016-05-21 00:43:33','Windows 7','Internet Explorer 9'),(203,'121.42.0.64','2016-05-21 00:59:51','Windows 7','Internet Explorer 8'),(204,'121.42.0.72','2016-05-21 00:59:52','Mac OS X','Firefox 41'),(205,'121.42.0.72','2016-05-21 00:59:52','Mac OS X','Firefox 41'),(206,'121.42.0.72','2016-05-21 00:59:52','Mac OS X','Firefox 41'),(207,'60.249.19.150','2016-05-21 01:08:12','Unknown','Mozilla'),(208,'61.130.145.199','2016-05-21 01:10:27','Unknown','Unknown'),(209,'161.69.163.20','2016-05-21 01:48:23','Windows 7','Firefox 29'),(210,'115.239.228.202','2016-05-21 01:55:31','Windows 7','Internet Explorer 9'),(211,'80.82.78.38','2016-05-21 01:55:35','Unknown','Mozilla'),(212,'123.151.42.61','2016-05-21 02:06:31','Unknown','Unknown'),(213,'115.239.228.202','2016-05-21 03:08:21','Windows 7','Internet Explorer 9'),(214,'106.187.102.237','2016-05-21 03:13:07','Windows 98','Internet Explorer'),(215,'222.186.58.140','2016-05-21 03:21:54','Windows','Unknown'),(216,'213.246.45.128','2016-05-21 03:31:36','Unknown','Mozilla'),(217,'121.42.0.67','2016-05-21 03:33:08','Windows 7','Internet Explorer 8'),(218,'121.42.0.80','2016-05-21 03:33:09','Mac OS X','Firefox 41'),(219,'121.42.0.80','2016-05-21 03:33:09','Mac OS X','Firefox 41'),(220,'121.42.0.80','2016-05-21 03:33:09','Mac OS X','Firefox 41'),(221,'115.239.228.202','2016-05-21 04:20:36','Windows 7','Internet Explorer 9'),(222,'141.212.122.193','2016-05-21 04:22:03','Unknown','Unknown'),(223,'89.163.145.224','2016-05-21 04:34:38','Unknown','Unknown'),(224,'61.157.96.193','2016-05-21 05:07:00','Windows 7','Internet Explorer 10'),(225,'101.200.78.64','2016-05-21 05:41:56','Unknown','Unknown'),(226,'84.211.207.125','2016-05-21 06:30:59','Unknown','Unknown'),(227,'137.226.113.4','2016-05-21 06:36:19','Unknown','Unknown'),(228,'124.117.230.39','2016-05-21 06:39:52','Windows 7','Chrome 46'),(229,'115.239.228.202','2016-05-21 06:45:39','Windows 7','Internet Explorer 9'),(230,'66.249.79.83','2016-05-21 06:54:26','Android 6.x','Chrome Mobile'),(231,'121.42.0.33','2016-05-21 07:02:02','Unknown','Robot/Spider'),(232,'66.249.79.182','2016-05-21 07:06:13','Unknown','Robot/Spider'),(233,'66.249.79.175','2016-05-21 07:06:15','Unknown','Robot/Spider'),(234,'66.249.79.168','2016-05-21 07:06:16','Unknown','Robot/Spider'),(235,'208.80.194.120','2016-05-21 07:15:30','Ubuntu','Chrome 12'),(236,'80.82.78.38','2016-05-21 07:40:11','Unknown','Mozilla'),(237,'121.42.0.34','2016-05-21 07:47:03','Unknown','Robot/Spider'),(238,'122.224.153.106','2016-05-21 07:55:22','Unknown','Unknown'),(239,'172.82.166.210','2016-05-21 08:16:55','Unknown','Mozilla'),(240,'61.157.96.193','2016-05-21 08:46:25','Windows 7','Internet Explorer 10'),(241,'106.38.241.101','2016-05-21 09:27:37','Unknown','Robot/Spider'),(242,'121.42.0.30','2016-05-21 09:35:32','Unknown','Unknown'),(243,'172.82.166.210','2016-05-21 09:58:28','Unknown','Mozilla'),(244,'80.82.78.38','2016-05-21 10:00:07','Unknown','Mozilla'),(245,'42.156.136.52','2016-05-21 11:14:07','Unknown','Robot/Spider'),(246,'42.156.138.52','2016-05-21 11:16:42','Unknown','Robot/Spider'),(247,'42.120.160.52','2016-05-21 11:19:30','Unknown','Robot/Spider'),(248,'219.82.201.126','2016-05-21 11:36:09','Mac OS X','Chrome'),(249,'115.239.228.202','2016-05-21 11:37:19','Windows 7','Internet Explorer 9'),(250,'80.82.78.38','2016-05-21 11:45:17','Unknown','Mozilla'),(251,'180.76.15.148','2016-05-21 11:52:23','Windows XP','Firefox 6'),(252,'61.157.96.193','2016-05-21 12:25:18','Windows 7','Internet Explorer 10'),(253,'115.239.228.202','2016-05-21 12:49:25','Windows 7','Internet Explorer 9'),(254,'66.249.79.87','2016-05-21 13:30:56','Unknown','Robot/Spider'),(255,'66.249.79.83','2016-05-21 13:30:56','Android 6.x','Chrome Mobile'),(256,'122.224.153.106','2016-05-21 13:44:47','Unknown','Unknown'),(257,'123.151.42.61','2016-05-21 13:59:13','Unknown','Unknown'),(258,'80.82.78.38','2016-05-21 14:06:09','Unknown','Mozilla'),(259,'213.246.45.128','2016-05-21 14:46:47','Unknown','Mozilla'),(260,'111.50.76.155','2016-05-21 15:03:12','Unknown','Unknown'),(261,'106.185.47.161','2016-05-21 15:13:40','Unknown','Mozilla'),(262,'91.196.50.33','2016-05-21 15:32:29','Windows XP','Firefox 31'),(263,'158.69.228.18','2016-05-21 15:42:40','Windows 8','Chrome 32'),(264,'80.82.78.38','2016-05-21 15:50:51','Unknown','Mozilla'),(265,'61.157.96.193','2016-05-21 16:05:40','Windows 7','Internet Explorer 10'),(266,'122.224.153.106','2016-05-21 16:22:45','Unknown','Unknown'),(267,'213.246.45.128','2016-05-21 16:28:30','Unknown','Mozilla'),(268,'104.250.146.212','2016-05-21 17:29:40','Windows 7','Chrome'),(269,'219.82.201.126','2016-05-21 17:34:08','Mac OS X','Chrome'),(270,'185.25.151.159','2016-05-21 17:48:33','Windows XP','Firefox 31'),(271,'220.181.108.181','2016-05-21 18:03:09','Unknown','Robot/Spider'),(272,'123.125.71.19','2016-05-21 18:07:35','Unknown','Robot/Spider'),(273,'123.125.71.42','2016-05-21 18:07:36','Unknown','Robot/Spider'),(274,'80.82.78.38','2016-05-21 18:11:02','Unknown','Mozilla'),(275,'111.13.102.6','2016-05-21 18:21:42','Unknown','Robot/Spider'),(276,'219.82.201.126','2016-05-21 18:34:16','Mac OS X','Chrome'),(277,'123.125.71.26','2016-05-21 18:40:56','Unknown','Robot/Spider'),(278,'123.125.71.52','2016-05-21 18:40:56','Unknown','Robot/Spider'),(279,'42.156.138.103','2016-05-21 18:44:08','Unknown','Robot/Spider'),(280,'42.156.139.103','2016-05-21 18:44:52','Unknown','Robot/Spider'),(281,'161.69.163.20','2016-05-21 18:59:17','Windows 7','Firefox 29'),(282,'104.250.146.212','2016-05-21 19:00:11','Windows 7','Chrome'),(283,'120.194.82.142','2016-05-21 19:18:28','Windows 7','Chrome'),(284,'219.82.201.126','2016-05-21 19:34:35','Mac OS X','Chrome'),(285,'223.65.190.122','2016-05-21 19:41:28','Windows 7','Internet Explorer 7'),(286,'61.157.96.193','2016-05-21 19:48:34','Windows 7','Internet Explorer 10'),(287,'80.82.78.38','2016-05-21 19:56:18','Unknown','Mozilla'),(288,'69.64.34.137','2016-05-21 19:59:32','Windows XP','Firefox 9'),(289,'120.194.82.142','2016-05-21 20:52:07','Windows 7','Chrome'),(290,'5.178.86.74','2016-05-21 21:02:44','Windows XP','Internet Explorer 8'),(291,'172.82.166.210','2016-05-21 21:18:04','Unknown','Mozilla'),(292,'115.239.239.70','2016-05-21 21:38:02','Windows XP','Internet Explorer 6'),(293,'80.82.78.38','2016-05-21 22:17:36','Unknown','Mozilla'),(294,'171.11.220.61','2016-05-21 22:22:21','Windows 7','Chrome'),(295,'213.246.45.128','2016-05-21 22:52:13','Unknown','Mozilla'),(296,'103.240.16.119','2016-05-21 23:04:21','Windows 7','Mozilla'),(297,'103.240.16.119','2016-05-21 23:04:21','Windows 7','Mozilla'),(298,'61.157.96.193','2016-05-21 23:28:25','Windows 7','Internet Explorer 10'),(299,'80.82.78.38','2016-05-22 00:01:31','Unknown','Mozilla'),(300,'121.42.0.60','2016-05-22 00:29:07','Windows 7','Internet Explorer 8'),(301,'121.42.0.74','2016-05-22 00:29:08','Mac OS X','Firefox 41'),(302,'121.42.0.74','2016-05-22 00:29:08','Mac OS X','Firefox 41'),(303,'121.42.0.74','2016-05-22 00:29:08','Mac OS X','Firefox 41'),(304,'123.56.233.113','2016-05-22 00:38:07','Unknown','Unknown'),(305,'23.251.63.45','2016-05-22 00:50:45','Windows XP','Internet Explorer 6'),(306,'80.82.78.38','2016-05-22 02:09:34','Unknown','Mozilla'),(307,'61.157.96.193','2016-05-22 03:08:44','Windows 7','Internet Explorer 10'),(308,'107.150.32.62','2016-05-22 03:22:00','Windows 7','Internet Explorer 8'),(309,'121.42.0.60','2016-05-22 03:34:10','Windows 7','Internet Explorer 8'),(310,'121.42.0.81','2016-05-22 03:34:54','Mac OS X','Firefox 41'),(311,'121.42.0.81','2016-05-22 03:34:54','Mac OS X','Firefox 41'),(312,'121.42.0.81','2016-05-22 03:34:54','Mac OS X','Firefox 41'),(313,'213.246.45.128','2016-05-22 03:42:44','Unknown','Mozilla'),(314,'80.82.78.38','2016-05-22 03:53:28','Unknown','Mozilla'),(315,'115.239.228.202','2016-05-22 03:55:56','Windows 7','Internet Explorer 9'),(316,'122.224.153.106','2016-05-22 03:57:03','Unknown','Unknown'),(317,'123.151.42.61','2016-05-22 04:54:56','Unknown','Unknown'),(318,'217.96.174.119','2016-05-22 05:03:12','Linux','Unknown'),(319,'213.246.45.128','2016-05-22 05:24:34','Unknown','Mozilla'),(320,'80.82.78.38','2016-05-22 06:12:29','Unknown','Mozilla'),(321,'61.157.96.193','2016-05-22 06:47:37','Windows 7','Internet Explorer 10'),(322,'121.42.0.35','2016-05-22 07:03:11','Unknown','Robot/Spider'),(323,'69.30.226.101','2016-05-22 07:14:19','Windows 7','Internet Explorer 8'),(324,'161.69.163.20','2016-05-22 07:16:48','Windows 7','Firefox 29'),(325,'208.80.194.122','2016-05-22 07:25:44','Ubuntu','Firefox 3'),(326,'123.56.65.139','2016-05-22 07:42:36','Unknown','Unknown'),(327,'121.42.0.33','2016-05-22 07:47:48','Unknown','Robot/Spider'),(328,'122.224.153.106','2016-05-22 07:54:23','Unknown','Unknown'),(329,'80.82.78.38','2016-05-22 07:56:10','Unknown','Mozilla'),(330,'121.42.0.87','2016-05-22 08:22:25','Unknown','Unknown'),(331,'121.42.0.33','2016-05-22 09:01:39','Unknown','Robot/Spider'),(332,'122.224.153.106','2016-05-22 09:01:45','Unknown','Unknown'),(333,'112.74.206.117','2016-05-22 09:13:52','Unknown','Unknown'),(334,'120.194.193.15','2016-05-22 09:52:52','Windows','Unknown'),(335,'106.185.47.161','2016-05-22 09:59:41','Unknown','Mozilla'),(336,'172.82.166.210','2016-05-22 10:07:38','Unknown','Mozilla'),(337,'80.82.78.38','2016-05-22 10:15:53','Unknown','Mozilla'),(338,'115.239.228.202','2016-05-22 10:24:43','Windows 7','Internet Explorer 9'),(339,'23.251.63.45','2016-05-22 11:28:41','Windows XP','Internet Explorer 6'),(340,'213.246.45.128','2016-05-22 11:49:07','Unknown','Mozilla'),(341,'80.82.78.38','2016-05-22 12:02:00','Unknown','Mozilla'),(342,'171.11.215.60','2016-05-22 12:28:04','Android 6.x','Chrome Mobile'),(343,'115.239.239.70','2016-05-22 12:49:51','Windows XP','Internet Explorer 6'),(344,'60.249.19.150','2016-05-22 13:16:48','Unknown','Mozilla'),(345,'185.25.151.159','2016-05-22 13:20:09','Windows XP','Firefox 31'),(346,'123.59.59.52','2016-05-22 13:48:00','Windows 7','Firefox 29'),(347,'61.157.96.193','2016-05-22 14:07:15','Windows 7','Internet Explorer 10'),(348,'141.8.142.55','2016-05-22 14:12:14','Unknown','Robot/Spider'),(349,'23.251.63.45','2016-05-22 15:15:57','Windows XP','Internet Explorer 6'),(350,'120.27.128.245','2016-05-22 15:33:22','Windows 8','Internet Explorer 10'),(351,'13.92.236.59','2016-05-22 15:39:32','Unknown','Robot/Spider'),(352,'123.125.71.113','2016-05-22 15:50:12','Unknown','Robot/Spider'),(353,'80.82.78.38','2016-05-22 15:58:11','Unknown','Mozilla'),(354,'172.82.166.210','2016-05-22 16:36:46','Unknown','Mozilla'),(355,'112.74.206.117','2016-05-22 16:44:47','Unknown','Unknown'),(356,'115.239.228.202','2016-05-22 16:53:29','Windows 7','Internet Explorer 9'),(357,'202.108.211.59','2016-05-22 16:59:37','Windows 10','Chrome 49'),(358,'69.30.198.150','2016-05-22 17:02:06','Windows 7','Internet Explorer 8'),(359,'123.151.42.61','2016-05-22 17:04:02','Unknown','Unknown'),(360,'185.25.151.159','2016-05-22 17:31:52','Windows XP','Firefox 31'),(361,'61.157.96.193','2016-05-22 17:48:27','Windows 7','Internet Explorer 10'),(362,'123.151.42.61','2016-05-22 18:13:15','Unknown','Unknown'),(363,'123.125.71.86','2016-05-22 18:14:12','Unknown','Robot/Spider'),(364,'123.56.233.103','2016-05-22 18:21:58','Unknown','Unknown'),(365,'120.210.180.136','2016-05-22 18:28:33','Windows 7','Internet Explorer 9'),(366,'74.91.20.195','2016-05-22 18:42:32','Windows 7','Internet Explorer 8'),(367,'115.28.70.168','2016-05-22 18:55:12','Windows 7','Internet Explorer 9'),(368,'115.239.239.70','2016-05-22 19:12:42','Windows XP','Internet Explorer 6'),(369,'120.194.82.142','2016-05-22 20:24:18','Windows 7','Chrome'),(370,'115.239.228.202','2016-05-22 20:46:06','Windows 7','Internet Explorer 9'),(371,'222.186.34.83','2016-05-22 21:18:10','Windows XP','Internet Explorer 6'),(372,'106.120.173.129','2016-05-22 21:22:02','Unknown','Robot/Spider'),(373,'61.157.96.193','2016-05-22 21:27:40','Windows 7','Internet Explorer 10'),(374,'91.78.4.50','2016-05-22 21:46:24','Windows 7','Firefox 25'),(375,'77.37.174.86','2016-05-22 21:46:25','Windows 7','Internet Explorer 9'),(376,'80.82.78.38','2016-05-22 22:13:12','Unknown','Mozilla'),(377,'161.69.163.20','2016-05-22 22:39:23','Windows 7','Firefox 29'),(378,'93.174.93.94','2016-05-22 22:59:07','Unknown','Unknown'),(379,'213.246.45.128','2016-05-22 23:02:22','Unknown','Mozilla'),(380,'115.239.228.202','2016-05-22 23:21:37','Windows 7','Internet Explorer 9'),(381,'80.82.78.38','2016-05-22 23:57:43','Unknown','Mozilla'),(382,'114.215.239.201','2016-05-23 00:37:44','Unknown','Unknown'),(383,'213.246.45.128','2016-05-23 00:43:58','Unknown','Mozilla'),(384,'121.42.0.62','2016-05-23 00:44:07','Windows 7','Internet Explorer 8'),(385,'121.42.0.72','2016-05-23 00:44:08','Mac OS X','Firefox 41'),(386,'121.42.0.72','2016-05-23 00:44:08','Mac OS X','Firefox 41'),(387,'121.42.0.72','2016-05-23 00:44:08','Mac OS X','Firefox 41'),(388,'42.156.138.103','2016-05-23 00:46:28','Unknown','Robot/Spider'),(389,'117.136.36.237','2016-05-23 00:56:28','Android 6.x','Chrome Mobile'),(390,'123.151.42.61','2016-05-23 01:47:30','Unknown','Unknown'),(391,'117.136.36.199','2016-05-23 02:05:26','Android 6.x','Chrome Mobile'),(392,'171.11.215.60','2016-05-23 02:14:05','Windows 7','Chrome'),(393,'80.82.78.38','2016-05-23 02:15:42','Unknown','Mozilla'),(394,'121.42.210.61','2016-05-23 02:30:18','Unknown','Unknown'),(395,'193.109.69.2','2016-05-23 02:47:12','Android 4.x Tablet','Safari 4'),(396,'120.132.50.135','2016-05-23 02:56:18','Windows 7','Firefox 29'),(397,'121.42.0.59','2016-05-23 03:05:28','Windows 7','Internet Explorer 8'),(398,'121.42.0.81','2016-05-23 03:05:29','Mac OS X','Firefox 41'),(399,'121.42.0.81','2016-05-23 03:05:29','Mac OS X','Firefox 41'),(400,'121.42.0.81','2016-05-23 03:05:29','Mac OS X','Firefox 41'),(401,'171.11.215.60','2016-05-23 03:19:33','Windows 7','Chrome'),(402,'121.42.0.31','2016-05-23 03:37:17','Unknown','Unknown'),(403,'80.82.78.38','2016-05-23 03:58:12','Unknown','Mozilla'),(404,'115.239.228.202','2016-05-23 04:32:38','Windows 7','Internet Explorer 9'),(405,'106.120.173.129','2016-05-23 04:49:39','Unknown','Robot/Spider'),(406,'213.246.45.128','2016-05-23 05:34:20','Unknown','Mozilla'),(407,'115.239.228.202','2016-05-23 05:50:39','Windows 7','Internet Explorer 9'),(408,'106.185.47.161','2016-05-23 05:56:44','Unknown','Mozilla'),(409,'80.82.78.38','2016-05-23 06:15:48','Unknown','Mozilla'),(410,'122.224.153.106','2016-05-23 06:34:04','Unknown','Unknown'),(411,'208.67.1.238','2016-05-23 06:35:48','Unknown','Unknown'),(412,'121.42.0.35','2016-05-23 07:03:04','Unknown','Robot/Spider'),(413,'208.80.194.124','2016-05-23 07:06:16','Ubuntu','Chrome 12'),(414,'172.82.166.210','2016-05-23 07:07:27','Unknown','Mozilla'),(415,'115.239.228.202','2016-05-23 07:08:15','Windows 7','Internet Explorer 9'),(416,'121.42.0.34','2016-05-23 07:51:24','Unknown','Robot/Spider'),(417,'80.82.78.38','2016-05-23 08:00:00','Unknown','Mozilla'),(418,'185.25.151.159','2016-05-23 08:16:56','Windows XP','Firefox 31'),(419,'115.239.228.202','2016-05-23 08:25:40','Windows 7','Internet Explorer 9'),(420,'61.157.96.193','2016-05-23 08:26:20','Windows 7','Internet Explorer 10'),(421,'121.42.0.34','2016-05-23 08:58:55','Unknown','Robot/Spider'),(422,'221.217.171.58','2016-05-23 09:17:14','Unknown','Unknown'),(423,'183.136.190.62','2016-05-23 09:18:00','Windows 7','Chrome 35'),(424,'124.65.124.78','2016-05-23 10:14:22','Linux','Chrome'),(425,'80.82.78.38','2016-05-23 10:19:57','Unknown','Mozilla'),(426,'115.239.228.202','2016-05-23 11:00:51','Windows 7','Internet Explorer 9'),(427,'213.246.45.128','2016-05-23 11:58:12','Unknown','Mozilla'),(428,'80.82.78.38','2016-05-23 12:03:20','Unknown','Mozilla'),(429,'61.157.96.193','2016-05-23 12:06:35','Windows 7','Internet Explorer 10'),(430,'161.69.163.20','2016-05-23 12:08:47','Windows 7','Firefox 29'),(431,'115.231.218.31','2016-05-23 12:11:26','Windows XP','Internet Explorer 6'),(432,'222.186.21.48','2016-05-23 13:00:32','Windows 7','Internet Explorer 9'),(433,'71.6.146.186','2016-05-23 13:06:37','Windows 7','Chrome 41'),(434,'106.120.173.129','2016-05-23 13:17:12','Unknown','Robot/Spider'),(435,'115.239.228.202','2016-05-23 13:36:11','Windows 7','Internet Explorer 9'),(436,'123.151.42.61','2016-05-23 13:47:19','Unknown','Unknown'),(437,'122.224.153.106','2016-05-23 14:18:13','Unknown','Unknown'),(438,'80.82.78.38','2016-05-23 14:21:50','Unknown','Mozilla'),(439,'120.27.128.245','2016-05-23 14:49:25','Windows 8','Internet Explorer 10'),(440,'115.239.228.202','2016-05-23 14:54:51','Windows 7','Internet Explorer 9'),(441,'121.42.0.17','2016-05-23 15:06:51','Unknown','Unknown'),(442,'222.186.21.48','2016-05-23 15:08:22','Windows','Unknown'),(443,'220.181.108.107','2016-05-23 15:23:49','Unknown','Robot/Spider'),(444,'61.157.96.193','2016-05-23 15:45:58','Windows 7','Internet Explorer 10'),(445,'120.194.82.142','2016-05-23 15:46:20','Windows 7','Chrome'),(446,'80.82.78.38','2016-05-23 16:06:24','Unknown','Mozilla'),(447,'115.239.228.202','2016-05-23 16:12:17','Windows 7','Internet Explorer 9'),(448,'222.186.34.182','2016-05-23 16:49:28','Windows','Unknown'),(449,'120.194.82.142','2016-05-23 17:16:37','Windows 7','Chrome'),(450,'23.251.63.45','2016-05-23 17:51:48','Windows XP','Internet Explorer 6'),(451,'185.25.151.159','2016-05-23 18:01:21','Windows XP','Firefox 31'),(452,'106.185.47.161','2016-05-23 18:18:35','Unknown','Mozilla'),(453,'172.82.166.210','2016-05-23 18:26:39','Unknown','Mozilla'),(454,'80.82.78.38','2016-05-23 18:27:53','Unknown','Mozilla'),(455,'123.57.77.16','2016-05-23 18:40:30','Unknown','Mozilla'),(456,'222.186.21.195','2016-05-23 18:49:58','Windows XP','Internet Explorer 6'),(457,'120.24.251.13','2016-05-23 19:22:08','Unknown','Unknown'),(458,'122.224.153.106','2016-05-23 19:30:03','Unknown','Unknown'),(459,'115.239.228.202','2016-05-23 20:05:48','Windows 7','Internet Explorer 9'),(460,'172.82.166.210','2016-05-23 20:08:18','Unknown','Mozilla'),(461,'123.56.233.103','2016-05-23 20:54:51','Unknown','Unknown'),(462,'115.239.228.202','2016-05-23 21:23:13','Windows 7','Internet Explorer 9'),(463,'158.69.228.18','2016-05-23 21:29:51','Windows 7','Firefox 3'),(464,'80.82.78.38','2016-05-23 22:32:47','Unknown','Mozilla'),(465,'115.239.228.202','2016-05-23 22:41:35','Windows 7','Internet Explorer 9'),(466,'61.157.96.193','2016-05-23 23:02:27','Windows 7','Internet Explorer 10'),(467,'203.208.60.247','2016-05-23 23:34:17','Unknown','Robot/Spider'),(468,'203.208.60.250','2016-05-23 23:37:04','Unknown','Robot/Spider'),(469,'203.208.60.246','2016-05-23 23:37:54','Unknown','Robot/Spider'),(470,'94.102.48.193','2016-05-23 23:55:21','Unknown','Unknown'),(471,'80.82.78.38','2016-05-24 00:16:17','Unknown','Mozilla'),(472,'123.151.42.61','2016-05-24 00:40:06','Unknown','Unknown'),(473,'121.40.141.31','2016-05-24 00:51:45','Windows XP','Firefox 31'),(474,'172.82.166.210','2016-05-24 00:57:06','Unknown','Mozilla'),(475,'115.239.228.202','2016-05-24 01:16:31','Windows 7','Internet Explorer 9'),(476,'129.10.115.51','2016-05-24 01:30:59','Linux','Firefox 44'),(477,'80.82.78.38','2016-05-24 02:33:31','Unknown','Mozilla'),(478,'115.239.228.202','2016-05-24 02:34:36','Windows 7','Internet Explorer 9'),(479,'61.157.96.193','2016-05-24 02:40:55','Windows 7','Internet Explorer 10'),(480,'91.196.50.33','2016-05-24 03:00:11','Windows XP','Firefox 31'),(481,'115.239.228.202','2016-05-24 03:52:25','Windows 7','Internet Explorer 9'),(482,'80.82.78.38','2016-05-24 04:16:18','Unknown','Mozilla'),(483,'39.88.213.226','2016-05-24 04:40:39','Windows Vista','Internet Explorer 8'),(484,'115.239.228.202','2016-05-24 05:09:38','Windows 7','Internet Explorer 9'),(485,'61.160.195.222','2016-05-24 05:15:32','Windows 7','Chrome 24'),(486,'183.60.204.242','2016-05-24 06:14:46','Windows','Unknown'),(487,'61.157.96.193','2016-05-24 06:20:20','Windows 7','Internet Explorer 10'),(488,'115.239.228.202','2016-05-24 06:27:46','Windows 7','Internet Explorer 9'),(489,'80.82.78.38','2016-05-24 06:34:18','Unknown','Mozilla'),(490,'208.80.194.27','2016-05-24 07:08:59','Mac OS X','Chrome 14'),(491,'121.42.0.33','2016-05-24 07:09:05','Unknown','Robot/Spider'),(492,'42.120.161.95','2016-05-24 07:10:49','Unknown','Robot/Spider'),(493,'213.246.45.128','2016-05-24 07:16:37','Unknown','Mozilla'),(494,'45.32.128.51','2016-05-24 07:37:43','Windows 7','Chrome 40'),(495,'121.42.0.34','2016-05-24 07:57:45','Unknown','Robot/Spider'),(496,'80.82.78.38','2016-05-24 08:18:10','Unknown','Mozilla'),(497,'121.42.0.85','2016-05-24 08:51:47','Unknown','Unknown'),(498,'101.70.156.2','2016-05-24 09:22:14','Unknown','Downloading Tool'),(499,'124.164.245.140','2016-05-24 09:22:26','Unknown','Downloading Tool'),(500,'113.207.83.10','2016-05-24 09:22:28','Linux','Downloading Tool'),(501,'121.18.230.11','2016-05-24 09:22:32','Unknown','Downloading Tool'),(502,'122.138.54.6','2016-05-24 09:22:43','Unknown','Downloading Tool'),(503,'220.243.233.2','2016-05-24 09:22:44','Unknown','Downloading Tool'),(504,'223.111.13.21','2016-05-24 09:22:47','Unknown','Downloading Tool'),(505,'110.18.244.34','2016-05-24 09:22:54','Unknown','Downloading Tool'),(506,'124.167.222.11','2016-05-24 09:22:59','Unknown','Downloading Tool'),(507,'171.217.254.10','2016-05-24 09:23:05','Linux','Downloading Tool'),(508,'139.215.195.37','2016-05-24 09:23:08','Unknown','Downloading Tool'),(509,'222.186.130.6','2016-05-24 09:23:11','Unknown','Downloading Tool'),(510,'114.64.222.22','2016-05-24 09:23:12','Unknown','Downloading Tool'),(511,'120.237.248.10','2016-05-24 09:23:29','Unknown','Downloading Tool'),(512,'106.124.234.10','2016-05-24 09:23:38','Linux','Downloading Tool'),(513,'117.23.6.36','2016-05-24 09:23:49','Linux','Downloading Tool'),(514,'60.221.213.10','2016-05-24 09:23:50','Unknown','Downloading Tool'),(515,'61.54.12.5','2016-05-24 09:24:01','Unknown','Downloading Tool'),(516,'117.172.21.10','2016-05-24 09:24:02','Unknown','Downloading Tool'),(517,'113.107.183.130','2016-05-24 09:24:05','Unknown','Downloading Tool'),(518,'122.224.186.199','2016-05-24 09:24:06','Unknown','Downloading Tool'),(519,'220.202.77.21','2016-05-24 09:24:27','Linux','Downloading Tool'),(520,'114.64.223.166','2016-05-24 09:24:28','Unknown','Downloading Tool'),(521,'203.130.62.13','2016-05-24 09:24:28','Unknown','Downloading Tool'),(522,'220.243.228.80','2016-05-24 09:24:44','Unknown','Downloading Tool'),(523,'198.47.104.138','2016-05-24 09:25:10','Unknown','Downloading Tool'),(524,'141.8.142.55','2016-05-24 09:26:22','Unknown','Robot/Spider'),(525,'115.239.228.202','2016-05-24 09:27:19','Windows 7','Internet Explorer 9'),(526,'59.47.50.10','2016-05-24 09:42:39','Unknown','Downloading Tool'),(527,'61.157.96.193','2016-05-24 10:00:13','Windows 7','Internet Explorer 10'),(528,'101.200.126.60','2016-05-24 10:14:37','Windows Vista','Internet Explorer 9'),(529,'218.241.106.182','2016-05-24 10:31:25','Windows 7','Chrome 48'),(530,'80.82.78.38','2016-05-24 10:37:16','Unknown','Mozilla'),(531,'115.239.228.202','2016-05-24 11:48:45','Windows 7','Internet Explorer 9'),(532,'80.82.78.38','2016-05-24 12:20:49','Unknown','Mozilla'),(533,'161.69.163.20','2016-05-24 12:37:01','Windows 7','Firefox 29'),(534,'115.239.228.202','2016-05-24 12:59:29','Windows 7','Internet Explorer 9'),(535,'197.15.2.76','2016-05-24 13:10:44','Unknown','Mozilla'),(536,'171.11.215.60','2016-05-24 13:11:07','Windows 7','Chrome'),(537,'61.157.96.193','2016-05-24 13:40:47','Windows 7','Internet Explorer 10'),(538,'213.246.45.128','2016-05-24 13:48:36','Unknown','Mozilla'),(539,'23.251.63.45','2016-05-24 13:50:46','Windows XP','Internet Explorer 6'),(540,'115.239.228.202','2016-05-24 14:10:06','Windows 7','Internet Explorer 9'),(541,'94.28.168.122','2016-05-24 14:10:53','Unknown','Unknown'),(542,'80.82.78.38','2016-05-24 14:39:09','Unknown','Mozilla'),(543,'23.251.63.45','2016-05-24 15:10:06','Windows XP','Internet Explorer 6'),(544,'115.239.228.202','2016-05-24 15:20:42','Windows 7','Internet Explorer 9'),(545,'172.82.166.210','2016-05-24 15:24:55','Unknown','Mozilla'),(546,'80.82.78.38','2016-05-24 16:22:14','Unknown','Mozilla'),(547,'120.26.55.211','2016-05-24 16:41:54','Unknown','Unknown'),(548,'185.25.151.159','2016-05-24 17:05:23','Windows XP','Firefox 31'),(549,'115.239.228.202','2016-05-24 17:41:51','Windows 7','Internet Explorer 9'),(550,'121.42.0.39','2016-05-24 17:56:38','Windows XP','Internet Explorer 6'),(551,'120.24.183.176','2016-05-24 18:21:36','Windows 8','Internet Explorer 10'),(552,'80.82.78.38','2016-05-24 18:40:34','Unknown','Mozilla'),(553,'123.125.71.90','2016-05-24 18:51:44','Unknown','Robot/Spider'),(554,'115.239.228.202','2016-05-24 18:52:43','Windows 7','Internet Explorer 9'),(555,'112.90.82.196','2016-05-24 18:57:59','iOS 4 (iPhone)','Mobile Safari'),(556,'112.90.78.25','2016-05-24 18:57:59','Android 4.x','Mobile Safari'),(557,'58.221.66.213','2016-05-24 19:11:39','Windows','Unknown'),(558,'115.112.160.7','2016-05-24 19:11:43','Linux','Downloading Tool'),(559,'123.56.233.103','2016-05-24 19:24:48','Unknown','Unknown'),(560,'120.132.50.135','2016-05-24 19:44:19','Windows 7','Firefox 29'),(561,'120.194.82.142','2016-05-24 19:58:42','Windows 7','Chrome'),(562,'115.239.228.202','2016-05-24 20:03:17','Windows 7','Internet Explorer 9'),(563,'172.82.166.210','2016-05-24 20:14:49','Unknown','Mozilla'),(564,'54.160.103.88','2016-05-24 20:16:14','Windows XP','Internet Explorer 6'),(565,'80.82.78.38','2016-05-24 20:25:29','Unknown','Mozilla'),(566,'101.40.112.254','2016-05-24 20:27:58','Windows 7','Chrome 45'),(567,'106.185.47.161','2016-05-24 20:39:35','Unknown','Mozilla'),(568,'123.117.93.243','2016-05-24 20:48:11','Windows 7','Firefox 35'),(569,'123.56.65.139','2016-05-24 21:02:33','Unknown','Unknown'),(570,'115.239.228.202','2016-05-24 21:13:50','Windows 7','Internet Explorer 9'),(571,'111.202.102.66','2016-05-24 21:49:49','Unknown','Robot/Spider'),(572,'172.82.166.210','2016-05-24 21:56:21','Unknown','Mozilla'),(573,'23.251.63.45','2016-05-24 22:06:07','Windows XP','Internet Explorer 6'),(574,'203.208.60.253','2016-05-24 22:18:03','Unknown','Robot/Spider'),(575,'115.239.228.202','2016-05-24 22:24:25','Windows 7','Internet Explorer 9'),(576,'80.82.78.38','2016-05-24 22:43:23','Unknown','Mozilla'),(577,'182.48.110.4','2016-05-24 22:56:23','Windows XP','Internet Explorer 7'),(578,'23.251.63.45','2016-05-24 23:30:52','Windows XP','Internet Explorer 6'),(579,'115.239.228.202','2016-05-24 23:35:05','Windows 7','Internet Explorer 9'),(580,'80.82.78.38','2016-05-25 00:25:27','Unknown','Mozilla'),(581,'120.194.82.150','2016-05-25 00:30:51','Mac OS X','Chrome'),(582,'121.42.0.62','2016-05-25 00:41:07','Windows 7','Internet Explorer 8'),(583,'121.42.0.75','2016-05-25 00:41:08','Mac OS X','Firefox 41'),(584,'121.42.0.75','2016-05-25 00:41:08','Mac OS X','Firefox 41'),(585,'121.42.0.75','2016-05-25 00:41:08','Mac OS X','Firefox 41'),(586,'61.157.96.193','2016-05-25 00:42:31','Windows 7','Internet Explorer 10'),(587,'115.239.228.202','2016-05-25 00:45:35','Windows 7','Internet Explorer 9'),(588,'203.208.60.251','2016-05-25 01:13:53','Unknown','Robot/Spider'),(589,'203.208.60.236','2016-05-25 01:14:00','Unknown','Robot/Spider'),(590,'203.208.60.239','2016-05-25 01:18:22','Unknown','Robot/Spider'),(591,'203.208.60.250','2016-05-25 01:18:28','Unknown','Robot/Spider'),(592,'115.239.228.202','2016-05-25 01:56:29','Windows 7','Internet Explorer 9'),(593,'42.156.136.61','2016-05-25 02:08:11','Unknown','Robot/Spider'),(594,'42.120.160.61','2016-05-25 02:08:11','Unknown','Robot/Spider'),(595,'161.69.163.20','2016-05-25 02:10:20','Windows 7','Firefox 29'),(596,'80.82.78.38','2016-05-25 02:40:58','Unknown','Mozilla'),(597,'91.236.75.4','2016-05-25 02:42:45','Windows XP','Internet Explorer 6'),(598,'115.239.228.202','2016-05-25 03:07:35','Windows 7','Internet Explorer 9'),(599,'115.239.228.202','2016-05-25 04:18:10','Windows 7','Internet Explorer 9'),(600,'213.246.45.128','2016-05-25 04:21:06','Unknown','Mozilla'),(601,'80.82.78.38','2016-05-25 04:22:36','Unknown','Mozilla'),(602,'123.151.42.61','2016-05-25 04:37:20','Unknown','Unknown'),(603,'123.59.59.52','2016-05-25 04:40:24','Windows 7','Firefox 29'),(604,'115.239.228.202','2016-05-25 05:28:44','Windows 7','Internet Explorer 9'),(605,'216.38.216.197','2016-05-25 05:39:52','Mac OS X','Chrome 13'),(606,'121.42.0.33','2016-05-25 06:17:23','Unknown','Robot/Spider'),(607,'115.239.228.202','2016-05-25 06:39:18','Windows 7','Internet Explorer 9'),(608,'80.82.78.38','2016-05-25 06:39:47','Unknown','Mozilla'),(609,'121.42.0.34','2016-05-25 06:55:38','Unknown','Robot/Spider'),(610,'208.80.194.123','2016-05-25 07:33:24','Windows XP','Chrome 14'),(611,'115.239.228.202','2016-05-25 07:49:53','Windows 7','Internet Explorer 9'),(612,'61.157.96.193','2016-05-25 08:04:29','Windows 7','Internet Explorer 10'),(613,'123.125.71.14','2016-05-25 08:08:26','Unknown','Robot/Spider'),(614,'80.82.78.38','2016-05-25 08:22:22','Unknown','Mozilla'),(615,'115.239.228.202','2016-05-25 09:00:31','Windows 7','Internet Explorer 9'),(616,'114.119.40.120','2016-05-25 09:10:19','Windows XP','Internet Explorer 6'),(617,'213.246.45.128','2016-05-25 09:10:38','Unknown','Mozilla'),(618,'183.136.190.40','2016-05-25 10:07:47','Windows 7','Chrome 35'),(619,'115.239.228.202','2016-05-25 10:11:08','Windows 7','Internet Explorer 9'),(620,'203.208.60.241','2016-05-25 10:26:23','Unknown','Robot/Spider'),(621,'203.208.60.250','2016-05-25 10:26:23','Unknown','Robot/Spider'),(622,'203.208.60.238','2016-05-25 10:26:32','Unknown','Robot/Spider'),(623,'42.156.136.61','2016-05-25 10:46:14','Unknown','Robot/Spider'),(624,'172.82.166.210','2016-05-25 10:48:04','Unknown','Mozilla'),(625,'120.55.183.119','2016-05-25 10:59:31','Windows','Unknown'),(626,'93.174.93.94','2016-05-25 11:02:06','Unknown','Unknown'),(627,'115.239.228.202','2016-05-25 11:21:41','Windows 7','Internet Explorer 9'),(628,'23.251.63.45','2016-05-25 11:23:55','Windows XP','Internet Explorer 6'),(629,'61.157.96.193','2016-05-25 11:44:49','Windows 7','Internet Explorer 10'),(630,'121.42.0.17','2016-05-25 11:59:48','Windows XP','Internet Explorer 6'),(631,'203.208.60.247','2016-05-25 12:08:35','Unknown','Robot/Spider'),(632,'80.82.78.38','2016-05-25 12:22:38','Unknown','Mozilla'),(633,'115.239.228.202','2016-05-25 12:32:34','Windows 7','Internet Explorer 9'),(634,'117.136.36.210','2016-05-25 13:41:53','Windows 7','Chrome'),(635,'115.239.228.202','2016-05-25 13:43:16','Windows 7','Internet Explorer 9'),(636,'171.9.37.12','2016-05-25 14:06:50','Windows 7','Chrome'),(637,'120.55.183.119','2016-05-25 14:35:57','Windows','Unknown'),(638,'80.82.78.38','2016-05-25 14:41:25','Unknown','Mozilla'),(639,'115.239.228.202','2016-05-25 14:53:51','Windows 7','Internet Explorer 9'),(640,'101.77.199.9','2016-05-25 15:09:44','Windows','Unknown'),(641,'121.42.0.39','2016-05-25 15:34:47','Unknown','Unknown'),(642,'101.201.209.226','2016-05-25 15:47:31','Windows 8','Internet Explorer 10'),(643,'115.239.228.202','2016-05-25 16:04:38','Windows 7','Internet Explorer 9'),(644,'123.151.42.61','2016-05-25 16:37:15','Unknown','Unknown'),(645,'171.9.37.12','2016-05-25 17:00:43','Windows 7','Chrome'),(646,'120.26.55.211','2016-05-25 17:09:44','Unknown','Unknown'),(647,'115.239.228.202','2016-05-25 17:15:19','Windows 7','Internet Explorer 9'),(648,'172.82.166.210','2016-05-25 17:19:11','Unknown','Mozilla'),(649,'185.103.109.66','2016-05-25 17:27:19','Unknown','Unknown'),(650,'61.160.195.222','2016-05-25 17:36:15','iOS 7 (iPhone)','Mobile Safari'),(651,'121.199.43.47','2016-05-25 18:03:10','Windows 8','Internet Explorer 10'),(652,'115.239.228.202','2016-05-25 18:26:05','Windows 7','Internet Explorer 9'),(653,'54.145.212.163','2016-05-25 18:42:38','Linux','Apple WebKit'),(654,'219.154.223.11','2016-05-25 18:51:56','Windows 98','Internet Explorer'),(655,'101.200.78.64','2016-05-25 19:23:37','Unknown','Unknown'),(656,'161.69.163.20','2016-05-25 19:58:33','Windows 7','Firefox 29'),(657,'80.82.78.38','2016-05-25 20:25:00','Unknown','Mozilla'),(658,'115.239.228.202','2016-05-25 20:47:11','Windows 7','Internet Explorer 9'),(659,'115.112.160.2','2016-05-25 21:20:40','Linux','Downloading Tool'),(660,'157.55.39.147','2016-05-25 21:23:06','Unknown','Robot/Spider'),(661,'222.186.21.195','2016-05-25 21:51:31','Windows XP','Internet Explorer 6'),(662,'115.239.228.202','2016-05-25 21:57:47','Windows 7','Internet Explorer 9'),(663,'213.246.45.128','2016-05-25 22:03:40','Unknown','Mozilla'),(664,'157.55.39.147','2016-05-25 22:30:21','Unknown','Robot/Spider'),(665,'40.77.167.92','2016-05-25 22:30:27','Unknown','Robot/Spider'),(666,'207.46.13.39','2016-05-25 22:52:15','Unknown','Robot/Spider'),(667,'115.239.228.202','2016-05-25 23:08:54','Windows 7','Internet Explorer 9'),(668,'42.156.136.61','2016-05-25 23:42:58','Unknown','Robot/Spider'),(669,'213.246.45.128','2016-05-25 23:45:22','Unknown','Mozilla'),(670,'121.42.0.54','2016-05-26 00:10:59','Windows 7','Internet Explorer 8'),(671,'121.42.0.75','2016-05-26 00:11:00','Mac OS X','Firefox 41'),(672,'121.42.0.75','2016-05-26 00:11:00','Mac OS X','Firefox 41'),(673,'121.42.0.75','2016-05-26 00:11:00','Mac OS X','Firefox 41'),(674,'115.239.228.202','2016-05-26 00:19:43','Windows 7','Internet Explorer 9'),(675,'80.82.78.38','2016-05-26 00:29:26','Unknown','Mozilla'),(676,'42.156.136.61','2016-05-26 00:56:57','Unknown','Robot/Spider'),(677,'115.239.228.202','2016-05-26 01:30:36','Windows 7','Internet Explorer 9'),(678,'171.9.37.12','2016-05-26 02:02:51','Windows 7','Chrome'),(679,'115.239.228.202','2016-05-26 02:41:20','Windows 7','Internet Explorer 9'),(680,'121.42.0.19','2016-05-26 02:45:16','Windows XP','Internet Explorer 6'),(681,'80.82.78.38','2016-05-26 02:47:20','Unknown','Mozilla'),(682,'185.25.148.240','2016-05-26 03:19:30','Windows XP','Firefox 31'),(683,'123.125.71.69','2016-05-26 03:26:16','Unknown','Robot/Spider'),(684,'95.25.11.178','2016-05-26 03:42:14','Windows 7','Firefox 25'),(685,'123.151.42.61','2016-05-26 03:47:05','Unknown','Unknown'),(686,'115.239.228.202','2016-05-26 03:52:02','Windows 7','Internet Explorer 9'),(687,'121.201.5.131','2016-05-26 04:12:02','Windows XP','Internet Explorer 6'),(688,'80.82.78.38','2016-05-26 04:30:40','Unknown','Mozilla'),(689,'172.82.166.210','2016-05-26 04:30:42','Unknown','Mozilla'),(690,'123.151.42.61','2016-05-26 04:47:06','Unknown','Unknown'),(691,'115.239.228.202','2016-05-26 05:02:45','Windows 7','Internet Explorer 9'),(692,'61.157.96.193','2016-05-26 06:06:47','Windows 7','Internet Explorer 10'),(693,'121.42.0.34','2016-05-26 06:08:45','Unknown','Robot/Spider'),(694,'116.255.236.83','2016-05-26 06:11:42','Unknown','Mozilla'),(695,'115.239.228.202','2016-05-26 06:13:41','Windows 7','Internet Explorer 9'),(696,'80.82.78.38','2016-05-26 06:48:50','Unknown','Mozilla'),(697,'203.208.60.250','2016-05-26 06:51:15','Unknown','Robot/Spider'),(698,'115.239.228.202','2016-05-26 07:24:25','Windows 7','Internet Explorer 9'),(699,'115.231.219.34','2016-05-26 07:24:46','Windows XP','Internet Explorer 6'),(700,'208.80.194.27','2016-05-26 08:28:32','Windows XP','Chrome 16'),(701,'115.239.228.202','2016-05-26 08:31:14','Windows 7','Internet Explorer 9'),(702,'80.82.78.38','2016-05-26 08:32:44','Unknown','Mozilla'),(703,'106.120.173.129','2016-05-26 09:01:48','Unknown','Robot/Spider'),(704,'115.210.34.197','2016-05-26 09:17:24','Mac OS X','Chrome'),(705,'115.239.228.202','2016-05-26 09:44:32','Windows 7','Internet Explorer 9'),(706,'80.82.78.38','2016-05-26 10:49:09','Unknown','Mozilla'),(707,'115.239.228.202','2016-05-26 10:57:08','Windows 7','Internet Explorer 9'),(708,'202.47.24.180','2016-05-26 11:01:57','Unknown','Unknown'),(709,'114.119.40.120','2016-05-26 11:31:32','Windows XP','Internet Explorer 6'),(710,'121.42.0.38','2016-05-26 11:39:21','Unknown','Unknown'),(711,'42.120.161.95','2016-05-26 11:51:08','Unknown','Robot/Spider'),(712,'42.156.139.95','2016-05-26 11:57:46','Unknown','Robot/Spider'),(713,'115.239.228.202','2016-05-26 12:10:05','Windows 7','Internet Explorer 9'),(714,'213.246.45.128','2016-05-26 12:41:21','Unknown','Mozilla'),(715,'123.125.71.89','2016-05-26 13:08:57','Unknown','Robot/Spider'),(716,'115.239.228.202','2016-05-26 13:23:32','Windows 7','Internet Explorer 9'),(717,'61.157.96.193','2016-05-26 13:27:55','Windows 7','Internet Explorer 10'),(718,'203.208.60.241','2016-05-26 13:54:09','Unknown','Robot/Spider'),(719,'120.194.82.142','2016-05-26 14:13:07','Windows 10','Chrome 49'),(720,'61.135.169.80','2016-05-26 14:18:54','Mac OS X','Chrome'),(721,'115.239.228.202','2016-05-26 14:36:32','Windows 7','Internet Explorer 9'),(722,'106.184.3.122','2016-05-26 14:51:51','Windows 98','Internet Explorer'),(723,'80.82.78.38','2016-05-26 14:58:15','Unknown','Mozilla'),(724,'58.83.175.252','2016-05-26 15:13:40','Unknown','Robot/Spider'),(725,'123.125.67.215','2016-05-26 15:31:13','Unknown','Robot/Spider'),(726,'123.151.42.61','2016-05-26 15:46:54','Unknown','Unknown'),(727,'115.239.228.202','2016-05-26 15:49:16','Windows 7','Internet Explorer 9'),(728,'61.135.169.80','2016-05-26 16:22:07','Mac OS X','Chrome'),(729,'91.196.50.33','2016-05-26 16:35:39','Windows XP','Firefox 31'),(730,'101.226.64.174','2016-05-26 16:45:35','iOS 4 (iPhone)','Mobile Safari'),(731,'123.151.42.61','2016-05-26 16:46:56','Unknown','Unknown'),(732,'115.239.228.202','2016-05-26 17:02:28','Windows 7','Internet Explorer 9'),(733,'61.157.96.193','2016-05-26 17:07:32','Windows 7','Internet Explorer 10'),(734,'172.82.166.210','2016-05-26 17:31:34','Unknown','Mozilla'),(735,'106.185.47.161','2016-05-26 17:54:53','Unknown','Mozilla'),(736,'103.240.16.119','2016-05-26 18:36:05','Windows 7','Mozilla'),(737,'220.181.108.114','2016-05-26 18:42:14','Unknown','Robot/Spider'),(738,'120.194.82.142','2016-05-26 18:42:47','Windows 7','Chrome'),(739,'183.204.25.206','2016-05-26 18:48:50','Windows 10','Chrome'),(740,'119.57.116.22','2016-05-26 18:49:32','Windows 7','Chrome'),(741,'80.82.78.38','2016-05-26 19:04:28','Unknown','Mozilla'),(742,'119.161.139.45','2016-05-26 19:28:12','Mac OS X','Chrome'),(743,'115.239.228.202','2016-05-26 19:28:34','Windows 7','Internet Explorer 9'),(744,'182.91.238.171','2016-05-26 19:33:48','Windows 10','Microsoft Edge 13'),(745,'124.65.129.106','2016-05-26 19:46:24','Mac OS X','Chrome'),(746,'123.151.64.143','2016-05-26 19:53:56','Android 4.x','Chrome 37'),(747,'120.194.82.142','2016-05-26 19:53:56','Android 4.x','Chrome 37'),(748,'111.161.61.49','2016-05-26 19:53:58','Windows XP','Firefox 3'),(749,'111.30.132.194','2016-05-26 19:53:58','Windows XP','Firefox 3'),(750,'180.149.135.16','2016-05-26 20:01:36','Unknown','Unknown'),(751,'122.96.47.38','2016-05-26 20:41:49','iOS 9 (iPhone)','Mobile Safari'),(752,'115.239.228.202','2016-05-26 20:41:59','Windows 7','Internet Explorer 9'),(753,'80.82.78.38','2016-05-26 20:50:24','Unknown','Mozilla'),(754,'109.90.233.19','2016-05-26 21:05:52','Mac OS X','Safari 9'),(755,'211.162.81.126','2016-05-26 21:06:51','Windows 10','Chrome'),(756,'222.186.3.7','2016-05-26 21:11:34','Windows 7','Internet Explorer 9'),(757,'103.206.22.20','2016-05-26 21:26:40','Windows 2000','Internet Explorer 6'),(758,'180.164.137.200','2016-05-26 21:34:33','Windows 10','Chrome 45'),(759,'171.9.37.12','2016-05-26 21:42:58','Windows 7','Chrome'),(760,'115.239.228.202','2016-05-26 21:55:13','Windows 7','Internet Explorer 9'),(761,'211.151.229.101','2016-05-26 22:06:21','Mac OS X','Chrome'),(762,'1.81.97.216','2016-05-26 22:17:47','Windows 10','Chrome'),(763,'123.122.40.128','2016-05-26 22:33:02','Windows 10','Chrome'),(764,'171.9.37.12','2016-05-26 22:48:29','Android 6.x','Chrome Mobile'),(765,'123.160.48.41','2016-05-26 22:55:10','Android 5.x','Chrome Mobile'),(766,'115.239.228.202','2016-05-26 23:07:58','Windows 7','Internet Explorer 9'),(767,'80.82.78.38','2016-05-26 23:09:27','Unknown','Mozilla'),(768,'157.55.39.247','2016-05-26 23:24:10','Unknown','Robot/Spider'),(769,'161.69.163.20','2016-05-26 23:36:48','Windows 7','Firefox 29'),(770,'171.9.37.12','2016-05-26 23:52:11','Windows 7','Chrome'),(771,'213.246.45.128','2016-05-26 23:55:52','Unknown','Mozilla'),(772,'115.239.228.202','2016-05-27 00:21:03','Windows 7','Internet Explorer 9'),(773,'36.251.109.142','2016-05-27 00:33:01','Windows 7','Chrome 21'),(774,'124.160.193.55','2016-05-27 00:38:12','Android 5.x','Chrome Mobile'),(775,'80.82.78.38','2016-05-27 00:52:20','Unknown','Mozilla'),(776,'106.120.173.129','2016-05-27 00:59:06','Unknown','Robot/Spider'),(777,'42.156.136.61','2016-05-27 01:05:04','Unknown','Robot/Spider'),(778,'61.157.96.193','2016-05-27 01:13:00','Windows 7','Internet Explorer 10'),(779,'218.76.65.99','2016-05-27 01:27:24','Mac OS X','Chrome'),(780,'115.239.228.202','2016-05-27 01:34:30','Windows 7','Internet Explorer 9'),(781,'213.246.45.128','2016-05-27 01:37:34','Unknown','Mozilla'),(782,'171.9.37.12','2016-05-27 01:54:00','Windows 7','Chrome'),(783,'202.109.143.27','2016-05-27 02:02:35','Unknown','Unknown'),(784,'211.151.229.101','2016-05-27 02:04:07','Mac OS X','Chrome'),(785,'109.90.233.19','2016-05-27 02:45:47','Mac OS X','Safari 9'),(786,'115.239.228.202','2016-05-27 02:47:24','Windows 7','Internet Explorer 9'),(787,'80.82.78.38','2016-05-27 03:10:21','Unknown','Mozilla'),(788,'123.151.42.61','2016-05-27 03:24:41','Unknown','Unknown'),(789,'115.239.228.202','2016-05-27 03:59:57','Windows 7','Internet Explorer 9'),(790,'216.38.216.197','2016-05-27 04:42:41','Mac OS X','Chrome 13'),(791,'111.50.76.155','2016-05-27 04:50:18','Unknown','Unknown'),(792,'198.27.69.229','2016-05-27 04:50:57','Windows 8.1','Chrome 39'),(793,'80.82.78.38','2016-05-27 04:53:32','Unknown','Mozilla'),(794,'115.239.228.202','2016-05-27 05:13:10','Windows 7','Internet Explorer 9'),(795,'115.239.228.202','2016-05-27 06:26:12','Windows 7','Internet Explorer 9'),(796,'121.42.0.35','2016-05-27 06:27:58','Unknown','Robot/Spider'),(797,'213.246.45.128','2016-05-27 06:28:01','Unknown','Mozilla'),(798,'121.42.0.34','2016-05-27 06:44:41','Unknown','Robot/Spider'),(799,'208.80.194.122','2016-05-27 06:50:39','Windows 7','Firefox 3'),(800,'80.82.78.38','2016-05-27 07:12:02','Unknown','Mozilla'),(801,'120.132.50.135','2016-05-27 07:34:59','Windows 7','Firefox 29'),(802,'123.59.59.52','2016-05-27 07:35:01','Windows 7','Firefox 29'),(803,'115.239.228.202','2016-05-27 07:38:42','Windows 7','Internet Explorer 9'),(804,'218.201.115.253','2016-05-27 07:50:27','Windows 7','Chrome'),(805,'213.246.45.128','2016-05-27 08:00:57','Unknown','Mozilla'),(806,'42.156.136.61','2016-05-27 08:17:31','Unknown','Robot/Spider'),(807,'157.55.39.103','2016-05-27 08:22:51','Unknown','Robot/Spider'),(808,'115.195.35.94','2016-05-27 08:38:13','Windows 7','Firefox'),(809,'42.120.161.95','2016-05-27 08:39:47','Unknown','Robot/Spider'),(810,'115.239.228.202','2016-05-27 08:51:46','Windows 7','Internet Explorer 9'),(811,'80.82.78.38','2016-05-27 08:56:05','Unknown','Mozilla'),(812,'123.125.71.92','2016-05-27 09:08:38','Unknown','Robot/Spider'),(813,'122.5.6.90','2016-05-27 11:08:55','Windows 10','Chrome'),(814,'80.82.78.38','2016-05-27 11:17:02','Unknown','Mozilla'),(815,'115.239.228.202','2016-05-27 11:17:55','Windows 7','Internet Explorer 9'),(816,'61.183.142.106','2016-05-27 11:54:30','Windows 7','Chrome'),(817,'115.239.228.202','2016-05-27 12:30:46','Windows 7','Internet Explorer 9'),(818,'80.82.78.38','2016-05-27 13:01:18','Unknown','Mozilla'),(819,'218.30.116.188','2016-05-27 13:10:20','Unknown','Unknown'),(820,'45.32.19.160','2016-05-27 13:32:12','Windows 10','Chrome'),(821,'101.226.65.107','2016-05-27 13:32:54','Android 4.x','Mobile Safari'),(822,'101.226.66.175','2016-05-27 13:34:28','Android 4.x','Mobile Safari'),(823,'115.239.228.202','2016-05-27 13:44:13','Windows 7','Internet Explorer 9'),(824,'119.188.16.39','2016-05-27 13:48:55','Windows XP','Internet Explorer 8'),(825,'213.246.45.128','2016-05-27 14:34:08','Unknown','Mozilla'),(826,'111.206.36.7','2016-05-27 14:56:54','Windows XP','Internet Explorer 7'),(827,'111.206.36.18','2016-05-27 14:56:54','Windows XP','Internet Explorer 7'),(828,'111.206.36.139','2016-05-27 14:56:54','Windows XP','Internet Explorer 7'),(829,'111.206.36.141','2016-05-27 14:56:54','Windows XP','Internet Explorer 7'),(830,'111.206.36.10','2016-05-27 14:56:54','Windows XP','Internet Explorer 7'),(831,'111.206.36.19','2016-05-27 14:56:54','Windows XP','Internet Explorer 7'),(832,'115.239.228.202','2016-05-27 14:57:17','Windows 7','Internet Explorer 9'),(833,'113.111.64.18','2016-05-27 15:06:24','Mac OS X','Chrome'),(834,'80.82.78.38','2016-05-27 15:12:55','Unknown','Mozilla'),(835,'112.103.56.7','2016-05-27 15:22:20','Windows 7','Chrome 47'),(836,'123.151.42.61','2016-05-27 15:24:28','Unknown','Unknown'),(837,'61.157.96.193','2016-05-27 15:33:51','Windows 7','Internet Explorer 10'),(838,'120.194.82.142','2016-05-27 15:51:07','Windows 7','Chrome'),(839,'115.239.228.202','2016-05-27 16:10:05','Windows 7','Internet Explorer 9'),(840,'113.106.15.11','2016-05-27 16:24:25','Windows 7','Firefox'),(841,'119.147.146.189','2016-05-27 16:24:27','Windows 7','Chrome 39'),(842,'104.250.146.212','2016-05-27 16:30:37','Windows 7','Chrome'),(843,'116.236.146.22','2016-05-27 16:32:54','Windows XP','Internet Explorer 6'),(844,'185.25.151.159','2016-05-27 16:37:32','Windows XP','Firefox 31'),(845,'123.125.71.39','2016-05-27 16:57:25','Unknown','Robot/Spider'),(846,'183.94.24.191','2016-05-27 17:08:09','Windows 10','Chrome'),(847,'115.239.228.202','2016-05-27 17:23:35','Windows 7','Internet Explorer 9'),(848,'14.17.18.144','2016-05-27 17:30:28','Android 4.x','Mobile Safari'),(849,'101.226.68.215','2016-05-27 17:30:29','iOS 4 (iPhone)','Mobile Safari'),(850,'119.147.146.195','2016-05-27 17:30:29','Windows 7','Chrome 39'),(851,'104.250.146.212','2016-05-27 18:05:12','Windows 7','Chrome'),(852,'120.194.82.142','2016-05-27 18:14:45','Windows 7','Chrome'),(853,'106.187.92.209','2016-05-27 18:29:40','Mac OS X','Chrome 41'),(854,'121.199.43.47','2016-05-27 18:43:44','Windows 8','Internet Explorer 10'),(855,'161.69.163.20','2016-05-27 19:53:50','Windows 7','Firefox 29'),(856,'115.239.228.202','2016-05-27 20:11:18','Windows 7','Internet Explorer 9'),(857,'23.251.63.45','2016-05-27 20:17:38','Windows XP','Internet Explorer 6'),(858,'139.196.171.166','2016-05-27 20:36:26','Windows 8','Internet Explorer 10'),(859,'80.82.78.38','2016-05-27 21:02:36','Unknown','Mozilla'),(860,'117.136.36.204','2016-05-27 21:06:05','Android 6.x','Chrome Mobile'),(861,'115.239.228.202','2016-05-27 21:22:15','Windows 7','Internet Explorer 9'),(862,'120.194.82.142','2016-05-27 21:35:09','Windows 7','Chrome'),(863,'91.236.75.4','2016-05-27 22:07:07','Windows XP','Internet Explorer 6'),(864,'221.220.95.126','2016-05-27 22:21:04','Windows XP','Firefox 5'),(865,'115.239.228.202','2016-05-27 22:32:46','Windows 7','Internet Explorer 9'),(866,'61.157.96.193','2016-05-27 22:49:53','Windows 7','Internet Explorer 10'),(867,'171.9.37.12','2016-05-27 22:59:56','Windows 7','Chrome'),(868,'171.9.37.12','2016-05-27 23:00:51','Windows 7','Chrome'),(869,'171.9.37.12','2016-05-27 23:00:27','Windows 7','Chrome'),(870,'171.9.37.12','2016-05-27 22:59:54','Windows 7','Chrome'),(871,'101.200.126.60','2016-05-27 23:21:38','Windows Vista','Internet Explorer 9'),(872,'80.82.78.38','2016-05-27 23:22:05','Unknown','Mozilla'),(873,'182.118.22.228','2016-05-27 23:40:18','Windows 7','Internet Explorer 9'),(874,'115.239.228.202','2016-05-27 23:43:26','Windows 7','Internet Explorer 9'),(875,'223.104.19.209','2016-05-27 23:52:48','Android 6.x','Chrome Mobile'),(876,'180.153.214.180','2016-05-27 23:56:27','Android 4.x','Mobile Safari'),(877,'101.226.68.217','2016-05-27 23:59:51','Android 4.x','Mobile Safari'),(878,'171.9.37.12','2016-05-28 00:00:05','Windows 7','Internet Explorer 8'),(879,'127.0.0.1','2016-05-28 00:07:58','Windows 7','Internet Explorer 8'),(880,'223.104.19.218','2016-05-28 00:30:59','Android 6.x','Chrome Mobile'),(881,'115.239.228.202','2016-05-28 00:54:07','Windows 7','Internet Explorer 9'),(882,'80.82.78.38','2016-05-28 01:00:52','Unknown','Mozilla'),(883,'223.104.19.204','2016-05-28 01:04:11','Android 6.x','Chrome Mobile'),(884,'123.151.42.61','2016-05-28 01:04:37','Unknown','Unknown'),(885,'42.156.138.28','2016-05-28 01:28:58','Unknown','Robot/Spider'),(886,'106.185.47.161','2016-05-28 01:38:07','Unknown','Mozilla'),(887,'213.246.45.128','2016-05-28 01:47:37','Unknown','Mozilla'),(888,'121.42.0.60','2016-05-28 01:58:08','Windows 7','Internet Explorer 8'),(889,'121.42.0.80','2016-05-28 01:58:10','Mac OS X','Firefox 41'),(890,'121.42.0.80','2016-05-28 01:58:10','Mac OS X','Firefox 41'),(891,'121.42.0.80','2016-05-28 01:58:10','Mac OS X','Firefox 41'),(892,'115.239.228.202','2016-05-28 02:04:45','Windows 7','Internet Explorer 9'),(893,'116.255.236.83','2016-05-28 02:26:48','Unknown','Mozilla'),(894,'185.25.151.159','2016-05-28 02:56:22','Windows XP','Firefox 31'),(895,'115.239.228.202','2016-05-28 03:15:20','Windows 7','Internet Explorer 9'),(896,'80.82.78.38','2016-05-28 03:15:53','Unknown','Mozilla'),(897,'213.246.45.128','2016-05-28 03:28:56','Unknown','Mozilla'),(898,'171.9.37.12','2016-05-28 03:38:20','Android 6.x','Chrome Mobile'),(899,'204.13.201.137','2016-05-28 03:57:01','Windows 7','Internet Explorer 8'),(900,'115.239.228.202','2016-05-28 04:26:01','Windows 7','Internet Explorer 9'),(901,'61.157.96.193','2016-05-28 04:46:23','Windows 7','Internet Explorer 10'),(902,'80.82.78.38','2016-05-28 04:58:52','Unknown','Mozilla'),(903,'115.239.228.202','2016-05-28 05:36:39','Windows 7','Internet Explorer 9'),(904,'110.75.123.184','2016-05-28 06:12:57','Android 4.x Tablet','Chrome 42'),(905,'110.75.123.197','2016-05-28 06:12:57','Android 4.x','Chrome Mobile'),(906,'110.75.123.244','2016-05-28 06:12:57','Android 4.x','Chrome Mobile'),(907,'110.75.123.146','2016-05-28 06:12:57','Android 4.x','Chrome Mobile'),(908,'110.75.123.236','2016-05-28 06:12:57','Android 4.x','Chrome Mobile'),(909,'121.42.0.34','2016-05-28 06:13:11','Unknown','Robot/Spider'),(910,'121.42.0.61','2016-05-28 06:13:52','iOS 6 (iPhone)','Mobile Safari'),(911,'121.42.0.77','2016-05-28 06:13:53','Mac OS X','Firefox 41'),(912,'121.42.0.77','2016-05-28 06:13:53','Mac OS X','Firefox 41'),(913,'121.42.0.77','2016-05-28 06:13:53','Mac OS X','Firefox 41'),(914,'180.97.106.25','2016-05-28 06:42:35','Linux','Downloading Tool'),(915,'115.239.228.202','2016-05-28 06:47:41','Windows 7','Internet Explorer 9'),(916,'123.125.71.16','2016-05-28 06:50:32','Unknown','Robot/Spider'),(917,'80.82.78.38','2016-05-28 07:17:33','Unknown','Mozilla'),(918,'208.80.192.33','2016-05-28 07:18:01','Mac OS X','Firefox 3'),(919,'221.200.47.241','2016-05-28 07:45:06','Windows 8.1','Chrome 45'),(920,'115.239.228.202','2016-05-28 07:58:26','Windows 7','Internet Explorer 9'),(921,'139.196.171.166','2016-05-28 08:08:58','Windows 8','Internet Explorer 10'),(922,'213.246.45.128','2016-05-28 08:10:49','Unknown','Mozilla'),(923,'80.82.78.38','2016-05-28 09:02:13','Unknown','Mozilla'),(924,'121.199.70.200','2016-05-28 09:17:50','Unknown','Unknown'),(925,'117.78.13.18','2016-05-28 09:43:53','Unknown','Robot/Spider'),(926,'213.246.45.128','2016-05-28 09:52:56','Unknown','Mozilla'),(927,'115.239.228.202','2016-05-28 10:19:52','Windows 7','Internet Explorer 9'),(928,'80.82.78.38','2016-05-28 11:23:51','Unknown','Mozilla'),(929,'64.246.165.10','2016-05-28 11:24:11','Windows XP','Firefox 3'),(930,'115.239.228.202','2016-05-28 11:30:33','Windows 7','Internet Explorer 9'),(931,'61.160.195.222','2016-05-28 12:22:07','Windows 7','Internet Explorer 9'),(932,'117.136.36.58','2016-05-28 12:36:10','Android 6.x','Chrome Mobile'),(933,'115.239.228.202','2016-05-28 12:41:05','Windows 7','Internet Explorer 9'),(934,'123.151.42.61','2016-05-28 13:03:46','Unknown','Unknown'),(935,'80.82.78.38','2016-05-28 13:10:07','Unknown','Mozilla'),(936,'77.247.181.165','2016-05-28 13:17:50','Windows 8.1','Firefox 44'),(937,'91.121.83.118','2016-05-28 13:42:50','Windows 8.1','Chrome 37'),(938,'115.239.228.202','2016-05-28 13:51:44','Windows 7','Internet Explorer 9'),(939,'46.19.21.106','2016-05-28 14:08:33','Windows XP','Internet Explorer 7'),(940,'121.42.0.86','2016-05-28 14:39:51','Unknown','Unknown'),(941,'171.9.37.12','2016-05-28 14:56:34','Windows 7','Chrome'),(942,'115.239.228.202','2016-05-28 15:02:19','Windows 7','Internet Explorer 9'),(943,'80.82.78.38','2016-05-28 15:30:08','Unknown','Mozilla'),(944,'185.25.148.240','2016-05-28 15:54:20','Windows XP','Firefox 31'),(945,'115.239.228.202','2016-05-28 16:12:57','Windows 7','Internet Explorer 9'),(946,'171.9.37.12','2016-05-28 16:25:29','Android 6.x','Chrome Mobile'),(947,'104.250.146.212','2016-05-28 16:36:26','Windows 7','Chrome'),(948,'61.157.96.193','2016-05-28 16:41:15','Windows 7','Internet Explorer 10'),(949,'80.82.78.38','2016-05-28 17:13:56','Unknown','Mozilla'),(950,'161.69.163.20','2016-05-28 17:18:03','Windows 7','Firefox 29'),(951,'115.239.228.202','2016-05-28 17:23:31','Windows 7','Internet Explorer 9'),(952,'115.239.228.202','2016-05-28 18:34:21','Windows 7','Internet Explorer 9'),(953,'104.250.146.212','2016-05-28 19:04:19','Windows 7','Chrome'),(954,'222.186.58.235','2016-05-28 19:31:45','Windows XP','Internet Explorer 6'),(955,'80.82.78.38','2016-05-28 19:35:59','Unknown','Mozilla'),(956,'115.239.228.202','2016-05-28 19:44:54','Windows 7','Internet Explorer 9'),(957,'115.239.228.202','2016-05-28 20:55:30','Windows 7','Internet Explorer 9'),(958,'172.82.166.210','2016-05-28 21:12:53','Unknown','Mozilla'),(959,'80.82.78.38','2016-05-28 21:20:04','Unknown','Mozilla'),(960,'104.250.146.212','2016-05-28 21:35:09','Windows 7','Chrome'),(961,'171.9.37.12','2016-05-28 21:53:56','Windows 7','Chrome'),(962,'115.239.228.202','2016-05-28 22:06:24','Windows 7','Internet Explorer 9'),(963,'61.157.96.193','2016-05-28 22:41:02','Windows 7','Internet Explorer 10'),(964,'80.82.78.38','2016-05-28 23:37:20','Unknown','Mozilla'),(965,'115.239.228.202','2016-05-29 00:27:44','Windows 7','Internet Explorer 9'),(966,'121.42.0.54','2016-05-29 00:55:48','Windows 7','Internet Explorer 8'),(967,'121.42.0.77','2016-05-29 00:55:50','Mac OS X','Firefox 41'),(968,'121.42.0.77','2016-05-29 00:55:50','Mac OS X','Firefox 41'),(969,'121.42.0.77','2016-05-29 00:55:50','Mac OS X','Firefox 41'),(970,'123.151.42.61','2016-05-29 01:06:18','Unknown','Unknown'),(971,'80.82.78.38','2016-05-29 01:19:30','Unknown','Mozilla'),(972,'223.104.19.197','2016-05-29 01:21:46','Android 6.x','Chrome Mobile'),(973,'115.239.228.202','2016-05-29 01:38:26','Windows 7','Internet Explorer 9'),(974,'222.186.58.150','2016-05-29 01:58:51','Windows 7','Internet Explorer 9'),(975,'172.82.166.210','2016-05-29 02:02:24','Unknown','Mozilla'),(976,'222.186.58.235','2016-05-29 02:04:56','Windows XP','Internet Explorer 6'),(977,'115.239.228.202','2016-05-29 02:49:03','Windows 7','Internet Explorer 9'),(978,'171.9.37.12','2016-05-29 02:59:15','Android 6.x','Chrome Mobile'),(979,'68.180.229.165','2016-05-29 03:11:34','Unknown','Robot/Spider'),(980,'220.181.108.95','2016-05-29 03:26:51','Unknown','Robot/Spider'),(981,'80.82.78.38','2016-05-29 03:38:21','Unknown','Mozilla'),(982,'213.246.45.128','2016-05-29 03:43:07','Unknown','Mozilla'),(983,'216.38.216.197','2016-05-29 03:43:29','Mac OS X','Chrome 13'),(984,'120.25.103.140','2016-05-29 03:48:10','Unknown','Unknown'),(985,'188.165.254.169','2016-05-29 03:49:59','Unknown','Unknown'),(986,'185.25.151.159','2016-05-29 03:51:21','Windows XP','Firefox 31'),(987,'115.239.228.202','2016-05-29 03:59:41','Windows 7','Internet Explorer 9'),(988,'61.157.96.193','2016-05-29 04:36:22','Windows 7','Internet Explorer 10'),(989,'115.239.228.202','2016-05-29 05:10:24','Windows 7','Internet Explorer 9'),(990,'101.226.166.205','2016-05-29 05:15:32','Windows 7','Chrome 21'),(991,'80.82.78.38','2016-05-29 05:21:48','Unknown','Mozilla'),(992,'219.235.15.52','2016-05-29 05:42:36','Windows','Unknown'),(993,'60.16.9.170','2016-05-29 06:13:14','Unknown','Internet Explorer 7'),(994,'115.239.228.202','2016-05-29 06:21:03','Windows 7','Internet Explorer 9'),(995,'121.42.0.33','2016-05-29 06:50:32','Unknown','Robot/Spider'),(996,'121.42.0.35','2016-05-29 06:52:19','Unknown','Robot/Spider'),(997,'42.156.136.44','2016-05-29 07:03:37','Unknown','Robot/Spider'),(998,'208.80.192.33','2016-05-29 07:28:01','Windows 7','Internet Explorer 8'),(999,'115.239.228.202','2016-05-29 07:31:37','Windows 7','Internet Explorer 9'),(1000,'180.76.15.142','2016-05-29 07:39:44','Windows XP','Firefox 6'),(1001,'80.82.78.38','2016-05-29 07:40:52','Unknown','Mozilla'),(1002,'42.156.138.28','2016-05-29 08:07:32','Unknown','Robot/Spider'),(1003,'172.82.166.210','2016-05-29 08:32:42','Unknown','Mozilla'),(1004,'115.239.228.202','2016-05-29 08:42:22','Windows 7','Internet Explorer 9'),(1005,'123.125.71.57','2016-05-29 08:52:14','Unknown','Robot/Spider'),(1006,'121.42.0.14','2016-05-29 08:58:44','Unknown','Unknown'),(1007,'80.82.78.38','2016-05-29 09:25:30','Unknown','Mozilla'),(1008,'115.239.228.202','2016-05-29 09:53:46','Windows 7','Internet Explorer 9'),(1009,'172.82.166.210','2016-05-29 10:14:11','Unknown','Mozilla'),(1010,'68.180.229.165','2016-05-29 10:19:54','Unknown','Robot/Spider'),(1011,'42.156.138.28','2016-05-29 10:24:34','Unknown','Robot/Spider'),(1012,'61.157.96.193','2016-05-29 10:34:41','Windows 7','Internet Explorer 10'),(1013,'120.24.251.13','2016-05-29 11:05:15','Unknown','Unknown'),(1014,'115.239.228.202','2016-05-29 11:05:34','Windows 7','Internet Explorer 9'),(1015,'80.82.78.38','2016-05-29 11:45:32','Unknown','Mozilla'),(1016,'120.194.82.142','2016-05-29 12:09:51','Windows 10','Firefox'),(1017,'171.9.37.12','2016-05-29 12:15:00','Android 6.x','Chrome Mobile'),(1018,'115.239.228.202','2016-05-29 12:16:51','Windows 7','Internet Explorer 9'),(1019,'112.74.206.117','2016-05-29 12:53:08','Unknown','Unknown'),(1020,'123.151.42.61','2016-05-29 13:06:14','Unknown','Unknown'),(1021,'171.9.37.12','2016-05-29 13:17:30','Windows 7','Chrome'),(1022,'115.239.228.202','2016-05-29 13:28:41','Windows 7','Internet Explorer 9'),(1023,'80.82.78.38','2016-05-29 13:30:48','Unknown','Mozilla'),(1024,'219.82.201.126','2016-05-29 13:47:52','Mac OS X','Safari 9'),(1025,'200.199.25.116','2016-05-29 14:37:32','Windows 98','Internet Explorer 6'),(1026,'115.239.228.202','2016-05-29 14:40:32','Windows 7','Internet Explorer 9'),(1027,'185.25.151.159','2016-05-29 15:09:01','Windows XP','Firefox 31'),(1028,'220.181.108.96','2016-05-29 15:45:44','Unknown','Robot/Spider'),(1029,'80.82.78.38','2016-05-29 15:50:31','Unknown','Mozilla'),(1030,'115.239.228.202','2016-05-29 15:52:09','Windows 7','Internet Explorer 9'),(1031,'219.82.201.126','2016-05-29 15:58:57','Mac OS X','Chrome'),(1032,'171.9.37.12','2016-05-29 16:17:32','Android 6.x','Chrome Mobile'),(1033,'61.157.96.193','2016-05-29 16:31:06','Windows 7','Internet Explorer 10'),(1034,'213.246.45.128','2016-05-29 16:40:13','Unknown','Mozilla'),(1035,'115.239.228.202','2016-05-29 17:04:38','Windows 7','Internet Explorer 9'),(1036,'80.82.78.38','2016-05-29 17:35:55','Unknown','Mozilla'),(1037,'223.104.19.193','2016-05-29 18:11:37','Android 6.x','Chrome Mobile'),(1038,'115.239.228.202','2016-05-29 18:16:57','Windows 7','Internet Explorer 9'),(1039,'212.83.179.44','2016-05-29 18:24:49','Unknown','Unknown'),(1040,'120.194.82.142','2016-05-29 19:14:17','Windows 7','Chrome'),(1041,'127.0.0.1','2016-05-29 19:16:15','Windows 7','Chrome'),(1042,'89.248.172.173','2016-05-29 19:17:38','Unknown','Unknown'),(1043,'115.239.228.202','2016-05-29 19:28:48','Windows 7','Internet Explorer 9'),(1044,'122.155.168.168','2016-05-29 20:02:05','Unknown','Robot/Spider'),(1045,'121.42.210.61','2016-05-29 20:32:41','Unknown','Unknown'),(1046,'120.194.82.142','2016-05-29 20:36:14','Windows 7','Chrome'),(1047,'115.239.228.202','2016-05-29 20:40:46','Windows 7','Internet Explorer 9'),(1048,'101.201.147.32','2016-05-29 20:45:16','Windows 10','Chrome 49'),(1049,'38.99.62.91','2016-05-29 21:34:38','Unknown','Mozilla'),(1050,'115.239.228.202','2016-05-29 21:52:48','Windows 7','Internet Explorer 9'),(1051,'93.180.64.230','2016-05-29 22:02:49','Unknown','Robot/Spider'),(1052,'61.157.96.193','2016-05-29 22:32:12','Windows 7','Internet Explorer 10'),(1053,'36.110.168.172','2016-05-29 22:45:46','Windows XP','Internet Explorer 7'),(1054,'115.239.228.202','2016-05-29 23:04:24','Windows 7','Internet Explorer 9'),(1055,'219.82.201.126','2016-05-29 23:07:28','Mac OS X','Safari 9'),(1056,'213.246.45.128','2016-05-29 23:12:23','Unknown','Mozilla'),(1057,'115.239.228.202','2016-05-30 00:15:47','Windows 7','Internet Explorer 9'),(1058,'171.9.37.12','2016-05-30 00:26:42','Windows 7','Chrome'),(1059,'121.42.0.57','2016-05-30 00:26:52','Windows 7','Internet Explorer 8'),(1060,'121.42.0.77','2016-05-30 00:26:53','Mac OS X','Firefox 41'),(1061,'121.42.0.77','2016-05-30 00:26:53','Mac OS X','Firefox 41'),(1062,'121.42.0.77','2016-05-30 00:26:53','Mac OS X','Firefox 41'),(1063,'211.103.254.15','2016-05-30 00:45:55','Windows 7','Internet Explorer 9'),(1064,'127.0.0.1','2016-05-30 00:59:29','Windows 7','Chrome'),(1065,'157.55.39.27','2016-05-30 01:09:36','Unknown','Robot/Spider'),(1066,'115.239.228.202','2016-05-30 01:27:20','Windows 7','Internet Explorer 9'),(1067,'171.9.37.12','2016-05-30 01:36:14','Windows 7','Chrome'),(1068,'80.82.78.38','2016-05-30 01:39:57','Unknown','Mozilla'),(1069,'127.0.0.1','2016-05-30 02:10:49','Windows 7','Chrome'),(1070,'115.239.228.202','2016-05-30 02:38:59','Windows 7','Internet Explorer 9'),(1071,'171.9.37.12','2016-05-30 02:54:23','Windows 7','Chrome'),(1072,'182.118.20.236','2016-05-30 03:21:22','Windows 7','Internet Explorer 9'),(1073,'182.118.55.198','2016-05-30 03:21:22','Windows 7','Internet Explorer 8'),(1074,'223.104.19.217','2016-05-30 03:21:58','Android 6.x','Chrome Mobile'),(1075,'115.239.228.202','2016-05-30 03:50:34','Windows 7','Internet Explorer 9'),(1076,'172.82.166.210','2016-05-30 03:57:46','Unknown','Mozilla'),(1077,'80.82.78.38','2016-05-30 03:58:00','Unknown','Mozilla'),(1078,'123.56.65.139','2016-05-30 04:02:05','Unknown','Unknown'),(1079,'23.251.63.45','2016-05-30 04:16:56','Windows XP','Internet Explorer 6'),(1080,'185.25.151.159','2016-05-30 04:31:15','Windows XP','Firefox 31'),(1081,'115.239.228.202','2016-05-30 05:02:16','Windows 7','Internet Explorer 9'),(1082,'172.82.166.210','2016-05-30 05:38:58','Unknown','Mozilla'),(1083,'80.82.78.38','2016-05-30 05:40:36','Unknown','Mozilla'),(1084,'114.215.239.201','2016-05-30 05:46:59','Unknown','Unknown'),(1085,'115.239.228.202','2016-05-30 06:13:54','Windows 7','Internet Explorer 9'),(1086,'121.42.0.35','2016-05-30 06:14:21','Unknown','Robot/Spider'),(1087,'123.59.59.52','2016-05-30 06:26:05','Windows 7','Firefox 29'),(1088,'115.230.124.164','2016-05-30 06:32:02','Windows 7','Internet Explorer 9'),(1089,'121.42.0.33','2016-05-30 06:53:40','Unknown','Robot/Spider'),(1090,'208.80.194.123','2016-05-30 07:16:28','Windows 7','Firefox 3'),(1091,'121.196.223.238','2016-05-30 07:19:46','Unknown','Unknown'),(1092,'115.239.228.202','2016-05-30 07:25:52','Windows 7','Internet Explorer 9'),(1093,'171.9.37.12','2016-05-30 07:56:35','Windows 7','Chrome'),(1094,'80.82.78.38','2016-05-30 07:58:04','Unknown','Mozilla'),(1095,'42.156.138.28','2016-05-30 08:28:39','Unknown','Robot/Spider'),(1096,'117.136.36.239','2016-05-30 08:30:49','Android 6.x','Chrome Mobile'),(1097,'115.239.228.202','2016-05-30 08:37:39','Windows 7','Internet Explorer 9'),(1098,'120.194.82.142','2016-05-30 09:07:33','Windows 7','Chrome'),(1099,'117.136.36.62','2016-05-30 09:22:50','Windows 7','Chrome'),(1100,'117.136.36.227','2016-05-30 09:37:53','Android 6.x','Chrome Mobile'),(1101,'127.0.0.1','2016-05-30 09:39:42','Windows 7','Chrome'),(1102,'80.82.78.38','2016-05-30 09:41:21','Unknown','Mozilla'),(1103,'115.239.228.202','2016-05-30 09:49:19','Windows 7','Internet Explorer 9'),(1104,'183.232.120.54','2016-05-30 09:52:49','Android 4.x','Mobile Safari'),(1105,'119.147.3.188','2016-05-30 09:52:50','Windows 7','Internet Explorer 9'),(1106,'113.108.21.69','2016-05-30 09:52:50','iOS 4 (iPhone)','Mobile Safari'),(1107,'180.153.206.26','2016-05-30 09:52:50','Android 4.x','Mobile Safari'),(1108,'213.246.45.128','2016-05-30 10:24:48','Unknown','Mozilla'),(1109,'61.157.96.193','2016-05-30 10:26:45','Windows 7','Internet Explorer 10'),(1110,'218.28.245.42','2016-05-30 10:39:10','Windows 7','Internet Explorer 11'),(1111,'123.125.71.113','2016-05-30 10:45:05','Unknown','Robot/Spider'),(1112,'115.239.228.202','2016-05-30 11:00:39','Windows 7','Internet Explorer 9'),(1113,'80.82.78.38','2016-05-30 12:00:04','Unknown','Mozilla'),(1114,'115.239.228.202','2016-05-30 12:12:19','Windows 7','Internet Explorer 9'),(1115,'161.69.163.20','2016-05-30 12:59:01','Windows 7','Firefox 29'),(1116,'167.114.172.223','2016-05-30 13:00:32','Unknown','Mozilla'),(1117,'171.9.37.12','2016-05-30 13:08:35','Android 6.x','Chrome Mobile'),(1118,'115.239.228.202','2016-05-30 13:23:46','Windows 7','Internet Explorer 9'),(1119,'120.194.82.142','2016-05-30 13:28:17','Windows 7','Chrome'),(1120,'127.0.0.1','2016-05-30 13:28:18','Windows 7','Chrome'),(1121,'23.251.63.45','2016-05-30 13:35:34','Windows XP','Internet Explorer 6'),(1122,'80.82.78.38','2016-05-30 13:44:31','Unknown','Mozilla'),(1123,'118.192.152.176','2016-05-30 14:25:47','Windows 8','Internet Explorer 10'),(1124,'115.239.228.202','2016-05-30 14:35:24','Windows 7','Internet Explorer 9'),(1125,'120.194.82.142','2016-05-30 15:09:14','Windows 7','Chrome'),(1126,'101.226.68.215','2016-05-30 15:11:26','iOS 4 (iPhone)','Mobile Safari'),(1127,'185.25.151.159','2016-05-30 15:23:28','Windows XP','Firefox 31'),(1128,'115.239.228.202','2016-05-30 15:46:46','Windows 7','Internet Explorer 9'),(1129,'123.125.71.110','2016-05-30 15:51:46','Unknown','Robot/Spider'),(1130,'66.249.85.200','2016-05-30 15:57:20','Unknown','Mozilla'),(1131,'66.249.85.206','2016-05-30 15:57:20','Unknown','Mozilla'),(1132,'66.102.6.150','2016-05-30 16:01:30','Unknown','Robot/Spider'),(1133,'66.102.6.158','2016-05-30 16:01:30','Unknown','Robot/Spider'),(1134,'66.102.6.158','2016-05-30 16:01:30','Unknown','Robot/Spider'),(1135,'66.102.6.154','2016-05-30 16:01:30','Unknown','Robot/Spider'),(1136,'66.102.6.158','2016-05-30 16:01:30','Unknown','Robot/Spider'),(1137,'80.82.78.38','2016-05-30 16:05:03','Unknown','Mozilla'),(1138,'66.249.75.57','2016-05-30 16:05:04','Unknown','Robot/Spider'),(1139,'66.249.75.49','2016-05-30 16:05:04','Unknown','Robot/Spider'),(1140,'66.249.75.41','2016-05-30 16:05:35','Unknown','Robot/Spider'),(1141,'120.26.55.211','2016-05-30 16:16:57','Unknown','Unknown'),(1142,'120.194.82.142','2016-05-30 16:40:51','Windows 7','Chrome'),(1143,'172.82.166.210','2016-05-30 16:50:11','Unknown','Mozilla'),(1144,'27.22.85.75','2016-05-30 16:57:08','Unknown','Mozilla'),(1145,'115.239.228.202','2016-05-30 16:58:17','Windows 7','Internet Explorer 9'),(1146,'220.181.108.76','2016-05-30 17:02:12','Unknown','Robot/Spider'),(1147,'61.135.190.197','2016-05-30 17:07:28','Linux','Safari'),(1148,'180.149.143.15','2016-05-30 17:07:29','Linux','Safari'),(1149,'91.121.83.118','2016-05-30 17:07:30','Windows 8.1','Chrome 37'),(1150,'180.149.143.151','2016-05-30 17:07:31','Linux','Safari'),(1151,'180.149.143.150','2016-05-30 17:07:31','Linux','Safari'),(1152,'180.149.143.21','2016-05-30 17:07:31','Linux','Safari'),(1153,'180.149.143.149','2016-05-30 17:07:31','Linux','Safari'),(1154,'61.135.190.200','2016-05-30 17:07:31','Linux','Safari'),(1155,'61.135.190.69','2016-05-30 17:07:31','Linux','Safari'),(1156,'61.135.190.71','2016-05-30 17:07:31','Linux','Safari'),(1157,'61.135.190.200','2016-05-30 17:07:31','Linux','Safari'),(1158,'61.135.190.200','2016-05-30 17:07:31','Linux','Safari'),(1159,'119.254.167.15','2016-05-30 17:08:02','Windows 7','Mozilla'),(1160,'103.38.43.215','2016-05-30 17:08:02','Windows','Mozilla'),(1161,'45.113.253.52','2016-05-30 17:08:02','Windows 7','Firefox 3'),(1162,'61.176.223.122','2016-05-30 17:08:02','Windows 7','Firefox 3'),(1163,'218.201.44.210','2016-05-30 17:08:02','Windows 7','Mozilla'),(1164,'211.101.17.14','2016-05-30 17:08:02','Windows 7','Mozilla'),(1165,'61.142.254.137','2016-05-30 17:08:02','Windows 7','Mozilla'),(1166,'113.17.173.34','2016-05-30 17:08:02','Windows 7','Mozilla'),(1167,'123.249.26.120','2016-05-30 17:08:02','Windows 7','Firefox 3'),(1168,'113.196.70.30','2016-05-30 17:08:02','Windows 7','Firefox 3'),(1169,'124.164.232.83','2016-05-30 17:08:02','Windows 7','Firefox 3'),(1170,'116.255.168.49','2016-05-30 17:08:03','Windows 7','Mozilla'),(1171,'119.188.66.85','2016-05-30 17:08:03','Windows','Mozilla'),(1172,'220.181.156.64','2016-05-30 17:08:03','Windows','Mozilla'),(1173,'61.160.224.20','2016-05-30 17:08:03','Windows','Mozilla'),(1174,'222.185.228.107','2016-05-30 17:08:03','Windows 7','Mozilla'),(1175,'221.130.199.55','2016-05-30 17:08:03','Windows','Mozilla'),(1176,'123.125.160.186','2016-05-30 17:08:03','Windows','Mozilla'),(1177,'118.244.232.80','2016-05-30 17:08:03','Windows 7','Mozilla'),(1178,'101.226.3.77','2016-05-30 17:08:03','Windows','Mozilla'),(1179,'220.181.156.244','2016-05-30 17:08:03','Windows','Mozilla'),(1180,'180.153.227.244','2016-05-30 17:08:03','Windows','Mozilla'),(1181,'123.183.216.232','2016-05-30 17:08:03','Windows','Mozilla'),(1182,'103.242.109.197','2016-05-30 17:08:03','Windows 7','Mozilla'),(1183,'202.102.97.190','2016-05-30 17:08:03','Windows 7','Mozilla'),(1184,'101.4.60.167','2016-05-30 17:08:03','Windows 7','Mozilla'),(1185,'103.24.228.139','2016-05-30 17:08:03','Windows 7','Mozilla'),(1186,'111.13.65.58','2016-05-30 17:08:04','Windows','Mozilla'),(1187,'60.28.115.30','2016-05-30 17:08:04','Windows','Mozilla'),(1188,'182.118.40.14','2016-05-30 17:08:04','Windows','Mozilla'),(1189,'123.147.240.143','2016-05-30 17:08:04','Windows 7','Mozilla'),(1190,'36.250.15.123','2016-05-30 17:08:04','Windows 7','Mozilla'),(1191,'183.136.168.232','2016-05-30 17:08:04','Windows 7','Mozilla'),(1192,'61.132.220.10','2016-05-30 17:08:04','Windows 7','Mozilla'),(1193,'27.221.19.20','2016-05-30 17:08:04','Windows','Mozilla'),(1194,'123.138.60.14','2016-05-30 17:08:04','Windows 7','Firefox 3'),(1195,'122.192.66.152','2016-05-30 17:08:04','Windows 7','Mozilla'),(1196,'117.27.158.22','2016-05-30 17:08:04','Windows','Mozilla'),(1197,'121.52.246.126','2016-05-30 17:08:04','Windows 7','Firefox 3'),(1198,'119.84.87.246','2016-05-30 17:08:04','Windows 7','Mozilla'),(1199,'210.209.89.144','2016-05-30 17:08:04','Windows 7','Mozilla'),(1200,'111.206.61.97','2016-05-30 17:08:05','Windows','Mozilla'),(1201,'220.181.156.78','2016-05-30 17:08:05','Windows','Mozilla'),(1202,'61.240.129.31','2016-05-30 17:08:05','Windows','Mozilla'),(1203,'116.211.125.26','2016-05-30 17:08:05','Windows','Mozilla'),(1204,'182.242.228.143','2016-05-30 17:08:05','Windows','Mozilla'),(1205,'117.177.240.47','2016-05-30 17:08:05','Windows 7','Mozilla'),(1206,'183.136.137.12','2016-05-30 17:08:05','Windows','Mozilla'),(1207,'117.21.229.197','2016-05-30 17:08:05','Windows 7','Firefox 3'),(1208,'125.88.219.96','2016-05-30 17:08:05','Windows','Mozilla'),(1209,'61.180.251.23','2016-05-30 17:08:05','Windows 7','Mozilla'),(1210,'182.140.230.14','2016-05-30 17:08:05','Windows','Mozilla'),(1211,'123.125.80.222','2016-05-30 17:08:06','Windows','Mozilla'),(1212,'140.207.197.64','2016-05-30 17:08:09','Windows','Mozilla'),(1213,'222.73.134.201','2016-05-30 17:09:43','Windows 7','Mozilla'),(1214,'80.82.78.38','2016-05-30 17:50:48','Unknown','Mozilla'),(1215,'66.249.69.252','2016-05-30 17:56:42','Unknown','Robot/Spider'),(1216,'66.249.69.247','2016-05-30 17:56:43','Unknown','Robot/Spider'),(1217,'66.249.69.242','2016-05-30 17:57:15','Unknown','Robot/Spider'),(1218,'115.239.228.202','2016-05-30 18:09:56','Windows 7','Internet Explorer 9'),(1219,'117.136.36.50','2016-05-30 18:25:34','Android 6.x','Chrome Mobile'),(1220,'172.82.166.210','2016-05-30 18:31:48','Unknown','Mozilla'),(1221,'220.181.51.40','2016-05-30 18:45:22','Linux','Downloading Tool'),(1222,'121.199.70.200','2016-05-30 19:06:43','Unknown','Unknown'),(1223,'115.239.228.202','2016-05-30 19:21:57','Windows 7','Internet Explorer 9'),(1224,'120.194.82.142','2016-05-30 19:28:53','Windows 7','Chrome'),(1225,'188.215.69.100','2016-05-30 19:58:10','Windows 7','Firefox 38'),(1226,'80.82.78.38','2016-05-30 20:12:54','Unknown','Mozilla'),(1227,'120.194.82.142','2016-05-30 20:28:56','Android 4.x','Chrome Mobile'),(1228,'115.239.228.202','2016-05-30 20:33:28','Windows 7','Internet Explorer 9'),(1229,'127.0.0.1','2016-05-30 20:54:08','Unknown','Unknown');
/*!40000 ALTER TABLE `website_traffic` 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 2016-05-30 20:58:04