-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdata.spl
More file actions
582 lines (503 loc) · 67.6 KB
/
data.spl
File metadata and controls
582 lines (503 loc) · 67.6 KB
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
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
-- MySQL dump 10.13 Distrib 8.0.19, for Win64 (x86_64)
--
-- Host: localhost Database: mysite0_db
-- ------------------------------------------------------
-- Server version 8.0.19
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!50503 SET NAMES utf8mb4 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
--
-- Table structure for table `auth_group`
--
DROP TABLE IF EXISTS `auth_group`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `auth_group` (
`id` int NOT NULL AUTO_INCREMENT,
`name` varchar(150) COLLATE utf8mb4_unicode_ci NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `name` (`name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `auth_group`
--
LOCK TABLES `auth_group` WRITE;
/*!40000 ALTER TABLE `auth_group` DISABLE KEYS */;
/*!40000 ALTER TABLE `auth_group` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `auth_group_permissions`
--
DROP TABLE IF EXISTS `auth_group_permissions`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `auth_group_permissions` (
`id` int NOT NULL AUTO_INCREMENT,
`group_id` int NOT NULL,
`permission_id` int NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `auth_group_permissions_group_id_permission_id_0cd325b0_uniq` (`group_id`,`permission_id`),
KEY `auth_group_permissio_permission_id_84c5c92e_fk_auth_perm` (`permission_id`),
CONSTRAINT `auth_group_permissio_permission_id_84c5c92e_fk_auth_perm` FOREIGN KEY (`permission_id`) REFERENCES `auth_permission` (`id`),
CONSTRAINT `auth_group_permissions_group_id_b120cbf9_fk_auth_group_id` FOREIGN KEY (`group_id`) REFERENCES `auth_group` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `auth_group_permissions`
--
LOCK TABLES `auth_group_permissions` WRITE;
/*!40000 ALTER TABLE `auth_group_permissions` DISABLE KEYS */;
/*!40000 ALTER TABLE `auth_group_permissions` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `auth_permission`
--
DROP TABLE IF EXISTS `auth_permission`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `auth_permission` (
`id` int NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`content_type_id` int NOT NULL,
`codename` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `auth_permission_content_type_id_codename_01ab375a_uniq` (`content_type_id`,`codename`),
CONSTRAINT `auth_permission_content_type_id_2f476e4b_fk_django_co` FOREIGN KEY (`content_type_id`) REFERENCES `django_content_type` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=61 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `auth_permission`
--
LOCK TABLES `auth_permission` WRITE;
/*!40000 ALTER TABLE `auth_permission` DISABLE KEYS */;
INSERT INTO `auth_permission` VALUES (1,'Can add log entry',1,'add_logentry'),(2,'Can change log entry',1,'change_logentry'),(3,'Can delete log entry',1,'delete_logentry'),(4,'Can view log entry',1,'view_logentry'),(5,'Can add permission',2,'add_permission'),(6,'Can change permission',2,'change_permission'),(7,'Can delete permission',2,'delete_permission'),(8,'Can view permission',2,'view_permission'),(9,'Can add group',3,'add_group'),(10,'Can change group',3,'change_group'),(11,'Can delete group',3,'delete_group'),(12,'Can view group',3,'view_group'),(13,'Can add user',4,'add_user'),(14,'Can change user',4,'change_user'),(15,'Can delete user',4,'delete_user'),(16,'Can view user',4,'view_user'),(17,'Can add content type',5,'add_contenttype'),(18,'Can change content type',5,'change_contenttype'),(19,'Can delete content type',5,'delete_contenttype'),(20,'Can view content type',5,'view_contenttype'),(21,'Can add session',6,'add_session'),(22,'Can change session',6,'change_session'),(23,'Can delete session',6,'delete_session'),(24,'Can view session',6,'view_session'),(25,'Can add blog type',7,'add_blogtype'),(26,'Can change blog type',7,'change_blogtype'),(27,'Can delete blog type',7,'delete_blogtype'),(28,'Can view blog type',7,'view_blogtype'),(29,'Can add blog',8,'add_blog'),(30,'Can change blog',8,'change_blog'),(31,'Can delete blog',8,'delete_blog'),(32,'Can view blog',8,'view_blog'),(33,'Can add read num',9,'add_readnum'),(34,'Can change read num',9,'change_readnum'),(35,'Can delete read num',9,'delete_readnum'),(36,'Can view read num',9,'view_readnum'),(37,'Can add read num',10,'add_readnum'),(38,'Can change read num',10,'change_readnum'),(39,'Can delete read num',10,'delete_readnum'),(40,'Can view read num',10,'view_readnum'),(41,'Can add read detail',11,'add_readdetail'),(42,'Can change read detail',11,'change_readdetail'),(43,'Can delete read detail',11,'delete_readdetail'),(44,'Can view read detail',11,'view_readdetail'),(45,'Can add comment',12,'add_comment'),(46,'Can change comment',12,'change_comment'),(47,'Can delete comment',12,'delete_comment'),(48,'Can view comment',12,'view_comment'),(49,'Can add like count',13,'add_likecount'),(50,'Can change like count',13,'change_likecount'),(51,'Can delete like count',13,'delete_likecount'),(52,'Can view like count',13,'view_likecount'),(53,'Can add like record',14,'add_likerecord'),(54,'Can change like record',14,'change_likerecord'),(55,'Can delete like record',14,'delete_likerecord'),(56,'Can view like record',14,'view_likerecord'),(57,'Can add profile',15,'add_profile'),(58,'Can change profile',15,'change_profile'),(59,'Can delete profile',15,'delete_profile'),(60,'Can view profile',15,'view_profile');
/*!40000 ALTER TABLE `auth_permission` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `auth_user`
--
DROP TABLE IF EXISTS `auth_user`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `auth_user` (
`id` int NOT NULL AUTO_INCREMENT,
`password` varchar(128) COLLATE utf8mb4_unicode_ci NOT NULL,
`last_login` datetime(6) DEFAULT NULL,
`is_superuser` tinyint(1) NOT NULL,
`username` varchar(150) COLLATE utf8mb4_unicode_ci NOT NULL,
`first_name` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL,
`last_name` varchar(150) COLLATE utf8mb4_unicode_ci NOT NULL,
`email` varchar(254) COLLATE utf8mb4_unicode_ci NOT NULL,
`is_staff` tinyint(1) NOT NULL,
`is_active` tinyint(1) NOT NULL,
`date_joined` datetime(6) NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `username` (`username`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `auth_user`
--
LOCK TABLES `auth_user` WRITE;
/*!40000 ALTER TABLE `auth_user` DISABLE KEYS */;
INSERT INTO `auth_user` VALUES (1,'pbkdf2_sha256$180000$HYALpYdeOixg$8E1Lg254ADzDSmH/gJRQRQH8Xx2YfD8qmJFkezXil4E=','2020-04-06 05:16:00.000000',1,'simpleuinb','','','448976348@qq.com',1,1,'2020-03-03 09:16:00.000000'),(2,'pbkdf2_sha256$180000$rPJzR6AJrv5W$sHnflezs/7fNv/wqsc5klIyHeCYeaRuxicQC06EaSk0=','2020-04-06 06:12:02.600000',0,'user0','','','',0,1,'2020-03-29 13:44:00.000000'),(3,'pbkdf2_sha256$180000$I6MwysIbVKr2$K87X4+jcWUli6LTMvlkAQW+OR1GEBtau/09BqgFyOAE=','2020-04-06 05:15:57.728000',0,'user1','','','1@qq.com',0,1,'2020-03-29 13:45:42.997000'),(4,'pbkdf2_sha256$180000$9Syby6LxJogX$MfeRtiBGyipZ/SQBArTyrEJpq61kFlD1Yosh7fGZlR4=','2020-03-29 13:47:41.141000',0,'user2','','','2@qq.com',0,1,'2020-03-29 13:47:40.925000'),(5,'pbkdf2_sha256$180000$x0vVck5C61qU$0r1SmBQO9v77SRYMUTD9k9gNq4hyr599tJ3fELqG/Ok=','2020-04-07 08:28:38.657318',0,'BOI97','','','yf2913128@gmail.com',0,1,'2020-04-06 06:47:22.929000');
/*!40000 ALTER TABLE `auth_user` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `auth_user_groups`
--
DROP TABLE IF EXISTS `auth_user_groups`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `auth_user_groups` (
`id` int NOT NULL AUTO_INCREMENT,
`user_id` int NOT NULL,
`group_id` int NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `auth_user_groups_user_id_group_id_94350c0c_uniq` (`user_id`,`group_id`),
KEY `auth_user_groups_group_id_97559544_fk_auth_group_id` (`group_id`),
CONSTRAINT `auth_user_groups_group_id_97559544_fk_auth_group_id` FOREIGN KEY (`group_id`) REFERENCES `auth_group` (`id`),
CONSTRAINT `auth_user_groups_user_id_6a12ed8b_fk_auth_user_id` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `auth_user_groups`
--
LOCK TABLES `auth_user_groups` WRITE;
/*!40000 ALTER TABLE `auth_user_groups` DISABLE KEYS */;
/*!40000 ALTER TABLE `auth_user_groups` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `auth_user_user_permissions`
--
DROP TABLE IF EXISTS `auth_user_user_permissions`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `auth_user_user_permissions` (
`id` int NOT NULL AUTO_INCREMENT,
`user_id` int NOT NULL,
`permission_id` int NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `auth_user_user_permissions_user_id_permission_id_14a6b632_uniq` (`user_id`,`permission_id`),
KEY `auth_user_user_permi_permission_id_1fbb5f2c_fk_auth_perm` (`permission_id`),
CONSTRAINT `auth_user_user_permi_permission_id_1fbb5f2c_fk_auth_perm` FOREIGN KEY (`permission_id`) REFERENCES `auth_permission` (`id`),
CONSTRAINT `auth_user_user_permissions_user_id_a95ead1b_fk_auth_user_id` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `auth_user_user_permissions`
--
LOCK TABLES `auth_user_user_permissions` WRITE;
/*!40000 ALTER TABLE `auth_user_user_permissions` DISABLE KEYS */;
/*!40000 ALTER TABLE `auth_user_user_permissions` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `blog_blog`
--
DROP TABLE IF EXISTS `blog_blog`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `blog_blog` (
`id` int NOT NULL AUTO_INCREMENT,
`title` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL,
`content` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`created_time` datetime(6) NOT NULL,
`last_updated_time` datetime(6) NOT NULL,
`author_id` int NOT NULL,
`blog_type_id` int NOT NULL,
PRIMARY KEY (`id`),
KEY `blog_blog_author_id_8791af69_fk_auth_user_id` (`author_id`),
KEY `blog_blog_blog_type_id_de11bd65_fk_blog_blogtype_id` (`blog_type_id`),
CONSTRAINT `blog_blog_author_id_8791af69_fk_auth_user_id` FOREIGN KEY (`author_id`) REFERENCES `auth_user` (`id`),
CONSTRAINT `blog_blog_blog_type_id_de11bd65_fk_blog_blogtype_id` FOREIGN KEY (`blog_type_id`) REFERENCES `blog_blogtype` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=37 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `blog_blog`
--
LOCK TABLES `blog_blog` WRITE;
/*!40000 ALTER TABLE `blog_blog` DISABLE KEYS */;
INSERT INTO `blog_blog` VALUES (1,'First Blog','First BlogFirst BlogFirst BlogFirst BlogFirst Blog','2020-03-03 09:42:33.046000','2020-03-03 09:45:26.593000',1,3),(2,'Second Blog','啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊','2020-03-03 10:35:29.323000','2020-03-03 10:35:29.323000',1,1),(3,'长博客1','阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦阿斯顿撒旦','2020-03-03 11:06:00.373000','2020-03-04 05:56:27.006000',1,2),(4,'Third Blog','Sample','2020-03-03 11:57:16.453000','2020-03-03 11:57:16.453000',1,2),(5,'shell下第1篇','SampleSampleSampleSampleSampleSampleSample','2020-03-04 11:42:57.275000','2020-03-04 11:42:57.275000',1,1),(7,'for 1','Sample 1','2020-03-04 11:58:46.011000','2020-03-04 11:58:46.011000',1,1),(8,'for 2','Sample 2','2020-03-04 11:58:46.013000','2020-03-04 11:58:46.013000',1,1),(9,'for 3','Sample 3','2020-03-04 11:58:46.015000','2020-03-04 11:58:46.015000',1,1),(10,'for 4','Sample 4','2020-03-04 11:58:46.016000','2020-03-04 11:58:46.016000',1,1),(11,'for 5','Sample 5','2020-03-04 11:58:46.018000','2020-03-04 11:58:46.018000',1,1),(12,'for 6','Sample 6','2020-03-04 11:58:46.020000','2020-03-04 11:58:46.020000',1,1),(13,'for 7','Sample 7','2020-03-04 11:58:46.022000','2020-03-04 11:58:46.022000',1,1),(14,'for 8','Sample 8','2020-03-04 11:58:46.024000','2020-03-04 11:58:46.024000',1,1),(15,'for 9','Sample 9','2020-03-04 11:58:46.026000','2020-03-04 11:58:46.026000',1,1),(16,'for 10','Sample 10','2020-03-04 11:58:46.027000','2020-03-04 11:58:46.027000',1,1),(17,'for 11','Sample 11','2020-03-04 11:58:46.029000','2020-03-04 11:58:46.029000',1,1),(18,'for 12','Sample 12','2020-03-04 11:58:46.031000','2020-03-04 11:58:46.031000',1,1),(19,'for 13','Sample 13','2020-03-04 11:58:46.033000','2020-03-04 11:58:46.033000',1,1),(20,'for 14','Sample 14','2020-03-04 11:58:46.035000','2020-03-04 11:58:46.035000',1,1),(21,'for 15','Sample 15','2020-03-04 11:58:46.036000','2020-03-04 11:58:46.036000',1,1),(22,'for 16','Sample 16','2020-03-04 11:58:46.038000','2020-03-04 11:58:46.038000',1,1),(23,'for 17','Sample 17','2020-03-04 11:58:46.040000','2020-03-04 11:58:46.040000',1,1),(24,'for 18','Sample 18','2020-03-04 11:58:46.042000','2020-03-04 11:58:46.042000',1,1),(25,'for 19','Sample 19','2020-03-04 11:58:46.044000','2020-03-04 11:58:46.044000',1,1),(26,'for 20','Sample 20','2020-03-04 11:58:46.045000','2020-03-04 11:58:46.045000',1,1),(27,'for 21','Sample 21','2020-03-04 11:58:46.047000','2020-03-04 11:58:46.047000',1,1),(28,'for 22','Sample 22','2020-03-04 11:58:46.049000','2020-03-04 11:58:46.049000',1,1),(29,'for 23','Sample 23','2020-03-04 11:58:46.051000','2020-03-04 11:58:46.051000',1,1),(30,'for 24','Sample 24','2020-03-04 11:58:46.053000','2020-03-04 11:58:46.053000',1,1),(31,'for 25','Sample 25','2020-03-04 11:58:46.054000','2020-03-04 11:58:46.054000',1,1),(32,'for 26','Sample 26','2020-03-04 11:58:46.056000','2020-03-04 11:58:46.056000',1,1),(33,'for 27','Sample 27','2020-03-04 11:58:46.058000','2020-03-04 11:58:46.058000',1,1),(34,'for 28','Sample 28','2020-03-04 11:58:46.060000','2020-03-04 11:58:46.060000',1,1),(35,'for 29','Sample 29','2020-03-04 11:58:46.062000','2020-03-04 11:58:46.062000',1,1),(36,'for 30','Sample 30','2020-03-04 11:58:46.064000','2020-03-05 14:29:51.375000',1,1);
/*!40000 ALTER TABLE `blog_blog` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `blog_blogtype`
--
DROP TABLE IF EXISTS `blog_blogtype`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `blog_blogtype` (
`id` int NOT NULL AUTO_INCREMENT,
`type_name` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `blog_blogtype`
--
LOCK TABLES `blog_blogtype` WRITE;
/*!40000 ALTER TABLE `blog_blogtype` DISABLE KEYS */;
INSERT INTO `blog_blogtype` VALUES (1,'随笔'),(2,'感悟'),(3,'Django');
/*!40000 ALTER TABLE `blog_blogtype` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `comment_comment`
--
DROP TABLE IF EXISTS `comment_comment`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `comment_comment` (
`id` int NOT NULL AUTO_INCREMENT,
`object_id` int unsigned NOT NULL,
`text` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`comment_time` datetime(6) NOT NULL,
`content_type_id` int NOT NULL,
`user_id` int NOT NULL,
`parent_id` int DEFAULT NULL,
`reply_to_id` int DEFAULT NULL,
`root_id` int DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `comment_comment_content_type_id_fbfb9793_fk_django_co` (`content_type_id`),
KEY `comment_comment_parent_id_b612524c_fk_comment_comment_id` (`parent_id`),
KEY `comment_comment_reply_to_id_e0adcef8_fk_auth_user_id` (`reply_to_id`),
KEY `comment_comment_root_id_28721811_fk_comment_comment_id` (`root_id`),
KEY `comment_comment_user_id_6078e57b_fk_auth_user_id` (`user_id`),
CONSTRAINT `comment_comment_content_type_id_fbfb9793_fk_django_co` FOREIGN KEY (`content_type_id`) REFERENCES `django_content_type` (`id`),
CONSTRAINT `comment_comment_parent_id_b612524c_fk_comment_comment_id` FOREIGN KEY (`parent_id`) REFERENCES `comment_comment` (`id`),
CONSTRAINT `comment_comment_reply_to_id_e0adcef8_fk_auth_user_id` FOREIGN KEY (`reply_to_id`) REFERENCES `auth_user` (`id`),
CONSTRAINT `comment_comment_root_id_28721811_fk_comment_comment_id` FOREIGN KEY (`root_id`) REFERENCES `comment_comment` (`id`),
CONSTRAINT `comment_comment_user_id_6078e57b_fk_auth_user_id` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`),
CONSTRAINT `comment_comment_chk_1` CHECK ((`object_id` >= 0))
) ENGINE=InnoDB AUTO_INCREMENT=71 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `comment_comment`
--
LOCK TABLES `comment_comment` WRITE;
/*!40000 ALTER TABLE `comment_comment` DISABLE KEYS */;
INSERT INTO `comment_comment` VALUES (1,36,'123','2020-03-26 09:51:39.651000',8,1,NULL,NULL,NULL),(2,36,'234','2020-03-26 09:59:10.941000',8,1,NULL,NULL,NULL),(3,36,'啊实打实大苏打','2020-03-30 07:53:52.229000',8,4,NULL,NULL,NULL),(4,36,'<p><strong>456</strong></p>','2020-03-31 09:24:02.625000',8,4,NULL,NULL,NULL),(5,36,'<p><strong>123</strong></p>','2020-03-31 10:54:53.073000',8,1,NULL,NULL,NULL),(6,36,'<p>123</p>','2020-03-31 16:12:01.121000',8,1,NULL,NULL,NULL),(7,36,'<p>223</p>','2020-03-31 16:19:18.125000',8,1,NULL,NULL,NULL),(8,36,'<p>323</p>','2020-03-31 16:28:36.551000',8,1,NULL,NULL,NULL),(9,36,'<p>789</p>','2020-03-31 16:34:21.142000',8,1,NULL,NULL,NULL),(10,36,'<p>1111</p>','2020-03-31 16:44:00.731000',8,1,NULL,NULL,NULL),(11,36,'<p>111111</p>','2020-03-31 16:44:41.714000',8,1,NULL,NULL,NULL),(12,36,'<p>222</p>','2020-03-31 16:47:40.900000',8,1,NULL,NULL,NULL),(13,36,'<p>333</p>','2020-03-31 16:48:25.770000',8,1,NULL,NULL,NULL),(17,36,'<p><img alt=\"smiley\" height=\"23\" src=\"http://127.0.0.1:8000/static/ckeditor/ckeditor/plugins/smiley/images/regular_smile.png\" title=\"smiley\" width=\"23\" /></p>\r\n\r\n<p> </p>','2020-04-01 13:56:25.398000',8,1,NULL,NULL,NULL),(18,36,'<p><img alt=\"crying\" height=\"23\" src=\"http://127.0.0.1:8000/static/ckeditor/ckeditor/plugins/smiley/images/cry_smile.png\" title=\"crying\" width=\"23\" /></p>','2020-04-02 12:01:56.933000',8,1,17,1,17),(19,35,'<p>1</p>','2020-04-03 10:23:18.138000',8,1,NULL,NULL,NULL),(20,36,'<p>test0</p>','2020-04-04 02:37:10.780000',8,1,NULL,NULL,NULL),(21,36,'<p>test1</p>','2020-04-04 02:39:38.144000',8,1,NULL,NULL,NULL),(22,36,'<p>test2</p>','2020-04-04 02:45:20.772000',8,1,NULL,NULL,NULL),(23,36,'<p>test3</p>','2020-04-04 02:53:03.900000',8,1,22,1,22),(24,36,'<p>test4</p>','2020-04-04 02:54:46.711000',8,1,NULL,NULL,NULL),(25,36,'<p>test5</p>','2020-04-04 03:09:21.833000',8,1,NULL,NULL,NULL),(26,36,'<p>test6</p>','2020-04-04 03:32:48.224000',8,1,25,1,25),(27,36,'<p>test7</p>','2020-04-04 03:37:14.026000',8,1,26,1,25),(28,36,'<p>test8</p>','2020-04-04 03:47:47.000000',8,1,27,1,25),(29,36,'<p>test9</p>','2020-04-04 03:48:34.706000',8,1,NULL,NULL,NULL),(30,36,'<p>test10</p>','2020-04-04 03:50:16.535000',8,1,25,1,25),(31,36,'<p>test11</p>','2020-04-04 03:50:31.100000',8,1,26,1,25),(32,34,'<p>aaaaaaaaaaaaaaaaaaa</p>','2020-04-04 04:28:37.226000',8,1,NULL,NULL,NULL),(33,36,'<p>hahahahah</p>','2020-04-04 04:39:17.087000',8,1,NULL,NULL,NULL),(34,36,'<p>heheheheh</p>','2020-04-04 04:39:23.734000',8,1,33,1,33),(35,36,'<p>kkkkkkkk</p>','2020-04-04 04:43:58.342000',8,1,34,1,33),(36,36,'<p>my forzen dream<img alt=\"smiley\" height=\"23\" src=\"http://127.0.0.1:8000/static/ckeditor/ckeditor/plugins/smiley/images/regular_smile.png\" title=\"smiley\" width=\"23\" /></p>','2020-04-04 12:30:33.979000',8,1,NULL,NULL,NULL),(37,36,'<p>my forzen dream<img alt=\"smiley\" height=\"23\" src=\"http://127.0.0.1:8000/static/ckeditor/ckeditor/plugins/smiley/images/regular_smile.png\" title=\"smiley\" width=\"23\" /></p>','2020-04-04 12:30:35.145000',8,1,NULL,NULL,NULL),(38,36,'<p>my forzen dream<img alt=\"smiley\" height=\"23\" src=\"http://127.0.0.1:8000/static/ckeditor/ckeditor/plugins/smiley/images/regular_smile.png\" title=\"smiley\" width=\"23\" /></p>','2020-04-04 12:30:36.982000',8,1,NULL,NULL,NULL),(39,36,'<p>my forzen dream<img alt=\"smiley\" height=\"23\" src=\"http://127.0.0.1:8000/static/ckeditor/ckeditor/plugins/smiley/images/regular_smile.png\" title=\"smiley\" width=\"23\" /></p>','2020-04-04 12:33:00.236000',8,1,NULL,NULL,NULL),(40,36,'<p>my forzen dream<img alt=\"smiley\" height=\"23\" src=\"http://127.0.0.1:8000/static/ckeditor/ckeditor/plugins/smiley/images/regular_smile.png\" title=\"smiley\" width=\"23\" /><img alt=\"wink\" height=\"23\" src=\"http://127.0.0.1:8000/static/ckeditor/ckeditor/plugins/smiley/images/wink_smile.png\" title=\"wink\" width=\"23\" /></p>','2020-04-04 12:33:14.378000',8,1,NULL,NULL,NULL),(41,36,'<p>1111</p>','2020-04-04 12:35:11.570000',8,1,40,1,40),(42,36,'<p>2222</p>','2020-04-04 12:36:31.937000',8,1,41,1,40),(43,36,'<p>3333</p>','2020-04-04 12:40:43.854000',8,1,NULL,NULL,NULL),(44,36,'<p>4444</p>','2020-04-04 12:51:38.741000',8,1,43,1,43),(45,36,'<p>5555</p>','2020-04-04 16:17:55.320000',8,1,43,1,43),(46,36,'<p>6666</p>','2020-04-05 02:03:57.131000',8,1,NULL,NULL,NULL),(47,36,'<p><img alt=\"yes\" height=\"23\" src=\"http://127.0.0.1:8000/static/ckeditor/ckeditor/plugins/smiley/images/thumbs_up.png\" title=\"yes\" width=\"23\" /></p>','2020-04-05 15:46:12.904000',8,2,46,1,46),(48,36,'<p><img alt=\"enlightened\" height=\"23\" src=\"http://127.0.0.1:8000/static/ckeditor/ckeditor/plugins/smiley/images/lightbulb.png\" title=\"enlightened\" width=\"23\" /></p>','2020-04-05 15:46:58.200000',8,2,NULL,NULL,NULL),(49,36,'<p>000000</p>','2020-04-05 15:47:35.708000',8,2,47,2,46),(50,36,'<p>000000</p>','2020-04-05 15:47:38.493000',8,2,47,2,46),(51,36,'<p>000000</p>','2020-04-05 15:47:45.544000',8,2,47,2,46),(52,36,'<p>000000</p>','2020-04-05 15:47:49.281000',8,2,47,2,46),(53,36,'<p>000000</p>','2020-04-05 15:47:49.898000',8,2,47,2,46),(54,36,'<p>000000</p>','2020-04-05 15:48:09.225000',8,2,47,2,46),(55,36,'<p>hahahahahah</p>','2020-04-06 16:01:51.615000',8,5,NULL,NULL,NULL),(56,36,'<p>shahahah</p>','2020-04-06 16:31:44.029000',8,5,NULL,NULL,NULL),(57,36,'<p>shahahah</p>','2020-04-06 16:33:16.668000',8,5,NULL,NULL,NULL),(58,36,'<p>asdsad</p>','2020-04-06 16:33:20.902000',8,5,NULL,NULL,NULL),(59,36,'<p>asdasd</p>','2020-04-06 16:34:27.441000',8,5,NULL,NULL,NULL),(60,36,'<p>asdasd</p>','2020-04-06 16:34:28.882000',8,5,NULL,NULL,NULL),(61,36,'<p>12213213231</p>','2020-04-06 16:34:57.796000',8,5,NULL,NULL,NULL),(62,36,'<p>77777777</p>','2020-04-06 16:35:39.441000',8,5,46,1,46),(63,36,'<p>lalalalalala</p>','2020-04-06 16:37:18.157000',8,5,46,1,46),(64,36,'<p>MT发送邮件通知测试</p>','2020-04-06 16:47:43.320000',8,5,NULL,NULL,NULL),(65,36,'<p>html邮件测试</p>','2020-04-06 16:52:32.379000',8,5,NULL,NULL,NULL),(66,36,'<p>html模板组织内容发送邮件</p>','2020-04-06 16:59:30.256000',8,5,NULL,NULL,NULL),(67,36,'<p>test</p>','2020-04-06 17:02:53.198000',8,5,NULL,NULL,NULL),(68,36,'<p>test2</p>','2020-04-06 17:04:16.267000',8,5,NULL,NULL,NULL),(69,36,'<p>test3</p>','2020-04-06 17:05:46.329000',8,5,NULL,NULL,NULL),(70,36,'<p>lalalal</p>','2020-04-06 17:06:53.349000',8,5,NULL,NULL,NULL);
/*!40000 ALTER TABLE `comment_comment` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `django_admin_log`
--
DROP TABLE IF EXISTS `django_admin_log`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `django_admin_log` (
`id` int NOT NULL AUTO_INCREMENT,
`action_time` datetime(6) NOT NULL,
`object_id` longtext COLLATE utf8mb4_unicode_ci,
`object_repr` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
`action_flag` smallint unsigned NOT NULL,
`change_message` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`content_type_id` int DEFAULT NULL,
`user_id` int NOT NULL,
PRIMARY KEY (`id`),
KEY `django_admin_log_content_type_id_c4bce8eb_fk_django_co` (`content_type_id`),
KEY `django_admin_log_user_id_c564eba6_fk_auth_user_id` (`user_id`),
CONSTRAINT `django_admin_log_content_type_id_c4bce8eb_fk_django_co` FOREIGN KEY (`content_type_id`) REFERENCES `django_content_type` (`id`),
CONSTRAINT `django_admin_log_user_id_c564eba6_fk_auth_user_id` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`),
CONSTRAINT `django_admin_log_chk_1` CHECK ((`action_flag` >= 0))
) ENGINE=InnoDB AUTO_INCREMENT=42 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `django_admin_log`
--
LOCK TABLES `django_admin_log` WRITE;
/*!40000 ALTER TABLE `django_admin_log` DISABLE KEYS */;
INSERT INTO `django_admin_log` VALUES (1,'2020-03-03 09:27:31.425000','1','BlogType object (1)',1,'[{\"added\": {}}]',7,1),(2,'2020-03-03 09:27:35.703000','2','BlogType object (2)',1,'[{\"added\": {}}]',7,1),(3,'2020-03-03 09:27:44.538000','3','BlogType object (3)',1,'[{\"added\": {}}]',7,1),(4,'2020-03-03 09:42:33.047000','1','<Blog: First Blog>',1,'[{\"added\": {}}]',8,1),(5,'2020-03-03 09:43:24.561000','1','Blog object (1)',2,'[]',8,1),(6,'2020-03-03 09:44:12.212000','1','随笔',2,'[]',7,1),(7,'2020-03-03 09:45:12.028000','1','First Blog',2,'[]',8,1),(8,'2020-03-03 09:45:26.594000','1','<Blog: First Blog>',2,'[]',8,1),(9,'2020-03-03 10:35:29.324000','2','<Blog: Second Blog>',1,'[{\"added\": {}}]',8,1),(10,'2020-03-03 11:06:00.374000','3','<Blog: 长博客1>',1,'[{\"added\": {}}]',8,1),(11,'2020-03-03 11:57:16.454000','4','<Blog: Third Blog>',1,'[{\"added\": {}}]',8,1),(12,'2020-03-03 15:52:10.636000','3','<Blog: 长博客1>',2,'[{\"changed\": {\"fields\": [\"Content\"]}}]',8,1),(13,'2020-03-04 05:46:06.242000','3','<Blog: 长博客1>',2,'[{\"changed\": {\"fields\": [\"Content\"]}}]',8,1),(14,'2020-03-04 05:55:03.083000','3','<Blog: 长博客1>',2,'[{\"changed\": {\"fields\": [\"Content\"]}}]',8,1),(15,'2020-03-04 05:56:27.008000','3','<Blog: 长博客1>',2,'[{\"changed\": {\"fields\": [\"Content\"]}}]',8,1),(16,'2020-03-04 11:54:35.109000','6','<Blog: >',3,'',8,1),(17,'2020-03-06 09:08:55.954000','1','ReadNum object (1)',1,'[{\"added\": {}}]',9,1),(18,'2020-03-07 05:22:43.570000','1','ReadNum object (1)',1,'[{\"added\": {}}]',10,1),(19,'2020-03-07 09:08:53.354000','1','ReadDetail object (1)',1,'[{\"added\": {}}]',11,1),(20,'2020-03-07 09:19:10.365000','2','ReadDetail object (2)',3,'',11,1),(21,'2020-03-07 09:19:10.367000','1','ReadDetail object (1)',3,'',11,1),(22,'2020-03-07 09:19:46.712000','1','ReadDetail object (1)',1,'[{\"added\": {}}]',11,1),(23,'2020-03-10 04:41:27.764000','5','ReadDetail object (5)',1,'[{\"added\": {}}]',11,1),(24,'2020-03-10 04:42:27.914000','6','ReadNum object (6)',2,'[{\"changed\": {\"fields\": [\"Read num\"]}}]',10,1),(25,'2020-03-31 10:51:18.336000','4','Comment object (4)',2,'[{\"changed\": {\"fields\": [\"Text\"]}}]',12,1),(26,'2020-04-01 01:51:50.349000','16','Comment object (16)',3,'',12,1),(27,'2020-04-01 01:51:50.351000','15','Comment object (15)',3,'',12,1),(28,'2020-04-01 01:51:50.353000','14','Comment object (14)',3,'',12,1),(29,'2020-04-03 15:36:01.862000','18','<p><img alt=\"crying\" height=\"23\" src=\"http://127.0.0.1:8000/static/ckeditor/ckeditor/plugins/smiley/images/cry_smile.png\" title=\"crying\" width=\"23\" /></p>',2,'[{\"changed\": {\"fields\": [\"Root\", \"Parent\", \"Reply to\"]}}]',12,1),(30,'2020-04-04 12:53:11.676000','43','<p>3333</p>',3,'',12,1),(31,'2020-04-04 15:59:11.355000','2','LikeCount object (2)',2,'[{\"changed\": {\"fields\": [\"Liked num\"]}}]',13,1),(32,'2020-04-04 15:59:17.534000','1','LikeCount object (1)',2,'[{\"changed\": {\"fields\": [\"Liked num\"]}}]',13,1),(33,'2020-04-04 15:59:22.209000','3','LikeCount object (3)',2,'[{\"changed\": {\"fields\": [\"Liked num\"]}}]',13,1),(34,'2020-04-04 15:59:27.099000','4','LikeCount object (4)',2,'[{\"changed\": {\"fields\": [\"Liked num\"]}}]',13,1),(35,'2020-04-04 15:59:33.089000','5','LikeCount object (5)',2,'[{\"changed\": {\"fields\": [\"Liked num\"]}}]',13,1),(36,'2020-04-04 15:59:39.136000','6','LikeCount object (6)',2,'[{\"changed\": {\"fields\": [\"Liked num\"]}}]',13,1),(37,'2020-04-04 15:59:43.465000','7','LikeCount object (7)',2,'[{\"changed\": {\"fields\": [\"Liked num\"]}}]',13,1),(38,'2020-04-04 16:00:08.728000','4','LikeCount object (4)',2,'[{\"changed\": {\"fields\": [\"Liked num\"]}}]',13,1),(39,'2020-04-05 13:26:47.058000','1','<Profile: zETa for simpleuinb>',1,'[{\"added\": {}}]',15,1),(40,'2020-04-06 05:16:28.645000','2','user0',2,'[{\"changed\": {\"fields\": [\"Email address\", \"Last login\"]}}]',4,1),(41,'2020-04-06 05:16:35.575000','1','simpleuinb',2,'[{\"changed\": {\"fields\": [\"Email address\", \"Last login\"]}}]',4,1);
/*!40000 ALTER TABLE `django_admin_log` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `django_content_type`
--
DROP TABLE IF EXISTS `django_content_type`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `django_content_type` (
`id` int NOT NULL AUTO_INCREMENT,
`app_label` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL,
`model` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `django_content_type_app_label_model_76bd3d3b_uniq` (`app_label`,`model`)
) ENGINE=InnoDB AUTO_INCREMENT=16 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `django_content_type`
--
LOCK TABLES `django_content_type` WRITE;
/*!40000 ALTER TABLE `django_content_type` DISABLE KEYS */;
INSERT INTO `django_content_type` VALUES (1,'admin','logentry'),(3,'auth','group'),(2,'auth','permission'),(4,'auth','user'),(8,'blog','blog'),(7,'blog','blogtype'),(9,'blog','readnum'),(12,'comment','comment'),(5,'contenttypes','contenttype'),(13,'likes','likecount'),(14,'likes','likerecord'),(11,'read_statistics','readdetail'),(10,'read_statistics','readnum'),(6,'sessions','session'),(15,'user','profile');
/*!40000 ALTER TABLE `django_content_type` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `django_migrations`
--
DROP TABLE IF EXISTS `django_migrations`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `django_migrations` (
`id` int NOT NULL AUTO_INCREMENT,
`app` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`applied` datetime(6) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=41 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `django_migrations`
--
LOCK TABLES `django_migrations` WRITE;
/*!40000 ALTER TABLE `django_migrations` DISABLE KEYS */;
INSERT INTO `django_migrations` VALUES (1,'contenttypes','0001_initial','2020-04-07 08:20:22.153208'),(2,'auth','0001_initial','2020-04-07 08:20:22.295337'),(3,'admin','0001_initial','2020-04-07 08:20:22.690689'),(4,'admin','0002_logentry_remove_auto_add','2020-04-07 08:20:22.769768'),(5,'admin','0003_logentry_add_action_flag_choices','2020-04-07 08:20:22.776774'),(6,'contenttypes','0002_remove_content_type_name','2020-04-07 08:20:22.879116'),(7,'auth','0002_alter_permission_name_max_length','2020-04-07 08:20:22.945177'),(8,'auth','0003_alter_user_email_max_length','2020-04-07 08:20:22.967196'),(9,'auth','0004_alter_user_username_opts','2020-04-07 08:20:22.976205'),(10,'auth','0005_alter_user_last_login_null','2020-04-07 08:20:23.029253'),(11,'auth','0006_require_contenttypes_0002','2020-04-07 08:20:23.031255'),(12,'auth','0007_alter_validators_add_error_messages','2020-04-07 08:20:23.038261'),(13,'auth','0008_alter_user_username_max_length','2020-04-07 08:20:23.079306'),(14,'auth','0009_alter_user_last_name_max_length','2020-04-07 08:20:23.131345'),(15,'auth','0010_alter_group_name_max_length','2020-04-07 08:20:23.146367'),(16,'auth','0011_update_proxy_permissions','2020-04-07 08:20:23.153374'),(17,'blog','0001_initial','2020-04-07 08:20:23.201417'),(18,'blog','0002_auto_20200304_2008','2020-04-07 08:20:23.286487'),(19,'blog','0003_auto_20200305_2208','2020-04-07 08:20:23.388580'),(20,'blog','0004_auto_20200306_1706','2020-04-07 08:20:23.456649'),(21,'blog','0005_delete_readnum','2020-04-07 08:20:23.548725'),(22,'blog','0006_auto_20200404_2100','2020-04-07 08:20:23.684857'),(23,'comment','0001_initial','2020-04-07 08:20:23.715877'),(24,'comment','0002_auto_20200331_1845','2020-04-07 08:20:23.804235'),(25,'comment','0003_auto_20200331_1848','2020-04-07 08:20:23.812242'),(26,'comment','0004_auto_20200331_1857','2020-04-07 08:20:23.820249'),(27,'comment','0005_comment_parent_id','2020-04-07 08:20:23.839267'),(28,'comment','0006_auto_20200403_1833','2020-04-07 08:20:23.934353'),(29,'comment','0007_auto_20200403_2323','2020-04-07 08:20:24.065473'),(30,'comment','0008_auto_20200403_2325','2020-04-07 08:20:24.144544'),(31,'comment','0009_auto_20200403_2334','2020-04-07 08:20:24.275656'),(32,'comment','0010_auto_20200404_2100','2020-04-07 08:20:24.580941'),(33,'likes','0001_initial','2020-04-07 08:20:24.638994'),(34,'read_statistics','0001_initial','2020-04-07 08:20:24.767110'),(35,'read_statistics','0002_readdetail','2020-04-07 08:20:24.835425'),(36,'read_statistics','0003_auto_20200307_1717','2020-04-07 08:20:25.037609'),(37,'read_statistics','0004_auto_20200307_1718','2020-04-07 08:20:25.072641'),(38,'read_statistics','0005_auto_20200307_1719','2020-04-07 08:20:25.108665'),(39,'sessions','0001_initial','2020-04-07 08:20:25.137700'),(40,'user','0001_initial','2020-04-07 08:20:25.170722');
/*!40000 ALTER TABLE `django_migrations` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `django_session`
--
DROP TABLE IF EXISTS `django_session`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `django_session` (
`session_key` varchar(40) COLLATE utf8mb4_unicode_ci NOT NULL,
`session_data` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`expire_date` datetime(6) NOT NULL,
PRIMARY KEY (`session_key`),
KEY `django_session_expire_date_a5c62663` (`expire_date`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `django_session`
--
LOCK TABLES `django_session` WRITE;
/*!40000 ALTER TABLE `django_session` DISABLE KEYS */;
INSERT INTO `django_session` VALUES ('1njxscb47cc2am74i9jbiaabf5blud7e','NDlmNzc4OTExYjlkZTExZjQ2Y2ZjNTFhZWI0MGMwNmI4YWUxMjJiOTp7ImZvcmd3dF9wYXNzd29yZF9jb2RlIjoiOXlaVSIsInNlbmRfY29kZV90aW1lIjoxNTg2MTg3MDYxLCJfYXV0aF91c2VyX2lkIjoiNSIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiMWRmNGY1NWUyMGJjNmNhOGIyYzcyYjVmODU5YWJjYjUzZjUzNDVhZSJ9','2020-04-20 15:33:08.243000'),('1u4v7rtu9fykr9wv43effaq6w3o1xibk','OTRmMjhjNWUwY2VkZGQxZWY4NThlN2ZjODU2OTVjOTI1M2UxNWUyZDp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiIyNDY5ODZiZDIyNjMxNmU0ZWUyYzk5MmYzOTkwYWM1YTgyYzk4MzRjIn0=','2020-03-17 15:51:55.088000'),('eq1hcsf02ctopcdlv6jlolav04z0e2k0','ODViMWU4NzJkMDdkZGM5MTA0ZjQyMmYzODcwZTU3YWQ5YzU0ODI0ZTp7fQ==','2020-04-19 03:20:16.091000'),('ggec69bqc26ucu8hntpecij18078tp4n','ZjE3NWE4NjJhZTFiZmI1MTQwYmJmYThkNDkzZmQxZDgxODliNDI1Yzp7Il9hdXRoX3VzZXJfaWQiOiI1IiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiIxZGY0ZjU1ZTIwYmM2Y2E4YjJjNzJiNWY4NTlhYmNiNTNmNTM0NWFlIn0=','2020-04-21 08:28:38.658327'),('h9alg9lxp5viw3pcu5ee12limnt1lf8b','ODViMWU4NzJkMDdkZGM5MTA0ZjQyMmYzODcwZTU3YWQ5YzU0ODI0ZTp7fQ==','2020-04-05 07:47:19.058000'),('nu5yh9u2dk5n1eqobzeajov33l3ud3e8','ODViMWU4NzJkMDdkZGM5MTA0ZjQyMmYzODcwZTU3YWQ5YzU0ODI0ZTp7fQ==','2020-04-19 03:18:31.910000'),('o0ajgthgwsqcrvzgi6vyrgmp05sl29tf','OTRmMjhjNWUwY2VkZGQxZWY4NThlN2ZjODU2OTVjOTI1M2UxNWUyZDp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiIyNDY5ODZiZDIyNjMxNmU0ZWUyYzk5MmYzOTkwYWM1YTgyYzk4MzRjIn0=','2020-03-17 09:24:22.975000');
/*!40000 ALTER TABLE `django_session` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `likes_likecount`
--
DROP TABLE IF EXISTS `likes_likecount`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `likes_likecount` (
`id` int NOT NULL AUTO_INCREMENT,
`object_id` int unsigned NOT NULL,
`liked_num` int NOT NULL,
`content_type_id` int NOT NULL,
PRIMARY KEY (`id`),
KEY `likes_likecount_content_type_id_a33eb91e_fk_django_co` (`content_type_id`),
CONSTRAINT `likes_likecount_content_type_id_a33eb91e_fk_django_co` FOREIGN KEY (`content_type_id`) REFERENCES `django_content_type` (`id`),
CONSTRAINT `likes_likecount_chk_1` CHECK ((`object_id` >= 0))
) ENGINE=InnoDB AUTO_INCREMENT=78 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `likes_likecount`
--
LOCK TABLES `likes_likecount` WRITE;
/*!40000 ALTER TABLE `likes_likecount` DISABLE KEYS */;
INSERT INTO `likes_likecount` VALUES (1,33,1,8),(2,36,1,8),(3,35,1,8),(4,34,1,8),(5,32,1,8),(6,31,1,8),(7,30,1,8),(8,44,0,12),(9,42,0,12),(10,41,0,12),(11,35,0,12),(12,34,0,12),(13,31,0,12),(14,30,0,12),(15,28,0,12),(16,27,0,12),(17,26,0,12),(18,23,0,12),(19,18,0,12),(20,43,1,12),(21,40,0,12),(22,39,0,12),(23,38,0,12),(24,37,0,12),(25,36,0,12),(26,33,0,12),(27,29,0,12),(28,25,0,12),(29,24,0,12),(30,22,0,12),(31,21,0,12),(32,20,0,12),(33,17,0,12),(34,13,0,12),(35,12,0,12),(36,11,0,12),(37,10,0,12),(38,9,0,12),(39,8,0,12),(40,7,0,12),(41,6,0,12),(42,5,0,12),(43,4,0,12),(44,3,0,12),(45,2,0,12),(46,1,0,12),(47,45,0,12),(48,46,0,12),(49,47,0,12),(50,48,0,12),(51,54,0,12),(52,53,0,12),(53,52,0,12),(54,51,0,12),(55,50,0,12),(56,49,0,12),(57,55,0,12),(58,57,0,12),(59,56,0,12),(60,58,0,12),(61,60,0,12),(62,59,0,12),(63,61,0,12),(64,63,0,12),(65,62,0,12),(66,64,0,12),(67,67,0,12),(68,66,0,12),(69,65,0,12),(70,68,0,12),(71,8,0,8),(72,7,0,8),(73,5,0,8),(74,4,0,8),(75,3,0,8),(76,2,0,8),(77,1,0,8);
/*!40000 ALTER TABLE `likes_likecount` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `likes_likerecord`
--
DROP TABLE IF EXISTS `likes_likerecord`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `likes_likerecord` (
`id` int NOT NULL AUTO_INCREMENT,
`object_id` int unsigned NOT NULL,
`liked_time` datetime(6) NOT NULL,
`content_type_id` int NOT NULL,
`user_id` int NOT NULL,
PRIMARY KEY (`id`),
KEY `likes_likerecord_content_type_id_4e35de35_fk_django_co` (`content_type_id`),
KEY `likes_likerecord_user_id_c85b88bd_fk_auth_user_id` (`user_id`),
CONSTRAINT `likes_likerecord_content_type_id_4e35de35_fk_django_co` FOREIGN KEY (`content_type_id`) REFERENCES `django_content_type` (`id`),
CONSTRAINT `likes_likerecord_user_id_c85b88bd_fk_auth_user_id` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`),
CONSTRAINT `likes_likerecord_chk_1` CHECK ((`object_id` >= 0))
) ENGINE=InnoDB AUTO_INCREMENT=21 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `likes_likerecord`
--
LOCK TABLES `likes_likerecord` WRITE;
/*!40000 ALTER TABLE `likes_likerecord` DISABLE KEYS */;
INSERT INTO `likes_likerecord` VALUES (2,35,'2020-04-04 15:14:11.812000',8,1),(3,30,'2020-04-04 15:19:22.255000',8,1),(4,31,'2020-04-04 15:31:02.709000',8,1),(7,34,'2020-04-04 16:00:16.328000',8,1),(15,43,'2020-04-04 16:17:02.871000',12,1),(20,36,'2020-04-05 09:30:56.796000',8,1);
/*!40000 ALTER TABLE `likes_likerecord` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `my_cache_table`
--
DROP TABLE IF EXISTS `my_cache_table`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `my_cache_table` (
`cache_key` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`value` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`expires` datetime(6) NOT NULL,
PRIMARY KEY (`cache_key`),
KEY `my_cache_table_expires` (`expires`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `my_cache_table`
--
LOCK TABLES `my_cache_table` WRITE;
/*!40000 ALTER TABLE `my_cache_table` DISABLE KEYS */;
INSERT INTO `my_cache_table` VALUES (':1:hot_data_for_7_days','gASVxAoAAAAAAACMFmRqYW5nby5kYi5tb2RlbHMucXVlcnmUjAhRdWVyeVNldJSTlCmBlH2UKIwFbW9kZWyUjAtibG9nLm1vZGVsc5SMBEJsb2eUk5SMA19kYpROjAZfaGludHOUfZSMBXF1ZXJ5lIwaZGphbmdvLmRiLm1vZGVscy5zcWwucXVlcnmUjAVRdWVyeZSTlCmBlH2UKIwRX2NvbnN0cnVjdG9yX2FyZ3OUaAiFlH2UhpRoBWgIjA5hbGlhc19yZWZjb3VudJR9lCiMCWJsb2dfYmxvZ5RLBIwacmVhZF9zdGF0aXN0aWNzX3JlYWRkZXRhaWyUSwN1jAlhbGlhc19tYXCUfZQoaBiMI2RqYW5nby5kYi5tb2RlbHMuc3FsLmRhdGFzdHJ1Y3R1cmVzlIwJQmFzZVRhYmxllJOUKYGUfZQojAp0YWJsZV9uYW1llGgYjAt0YWJsZV9hbGlhc5RoGHViaBloHIwESm9pbpSTlCmBlH2UKGghaBmMDHBhcmVudF9hbGlhc5RoGGgiaBmMCWpvaW5fdHlwZZSMCklOTkVSIEpPSU6UjAlqb2luX2NvbHOUjAJpZJSMCW9iamVjdF9pZJSGlIWUjApqb2luX2ZpZWxklIwiZGphbmdvLmNvbnRyaWIuY29udGVudHR5cGVzLmZpZWxkc5SMCkdlbmVyaWNSZWyUk5QpgZR9lCiMBWZpZWxklIwXZGphbmdvLmRiLm1vZGVscy5maWVsZHOUjAtfbG9hZF9maWVsZJSTlIwEYmxvZ5RoB4wMcmVhZF9kZXRhaWxzlIeUUpRoBYwWcmVhZF9zdGF0aXN0aWNzLm1vZGVsc5SMClJlYWREZXRhaWyUk5SMDHJlbGF0ZWRfbmFtZZSMASuUjBJyZWxhdGVkX3F1ZXJ5X25hbWWUTowQbGltaXRfY2hvaWNlc190b5R9lIwLcGFyZW50X2xpbmuUiYwJb25fZGVsZXRllIwZZGphbmdvLmRiLm1vZGVscy5kZWxldGlvbpSMCkRPX05PVEhJTkeUk5SMC3N5bW1ldHJpY2FslImMCG11bHRpcGxllIh1YowIbnVsbGFibGWUiIwRZmlsdGVyZWRfcmVsYXRpb26UTnVidYwQZXh0ZXJuYWxfYWxpYXNlc5R9lIwJdGFibGVfbWFwlH2UKGgYXZRoGGFoGV2UaBlhdYwMZGVmYXVsdF9jb2xzlImMEGRlZmF1bHRfb3JkZXJpbmeUiIwRc3RhbmRhcmRfb3JkZXJpbmeUiIwMdXNlZF9hbGlhc2VzlI+UjBBmaWx0ZXJfaXNfc3RpY2t5lImMCHN1YnF1ZXJ5lImMBnNlbGVjdJSMHGRqYW5nby5kYi5tb2RlbHMuZXhwcmVzc2lvbnOUjANDb2yUk5QpgZR9lChoEmgYaDhoOWgHaCuHlFKUhpR9lIaUjAxvdXRwdXRfZmllbGSUaGKMBWFsaWFzlGgYjAZ0YXJnZXSUaGKMCGlkZW50aXR5lChoXmhnaBiGlGhojAlibG9nLkJsb2eUaCuGlIaUaGZOhpR0lHViaF4pgZR9lChoEmgYaDhoOWgHjAV0aXRsZZSHlFKUhpR9lIaUaGZodGhnaBhoaGh0aGkoaF5oZ2gYhpRoaIwJYmxvZy5CbG9nlGhyhpSGlGhmToaUdJR1YoaUjAV3aGVyZZSMGmRqYW5nby5kYi5tb2RlbHMuc3FsLndoZXJllIwJV2hlcmVOb2RllJOUKYGUfZQojAhjaGlsZHJlbpRdlCiMGGRqYW5nby5kYi5tb2RlbHMubG9va3Vwc5SMEkdyZWF0ZXJUaGFuT3JFcXVhbJSTlCmBlH2UKIwDbGhzlGheKYGUfZQoaBJoGWg4jA9yZWFkX3N0YXRpc3RpY3OUaD6MBGRhdGWUh5RSlIaUfZSGlGhmaJJoZ2gZaGhokowSY29udGFpbnNfYWdncmVnYXRllIl1YowDcmhzlIwIZGF0ZXRpbWWUjARkYXRllJOUQwQH5AMflIWUUpSMFGJpbGF0ZXJhbF90cmFuc2Zvcm1zlF2UaJaJdWJoh4wITGVzc1RoYW6Uk5QpgZR9lChojGiNaJdomkMEB+QEB5SFlFKUaJ5dlGiWiXViZYwJY29ubmVjdG9ylIwDQU5ElIwHbmVnYXRlZJSJaJaJdWKMC3doZXJlX2NsYXNzlGiCjAhncm91cF9ieZRoX2hwhpSMCG9yZGVyX2J5lIwNLXJlYWRfbnVtX3N1bZSFlIwIbG93X21hcmuUSwCMCWhpZ2hfbWFya5RLB4wIZGlzdGluY3SUiYwPZGlzdGluY3RfZmllbGRzlCmMEXNlbGVjdF9mb3JfdXBkYXRllImMGHNlbGVjdF9mb3JfdXBkYXRlX25vd2FpdJSJjB1zZWxlY3RfZm9yX3VwZGF0ZV9za2lwX2xvY2tlZJSJjBRzZWxlY3RfZm9yX3VwZGF0ZV9vZpQpjA5zZWxlY3RfcmVsYXRlZJSJjAltYXhfZGVwdGiUSwWMDXZhbHVlc19zZWxlY3SUaCtocoaUjAthbm5vdGF0aW9uc5R9lIwMcmVhZF9udW1fc3VtlIwbZGphbmdvLmRiLm1vZGVscy5hZ2dyZWdhdGVzlIwDU3VtlJOUKYGUfZQoaBKMFnJlYWRfZGV0YWlsc19fcmVhZF9udW2UhZR9lIaUaLOJjAZmaWx0ZXKUTowSc291cmNlX2V4cHJlc3Npb25zlF2UaF4pgZR9lChoEmgZaDhoj2g+jAhyZWFkX251bZSHlFKUhpR9lIaUaGZo0GhnaBloaGjQjBVfb3V0cHV0X2ZpZWxkX29yX25vbmWUaNBolol1YmGMBWV4dHJhlH2UjAppc19zdW1tYXJ5lIloZmjQaGkoaMKMC2V4cHJlc3Npb25zlGjFhZSGlGiziYaUaMlOhpRo1SmGlHSUdWJzjBZhbm5vdGF0aW9uX3NlbGVjdF9tYXNrlI+UKGi/kIwYX2Fubm90YXRpb25fc2VsZWN0X2NhY2hllH2UaL9ow3OMCmNvbWJpbmF0b3KUTowOY29tYmluYXRvcl9hbGyUiYwQY29tYmluZWRfcXVlcmllc5QpaNV9lIwRZXh0cmFfc2VsZWN0X21hc2uUj5SME19leHRyYV9zZWxlY3RfY2FjaGWUTowMZXh0cmFfdGFibGVzlCmMDmV4dHJhX29yZGVyX2J5lCmMEGRlZmVycmVkX2xvYWRpbmeUKJGUiIaUjBNfZmlsdGVyZWRfcmVsYXRpb25zlH2UjA1leHBsYWluX3F1ZXJ5lImMDmV4cGxhaW5fZm9ybWF0lE6MD2V4cGxhaW5fb3B0aW9uc5R9lIwNX2xvb2t1cF9qb2luc5RdlChoGGgZZYwKYmFzZV90YWJsZZRoGHVijA1fcmVzdWx0X2NhY2hllF2UjA5fc3RpY2t5X2ZpbHRlcpSJjApfZm9yX3dyaXRllImMGV9wcmVmZXRjaF9yZWxhdGVkX2xvb2t1cHOUKYwOX3ByZWZldGNoX2RvbmWUiYwWX2tub3duX3JlbGF0ZWRfb2JqZWN0c5R9lIwPX2l0ZXJhYmxlX2NsYXNzlGgAjA5WYWx1ZXNJdGVyYWJsZZSTlIwHX2ZpZWxkc5RoK2hyhpSMD19kamFuZ29fdmVyc2lvbpSMBTMuMC4zlHViLg==','2020-04-07 09:21:46.000000');
/*!40000 ALTER TABLE `my_cache_table` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `read_statistics_readdetail`
--
DROP TABLE IF EXISTS `read_statistics_readdetail`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `read_statistics_readdetail` (
`id` int NOT NULL AUTO_INCREMENT,
`date` date NOT NULL,
`read_num` int NOT NULL,
`object_id` int unsigned NOT NULL,
`content_type_id` int NOT NULL,
PRIMARY KEY (`id`),
KEY `read_statistics_read_content_type_id_589c7d92_fk_django_co` (`content_type_id`),
CONSTRAINT `read_statistics_read_content_type_id_589c7d92_fk_django_co` FOREIGN KEY (`content_type_id`) REFERENCES `django_content_type` (`id`),
CONSTRAINT `read_statistics_readdetail_chk_1` CHECK ((`object_id` >= 0))
) ENGINE=InnoDB AUTO_INCREMENT=17 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `read_statistics_readdetail`
--
LOCK TABLES `read_statistics_readdetail` WRITE;
/*!40000 ALTER TABLE `read_statistics_readdetail` DISABLE KEYS */;
INSERT INTO `read_statistics_readdetail` VALUES (1,'2020-03-01',4,33,8),(2,'2020-03-07',1,31,8),(3,'2020-03-10',1,36,8),(4,'2020-03-10',1,35,8),(5,'2020-03-09',2,35,8),(6,'2020-03-10',1,32,8),(7,'2020-03-17',1,36,8),(8,'2020-03-18',1,35,8),(9,'2020-03-22',1,36,8),(10,'2020-03-29',1,36,8),(11,'2020-03-31',2,35,8),(12,'2020-03-31',1,36,8),(13,'2020-04-04',1,34,8),(14,'2020-04-04',1,30,8),(15,'2020-04-04',1,31,8),(16,'2020-04-04',1,33,8);
/*!40000 ALTER TABLE `read_statistics_readdetail` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `read_statistics_readnum`
--
DROP TABLE IF EXISTS `read_statistics_readnum`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `read_statistics_readnum` (
`id` int NOT NULL AUTO_INCREMENT,
`read_num` int NOT NULL,
`object_id` int unsigned NOT NULL,
`content_type_id` int NOT NULL,
PRIMARY KEY (`id`),
KEY `read_statistics_read_content_type_id_560f0f39_fk_django_co` (`content_type_id`),
CONSTRAINT `read_statistics_read_content_type_id_560f0f39_fk_django_co` FOREIGN KEY (`content_type_id`) REFERENCES `django_content_type` (`id`),
CONSTRAINT `read_statistics_readnum_chk_1` CHECK ((`object_id` >= 0))
) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `read_statistics_readnum`
--
LOCK TABLES `read_statistics_readnum` WRITE;
/*!40000 ALTER TABLE `read_statistics_readnum` DISABLE KEYS */;
INSERT INTO `read_statistics_readnum` VALUES (1,15,36,8),(2,2,34,8),(3,2,33,8),(4,2,30,8),(5,2,31,8),(6,6,35,8),(7,1,32,8);
/*!40000 ALTER TABLE `read_statistics_readnum` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `user_profile`
--
DROP TABLE IF EXISTS `user_profile`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `user_profile` (
`id` int NOT NULL AUTO_INCREMENT,
`nickname` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL,
`user_id` int NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `user_id` (`user_id`),
CONSTRAINT `user_profile_user_id_8fdce8e2_fk_auth_user_id` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `user_profile`
--
LOCK TABLES `user_profile` WRITE;
/*!40000 ALTER TABLE `user_profile` DISABLE KEYS */;
INSERT INTO `user_profile` VALUES (1,'ZetA',1),(2,'test0',2);
/*!40000 ALTER TABLE `user_profile` 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 2020-04-07 21:02:27