-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcrowdps2_experiment_11thNOV.sql
More file actions
841 lines (730 loc) · 350 KB
/
crowdps2_experiment_11thNOV.sql
File metadata and controls
841 lines (730 loc) · 350 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
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
-- MySQL dump 10.13 Distrib 5.5.53, for debian-linux-gnu (x86_64)
--
-- Host: localhost Database: crowdps2
-- ------------------------------------------------------
-- Server version 5.5.53-0ubuntu0.14.04.1
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!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 `auth_group`
--
DROP TABLE IF EXISTS `auth_group`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `auth_group` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(80) NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `name` (`name`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!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 */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `auth_group_permissions` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`group_id` int(11) NOT NULL,
`permission_id` int(11) NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `auth_group_permissions_group_id_0cd325b0_uniq` (`group_id`,`permission_id`),
KEY `auth_group_permissi_permission_id_84c5c92e_fk_auth_permission_id` (`permission_id`),
CONSTRAINT `auth_group_permissions_group_id_b120cbf9_fk_auth_group_id` FOREIGN KEY (`group_id`) REFERENCES `auth_group` (`id`),
CONSTRAINT `auth_group_permissi_permission_id_84c5c92e_fk_auth_permission_id` FOREIGN KEY (`permission_id`) REFERENCES `auth_permission` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!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 */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `auth_permission` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) NOT NULL,
`content_type_id` int(11) NOT NULL,
`codename` varchar(100) NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `auth_permission_content_type_id_01ab375a_uniq` (`content_type_id`,`codename`),
CONSTRAINT `auth_permissi_content_type_id_2f476e4b_fk_django_content_type_id` FOREIGN KEY (`content_type_id`) REFERENCES `django_content_type` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=70 DEFAULT CHARSET=latin1;
/*!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 add permission',2,'add_permission'),(5,'Can change permission',2,'change_permission'),(6,'Can delete permission',2,'delete_permission'),(7,'Can add group',3,'add_group'),(8,'Can change group',3,'change_group'),(9,'Can delete group',3,'delete_group'),(10,'Can add user',4,'add_user'),(11,'Can change user',4,'change_user'),(12,'Can delete user',4,'delete_user'),(13,'Can add content type',5,'add_contenttype'),(14,'Can change content type',5,'change_contenttype'),(15,'Can delete content type',5,'delete_contenttype'),(16,'Can add session',6,'add_session'),(17,'Can change session',6,'change_session'),(18,'Can delete session',6,'delete_session'),(19,'Can add consent_form',7,'add_consent_form'),(20,'Can change consent_form',7,'change_consent_form'),(21,'Can delete consent_form',7,'delete_consent_form'),(22,'Can add exp user',8,'add_expuser'),(23,'Can change exp user',8,'change_expuser'),(24,'Can delete exp user',8,'delete_expuser'),(25,'Can add problem hint',9,'add_problemhint'),(26,'Can change problem hint',9,'change_problemhint'),(27,'Can delete problem hint',9,'delete_problemhint'),(28,'Can add crowd',10,'add_crowd'),(29,'Can change crowd',10,'change_crowd'),(30,'Can delete crowd',10,'delete_crowd'),(31,'Can add crowd_ members',11,'add_crowd_members'),(32,'Can change crowd_ members',11,'change_crowd_members'),(33,'Can delete crowd_ members',11,'delete_crowd_members'),(34,'Can add questions',12,'add_questions'),(35,'Can change questions',12,'change_questions'),(36,'Can delete questions',12,'delete_questions'),(37,'Can add task user',13,'add_taskuser'),(38,'Can change task user',13,'change_taskuser'),(39,'Can delete task user',13,'delete_taskuser'),(40,'Can add profile',14,'add_profile'),(41,'Can change profile',14,'change_profile'),(42,'Can delete profile',14,'delete_profile'),(43,'Can add profile hint',15,'add_profilehint'),(44,'Can change profile hint',15,'change_profilehint'),(45,'Can delete profile hint',15,'delete_profilehint'),(46,'Can add user profile',16,'add_userprofile'),(47,'Can change user profile',16,'change_userprofile'),(48,'Can delete user profile',16,'delete_userprofile'),(49,'Can add room',17,'add_room'),(50,'Can change room',17,'change_room'),(51,'Can delete room',17,'delete_room'),(52,'Can add message',18,'add_message'),(53,'Can change message',18,'change_message'),(54,'Can delete message',18,'delete_message'),(55,'Can add discussion',19,'add_discussion'),(56,'Can change discussion',19,'change_discussion'),(57,'Can delete discussion',19,'delete_discussion'),(58,'Can add statement',20,'add_statement'),(59,'Can change statement',20,'change_statement'),(60,'Can delete statement',20,'delete_statement'),(61,'Can add vote',21,'add_vote'),(62,'Can change vote',21,'change_vote'),(63,'Can delete vote',21,'delete_vote'),(64,'Can add wait room',22,'add_waitroom'),(65,'Can change wait room',22,'change_waitroom'),(66,'Can delete wait room',22,'delete_waitroom'),(67,'Can add wait user',23,'add_waituser'),(68,'Can change wait user',23,'change_waituser'),(69,'Can delete wait user',23,'delete_waituser');
/*!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 */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `auth_user` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`password` varchar(128) NOT NULL,
`last_login` datetime DEFAULT NULL,
`is_superuser` tinyint(1) NOT NULL,
`username` varchar(30) NOT NULL,
`first_name` varchar(30) NOT NULL,
`last_name` varchar(30) NOT NULL,
`email` varchar(254) NOT NULL,
`is_staff` tinyint(1) NOT NULL,
`is_active` tinyint(1) NOT NULL,
`date_joined` datetime NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `username` (`username`)
) ENGINE=InnoDB AUTO_INCREMENT=87 DEFAULT CHARSET=latin1;
/*!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$24000$UbaAlzS45xmV$oHcO3RtBULG1QkpGvMeBSRxC17m8yOQz72wu+IHrCHg=','2016-11-11 16:30:04',0,'A2KH6VYX26L4HT','3BPP3MA3TCKQEHPKZKEM2KZPID0ELV','','',0,1,'2016-11-11 16:27:58'),(2,'pbkdf2_sha256$24000$3MxVgl7kIO7N$nF5tLekuKS11oEmRruimshB5k5nWCXX9RVbc/ndMRo8=','2016-11-11 16:28:14',0,'A2Y6TEJK6KAIR2','3BPP3MA3TCKQEHPKZKEM2KZPID0ELV','','',0,1,'2016-11-11 16:28:06'),(3,'pbkdf2_sha256$24000$cg2SuzJBDogs$VAezRqzAGIUsi/p05hYXqBrsRr77/9qK97ilWWMelkw=','2016-11-11 16:28:23',0,'A2P065E9CYMYJL','3BPP3MA3TCKQEHPKZKEM2KZPID0ELV','','',0,1,'2016-11-11 16:28:14'),(4,'pbkdf2_sha256$24000$y7Qlcs7lV1JP$I8ZV/FUjPWbjjUri2M+av/1GGP2eGaZdoXJiJLlq98w=','2016-11-11 16:28:31',0,'A36TE52PSYAAD6','3BPP3MA3TCKQEHPKZKEM2KZPID0ELV','','',0,1,'2016-11-11 16:28:23'),(5,'pbkdf2_sha256$24000$uvR7aVUEsHzk$8bMueyYljfgUDPyrlH/KcBO2bDhzH+WT4mmaITgm22E=','2016-11-11 16:29:46',0,'A2MVZ1Z7JJH91Z','3BPP3MA3TCKQEHPKZKEM2KZPID0ELV','','',0,1,'2016-11-11 16:28:32'),(6,'pbkdf2_sha256$24000$QAvMRVxFzWwn$LLzZ58fwQ/ExFjT5Bglgnv29wXwR8OVJKU2HYKXpo+4=','2016-11-11 16:28:48',0,'A17J1CE7N49Z9D','3BPP3MA3TCKQEHPKZKEM2KZPID0ELV','','',0,1,'2016-11-11 16:28:40'),(7,'pbkdf2_sha256$24000$ANNkO6soASfg$XCxuWWmIfepTXiuGhXxqI2+MS5kX3w21OQ36ZiKgRx8=','2016-11-11 16:28:56',0,'ACN0C9HPYDTED','3BPP3MA3TCKQEHPKZKEM2KZPID0ELV','','',0,1,'2016-11-11 16:28:48'),(8,'pbkdf2_sha256$24000$KXVexpZLpNKZ$5+zGmmiAJNppxlCkQMuURIhOww2yTs3A25ZH9EjbN5I=','2016-11-11 16:29:05',0,'AJQS1T44TD8QN','3BPP3MA3TCKQEHPKZKEM2KZPID0ELV','','',0,1,'2016-11-11 16:28:57'),(9,'pbkdf2_sha256$24000$pSuHwF39MPTe$TRpW2tKBLM6GwTcoI9VNslTHqGQuIahgY97adHeALYo=','2016-11-11 16:29:13',0,'A3VIQ9XPOYB8K6','3BPP3MA3TCKQEHPKZKEM2KZPID0ELV','','',0,1,'2016-11-11 16:29:05'),(10,'pbkdf2_sha256$24000$ERhwzGbt1YvE$FyhcbMEpztF3mVaViUqxZHCdnA/fL446Wj1KQ3Y/B/U=','2016-11-11 16:29:21',0,'A4JU6ZFL8C1VG','3BPP3MA3TCKQEHPKZKEM2KZPID0ELV','','',0,1,'2016-11-11 16:29:14'),(11,'pbkdf2_sha256$24000$gcxzAwb26dfY$eo5M2kKoQb1CryBw/bEwU98UmcXNLcu0nWduBRPgErA=','2016-11-11 16:29:30',0,'A1S6C6EN8MPKC3','3BPP3MA3TCKQEHPKZKEM2KZPID0ELV','','',0,1,'2016-11-11 16:29:22'),(12,'pbkdf2_sha256$24000$eEf8pFB2JqsZ$JdKnovNHtt+pfb15g2edhAwvwd4P9TfsU/xHwiUc0ds=','2016-11-11 16:29:38',0,'A2OVWCQ4B9AHFY','3BPP3MA3TCKQEHPKZKEM2KZPID0ELV','','',0,1,'2016-11-11 16:29:30'),(13,'pbkdf2_sha256$24000$x2bGBOuOVkww$oQNla2lt2qk6V8gn6eAxdmJSfmjD/+aKf8HBe7bpUZU=','2016-11-11 16:29:55',0,'A1JV64BL3WCK0G','3BPP3MA3TCKQEHPKZKEM2KZPID0ELV','','',0,1,'2016-11-11 16:29:47'),(14,'pbkdf2_sha256$24000$XJPgOhHyY051$633LS9/wt0bcc86/TWC8Dv3GEy/FMjNlCBycs3VKRDE=','2016-11-11 16:30:13',0,'A1GUUOCIDL11VX','3BPP3MA3TCKQEHPKZKEM2KZPID0ELV','','',0,1,'2016-11-11 16:30:05'),(15,'pbkdf2_sha256$24000$I95VE8UCGrRg$/4/WB7b2OWAEvivR7Q4yOtdqDXd+qNPVDq8sVBmaqJM=','2016-11-11 16:30:21',0,'A1A6DUWWGNEE4W','3BPP3MA3TCKQEHPKZKEM2KZPID0ELV','','',0,1,'2016-11-11 16:30:13'),(16,'pbkdf2_sha256$24000$1hdyv6uKttTV$X+jOr8ghrltmlgwW776ULUrrIAE+zORaFH/lyaYgHQo=','2016-11-11 16:37:03',0,'A2NAKIXS3DVGAA','3BPP3MA3TCKQEHPKZKEM2KZPID0ELV','','',0,1,'2016-11-11 16:30:22'),(17,'pbkdf2_sha256$24000$h4KMyCnOZW72$aFVItM78mDqZVeJw0eIGw77jMqedTqdQNSxKarRPedw=','2016-11-11 16:30:38',0,'A1TLNLB9D87H6','3BPP3MA3TCKQEHPKZKEM2KZPID0ELV','','',0,1,'2016-11-11 16:30:30'),(18,'pbkdf2_sha256$24000$yIoJ06NGRKAN$RI53dv7qkTK4vAEeb8rdDKkA08hHATK+0r/pMgdVt5M=','2016-11-11 16:30:47',0,'A2J6T9ELNZ97JH','3BPP3MA3TCKQEHPKZKEM2KZPID0ELV','','',0,1,'2016-11-11 16:30:39'),(19,'pbkdf2_sha256$24000$cjE2Is7DNRq2$zMi+OfwspashdLTVvg26rXnmSMaDpUFaNfFMz0ZvvkE=','2016-11-11 16:30:57',0,'A2W8ZV9DQWVHJK','3BPP3MA3TCKQEHPKZKEM2KZPID0ELV','','',0,1,'2016-11-11 16:30:49'),(20,'pbkdf2_sha256$24000$iwCuMfMj59Im$VJkst2sW/+aWOmTNppOIExJVwOVCGhiAVRaeimCnPuQ=','2016-11-11 16:31:06',0,'A1KAGE2AVL6ZGO','3BPP3MA3TCKQEHPKZKEM2KZPID0ELV','','',0,1,'2016-11-11 16:30:58'),(21,'pbkdf2_sha256$24000$PndqUGEcQt1v$Fv1KKSjcg1VLDk/xqoTtrp62b95SUyDhnugUuKQBYQs=','2016-11-11 16:31:15',0,'A2Z750U1HCWVEE','3BPP3MA3TCKQEHPKZKEM2KZPID0ELV','','',0,1,'2016-11-11 16:31:06'),(22,'pbkdf2_sha256$24000$LnzdNsUmMsIJ$t7RL75F0fyMJMfXnoNKs6ebJyauwYy5T20vUUfQ9MiA=','2016-11-11 16:31:29',0,'A1POQWMOWKNQCN','3BPP3MA3TCKQEHPKZKEM2KZPID0ELV','','',0,1,'2016-11-11 16:31:21'),(23,'pbkdf2_sha256$24000$dvzmJ1YeDH8e$VEsj5Qe+djjzihDlu4b/xqg4657HitOwAhL+TzAZtBY=','2016-11-11 16:31:50',0,'A110JYKWR9T6H8','3BPP3MA3TCKQEHPKZKEM2KZPID0ELV','','',0,1,'2016-11-11 16:31:42'),(24,'pbkdf2_sha256$24000$HCZZpMNRaUgI$J7C1JBED0v8TbTfHuGW8N6Y60WNkYIw9tqzk7L+Jcp8=','2016-11-11 16:32:11',0,'AMX5R6NLYNA2K','3BPP3MA3TCKQEHPKZKEM2KZPID0ELV','','',0,1,'2016-11-11 16:32:03'),(25,'pbkdf2_sha256$24000$0ui70fUFJbUc$TVD9spkSDqpIanmEDjRwGzMNb7Rl8ICXSEeNBVfnPxk=','2016-11-11 16:32:20',0,'A2C122TN7E38G','3BPP3MA3TCKQEHPKZKEM2KZPID0ELV','','',0,1,'2016-11-11 16:32:12'),(26,'pbkdf2_sha256$24000$an6P92WrHO1L$eFn7ZRysuOPaZhFNUMnNU5bDSQy3SDhUq9VeSf6uDHM=','2016-11-11 16:32:46',0,'A2G7N0X0PNX0EE','3BPP3MA3TCKQEHPKZKEM2KZPID0ELV','','',0,1,'2016-11-11 16:32:38'),(27,'pbkdf2_sha256$24000$0vLZrIw9S6Jc$SixXgimfmJeYxuVrMXYiFfudJz+uqupWJNR3VCVcIgI=','2016-11-11 16:33:17',0,'A2JR05AXGBMG81','3BPP3MA3TCKQEHPKZKEM2KZPID0ELV','','',0,1,'2016-11-11 16:33:09'),(28,'pbkdf2_sha256$24000$xPJ3Q0LsWr5O$RbQfgROQiojAi0/f+lhyt6vIQ7qFlIICxY8JWnv/nR4=','2016-11-11 16:38:54',0,'A3L0DCUXI7X3A9','3BPP3MA3TCKQEHPKZKEM2KZPID0ELV','','',0,1,'2016-11-11 16:38:47'),(29,'pbkdf2_sha256$24000$KR9wizAJegxT$w1scIDO7/81Pf/PdFHpmwtS0wcZ+mAyb1kzEoFqAgow=','2016-11-11 16:39:04',0,'A3S300T3IVQ2GC','3BPP3MA3TCKQEHPKZKEM2KZPID0ELV','','',0,1,'2016-11-11 16:38:56'),(30,'pbkdf2_sha256$24000$YSdMxAOtb4BY$NlOepMj1qbjKm8+WlSqdfXzlJKja7H0kjf7fr60MQOs=','2016-11-11 16:39:14',0,'A1FSPD1LIOXCN1','3BPP3MA3TCKQEHPKZKEM2KZPID0ELV','','',0,1,'2016-11-11 16:39:06'),(31,'pbkdf2_sha256$24000$c1TlRU0HB65R$OJAHnVRAt9sBKvjyTW3IB2+X3lf6CZ66Xv7Esiq6G+g=','2016-11-11 16:43:00',0,'A3AZJGI9D7C0PD','3BPP3MA3TCKQEHPKZKEM2KZPID0ELV','','',0,1,'2016-11-11 16:42:52'),(32,'pbkdf2_sha256$24000$2aYBEyMEiFRj$/DoqNj/cl0R2q1k0gXzGaWnTaAYNixOd3XhilkwFu9E=','2016-11-11 16:47:26',0,'A1ZZINLCZZYOH4','3BPP3MA3TCKQEHPKZKEM2KZPID0ELV','','',0,1,'2016-11-11 16:47:18'),(33,'pbkdf2_sha256$24000$KPPS4Rh1hfoP$7JZB8BVhFCaGMo4aPlZkLvnwHsuW9gbehY6sdmWfzm4=','2016-11-11 16:47:35',0,'A3OBVC5L4E5NCG','3BPP3MA3TCKQEHPKZKEM2KZPID0ELV','','',0,1,'2016-11-11 16:47:27'),(34,'pbkdf2_sha256$24000$7WqReiZ1Ekxn$+sqGgsJEoj8lAfM8qiWOP3l+lLBQ1o3TlbNpGMF+imI=','2016-11-11 16:53:35',0,'A1CSDIX05PK9V','3BPP3MA3TCKQEHPKZKEM2KZPID0ELV','','',0,1,'2016-11-11 16:53:27'),(35,'pbkdf2_sha256$24000$LkU7faQD2YlW$Zm/rwdNveZUxTpx1SKbPU5KaItonkCNuVpkXAk6Jqa4=','2016-11-11 16:54:11',0,'A19UBZFVUWL1ES','3BPP3MA3TCKQEHPKZKEM2KZPID0ELV','','',0,1,'2016-11-11 16:54:02'),(36,'pbkdf2_sha256$24000$cToebNXCxOQq$blAokXn0eMMDQ2Q+65UmViSWdGdj2448nnjPDv5bHBw=','2016-11-11 16:56:28',0,'A2QCHFSNUU7Y1F','3BPP3MA3TCKQEHPKZKEM2KZPID0ELV','','',0,1,'2016-11-11 16:56:20'),(37,'pbkdf2_sha256$24000$lFyg2DsH4nGi$lx/pbeHW6lndm12Rz/Kux1qghhkkCbFpyOGcwsArvyw=','2016-11-11 17:02:01',0,'A1LNZFRBA3X916','3BPP3MA3TCKQEHPKZKEM2KZPID0ELV','','',0,1,'2016-11-11 17:01:54'),(38,'pbkdf2_sha256$24000$Qz3r0VDYqkeL$F4sx1UmOu9wKzEj+Ep/cRI4Y6HA8FkVyM44zdKIvFC0=','2016-11-11 17:08:55',0,'A2GTL8ODM5JYA2','3BPP3MA3TCKQEHPKZKEM2KZPID0ELV','','',0,1,'2016-11-11 17:08:47'),(39,'pbkdf2_sha256$24000$PmKo7Ip5tVFZ$A+mgYXqvHuatVfbgiTBR3l+H1L3H6IoF1WDXJafkxkk=','2016-11-11 17:11:16',0,'A3SGZ8OQXW5TQD','3BPP3MA3TCKQEHPKZKEM2KZPID0ELV','','',0,1,'2016-11-11 17:11:08'),(40,'pbkdf2_sha256$24000$bsJo5ARiIuBi$z+6ecy2Ux+7ahGTsZ3/rnKSmXtPEgXsUa4NET90n/ZI=','2016-11-11 17:14:09',0,'A1SRF7085UM3HI','3BPP3MA3TCKQEHPKZKEM2KZPID0ELV','','',0,1,'2016-11-11 17:14:01'),(41,'pbkdf2_sha256$24000$O9QK6oo2xKrl$AEhzWReqLohE+uTqx90GC/E6uBJNKwMX1VeiobrtdhI=','2016-11-11 17:27:12',0,'A8WLCSZLNZ8BL','3BPP3MA3TCKQEHPKZKEM2KZPID0ELV','','',0,1,'2016-11-11 17:27:04'),(42,'pbkdf2_sha256$24000$lZ5dZ60DUn14$3pxugcA/0tRZhrkogc0pRg+uDS6LLYsYJdBus74zVmg=','2016-11-11 17:28:09',0,'A40LU73SS18IW','3BPP3MA3TCKQEHPKZKEM2KZPID0ELV','','',0,1,'2016-11-11 17:28:01'),(43,'pbkdf2_sha256$24000$9QEnQOeZyIfl$CMV+Rw6sSMY3Or5sVfEyzzdvMDEcwzEdkYVox0rxk6c=','2016-11-11 17:56:26',0,'AKNYT1NTK2UFK','3BPP3MA3TCKQEHPKZKEM2KZPID0ELV','','',0,1,'2016-11-11 17:56:18'),(44,'pbkdf2_sha256$24000$0w4e5GZuiwpr$tru71SvUWxE0l5BmelrFVEbiQeUm5/AD/eBsoiPPr+0=','2016-11-11 18:02:09',0,'AWRRXY5ZCJM03','341H3G5YF0EBSGRU6E6GPA8J3MP0Z7','','',0,1,'2016-11-11 18:02:01'),(45,'pbkdf2_sha256$24000$89fLqBg3Gjge$jdDf7eCbL9CM2W4QmG55Aa5ImK27nN6p3Gye6MESyaw=','2016-11-11 18:02:35',0,'A1FYTTGF0QACU9','341H3G5YF0EBSGRU6E6GPA8J3MP0Z7','','',0,1,'2016-11-11 18:02:28'),(46,'pbkdf2_sha256$24000$pa7afzKbzhKw$KBLalM3MVG7H9UnlfZKDvKJ53fQfnbH/Tx+4tnrKeuk=','2016-11-11 18:02:48',0,'A2IG075A0I3O73','341H3G5YF0EBSGRU6E6GPA8J3MP0Z7','','',0,1,'2016-11-11 18:02:40'),(47,'pbkdf2_sha256$24000$IqeMIKmRkzXY$o5TH1u6bXOET4I6XEhajSLOuapJUlsDWMn3ept9b4FI=','2016-11-11 18:03:05',0,'A2S4YDJ9UGAXFQ','341H3G5YF0EBSGRU6E6GPA8J3MP0Z7','','',0,1,'2016-11-11 18:02:58'),(48,'pbkdf2_sha256$24000$qebxKu9dp8dp$VqwVuV2tAacsapRXmeqmiQSufk8fSebU51fwyiQffBo=','2016-11-11 18:03:15',0,'AAQREZOK13OV7','341H3G5YF0EBSGRU6E6GPA8J3MP0Z7','','',0,1,'2016-11-11 18:03:07'),(49,'pbkdf2_sha256$24000$5dEMCptJpDPz$xbE2s3LFMFcX5LRsOfzhcwPyAghRRSjis22bOkEpzZA=','2016-11-11 18:03:23',0,'A1P08M8GNREVEK','341H3G5YF0EBSGRU6E6GPA8J3MP0Z7','','',0,1,'2016-11-11 18:03:15'),(50,'pbkdf2_sha256$24000$4jjm9sAHFfIq$AZPWs3w6lEk6WpBlGlSPbks79Zqw0iQnqWMKbOAgUF8=','2016-11-11 18:03:31',0,'A2A0M30DSA7ZN','341H3G5YF0EBSGRU6E6GPA8J3MP0Z7','','',0,1,'2016-11-11 18:03:23'),(51,'pbkdf2_sha256$24000$RtpWwYTS66IY$8xTCp3UEMa9SewJIedMsy6xl9pmzS5smunFXk9udUV0=','2016-11-11 18:03:39',0,'A2WC2NO555XU3J','341H3G5YF0EBSGRU6E6GPA8J3MP0Z7','','',0,1,'2016-11-11 18:03:32'),(52,'pbkdf2_sha256$24000$Hq7H9NXvt8Cd$Qqf9tmpNg4NBXjZdnTUkYO1a18jn4y1ZvMVNlYARL7U=','2016-11-11 18:03:50',0,'A2H61GZYHIH4T8','341H3G5YF0EBSGRU6E6GPA8J3MP0Z7','','',0,1,'2016-11-11 18:03:42'),(53,'pbkdf2_sha256$24000$shOv9rEnKJsO$9rGHY7zzPLN+0g89GH5O1yJXrbgVVEJfbvdy99Qo+Wo=','2016-11-11 18:03:59',0,'A39X6XZ7O4NVS8','341H3G5YF0EBSGRU6E6GPA8J3MP0Z7','','',0,1,'2016-11-11 18:03:51'),(54,'pbkdf2_sha256$24000$V04EqAv2mMGE$VZ0oiB/1eZ6IiZy0LTb5CZOqQIjNWmbxlbDTpeX3wMA=','2016-11-11 18:04:07',0,'A3UEJQ4EJB9DBD','341H3G5YF0EBSGRU6E6GPA8J3MP0Z7','','',0,1,'2016-11-11 18:03:59'),(55,'pbkdf2_sha256$24000$tTv6WdLWyAqs$w0NNBwwLsQs/ZU0eBD5E14UJp8P3wxym4gnlZVhYvsc=','2016-11-11 18:04:36',0,'A26K8OELA8ZDI9','341H3G5YF0EBSGRU6E6GPA8J3MP0Z7','','',0,1,'2016-11-11 18:04:08'),(56,'pbkdf2_sha256$24000$wSRzf67jkNtF$25UB5m26qGAH5KfpDyqVWgk1I7NOqsM3uOvayEpF4fo=','2016-11-11 18:04:25',0,'A3MMOZDMBZ8K42','341H3G5YF0EBSGRU6E6GPA8J3MP0Z7','','',0,1,'2016-11-11 18:04:17'),(57,'pbkdf2_sha256$24000$XteBGVY8gayf$NlXmRMUHA2jFJnyxN6hbIfTdRuSb5UfXE7iVGscs+ak=','2016-11-11 18:04:47',0,'A19TL7AJ0FB1JG','341H3G5YF0EBSGRU6E6GPA8J3MP0Z7','','',0,1,'2016-11-11 18:04:38'),(58,'pbkdf2_sha256$24000$95VB6IW8LDpw$33wMKwTqXDFwOuy+g0dv3DKGXfZ6Gb+vuILKE2pHsHA=','2016-11-11 18:05:15',0,'A7E8THKOFNEHU','341H3G5YF0EBSGRU6E6GPA8J3MP0Z7','','',0,1,'2016-11-11 18:05:07'),(59,'pbkdf2_sha256$24000$roN0xryycHkk$1FSqnYLFCG27MDd4C4j8PBi/qg4C8jdBaCPLAPoDYiM=','2016-11-11 18:06:23',0,'A3CYV47MM7OA6M','341H3G5YF0EBSGRU6E6GPA8J3MP0Z7','','',0,1,'2016-11-11 18:06:15'),(60,'pbkdf2_sha256$24000$rE7RqOUAUlFD$UasJ+FYED1v7LvFgNutZu5s6kK9OA8+hdE9d5o3EUko=','2016-11-11 18:06:40',0,'AWE14W6LE12XS','3BPP3MA3TCKQEHPKZKEM2KZPID0ELV','','',0,1,'2016-11-11 18:06:32'),(61,'pbkdf2_sha256$24000$NjjCNghPJSG2$rX3UkCnV1HkmDhUwZaSqBnZw0CMLGhC4HNa3JvKJbdA=','2016-11-11 18:07:33',0,'A3RR85PK3AV9TU','341H3G5YF0EBSGRU6E6GPA8J3MP0Z7','','',0,1,'2016-11-11 18:07:25'),(62,'pbkdf2_sha256$24000$o93QbCsSKSB5$NjsVpmtvFV40u5knE2/sqctIerU9otAvKIwNdEKJ4l0=','2016-11-11 18:08:22',0,'A3NUYAG56BPYBB','341H3G5YF0EBSGRU6E6GPA8J3MP0Z7','','',0,1,'2016-11-11 18:08:14'),(63,'pbkdf2_sha256$24000$05E2xx1QzG3p$RsIUO4U4ak+olupjbUufyvsIi6gjbc1B8tQ1WF8h8Ic=','2016-11-11 18:08:43',0,'A3OSGGY6DR0N72','341H3G5YF0EBSGRU6E6GPA8J3MP0Z7','','',0,1,'2016-11-11 18:08:35'),(64,'pbkdf2_sha256$24000$joz1UgULC1fR$OeIYTVuoIN9KuP6iOT5IQ5mZ9aWr0OA6k7fCtIoIOFU=','2016-11-11 18:11:46',0,'A26FQ2XNQB9RQG','341H3G5YF0EBSGRU6E6GPA8J3MP0Z7','','',0,1,'2016-11-11 18:11:38'),(65,'pbkdf2_sha256$24000$7rmCH34b2qRa$KhM1SLNUwBfd+dKLBeQ9Q7tZ/BXXXW07MLHV2uFIDzQ=','2016-11-11 18:12:05',0,'A3IF13XHP5UPO2','3BPP3MA3TCKQEHPKZKEM2KZPID0ELV','','',0,1,'2016-11-11 18:11:47'),(66,'pbkdf2_sha256$24000$b73nXwiWEfqi$kLIwMvd5Cc4Akex2bPVHDHBAk9A3XXZNyguaWwx8+2c=','2016-11-11 18:14:52',0,'ASARROL2Q6XRM','3BPP3MA3TCKQEHPKZKEM2KZPID0ELV','','',0,1,'2016-11-11 18:14:44'),(67,'pbkdf2_sha256$24000$pdNxBUGSjMdg$P4PAACj/GmSInz06FnV/FpixWuMOerNRc6I93lJYsx8=','2016-11-11 18:23:03',0,'A2K9FAOBT66F3U','341H3G5YF0EBSGRU6E6GPA8J3MP0Z7','','',0,1,'2016-11-11 18:22:55'),(68,'pbkdf2_sha256$24000$Mgyt3HrRMafA$Ted50dh+Sd4lkvp11JYypu+P9Efg2CroHfyVUmbDwQw=','2016-11-11 18:26:29',0,'A3KT7FHYY6PF2P','341H3G5YF0EBSGRU6E6GPA8J3MP0Z7','','',0,1,'2016-11-11 18:26:21'),(69,'pbkdf2_sha256$24000$YUtpOPxNXj4x$KxGQvzw9cSAqijNM9+Iw9nHVaHnDHTmL2hMeOTf4kas=','2016-11-11 18:28:30',0,'A29CB19F64GGIF','341H3G5YF0EBSGRU6E6GPA8J3MP0Z7','','',0,1,'2016-11-11 18:28:22'),(70,'pbkdf2_sha256$24000$YhwEaAj4btzt$Nje4zmUbrPX35fX4UXPLNmTWtNS/gmnOyHUPILLphgM=','2016-11-11 18:28:45',0,'A2D773GY0L2LLP','3BPP3MA3TCKQEHPKZKEM2KZPID0ELV','','',0,1,'2016-11-11 18:28:36'),(71,'pbkdf2_sha256$24000$vs6Vsogubn0h$TyJjCJE03CLF9nd5/fVKCWI7Z6XffUDqvU1vOEvMU+M=','2016-11-11 18:28:56',0,'A53VYIFCCASOA','341H3G5YF0EBSGRU6E6GPA8J3MP0Z7','','',0,1,'2016-11-11 18:28:48'),(72,'pbkdf2_sha256$24000$scwGXgvuON3Y$I1qBXalzuaHzWjPM9yHLkV1OSeRakvKqMTI2WFAQu1k=','2016-11-11 18:33:54',0,'AUQR7TGWV00V7','341H3G5YF0EBSGRU6E6GPA8J3MP0Z7','','',0,1,'2016-11-11 18:33:46'),(73,'pbkdf2_sha256$24000$t9tWzZNaXqT2$tZO88Xzm1OwLTDF1FeQg01mA0FN0334dygyIQpbNyyo=','2016-11-11 18:39:43',0,'ACABQQHIO3267','341H3G5YF0EBSGRU6E6GPA8J3MP0Z7','','',0,1,'2016-11-11 18:39:35'),(74,'pbkdf2_sha256$24000$pimfYrIBJfU4$a6Vw9XKQ1r46/u8ENiL/yYEd6YaSh4wtgCmQ3dkefv4=','2016-11-11 18:55:22',0,'A24IZMYNDFOA5L','341H3G5YF0EBSGRU6E6GPA8J3MP0Z7','','',0,1,'2016-11-11 18:55:14'),(75,'pbkdf2_sha256$24000$PAGlMtPh1Qid$kivf0/HoKm9riGzEPMYuf1K9Z8qvTrFLxD7NzTLaxI8=','2016-11-11 19:10:29',0,'A2HNL20X0Q9BP0','341H3G5YF0EBSGRU6E6GPA8J3MP0Z7','','',0,1,'2016-11-11 19:10:21'),(76,'pbkdf2_sha256$24000$C5mVXilD9Eyw$pgI4dKhRFjFwJakYydESsEAPi5mRG7uPjzpevetVcos=','2016-11-11 19:20:54',0,'A376ACV137OKNF','3BPP3MA3TCKQEHPKZKEM2KZPID0ELV','','',0,1,'2016-11-11 19:20:46'),(77,'pbkdf2_sha256$24000$Je4Zfq1Xb9JR$BLCZGPaQti8El2hQ7u1GrTqwc6+1nDuW7eLE1th4TTg=','2016-11-11 19:22:05',0,'A2GB0RI43KU4Z','341H3G5YF0EBSGRU6E6GPA8J3MP0Z7','','',0,1,'2016-11-11 19:21:57'),(78,'pbkdf2_sha256$24000$3fYQsUEzVlMe$kSNtiAUCqdxWzpMXut/CXfZUJBDo16yB6PPmS/mOl34=','2016-11-11 19:33:39',0,'A1SD3O0726NFPZ','341H3G5YF0EBSGRU6E6GPA8J3MP0Z7','','',0,1,'2016-11-11 19:33:32'),(79,'pbkdf2_sha256$24000$U5jFnwwdw2dx$YliK3wKbBx7miqfDEK4jwbEAkbH8/ZwXeJgiEhcQLpA=','2016-11-11 20:10:40',0,'A3GPTSDDHJ2DBV','341H3G5YF0EBSGRU6E6GPA8J3MP0Z7','','',0,1,'2016-11-11 20:10:31'),(80,'pbkdf2_sha256$24000$KnLqI3Ul0o5Y$1HwW5GOt+z9uU/a14KbfkgmGO6h3r330MB7v6u2jhaw=','2016-11-11 20:55:15',0,'AAASQIW3J32OL','3BPP3MA3TCKQEHPKZKEM2KZPID0ELV','','',0,1,'2016-11-11 20:55:07'),(81,'pbkdf2_sha256$24000$kQVdk1ZYkCNx$j8A0h5X95Pxmk6c6+78RrjkogLuBEJ9zBz4SJXMly24=','2016-11-11 20:56:02',0,'AYB94YAV7HU9T','341H3G5YF0EBSGRU6E6GPA8J3MP0Z7','','',0,1,'2016-11-11 20:55:54'),(82,'pbkdf2_sha256$24000$K3Qo3ibdIbnf$F6kEeyQBfxtpC5PhKAL0xlqF8SwSQUJmieJhQuT4kXQ=','2016-11-11 21:35:24',0,'A16DQUZ8SV9IBM','3BPP3MA3TCKQEHPKZKEM2KZPID0ELV','','',0,1,'2016-11-11 21:23:10'),(83,'pbkdf2_sha256$24000$6Xjwgah54d9A$hVAXyzAqNznUBf9Kx+CJPpMcSFmxPSrNNgjnx4bKlLY=','2016-11-11 21:31:02',0,'A112FZDUN6YT07','3BPP3MA3TCKQEHPKZKEM2KZPID0ELV','','',0,1,'2016-11-11 21:30:54'),(84,'pbkdf2_sha256$24000$pxNifNfALsDU$/SIfctJ4qwtEVPRIS2IqC5R1VmtVg67cWJHgttJRMNY=','2016-11-11 22:02:07',0,'A1FOTRH3UJMKTS','341H3G5YF0EBSGRU6E6GPA8J3MP0Z7','','',0,1,'2016-11-11 22:01:59'),(85,'pbkdf2_sha256$24000$BSoZqK4iRw69$y+4PrvoeDZGFkMkS/K2PEG2E1mQRxI8V0cludDyFMqE=','2016-11-11 22:18:44',0,'A3N6DWJC7P3HSI','3BPP3MA3TCKQEHPKZKEM2KZPID0ELV','','',0,1,'2016-11-11 22:18:36'),(86,'pbkdf2_sha256$24000$hCG1MgUHX6Zm$z4MrLY/56GjCtidGgCum5tyBhrcrMgw3euEYDc1Dy9s=','2016-11-11 22:27:23',0,'AYHU5VK0G0TSS','341H3G5YF0EBSGRU6E6GPA8J3MP0Z7','','',0,1,'2016-11-11 22:27:14');
/*!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 */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `auth_user_groups` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`user_id` int(11) NOT NULL,
`group_id` int(11) NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `auth_user_groups_user_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=latin1;
/*!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 */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `auth_user_user_permissions` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`user_id` int(11) NOT NULL,
`permission_id` int(11) NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `auth_user_user_permissions_user_id_14a6b632_uniq` (`user_id`,`permission_id`),
KEY `auth_user_user_perm_permission_id_1fbb5f2c_fk_auth_permission_id` (`permission_id`),
CONSTRAINT `auth_user_user_permissions_user_id_a95ead1b_fk_auth_user_id` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`),
CONSTRAINT `auth_user_user_perm_permission_id_1fbb5f2c_fk_auth_permission_id` FOREIGN KEY (`permission_id`) REFERENCES `auth_permission` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!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 `chat_message`
--
DROP TABLE IF EXISTS `chat_message`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `chat_message` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`handle` longtext NOT NULL,
`message` longtext NOT NULL,
`timestamp` datetime NOT NULL,
`room_id` int(11) NOT NULL,
`user_id` int(11) NOT NULL,
PRIMARY KEY (`id`),
KEY `chat_message_d7e6d55b` (`timestamp`),
KEY `chat_message_8273f993` (`room_id`),
KEY `chat_message_e8701ad4` (`user_id`),
CONSTRAINT `chat_message_room_id_5e7d8d78_fk_chat_room_id` FOREIGN KEY (`room_id`) REFERENCES `chat_room` (`id`),
CONSTRAINT `chat_message_user_id_a47c01bb_fk_auth_user_id` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=147 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `chat_message`
--
LOCK TABLES `chat_message` WRITE;
/*!40000 ALTER TABLE `chat_message` DISABLE KEYS */;
INSERT INTO `chat_message` VALUES (1,'appl','hello? ','2016-11-11 16:32:37',1,4),(2,'steve','hey guys','2016-11-11 16:32:47',1,3),(3,'WOOF','Hey','2016-11-11 16:32:47',1,1),(4,'steve','It looks to me to either be B or D','2016-11-11 16:33:19',1,3),(5,'appl','do you think we are to assume that every category is weighted equally? ','2016-11-11 16:33:23',1,4),(6,'steve','What do you guys think?','2016-11-11 16:33:23',1,3),(7,'Robert','Su','2016-11-11 16:33:27',3,7),(8,'Robert','Sup','2016-11-11 16:33:30',3,7),(9,'Dee','Hi!','2016-11-11 16:33:35',3,13),(10,'steve','I do appl.','2016-11-11 16:33:36',1,3),(11,'Fred','Candidate D had good performance on 6 tests','2016-11-11 16:33:42',2,20),(12,'Robert','Ello','2016-11-11 16:33:49',3,7),(13,'Robert','Anyone else here?','2016-11-11 16:33:52',3,7),(14,'WOOF','I think D','2016-11-11 16:33:56',1,1),(15,'Felix','My initial thought is to choose cancidate B. He/she seems to have more upside. What are your thoughts?','2016-11-11 16:33:57',2,14),(16,'Robert','I think D is the best','2016-11-11 16:34:03',3,7),(17,'Dee','I do as well','2016-11-11 16:34:17',3,13),(18,'appl','on my screen, if you add up all the +s and -s and 0s, A has a score of +6','2016-11-11 16:34:22',1,4),(19,'WOOF','6 Plus, 2 Negs, and a 0','2016-11-11 16:34:22',1,1),(20,'appl','so I think we have different charts, then','2016-11-11 16:34:37',1,4),(21,'Felix','D was my second choice, this person seemed more consistant','2016-11-11 16:34:44',2,14),(22,'WOOF','Oh...','2016-11-11 16:34:44',1,1),(23,'Robert','So two for D.','2016-11-11 16:34:48',3,7),(24,'Robert','Who\'s the other person?','2016-11-11 16:34:51',3,7),(25,'steve','we may have just broke the experiment lol :P','2016-11-11 16:34:52',1,3),(26,'Zongo','D is okay','2016-11-11 16:34:57',3,18),(27,'Robert','THere we go','2016-11-11 16:35:03',3,7),(28,'WOOF','Does everyone have Analogies as one of the test?','2016-11-11 16:35:04',1,1),(29,'appl','that\'s definitely possible haha','2016-11-11 16:35:07',1,4),(30,'Robert','So all three for D, okay.','2016-11-11 16:35:11',3,7),(31,'appl','oh, no I don\'t','2016-11-11 16:35:18',1,4),(32,'Robert','I guess that means we\'re finished here?','2016-11-11 16:35:19',3,7),(33,'Dee','Well wait, look at A\'s +','2016-11-11 16:35:22',3,13),(34,'Zongo','okay','2016-11-11 16:35:24',3,18),(35,'Allie','I feel like candidate A has the most positives and only 1 negative and 1 neutral','2016-11-11 16:35:26',2,17),(36,'Robert','D has the most +','2016-11-11 16:35:34',3,7),(37,'WOOF','So we all have different test then? ','2016-11-11 16:35:36',1,1),(38,'steve','apparently','2016-11-11 16:35:41',1,3),(39,'appl','maybe this puzzle has to do with combining our charts because we have different rows','2016-11-11 16:35:44',1,4),(40,'Dee','A has 7','2016-11-11 16:35:47',3,13),(41,'Felix','A only has 3 positives, that\'s not the most','2016-11-11 16:35:50',2,14),(42,'Robert','I only see 3 + for A','2016-11-11 16:36:05',3,7),(43,'WOOF','Should we all just add the points together for each person then?','2016-11-11 16:36:07',1,1),(44,'Allie','A for me has 7 positives','2016-11-11 16:36:09',2,17),(45,'Zongo','A has too many -','2016-11-11 16:36:19',3,18),(46,'Dee','Hmm, maybe we see different letters on each candidate?','2016-11-11 16:36:23',3,13),(47,'Felix','Then I guess they give everyone different info','2016-11-11 16:36:23',2,14),(48,'Robert','Possible','2016-11-11 16:36:29',3,7),(49,'appl','well, first we should check for duplicates between us i think','2016-11-11 16:36:37',1,4),(50,'appl','as much of a pain as that is','2016-11-11 16:36:41',1,4),(51,'steve','think we should just go with whatever one looks the best given our chart','2016-11-11 16:36:44',1,3),(52,'Allie','yes, it seems that way.','2016-11-11 16:36:48',2,17),(53,'appl','I have Verbal Comprehension, Spelling, Antonyms, Data interpretation, Letters-to-Numbers, Trigonometry, 3D Views, Map interpretation, Combining shapes','2016-11-11 16:36:51',1,4),(54,'Robert','D for me has 6+ 1-0 and two -','2016-11-11 16:36:52',3,7),(55,'Fred','For me, A has 3 positive, B has 4 positive, C has 3 and D has 6','2016-11-11 16:36:52',2,20),(56,'Zongo','we\'re getting different data','2016-11-11 16:37:12',3,18),(57,'Robert','How about you Zongo?','2016-11-11 16:37:14',3,7),(58,'WOOF','None of those match with me lol','2016-11-11 16:37:16',1,1),(59,'Robert','hmm','2016-11-11 16:37:18',3,7),(60,'Felix','For me A=3, B=5, C=3, D=2','2016-11-11 16:37:21',2,14),(61,'Robert','so your best is which one?','2016-11-11 16:37:30',3,7),(62,'Allie','A for me has 7 positives, B has 2 positives, C has 3 positives, and D has 3','2016-11-11 16:37:33',2,17),(63,'appl','that\'s good, it\'s easiest if we have no matches, then we can just add our numbers together','2016-11-11 16:37:34',1,4),(64,'WOOF','oh wait, I have letters to numbers too my bad','2016-11-11 16:37:43',1,1),(65,'Robert','I guess we should think about which strength we want the most in a candidate.','2016-11-11 16:37:53',3,7),(66,'Felix','So we just make a guess?','2016-11-11 16:38:03',2,14),(67,'appl','dang, in that case, one of us has to count it and the other has to not','2016-11-11 16:38:06',1,4),(68,'Robert','I think the last 6 are the most valuable','2016-11-11 16:38:36',3,7),(69,'Allie','I am not sure what else to do as we are seeing different things','2016-11-11 16:38:55',2,17),(70,'Felix','A seems to have the post total positives between us','2016-11-11 16:38:55',2,14),(71,'Zongo','D for me is 3+ 2- 50','2016-11-11 16:39:16',3,18),(72,'Fred','Yes, i would go with A as greatest total.','2016-11-11 16:39:16',2,20),(73,'appl','in order, including letters to numbers, my chart has +6, -1, -3, +2 from A to D','2016-11-11 16:39:17',1,4),(74,'Robert','D is still the best option for me based on teh last 6.','2016-11-11 16:39:18',3,7),(75,'Allie','sounds good to me','2016-11-11 16:39:23',2,17),(76,'Robert','That\'s not bad','2016-11-11 16:39:26',3,7),(77,'Felix','cool, good luck','2016-11-11 16:39:33',2,14),(78,'Zongo','If the data is different this is a scam','2016-11-11 16:39:33',3,18),(79,'Fred','OK done?','2016-11-11 16:39:35',2,20),(80,'appl','btw if this ever stops being worth a dollar to you guys i understand :P ','2016-11-11 16:39:42',1,4),(81,'Robert','Looking at the last 6 is D the best for you Zongo?','2016-11-11 16:39:43',3,7),(82,'Allie','yes','2016-11-11 16:39:48',2,17),(83,'Dee','really? comprehending what someone telling you is important.','2016-11-11 16:39:49',3,13),(84,'Robert','Depends on the position','2016-11-11 16:40:04',3,7),(85,'WOOF','without counting the ones you have mine are','2016-11-11 16:40:57',1,1),(86,'Robert','I think wwe may be getting different traits as well','2016-11-11 16:41:07',3,7),(87,'Robert','I\'m not seeing comprehension','2016-11-11 16:41:12',3,7),(88,'Dee','I have a Verbal Comprehension','2016-11-11 16:41:36',3,13),(89,'Robert','I don\'t.','2016-11-11 16:41:46',3,7),(90,'Robert','Hmm','2016-11-11 16:41:52',3,7),(91,'WOOF','-3, +2, +1, +4','2016-11-11 16:41:53',1,1),(92,'Dee','ok so we have different stuff, now it makes sense?','2016-11-11 16:42:06',3,13),(93,'Robert','Description: Candidate A: Candidate B: Candidate C: Candidate D: Analogies + - + + Spelling - 0 - + Grammar 0 + - 0 Number sequences - + + + Letters-to-Numbers + 0 - + Algebra - + - - Shape Matching - - + + Map interpretation + 0 - + Rotated shapes','2016-11-11 16:42:15',3,7),(94,'appl','cool thank you!','2016-11-11 16:42:17',1,4),(95,'appl','i think steve may have bailed on us, but they said it looked like either B or D to them','2016-11-11 16:42:34',1,4),(96,'Robert','Copy paste all yours and post it','2016-11-11 16:42:37',3,7),(97,'appl','so i think we can safely conclude D ','2016-11-11 16:42:47',1,4),(98,'Robert','Then we paste each others in word pad and choose','2016-11-11 16:42:51',3,7),(99,'Dee',' Description: Candidate A: Candidate B: Candidate C: Candidate D: Verbal Comprehension + + + - Spelling - 0 - + Antonyms + - - 0 Data interpretation + 0 + 0 Letters-to-Numbers + 0 - + Trigonometry + - - 0 3D Views 0 + + 0 Map interpretation + 0 - + Combining shapes','2016-11-11 16:43:11',3,13),(100,'Robert','If you copy past ein word pad it the list should look notmal','2016-11-11 16:43:17',3,7),(101,'WOOF','Yeah, D seems to be the best between us two at least','2016-11-11 16:43:18',1,1),(102,'Robert','Nope copy past doesn\'t make it look normal','2016-11-11 16:43:37',3,7),(103,'appl','okay well, i\'m ready to lock that in on the next page if you are','2016-11-11 16:43:52',1,4),(104,'appl','thank you for working with me WOOF :) ','2016-11-11 16:44:01',1,4),(105,'Robert','I\'m missing your combining shapes Dee','2016-11-11 16:44:42',3,7),(106,'Robert','Rotated shapes 0 + - -','2016-11-11 16:45:16',3,7),(107,'Robert','Mine ^','2016-11-11 16:45:24',3,7),(108,'Robert','How about you Zongo?','2016-11-11 16:45:46',3,7),(109,'Dee','Is your candidate C mostly minuses?','2016-11-11 16:45:50',3,13),(110,'Robert','I think the common theme in the traits is math related','2016-11-11 16:46:19',3,7),(111,'Robert','Yeh','2016-11-11 16:46:30',3,7),(112,'Dee','we can eliminate C then?','2016-11-11 16:46:42',3,13),(113,'Robert','Yeh. Good idea','2016-11-11 16:46:50',3,7),(114,'Dee','Zongo, you still there?','2016-11-11 16:47:59',3,13),(115,'Robert','I think A is the best choice for your list and mine, Dee','2016-11-11 16:48:07',3,7),(116,'Dee','Well it has a ton of pluses for me, guessing 0s for you?','2016-11-11 16:48:43',3,13),(117,'Robert','My best is D but my A and you\'re matches the most','2016-11-11 16:48:50',3,7),(118,'Robert','I have 5 + for A','2016-11-11 16:49:26',3,7),(119,'Dee','Are we allowed to go ahead then? ','2016-11-11 16:49:34',3,13),(120,'Robert','No 4 +','2016-11-11 16:49:56',3,7),(121,'Robert','4 -','2016-11-11 16:50:15',3,7),(122,'Robert','1 - 0','2016-11-11 16:50:21',3,7),(123,'Dee','My D has 5 0s and 3 +s and a - in verbal comprehension','2016-11-11 16:50:54',3,13),(124,'Robert','Hmm','2016-11-11 16:51:18',3,7),(125,'Robert','Thta might be the better choice than cause my d is the best','2016-11-11 16:51:41',3,7),(126,'Robert','lol','2016-11-11 16:51:43',3,7),(127,'Dee','my A has 7 +s and 1 0 and a - in spelling','2016-11-11 16:52:23',3,13),(128,'Robert','My d has 2- and 1-0','2016-11-11 16:52:29',3,7),(129,'Robert','Res are +','2016-11-11 16:52:33',3,7),(130,'Robert','hmmm','2016-11-11 16:52:40',3,7),(131,'Robert','My A is my second best','2016-11-11 16:52:45',3,7),(132,'Robert','what\'s your second best','2016-11-11 16:52:53',3,7),(133,'Robert','mys econd best has 4 -','2016-11-11 16:53:04',3,7),(134,'Dee','my second best is your D','2016-11-11 16:54:11',3,13),(135,'Robert','I think your A is stronger than my D','2016-11-11 16:54:11',3,7),(136,'Robert','I compared their rating','2016-11-11 16:54:26',3,7),(137,'Dee','ok, so A?','2016-11-11 16:54:39',3,13),(138,'Dee','I wonder if Zongo is gone','2016-11-11 16:55:03',3,13),(139,'Robert','Yeh, task time probably.','2016-11-11 16:55:26',3,7),(140,'Robert','I\'m good with A','2016-11-11 16:55:35',3,7),(141,'Dee','me too','2016-11-11 16:55:41',3,13),(142,'Robert','Okay. Good talk, lets finish.','2016-11-11 16:55:56',3,7),(143,'Dee','ok thanks!','2016-11-11 16:56:04',3,13),(144,'Robert','Bye.','2016-11-11 16:56:08',3,7),(145,'ap','hi','2016-11-11 22:15:15',4,84),(146,'ap','hello','2016-11-11 22:16:06',4,84);
/*!40000 ALTER TABLE `chat_message` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `chat_room`
--
DROP TABLE IF EXISTS `chat_room`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `chat_room` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` longtext NOT NULL,
`label` varchar(50) NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `label` (`label`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `chat_room`
--
LOCK TABLES `chat_room` WRITE;
/*!40000 ALTER TABLE `chat_room` DISABLE KEYS */;
INSERT INTO `chat_room` VALUES (1,'','room1'),(2,'','room2'),(3,'','room3'),(4,'','room9'),(5,'','room10');
/*!40000 ALTER TABLE `chat_room` 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 */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `django_admin_log` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`action_time` datetime NOT NULL,
`object_id` longtext,
`object_repr` varchar(200) NOT NULL,
`action_flag` smallint(5) unsigned NOT NULL,
`change_message` longtext NOT NULL,
`content_type_id` int(11) DEFAULT NULL,
`user_id` int(11) NOT NULL,
PRIMARY KEY (`id`),
KEY `django_admin__content_type_id_c4bce8eb_fk_django_content_type_id` (`content_type_id`),
KEY `django_admin_log_user_id_c564eba6_fk_auth_user_id` (`user_id`),
CONSTRAINT `django_admin_log_user_id_c564eba6_fk_auth_user_id` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`),
CONSTRAINT `django_admin__content_type_id_c4bce8eb_fk_django_content_type_id` FOREIGN KEY (`content_type_id`) REFERENCES `django_content_type` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!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 */;
/*!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 */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `django_content_type` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`app_label` varchar(100) NOT NULL,
`model` varchar(100) NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `django_content_type_app_label_76bd3d3b_uniq` (`app_label`,`model`)
) ENGINE=InnoDB AUTO_INCREMENT=24 DEFAULT CHARSET=latin1;
/*!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'),(18,'chat','message'),(17,'chat','room'),(5,'contenttypes','contenttype'),(7,'experiment','consent_form'),(10,'experiment','crowd'),(11,'experiment','crowd_members'),(8,'experiment','expuser'),(9,'experiment','problemhint'),(14,'experiment','profile'),(15,'experiment','profilehint'),(12,'experiment','questions'),(13,'experiment','taskuser'),(16,'experiment','userprofile'),(19,'forum','discussion'),(20,'forum','statement'),(21,'forum','vote'),(6,'sessions','session'),(22,'waiting_room','waitroom'),(23,'waiting_room','waituser');
/*!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 */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `django_migrations` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`app` varchar(255) NOT NULL,
`name` varchar(255) NOT NULL,
`applied` datetime NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=45 DEFAULT CHARSET=latin1;
/*!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','2016-07-12 21:38:30'),(2,'auth','0001_initial','2016-07-12 21:38:30'),(3,'admin','0001_initial','2016-07-12 21:38:30'),(4,'admin','0002_logentry_remove_auto_add','2016-07-12 21:38:30'),(5,'contenttypes','0002_remove_content_type_name','2016-07-12 21:38:30'),(6,'auth','0002_alter_permission_name_max_length','2016-07-12 21:38:30'),(7,'auth','0003_alter_user_email_max_length','2016-07-12 21:38:30'),(8,'auth','0004_alter_user_username_opts','2016-07-12 21:38:30'),(9,'auth','0005_alter_user_last_login_null','2016-07-12 21:38:30'),(10,'auth','0006_require_contenttypes_0002','2016-07-12 21:38:30'),(11,'auth','0007_alter_validators_add_error_messages','2016-07-12 21:38:30'),(17,'sessions','0001_initial','2016-07-12 21:38:31'),(40,'chat','0001_initial','2016-10-25 20:43:33'),(41,'experiment','0001_initial','2016-10-25 20:43:43'),(42,'forum','0001_initial','2016-10-25 20:43:47'),(43,'waiting_room','0001_initial','2016-10-25 20:43:49'),(44,'experiment','0002_auto_20161026_0201','2016-10-26 02:01:57');
/*!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 */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `django_session` (
`session_key` varchar(40) NOT NULL,
`session_data` longtext NOT NULL,
`expire_date` datetime NOT NULL,
PRIMARY KEY (`session_key`),
KEY `django_session_de54fa62` (`expire_date`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!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 ('00sdiing73o74vdyc5i6kjo0orwrwq2h','NThiMDJiOTAwY2E4MThmZGY3MGY0NmI0NjZhMDM3NTIxMTAxN2IzNTp7Il9hdXRoX3VzZXJfaGFzaCI6IjcwOTI3ODg3OTgzNTRjNDhkZjRkMDRmYTkyZDgwNjdhZWU4ZTcyNWQiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiI0MiJ9','2016-11-25 17:28:09'),('09z8ile3psmp9l4so3fk6gj4wygx5fq4','MGEyNjVkMDUxYzAyZGE0YzEzODE2MGFjODE5NzdkN2ExNmIyZTdkNzp7Il9hdXRoX3VzZXJfaGFzaCI6ImQxMzg0Y2M5ZjlmNjlmMTM1NzYwODIxNDg3MDkzYWZkY2E0NmUwNjgiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiI2NyJ9','2016-11-25 18:23:03'),('0inx04pnot3kcsmguq5d94ny0x5teso8','MjgyYTYyZDkxN2U4NDQ2ZWEyZDdmYzVhZjAxNDQzOWM0MzZjNjVkYTp7Il9hdXRoX3VzZXJfaGFzaCI6IjZiZmJhNzI3NjRiZjMxMzE5ZjUzMzA0ZjVlYTU3ZjU2ZWZkYmE4NTMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiI4MiJ9','2016-11-25 21:34:50'),('0l4agy1sahqit34pb5eol1r1bjmmby2m','NmNlNDBlNDUyZWVhNTg3Mjk2ZTdjNmQyNTI5YWVhNTE0MWQyY2RiZTp7Il9hdXRoX3VzZXJfaGFzaCI6ImFhMDIwYzAyNzQ4OTQzMDJlMDY0YjI3MzRkZDkxMDk5MzdjMmEzOTgiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiI1In0=','2016-11-25 16:28:40'),('0rq7yoqjv0dr1lir1iaeq25iyytqs9bc','MDhlZDFkMDMyNTc2YzJiN2M3YzM2Zjg4MTE2NDQ4NDg1ZTY2ZDIyMjp7Il9hdXRoX3VzZXJfaGFzaCI6IjA0MDUzNjQ4MTk1YTUwMjViOTEyYWRiMzc4ZTNmN2JiZDJmNmMyZGEiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiI1NSJ9','2016-11-25 18:04:37'),('0t9u4n0yr94u5zw3p7ncybar4yrrr1jp','NGI4ZGMzYTBlMjE2ODE2ZDViYWZjZWU0Y2Q1YzY4YTI4YTc0ZTgxODp7Il9hdXRoX3VzZXJfaGFzaCI6ImE5NWViZDg4ZjgyMTBiYjU5NGE5NGUwMGRjODBlMzFiMmJiZjRhZWYiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiI4NSJ9','2016-11-25 22:18:44'),('17weh7r0r4aatxb7099fxo2egjmyur21','ZmFmMmVkM2M2NjYyYzU5MDEwMjFiZDg5MzI3OWU4NzhiOGU2N2UzNzp7Il9hdXRoX3VzZXJfaGFzaCI6IjMzZDhlYTY5MWZiMTRiYjQ0Nzc1NzAxNzExOTFhNTA2YTFmNmQxMDYiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiI1MiJ9','2016-11-25 18:03:50'),('1kprsv37u09cft2762pszb2e8tf38cey','NjE2YjI0NDJhMjcyZTMxYzFjN2VjNDljOTgwNjAzYzQzODJkYjQzZTp7Il9hdXRoX3VzZXJfaGFzaCI6IjhkYzdkZWRiYjFjZjg5N2ZmMzkzNDllNzBlNzg5OGJmNThlZTdmZjIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiI4MCJ9','2016-11-25 20:55:15'),('1kqvud99kf07q727ml158y5a8bh8s9d0','OTllY2VhN2EyNGQ2ZjVmOTkyZmQxMGJjNjA2ZWIxMGZkYTdjYjViNTp7Il9hdXRoX3VzZXJfaGFzaCI6IjFmMWQ3NTJiMDY2NzhmNDI0MDhjNTVhNjVmYTZkMTQzMWEyN2YzMjUiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiI1MCJ9','2016-11-25 18:03:31'),('2zec5rgxdr3x2cjqau4vuvx3gydpi9sh','ZDFhMzhmZTRlNDQ1ZDA1MjU1MDJjMDgzMDA5YjFlZWYzMzUwOTE2Njp7Il9hdXRoX3VzZXJfaGFzaCI6IjMzY2ZlOWEyNjcyMmUzMDg3NjY3YzllYTRlMmNhODgyMzcyYTcyZGYiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIzIn0=','2016-11-25 16:28:23'),('335raxin480zvwbclkrrhs13vgalqhm8','MDE0ODhiNTlmNDBhMGU0NjE3MjUxZTRjZTZkN2NlNDRhZjQwZTJiZTp7Il9hdXRoX3VzZXJfaGFzaCI6IjhmMzNjMGJkZTllOWY0ZTI5NTc0OWJiNmQxODc2ZDI2YjRiNzJhNGYiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxMCJ9','2016-11-25 16:29:22'),('38nsbm30b767x9q5l52esxud8tg1ebyo','NWJkMzM3NjFkNzdhMzg4NjFkMzljODMyZDViMzdlMjQ0OGRjYzBiYjp7Il9hdXRoX3VzZXJfaGFzaCI6IjM3ODcwNjU2ZGQwODJjYTVhNmQ0NjBjYTk5YWJkNzczZjBjNjg0ZjAiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiI4NCJ9','2016-11-25 22:02:07'),('3vphl7zughupxp7wl2aebnea88kgfm47','ZjUyMTA2MzQ5NDBiZWFhYzZmMzkyMjAxOWY0NDU3ZDkzNDMwZTg4NDp7Il9hdXRoX3VzZXJfaGFzaCI6IjBkYzViNmVjODI5ZjRmN2QwYWI0ZDNmOTVmZDAzNjc5MTM3OTM4ZGIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIzMyJ9','2016-11-25 16:47:35'),('4rnlh13yemndtq2ie6rgyzewiottct6w','MmVjNzliY2ZjODk3MjljZGM3NjhkYzA0YmYyZjJhZjhlMTA1NzZkNzp7Il9hdXRoX3VzZXJfaGFzaCI6IjEyMzNlZmY3OTVlNTVjM2QzMjgyMDNlMzhmYjg4ZDk1MDcyYWJmNDkiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiI2OSJ9','2016-11-25 18:28:30'),('4zpugcg3mywtycq58818musc3tkoipnh','OThhYTdiYmQ0OTljMjc2MjkxMTJmMTE5OGNjNGQ3ZDU0ZjA4ODgxYjp7Il9hdXRoX3VzZXJfaGFzaCI6IjI5MDI5ZWZlNTlmMTJlYTA4NjdjNDg4MDYwY2U1MDNmOTdiYzM1NGYiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIyNyJ9','2016-11-25 16:33:17'),('5bf0i8lu7kob4kexh8j611ev6u88613j','OWY4OTFlODQ2ZjI3NjY3YjQ4OGJkMDY4YWUyNmUzMTgwZDAxN2Y5Zjp7Il9hdXRoX3VzZXJfaGFzaCI6Ijg0N2YyZGE3YTJhMzNmZmM2NDMyNGJhMDA4YWMzOGQwOWZlN2ZlMmIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiI4In0=','2016-11-25 16:29:05'),('5xtffz7osmbt8niv0v7fh4w0e83l2d2g','NDRkMDFlNDVmNTkyZmZiMTFmZjNlZjZmMDI4ZjA4OGI1ZGU3M2Q1Yjp7Il9hdXRoX3VzZXJfaGFzaCI6IjBmZjdmYjQ3MDQ0NWZjZjllZjM1NTBiOTE1MzhkNTAzMTE5YjE0N2IiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiI1NiJ9','2016-11-25 18:04:25'),('6nv4l75la8plz6swb36vp73l9fspgurl','Y2MxYWJmMmJiYWJiY2JjZTAxZmUwNTBlNWU5NTYwZmRhYWY2ZDQxNzp7Il9hdXRoX3VzZXJfaGFzaCI6IjZkYmVkNzE2YTZjNjI3ODljNmE1YmJhZWU0OTYxYzJjMmZkZWQ4NzciLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxIn0=','2016-11-25 16:30:04'),('7avqpiwnqwzvfc7udfpjmz4tqhgcbmex','YzAxMzQzYWI4ZmI0NGYwN2VhNmQ2ODU2MjdiOTViZGM5OTdhMzdjZDp7Il9hdXRoX3VzZXJfaGFzaCI6ImYyMTUxOWIyMjI0OGE4MGJjNjIyNWM0ZGU4ZWVjNTlmODJjNjk3YmIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiI0In0=','2016-11-25 16:28:31'),('7t23irqlay3u56eqw2zhovjnlyetcrzq','Mzc5MGQ0NGU0Y2U3ODg3YTY3Mjc1OTJhODc3YjhjMzRjOTNmYjA3NDp7Il9hdXRoX3VzZXJfaGFzaCI6IjJiYjk3M2Y0OTE5YzBjODQ5NmVhODFkNjI4YjEyODY3MDUyZTQxYjIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiI1MSJ9','2016-11-25 18:03:39'),('9v9bsgfnn7psk2lpep4f67nigagcjqhw','MDdhZWNjOTU5YmNiOWJmN2I0OTA4NTc3N2Q2ZGQ1M2RhNzFkZDM3OTp7Il9hdXRoX3VzZXJfaGFzaCI6IjIzZTEzMmQ5MTYwZTQxYWMxZTUxNTMzZmYxZjZiOTczODUzYjIxYjQiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIzNSJ9','2016-11-25 16:54:11'),('aqoqu39i6xy6vfzw3md8sz50fpk1e8qc','NDAyZWQ2YzY0NWZlNmZmYjc2OTg4OGVlODIwYzJiMDAwYjczYTM5Zjp7Il9hdXRoX3VzZXJfaGFzaCI6IjhkYTgwNzkyMTg2NTJkYmU5YjhiMWMxNjBhNjdhMDE1NzYwN2Y5Y2YiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiI3MiJ9','2016-11-25 18:33:54'),('b8k1jm8q029tzia39a36hzprhoo6qlqs','MWVjYWE4NGI4MDdkNGY3M2QwZmQ3MmQ5NmMzYmMyNWFlYzI4NjIyNTp7Il9hdXRoX3VzZXJfaGFzaCI6IjdmMTFkMzMzNWI4YjNjM2E4NmQ0MzdkNDg0ZjIzMWNlMzhlZDI5Y2EiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIyMiJ9','2016-11-25 16:31:29'),('bdfeiipjmvp9lxbzs3it8q3dex5hh8lp','MDYzNmRiZjA5OWYyMDc2ZmYwNTQ3ZDljZmJlMTE0NDYwYmQ2MWJjMjp7Il9hdXRoX3VzZXJfaGFzaCI6IjcwYzIzMDcyNDQxYzFjMmVkNjNlMzU1NmVlYzFkZjI0MWQzODM5ZmIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiI3NCJ9','2016-11-25 18:55:22'),('bdj5lvcdjhe4t0y0ui85vnebk51ueea5','ZGVhMTdlNDJiYmM5ZjllZTNlMjg5NzgwYWM1NzY3M2VmZGUwMWQ2NTp7Il9hdXRoX3VzZXJfaGFzaCI6ImVjODg1ODViMDY4OTNiMjk3M2M1OWZkZDRiOWUzYjI5M2YwYWJmNDEiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxNiJ9','2016-11-25 16:30:30'),('bgxht2vp5tqqylvu2ibsoumfpw9ub0lg','MjNhYTE5NDNlZTA5YTAyYTZlMDE5MjI0MDJmMjJkYzIyNTM0NGI2Njp7Il9hdXRoX3VzZXJfaGFzaCI6IjA3YjE2N2ZjNmQyNTE3MGY4NmE1ZTZkZGQ1ZjIxMzIxZmM3NWU2ZTUiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiI3MSJ9','2016-11-25 18:28:56'),('bi7ujlezhroxekt36f636yx00md11b3p','YjNmNTEyZWVlMjYyMWFmZDQ5MTQ4MmYwM2RiM2EzM2Q0YjkzNTQxMzp7Il9hdXRoX3VzZXJfaGFzaCI6IjhkMTg5YzUzOTAyMzc3NDUyMDI1YWE5MWM3NDJjYmQ4Nzk2NGQ0ZjciLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiI0NCJ9','2016-11-25 18:02:09'),('bmj4ey1dida84ko6d692vgyiy713f5lt','ZjUyYjBkODYyYWI5ZWRmYzRhYWYzZTFjNzZkMmY5ODU5NjllOTdjNTp7Il9hdXRoX3VzZXJfaGFzaCI6ImM2MjI5N2UwOWViOTNiM2Y1ZGI2NTIyMmQ2ZGY3Mjc5ZjIwYzNlYzMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIyOCJ9','2016-11-25 16:38:54'),('bxre2jak70on5ij5mofn9hn9p0yh0eco','YzgwM2JiOTVlZTQ3MWU3NDU4MmQyNjNlMjBjMTBlOTczNDk4ZTVkMzp7Il9hdXRoX3VzZXJfaGFzaCI6ImE5ODc2NzRkMGEyMmVlOTdiOWM1NDBiYmVkZTJkZDQ0NGU4MGFhMDciLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiI1OSJ9','2016-11-25 18:06:23'),('bzilpgxkhoy01od5kcc3shcz1ow9m6kz','NWY2NzUwMDM0NzNlNDcyZGZmZDRiMjgwNzQyYzU4ZDkyYWZkNDg0Mzp7Il9hdXRoX3VzZXJfaGFzaCI6IjQzZmM0MTM2MTA4ZWE3ZjhiYzg2NzJkOGJkYjNjYmNmMzk5Njg2ZTkiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiI2NCJ9','2016-11-25 18:11:46'),('chn029157f4b274182503864b9371ac9','N2Q3NGY1YWM1ZmI5ZmU0YjdmNTY1ZTkxODY1ZWNjNGQ0NmQ5MjM4Yzp7ImRpc2N1c3Npb24iOiJyb29tNCIsIl9hdXRoX3VzZXJfaGFzaCI6IjJhZWM3NTc1NjM2MDkzYWJkZjA5YWVhMWZhNDNkOWUzZWJmM2UxZjYiLCJfYXV0aF91c2VyX2lkIjoiMjEiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9','2016-11-25 17:27:13'),('chn052da31adb9184db29ea447bd9d7f','NTM3YjFjNzhlMzU0ZTk5OThiNzEyZTk1NDBlZDliYWEyYjUyYjFmMDp7ImRpc2N1c3Npb24iOiJyb29tOCIsIl9hdXRoX3VzZXJfaGFzaCI6Ijc3Mjk4NjU3YjNmMjk0MmYzMzU0NjQzNDI2ZGRlNTIyMzlhNzM4OWMiLCJfYXV0aF91c2VyX2lkIjoiODIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9','2016-11-25 21:38:19'),('chn0625dbf8ddd130d8d2fa5c71c79e6','NTM3YjFjNzhlMzU0ZTk5OThiNzEyZTk1NDBlZDliYWEyYjUyYjFmMDp7ImRpc2N1c3Npb24iOiJyb29tOCIsIl9hdXRoX3VzZXJfaGFzaCI6Ijc3Mjk4NjU3YjNmMjk0MmYzMzU0NjQzNDI2ZGRlNTIyMzlhNzM4OWMiLCJfYXV0aF91c2VyX2lkIjoiODIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9','2016-11-25 21:37:49'),('chn0742e5fbdd623be3bb6f738eb78a8','NWE0YjZlNjM2MGRiZGU4ZmNlMWVhNGQwNzMxYjA4YzNhZGRhMmRmZjp7ImRpc2N1c3Npb24iOiJyb29tNCIsIl9hdXRoX3VzZXJfaGFzaCI6IjJkOGUzY2RjOGIxY2MzZThhMmI2OWNiNWVkNzVlMDE4YmJjZWY1NGQiLCJfYXV0aF91c2VyX2lkIjoiMjMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9','2016-11-25 16:33:37'),('chn08dd1edc12ac6505763a849d5f142','MTMxYjk5MDMwZDMwZTg3YmNhMzM5M2ZhY2U5NzRjNWFkYjAxNmQxNDp7ImRpc2N1c3Npb24iOiJyb29tNSIsIl9hdXRoX3VzZXJfaGFzaCI6Ijg2NjI4Mzg0YmE2OTE5MjU4OWY0M2E3MmJmYmYwYjI3OTU3ZTE5MjYiLCJfYXV0aF91c2VyX2lkIjoiNDMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9','2016-11-25 17:57:35'),('chn094df7541b65fcb594d814776bfc8','MmZlNTljZWI4NGZlN2UyNjkyYzZiMzMwYzZhNWU4OWFmZTIxZmM4ZTp7ImRpc2N1c3Npb24iOiJyb29tNyIsIl9hdXRoX3VzZXJfaGFzaCI6IjFlM2Y2ZTgwNGNmMzJhMDU1ZjVhOGJkMDc5YTUxNmYxZWFlZTExOGMiLCJfYXV0aF91c2VyX2lkIjoiNzUiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9','2016-11-25 19:23:30'),('chn09e93a5b6d29799a39b44eec99ef4','NTcwZTg0ZjExZWVhNzcwN2I0NjEyNzQ0YTI4ZTJlMTYyMDhmNGUzMzp7ImRpc2N1c3Npb24iOiJyb29tNCIsIl9hdXRoX3VzZXJfaGFzaCI6ImE0NDU5Nzk3YmM0Nzc1ZWNhODljYjY2NjgwYTE3NWZiMDk4NTEyY2MiLCJfYXV0aF91c2VyX2lkIjoiMjUiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9','2016-11-25 16:47:37'),('chn0b2734d8d82577169788ef3d3ce32','YTA2MTIzMzZiY2I2YTQ1ZWEyMWI4ODQ3YzA5ZmRmMDhmYmJlZDE0NTp7ImRpc2N1c3Npb24iOiJyb29tNCIsIl9hdXRoX3VzZXJfaGFzaCI6Ijk5YTIyYzMyMTEzYTVlY2MzMmVhYTgxM2E5Y2UyNzYwMDQ4MTg0YWIiLCJfYXV0aF91c2VyX2lkIjoiMzAiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9','2016-11-25 16:44:25'),('chn0c6add8c27b04c9f9b9563dd604e1','ZDQ5ZDI2ZjQwMmY0YzZkNDYxMGVhMjFjOWU3MjRmNmMyNjQ0MDU4Nzp7Il9hdXRoX3VzZXJfaGFzaCI6ImNhNzlmYWZlZjE0NGY5ZjhkMWMzMThjYzQyNzdkYmE5Y2ZhMjAwYTEiLCJfYXV0aF91c2VyX2lkIjoiMTgiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsInJvb20iOiJyb29tMyJ9','2016-11-25 16:33:24'),('chn0ce9466cad2d4eb45ba24795a3310','YzE0ZjE1NTVlODhjNDZhYTg1YTVkMDE4MzJjNzZmOTVkMjJkZGYwYjp7ImRpc2N1c3Npb24iOiJyb29tNCIsIl9hdXRoX3VzZXJfaGFzaCI6IjUyNmEwMzdlYzVjZjI2OTkwYjE2YTc1MDI3ZTUzMDA0NzJlYjg2ZGMiLCJfYXV0aF91c2VyX2lkIjoiNDAiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9','2016-11-25 17:15:30'),('chn0d3e1c53ffd1ef66a66267a0333c8','ZTBiOTczZWM4YzU5YmE5ZmM4MGExNzUwZDY3YmM1NzYwNzA4ZWMwNTp7ImRpc2N1c3Npb24iOiJyb29tNCIsIl9hdXRoX3VzZXJfaGFzaCI6IjcwOTI3ODg3OTgzNTRjNDhkZjRkMDRmYTkyZDgwNjdhZWU4ZTcyNWQiLCJfYXV0aF91c2VyX2lkIjoiNDIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9','2016-11-25 17:30:44'),('chn0e6f8269ae2dc54c80a7de09b1a50','NmY3MTZmYThkNGUxODUyZTBmYTg4N2FkZmYyZjY4MmU4ZTJlNjM1ODp7ImRpc2N1c3Npb24iOiJyb29tNCIsIl9hdXRoX3VzZXJfaGFzaCI6IjQ2NDZkMGE5NDdjYmYwNzZiOTA5NGRmMDU0ZDYyZGIwNzRkMmM3OGYiLCJfYXV0aF91c2VyX2lkIjoiMzIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9','2016-11-25 16:48:37'),('chn10695ae2b0fe3776ead3f3749bae3','YmVjYzgzOTM0OWY2OWY3MWI4MDdmZDNkMzlkNDI0NzFlMWI0MTgzMTp7ImRpc2N1c3Npb24iOiJyb29tNiIsIl9hdXRoX3VzZXJfaGFzaCI6ImJkMGY4N2QzYjVhZjU0NWE2OTBjN2U5NjM5NzNjMjQyY2E5ZWU3NmEiLCJfYXV0aF91c2VyX2lkIjoiNjMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9','2016-11-25 18:11:28'),('chn114b896630a8781bc4b14b18d0ee4','NzM2ZWVhYWM3MmEyMGZlMjNmNjQ4Yzc3MDdhMzFkY2FhMTU4YWJiMjp7ImRpc2N1c3Npb24iOiJyb29tNCIsIl9hdXRoX3VzZXJfaGFzaCI6IjdmMTFkMzMzNWI4YjNjM2E4NmQ0MzdkNDg0ZjIzMWNlMzhlZDI5Y2EiLCJfYXV0aF91c2VyX2lkIjoiMjIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9','2016-11-25 16:46:25'),('chn127ba90bb2eba76239944c1677d0c','NTM3YjFjNzhlMzU0ZTk5OThiNzEyZTk1NDBlZDliYWEyYjUyYjFmMDp7ImRpc2N1c3Npb24iOiJyb29tOCIsIl9hdXRoX3VzZXJfaGFzaCI6Ijc3Mjk4NjU3YjNmMjk0MmYzMzU0NjQzNDI2ZGRlNTIyMzlhNzM4OWMiLCJfYXV0aF91c2VyX2lkIjoiODIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9','2016-11-25 21:37:38'),('chn170e6c9736ce58963c1c96a97a042','ODU0NjZlMWNmZmNkMGMyOGZmNGU4OTRlMWFiMGQ3OGJiMTI1Y2RkNzp7ImRpc2N1c3Npb24iOiJyb29tNiIsIl9hdXRoX3VzZXJfaGFzaCI6ImVlN2I2NjBkYWQ2MDcwYjAwMmU1YjUzYWI5NTY3YzViNmUwMDgyYjciLCJfYXV0aF91c2VyX2lkIjoiNDEiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9','2016-11-25 18:05:55'),('chn1add4e338a684dcd1ad463cd4b6b4','M2ExMTg3MGRlZTNiMWQyNjM2NTFmODllOTIwNGM1MDliOTA4ZjkxNDp7ImRpc2N1c3Npb24iOiJyb29tNCIsIl9hdXRoX3VzZXJfaGFzaCI6IjY3ZDQ2MTI0MmNlOTg2NmJlYWRkNWUwOTlhNjA5ODZmZmU1ZTY1NDEiLCJfYXV0aF91c2VyX2lkIjoiOSIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=','2016-11-25 16:57:45'),('chn1f6bb3b0da17a8d379d5be3f27126','NTcwZTg0ZjExZWVhNzcwN2I0NjEyNzQ0YTI4ZTJlMTYyMDhmNGUzMzp7ImRpc2N1c3Npb24iOiJyb29tNCIsIl9hdXRoX3VzZXJfaGFzaCI6ImE0NDU5Nzk3YmM0Nzc1ZWNhODljYjY2NjgwYTE3NWZiMDk4NTEyY2MiLCJfYXV0aF91c2VyX2lkIjoiMjUiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9','2016-11-25 16:33:49'),('chn20013b79387cc59b96ae8d4fbff43','MzEwYzE4NTVlZjg2YjFiMDAxNjU2N2ZiOTJlMDNhYWE0YzE2NWE0NTp7ImRpc2N1c3Npb24iOiJyb29tNiIsIl9hdXRoX3VzZXJfaGFzaCI6IjI0NDcwMDNmMTc4ZWE4ODM4N2Q0NTRiODNhMzdkZWUwZDk2MGY2ZmYiLCJfYXV0aF91c2VyX2lkIjoiNDgiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9','2016-11-25 18:05:04'),('chn21e44bdc044ec39e3a07435c03a9e','ODMwZTJjM2FkMzQxOTgwMjJmZDljN2QzYTI5ZjEyYjMyOWNiNTA5MDp7ImRpc2N1c3Npb24iOiJyb29tNiIsIl9hdXRoX3VzZXJfaGFzaCI6ImM2Njg4YzJiZGViYWViYjhkNzlmMjNmZmQxZTc5NmE4MjJmZTAyZWQiLCJfYXV0aF91c2VyX2lkIjoiNjYiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9','2016-11-25 18:15:54'),('chn27e0721b5833d88d3a869f8520051','ZjEzMjc2ZjU2YzVmZmY1ZjU4NzNkMjdiYmM1ZWJkZDczZDdiN2VjMzp7ImRpc2N1c3Npb24iOiJyb29tNiIsIl9hdXRoX3VzZXJfaGFzaCI6IjBmZjdmYjQ3MDQ0NWZjZjllZjM1NTBiOTE1MzhkNTAzMTE5YjE0N2IiLCJfYXV0aF91c2VyX2lkIjoiNTYiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9','2016-11-25 18:05:27'),('chn2df1b5df41d07570fafcf48f33dde','MDM4MTNiYzI4MGZmMDRmZjI5MTY4YzE1NWEyNTZlMGU5N2IzNTgzNzp7Il9hdXRoX3VzZXJfaGFzaCI6IjMzY2ZlOWEyNjcyMmUzMDg3NjY3YzllYTRlMmNhODgyMzcyYTcyZGYiLCJfYXV0aF91c2VyX2lkIjoiMyIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwicm9vbSI6InJvb20xIn0=','2016-11-25 16:37:04'),('chn2ec24fe24f097f6e001905a8c8758','OWRmOTlmMjI1YTVjMWEyMzZiM2RlN2MxMGExZTRkZjI2MmFmOGU3MTp7ImRpc2N1c3Npb24iOiJyb29tNiIsIl9hdXRoX3VzZXJfaGFzaCI6ImE5ODc2NzRkMGEyMmVlOTdiOWM1NDBiYmVkZTJkZDQ0NGU4MGFhMDciLCJfYXV0aF91c2VyX2lkIjoiNTkiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9','2016-11-25 18:14:12'),('chn354ad4a060c658098d1d70e266c81','MzEwYzE4NTVlZjg2YjFiMDAxNjU2N2ZiOTJlMDNhYWE0YzE2NWE0NTp7ImRpc2N1c3Npb24iOiJyb29tNiIsIl9hdXRoX3VzZXJfaGFzaCI6IjI0NDcwMDNmMTc4ZWE4ODM4N2Q0NTRiODNhMzdkZWUwZDk2MGY2ZmYiLCJfYXV0aF91c2VyX2lkIjoiNDgiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9','2016-11-25 18:12:13'),('chn35b2134b5b7b56cc2d8e5b0f6c8f4','YTc2ODVkYTM1NDkwMzMxYTdmYjhiMmZkOTFhYjk0YjIzM2Q1ZWJkYTp7ImRpc2N1c3Npb24iOiJyb29tNiIsIl9hdXRoX3VzZXJfaGFzaCI6IjJhMjYxMmQyMDUzZTg1Yzg5OWVkZTM1NWM5MDNiZjE5MzE1YzQ5OTUiLCJfYXV0aF91c2VyX2lkIjoiNTciLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9','2016-11-25 18:05:51'),('chn388aa462526f6eebab764151635f9','NTE4MzIzNTViOTAwZmZkODUwMmQ5OTUyODY0NDBjMTJkZGM2ODMzZjp7ImRpc2N1c3Npb24iOiJyb29tOCIsIl9hdXRoX3VzZXJfaGFzaCI6IjhkYzdkZWRiYjFjZjg5N2ZmMzkzNDllNzBlNzg5OGJmNThlZTdmZjIiLCJfYXV0aF91c2VyX2lkIjoiODAiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9','2016-11-25 21:00:11'),('chn3e7e8d4c437bfe42882451e422e30','YTA2Y2QzMmYxNGJkMjRlZjc0NWMyNzRkZTJjYTQ2MjdlZDVlYTNlNTp7Il9hdXRoX3VzZXJfaGFzaCI6IjNhYjZlODQyOWRhZWMzNTNlMmI2ZDc3MTgwNzhiMDUwODM0NzcxZDIiLCJfYXV0aF91c2VyX2lkIjoiMTciLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsInJvb20iOiJyb29tMiJ9','2016-11-25 16:32:33'),('chn3f5c7a17a572449e31bedc8d51d02','NTM3YjFjNzhlMzU0ZTk5OThiNzEyZTk1NDBlZDliYWEyYjUyYjFmMDp7ImRpc2N1c3Npb24iOiJyb29tOCIsIl9hdXRoX3VzZXJfaGFzaCI6Ijc3Mjk4NjU3YjNmMjk0MmYzMzU0NjQzNDI2ZGRlNTIyMzlhNzM4OWMiLCJfYXV0aF91c2VyX2lkIjoiODIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9','2016-11-25 21:26:14'),('chn417302dec532b23bdfc9dcaf50fa9','ZDRmYTUwODNhZGE3Y2YwYTUyOTQxMmY3MjFiNGM5OGIzZmI0YTk1ZTp7ImRpc2N1c3Npb24iOiJyb29tNyIsIl9hdXRoX3VzZXJfaGFzaCI6ImVlNTJmZTA1Yjc5NjY5YjIzMjk3NzYyZjYwNDk5NTdlMWM5NGM5ZGEiLCJfYXV0aF91c2VyX2lkIjoiNzkiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9','2016-11-25 20:11:05'),('chn4205cdc28ea31601f708cbbeb84b8','OWI5MzI4NDUyMjk4NGJkNmQ4NDkxM2I2MzA5Y2ZmZGE4MTY1ZGRkNjp7ImRpc2N1c3Npb24iOiJyb29tOCIsIl9hdXRoX3VzZXJfaGFzaCI6ImMzYmU3NzhhMzU3Y2VhZWJmNGZkMWNkYzQ2N2NmNTU0MmVmMjY4ZDIiLCJfYXV0aF91c2VyX2lkIjoiODEiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9','2016-11-25 21:04:33'),('chn43ce350271ca8bf697536ec4912f0','NzY3ZmM4OWUyYTZkNGE3MGNhNDhhYmYwZDlmNjU1MDZkZWNjNjNlMDp7ImRpc2N1c3Npb24iOiJyb29tNCIsIl9hdXRoX3VzZXJfaGFzaCI6IjNhYTZmNjhiZjVmMTQwYWQzYjZlMDYyNDY4MzBlZTkwNTIwNGQzMjMiLCJfYXV0aF91c2VyX2lkIjoiMjkiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9','2016-11-25 16:39:54'),('chn4437812972a4f29cc93b654472776','ZDhjNWQ3MGEwMzRiYWJmZmFjMGE4NWNkZGY2MmJkNWU0MDFhYzhkYjp7ImRpc2N1c3Npb24iOiJyb29tNiIsIl9hdXRoX3VzZXJfaGFzaCI6IjdmMzlkMDdmYjYxYWQxNmZlZWZjODhjODQyYzBmNjM3NGZlY2MxZjYiLCJfYXV0aF91c2VyX2lkIjoiNDkiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9','2016-11-25 18:05:24'),('chn45e9c313e85a02144afc25b1c8004','ODRiMGJiNDk5NjdiMDdhMzY2ZWE4MTQxNDFmYzAyM2RiNTQ5MmRiYjp7Il9hdXRoX3VzZXJfaGFzaCI6IjM5MjNhMTJmNjExZTI0N2FjNWRkNjQ3OGUxNzFkN2EwYzRiNjc4Y2MiLCJfYXV0aF91c2VyX2lkIjoiNyIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwicm9vbSI6InJvb20zIn0=','2016-11-25 16:32:38'),('chn467c32ad4c957d10d53be62d27ee4','ZjFkYTdhZDk1MWQ2ZDE4MTY3NzM1ODEyOTU5ODhhZDAzNDc3NTlhNTp7ImRpc2N1c3Npb24iOiJyb29tNiIsIl9hdXRoX3VzZXJfaGFzaCI6Ijk1ZWZlMjk4ZmVkNDkwNzQyNTNmZWU3MDAzODUzZTE5ZWQ2Y2FlNWMiLCJfYXV0aF91c2VyX2lkIjoiNTgiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9','2016-11-25 18:07:25'),('chn4b63c5b749df931f974e7bc463160','NTk1ZDQwZTg5MjdmZDc4ODE3NTJmY2M5MzRkMjBjMTcxMTQ2Y2Q3ZDp7ImRpc2N1c3Npb24iOiJyb29tMTEiLCJfYXV0aF91c2VyX2hhc2giOiJlYzA4MTQ4NzNkYmVmMGEyMWIyYTFiODJiYzEzOGQ1MzA2OGIwNjMyIiwiX2F1dGhfdXNlcl9pZCI6Ijg2IiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQifQ==','2016-11-25 22:27:59'),('chn4d943eed63db45a6d1c2e77c00f14','ODhlNzM3NDQ5ZDk3NmQ5NjMyOTU3OGI3MmZkZjRhMjVhODA5ZGU2Nzp7ImRpc2N1c3Npb24iOiJyb29tNyIsIl9hdXRoX3VzZXJfaGFzaCI6IjBjNzc5NGY1ZGFkOWVlYmJhODNiOGI4N2E4NjMzZGJiMzdhYjYyMDkiLCJfYXV0aF91c2VyX2lkIjoiNzgiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9','2016-11-25 19:38:29'),('chn535203763fd4b3f37b0e8fd0248d9','NTE4MzIzNTViOTAwZmZkODUwMmQ5OTUyODY0NDBjMTJkZGM2ODMzZjp7ImRpc2N1c3Npb24iOiJyb29tOCIsIl9hdXRoX3VzZXJfaGFzaCI6IjhkYzdkZWRiYjFjZjg5N2ZmMzkzNDllNzBlNzg5OGJmNThlZTdmZjIiLCJfYXV0aF91c2VyX2lkIjoiODAiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9','2016-11-25 20:56:35'),('chn555f6da4cafe9061440c23516bec7','NTM3YjFjNzhlMzU0ZTk5OThiNzEyZTk1NDBlZDliYWEyYjUyYjFmMDp7ImRpc2N1c3Npb24iOiJyb29tOCIsIl9hdXRoX3VzZXJfaGFzaCI6Ijc3Mjk4NjU3YjNmMjk0MmYzMzU0NjQzNDI2ZGRlNTIyMzlhNzM4OWMiLCJfYXV0aF91c2VyX2lkIjoiODIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9','2016-11-25 21:32:31'),('chn595baca8c1256f0f2be52f9686fa2','NDcyOWZjMTVlYzBiYjdkNzQ3MjZlYzk0OWI5NmVhNDI0ZWIwNTQ1Yzp7ImRpc2N1c3Npb24iOiJyb29tNiIsIl9hdXRoX3VzZXJfaGFzaCI6ImNjNTljOGQzMWZlN2M5MDNjMTUwYzhlMTBkYjVjNzI1M2UzOTEyYWQiLCJfYXV0aF91c2VyX2lkIjoiNjEiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9','2016-11-25 18:08:49'),('chn5b6686f668bc7817d5d933650119b','NTM3YjFjNzhlMzU0ZTk5OThiNzEyZTk1NDBlZDliYWEyYjUyYjFmMDp7ImRpc2N1c3Npb24iOiJyb29tOCIsIl9hdXRoX3VzZXJfaGFzaCI6Ijc3Mjk4NjU3YjNmMjk0MmYzMzU0NjQzNDI2ZGRlNTIyMzlhNzM4OWMiLCJfYXV0aF91c2VyX2lkIjoiODIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9','2016-11-25 21:26:25'),('chn5c9483b92e6c092a5d40891c7cc4c','MTM3ZTE2ZDEwNmQwN2E0ZGVmNzdkZjA5ODExYjBkMDJlN2M1ZTY5ZDp7ImRpc2N1c3Npb24iOiJyb29tNiIsIl9hdXRoX3VzZXJfaGFzaCI6IjMzZDhlYTY5MWZiMTRiYjQ0Nzc1NzAxNzExOTFhNTA2YTFmNmQxMDYiLCJfYXV0aF91c2VyX2lkIjoiNTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9','2016-11-25 18:06:44'),('chn5cac74b9fdd2a9351de82df6017c2','YzhmZmQ5ZjRlYWNhNWQ4Yjk5ODg0ODgzNjU4ZDFlYjdhOThlMGI4ZTp7ImRpc2N1c3Npb24iOiJyb29tNCIsIl9hdXRoX3VzZXJfaGFzaCI6IjUxNTU0ZGUyNTNkMDhjYTBiNjNlYjlmYTEzOTE0MWNiZWYwZjNlNTQiLCJfYXV0aF91c2VyX2lkIjoiMzEiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9','2016-11-25 17:33:12'),('chn5e10fb98910773d5564d90e0f6007','YjJkYmJkMDIxNTY4Nzk4ZTYyZmJkODQ3Nzk0MDRjNDk2MDhhZDM1Nzp7ImRpc2N1c3Npb24iOiJyb29tNCIsIl9hdXRoX3VzZXJfaGFzaCI6IjBkYzViNmVjODI5ZjRmN2QwYWI0ZDNmOTVmZDAzNjc5MTM3OTM4ZGIiLCJfYXV0aF91c2VyX2lkIjoiMzMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9','2016-11-25 16:54:00'),('chn6175d3432652feb391a798dc2edef','OTNhYjBhZTA5OGYxNDU5YzA4YTgxMWJjNzc4YTIyNDUyZmVmMWE0Mzp7ImRpc2N1c3Npb24iOiJyb29tNiIsIl9hdXRoX3VzZXJfaGFzaCI6ImM2NGI5YmEyN2VhMjA1MDUyMGVmY2Q1OTcxZmNkMmY2ZWJjZTYxODMiLCJfYXV0aF91c2VyX2lkIjoiNTQiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9','2016-11-25 18:05:30'),('chn6574f6770269cf7c00151e2742a7b','MTAwOTE3OGU1OWNmODQ1NWY1MmYzNDkwMWIxODJhNWFlMzAwMjUwZDp7ImRpc2N1c3Npb24iOiJyb29tNiIsIl9hdXRoX3VzZXJfaGFzaCI6ImNkMmVjNmNjYTY2NmRjNTA4ZTcxY2IzZWY3YTdiNzIwYmRhNjRlZjkiLCJfYXV0aF91c2VyX2lkIjoiNjgiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9','2016-11-25 18:27:19'),('chn69a3ee7ebd05d7f9a66082e9a26ec','ZTFmNzQwYTc1OTFkYmQ3NWNjZjc2YTk0Y2EyN2ZlMmE4YjQzMWQ4NDp7ImRpc2N1c3Npb24iOiJyb29tNiIsIl9hdXRoX3VzZXJfaGFzaCI6ImQ0MjZlZmNmOWE2M2RlYmVmMjU1NTRjMmU3MDc4ZGQ1ZjhlNTg2MmQiLCJfYXV0aF91c2VyX2lkIjoiNjIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9','2016-11-25 18:09:35'),('chn7088acdbde5470f06a8d3fc439771','NTM3YjFjNzhlMzU0ZTk5OThiNzEyZTk1NDBlZDliYWEyYjUyYjFmMDp7ImRpc2N1c3Npb24iOiJyb29tOCIsIl9hdXRoX3VzZXJfaGFzaCI6Ijc3Mjk4NjU3YjNmMjk0MmYzMzU0NjQzNDI2ZGRlNTIyMzlhNzM4OWMiLCJfYXV0aF91c2VyX2lkIjoiODIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9','2016-11-25 21:41:04'),('chn7704739b3636c3aa6ed28af87b3c4','NTM3YjFjNzhlMzU0ZTk5OThiNzEyZTk1NDBlZDliYWEyYjUyYjFmMDp7ImRpc2N1c3Npb24iOiJyb29tOCIsIl9hdXRoX3VzZXJfaGFzaCI6Ijc3Mjk4NjU3YjNmMjk0MmYzMzU0NjQzNDI2ZGRlNTIyMzlhNzM4OWMiLCJfYXV0aF91c2VyX2lkIjoiODIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9','2016-11-25 21:23:44'),('chn7edb02caceb45ce32861b4c92baaf','YWIyNmUzNzViZDU2NzFhYWZjMzAzZjAxYTU0MjEwOTJhNjBkNTg4YTp7ImRpc2N1c3Npb24iOiJyb29tNiIsIl9hdXRoX3VzZXJfaGFzaCI6IjQzZmM0MTM2MTA4ZWE3ZjhiYzg2NzJkOGJkYjNjYmNmMzk5Njg2ZTkiLCJfYXV0aF91c2VyX2lkIjoiNjQiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9','2016-11-25 18:12:36'),('chn82afeb0ca97b1301105a6b74edae1','NWNkZmMwNWI0ZGFiZjgyOWNlMGExYmZiZWY5YzNmNzZiN2YzMjQ0Mjp7ImRpc2N1c3Npb24iOiJyb29tNCIsIl9hdXRoX3VzZXJfaGFzaCI6ImJlYzdmNDJiMmYwN2JiNjE1M2Q3MTFlOWFmOGI1MDkzMDAxMDAyZjQiLCJfYXV0aF91c2VyX2lkIjoiMzkiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9','2016-11-25 17:13:04'),('chn831d8d998394cd3ae2cb25919f8c1','Mzc4NzEzYTcyOTM5MzY4YTdhY2MxYTY1OWZlZDZkNTRkM2U3NjM3NDp7ImRpc2N1c3Npb24iOiJyb29tNiIsIl9hdXRoX3VzZXJfaGFzaCI6IjA0MDUzNjQ4MTk1YTUwMjViOTEyYWRiMzc4ZTNmN2JiZDJmNmMyZGEiLCJfYXV0aF91c2VyX2lkIjoiNTUiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9','2016-11-25 18:05:36'),('chn834e9cc62224b2df246f1a4cc3050','ZWRmMmJmMmM0NmY0NTFlZjFiOWFiZmJiN2JkYTY1OTFlNmMzMTFkNDp7Il9hdXRoX3VzZXJfaGFzaCI6IjIwNGI1Y2FmY2U0MTYwMzYyZGU1N2I3YTQwM2Q4ZjVlZDAwOTJjMmMiLCJfYXV0aF91c2VyX2lkIjoiMSIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwicm9vbSI6InJvb20xIn0=','2016-11-25 16:31:41'),('chn84a4ed5b63b426d7fc5340fa0c48f','MjNiN2JlZjU5Yjk4M2M3ZWYyYmU4YmYwNzhmZTcxNTRlYzE3M2QxZjp7ImRpc2N1c3Npb24iOiJyb29tNiIsIl9hdXRoX3VzZXJfaGFzaCI6Ijk5NjAwNTRiNjcxOTM2NDZlODRlMjg4NmM5ZTUxNTFhODQ5MzA1MzAiLCJfYXV0aF91c2VyX2lkIjoiNjAiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9','2016-11-25 18:08:50'),('chn85689a2ea6d65b3755f7ee7471903','YzY4ZWEyNjU2NjQzZTAzMmE0NzkxYmUwYzdiZDIzZTA3YTA4MDM1ODp7ImRpc2N1c3Npb24iOiJyb29tNCIsIl9hdXRoX3VzZXJfaGFzaCI6ImQyODQ2ODI5MWFhMzQ5OGZhZTQ5ZmJhOTdlNGY4NGRlOGY5N2MzMTkiLCJfYXV0aF91c2VyX2lkIjoiMjYiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9','2016-11-25 16:34:03'),('chn856d55ec3e562ffcf44ecb2e9bbb0','ZmY3ZDZkMjYyNzY4MzYzZTZhODg3YTY1MzA2YjM5NWM0MzNhMDgwMDp7ImRpc2N1c3Npb24iOiJyb29tNiIsIl9hdXRoX3VzZXJfaGFzaCI6IjhkYTgwNzkyMTg2NTJkYmU5YjhiMWMxNjBhNjdhMDE1NzYwN2Y5Y2YiLCJfYXV0aF91c2VyX2lkIjoiNzIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9','2016-11-25 18:36:04'),('chn86870016e5a38988f524b8b5576f9','OTZhZjYwZDFlMjk2MTQ2YWI2ODQyZDliNDM1OGRiZjYwZGRlMWMxMjp7ImRpc2N1c3Npb24iOiJyb29tNiIsIl9hdXRoX3VzZXJfaGFzaCI6IjBiOWIwMmVjNmEwMTViYjk2MDczNjE2ZWYxMzVhNThhZTE5MjYwMDAiLCJfYXV0aF91c2VyX2lkIjoiNDciLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9','2016-11-25 18:05:16'),('chn88c8a6abc76125a90ba05450d0a21','NmZiMmJiNTM0MzFlZWNlZTE0YjdjYjYyZGViNjllNjAzNDE0YmZlMDp7Il9hdXRoX3VzZXJfaGFzaCI6IjM3ODcwNjU2ZGQwODJjYTVhNmQ0NjBjYTk5YWJkNzczZjBjNjg0ZjAiLCJfYXV0aF91c2VyX2lkIjoiODQiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsInJvb20iOiJyb29tOSJ9','2016-11-25 22:14:47'),('chn88f8808cfa134bb9d1a593159e39c','Y2Y3YmU3ZWQ4ZDM3N2I0ZTc2NGRjZDlmYjQyYTQ2NTUxOTIyOTFkZjp7ImRpc2N1c3Npb24iOiJyb29tNCIsIl9hdXRoX3VzZXJfaGFzaCI6IjdjYjkyN2I4NzI0ODk1YzQzZDMzYWNiNDM1NjYwYTU0MGNjMzg2OGEiLCJfYXV0aF91c2VyX2lkIjoiMjQiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9','2016-11-25 16:34:30'),('chn8978e8e9d60fb51863813594ac68b','NmEwNTFmNjc1ZWY3ODA2MGI5NzVjODkwY2Y5ZGMyYmRmZmFhOTcxMjp7ImRpc2N1c3Npb24iOiJyb29tNCIsIl9hdXRoX3VzZXJfaGFzaCI6ImQ3YTNhNDhlOTJkODZjN2U2YzdkNzVhNTNmZWFlOWI5MjA5MDMyNmYiLCJfYXV0aF91c2VyX2lkIjoiMiIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=','2016-11-25 16:37:22'),('chn8eb285f2589be7f8d17f98f8eee0d','MDM4MTNiYzI4MGZmMDRmZjI5MTY4YzE1NWEyNTZlMGU5N2IzNTgzNzp7Il9hdXRoX3VzZXJfaGFzaCI6IjMzY2ZlOWEyNjcyMmUzMDg3NjY3YzllYTRlMmNhODgyMzcyYTcyZGYiLCJfYXV0aF91c2VyX2lkIjoiMyIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwicm9vbSI6InJvb20xIn0=','2016-11-25 16:32:27'),('chn8fc54f07f303ef03c5dab2ba62bbc','ZjQ0YWU0ZTZmODc3YjY1MDhmZDMyMDQ0Y2M5Y2ZiYzE5NmY4OGJiZTp7Il9hdXRoX3VzZXJfaGFzaCI6IjBmNzBlNjQ2NTAwYTg2ZDU0YmQyODljMzgxMzhjYzg2MDE0MjU0YzAiLCJfYXV0aF91c2VyX2lkIjoiMTQiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsInJvb20iOiJyb29tMiJ9','2016-11-25 16:32:35'),('chn9455e3ed16e0d97108071e4f4f790','M2Y1M2VlN2U3NDU2ZjIyNGZmZWVlYzY5MjZjNjNjNzMzNTBkZmVjNTp7ImRpc2N1c3Npb24iOiJyb29tNCIsIl9hdXRoX3VzZXJfaGFzaCI6IjIzZTEzMmQ5MTYwZTQxYWMxZTUxNTMzZmYxZjZiOTczODUzYjIxYjQiLCJfYXV0aF91c2VyX2lkIjoiMzUiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9','2016-11-25 16:54:36'),('chn981c51602cd15b719022319e9aacf','ZWUxOTgyNGE2MWZiMzQ5NzRhYjU0OTk5Y2QzMTZiNzY5OTdlMDA2NDp7ImRpc2N1c3Npb24iOiJyb29tNyIsIl9hdXRoX3VzZXJfaGFzaCI6ImU5ZjU1ZjBjOTA5M2I2OTI0OWFhNGE3YjU0NDBkYmY0OGYxMTk0N2YiLCJfYXV0aF91c2VyX2lkIjoiNzciLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9','2016-11-25 19:23:10'),('chn9822d51df8069bf961b806d8e2be1','ODYzNzQwOTA4M2Y1ZGQ5MjIwYWFmMjBjNTk2ZWJmZTFkOGVkOGNmYTp7ImRpc2N1c3Npb24iOiJyb29tNiIsIl9hdXRoX3VzZXJfaGFzaCI6IjA3YjE2N2ZjNmQyNTE3MGY4NmE1ZTZkZGQ1ZjIxMzIxZmM3NWU2ZTUiLCJfYXV0aF91c2VyX2lkIjoiNzEiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9','2016-11-25 18:30:43'),('chn98d85826e8fff5d59ea8d901891cd','YzhmZmQ5ZjRlYWNhNWQ4Yjk5ODg0ODgzNjU4ZDFlYjdhOThlMGI4ZTp7ImRpc2N1c3Npb24iOiJyb29tNCIsIl9hdXRoX3VzZXJfaGFzaCI6IjUxNTU0ZGUyNTNkMDhjYTBiNjNlYjlmYTEzOTE0MWNiZWYwZjNlNTQiLCJfYXV0aF91c2VyX2lkIjoiMzEiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9','2016-11-25 17:29:25'),('chn98f77be6accc73fe07f3ae19761b2','YzkwOTJhN2MxZTQ0NGJiYjdmMjlmMDYzMGMwZmVmYTVkNjlkNDRiODp7Il9hdXRoX3VzZXJfaGFzaCI6ImE5NWViZDg4ZjgyMTBiYjU5NGE5NGUwMGRjODBlMzFiMmJiZjRhZWYiLCJfYXV0aF91c2VyX2lkIjoiODUiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsInJvb20iOiJyb29tMTAifQ==','2016-11-25 22:19:01'),('chn9c544f265cd5e4b425069f23bebf6','YjczZmQ2NTFkZDJiYzFlOGJlOTdhOTRjZTNhNjlhZjI0Mzg4YjFiNjp7ImRpc2N1c3Npb24iOiJyb29tNiIsIl9hdXRoX3VzZXJfaGFzaCI6IjhkMTg5YzUzOTAyMzc3NDUyMDI1YWE5MWM3NDJjYmQ4Nzk2NGQ0ZjciLCJfYXV0aF91c2VyX2lkIjoiNDQiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9','2016-11-25 18:04:17'),('chna28ec434ffeb9150ec05d642a6e09','NTYxZGRmZTM0ZjE4MTQ3ODYwMTkzMzA4NDBiMGNkY2ViYmM2NmIzZTp7ImRpc2N1c3Npb24iOiJyb29tNiIsIl9hdXRoX3VzZXJfaGFzaCI6IjJiYzJiMzdlOTg4ZTgwMTVjNTE5OTY3ZWVjYmM3NDkyZmZjZDZlYTYiLCJfYXV0aF91c2VyX2lkIjoiNzAiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9','2016-11-25 18:29:22'),('chna375e864e2efe5a7b5f3ec80f0471','ZmI1NWZlOTdkZTAwZDQwN2YzZDViN2YzYTQzZTZlM2E5ZDJmMGFkNTp7ImRpc2N1c3Npb24iOiJyb29tOCIsIl9hdXRoX3VzZXJfaGFzaCI6ImNlMjEzMjVmMGMyZmIxNGU3YWE0NmRiOWI4NDEzNmRmZDBmNjQ1NzAiLCJfYXV0aF91c2VyX2lkIjoiODIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9','2016-11-25 21:35:07'),('chna8fac404889f6a4817219fd36ee67','ODViZDE5OWNiZWIzOGM5MWZkMWQ4MThmZGFlMmM5MjNkNWZlMDAzYjp7ImRpc2N1c3Npb24iOiJyb29tNiIsIl9hdXRoX3VzZXJfaGFzaCI6ImZhMjZiMGQyMzJmN2QzMzBkNTIwNjQzYThlMGMxOGM2NTBjZjdhMjciLCJfYXV0aF91c2VyX2lkIjoiNDUiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9','2016-11-25 18:04:55'),('chnaafff2f0ec29924acfa8322b5fe10','Yjc3MzJjMmUwNGUyN2YzMzE1NmQ5Nzg3OTQ2ODhhYjZhMDc2ZDZmZTp7ImRpc2N1c3Npb24iOiJyb29tNCIsIl9hdXRoX3VzZXJfaGFzaCI6Ijg3NjU3MGYxYzIxZDIyMDZjMjQxZDczYzliNWIwODc0OTdkZmVhMTUiLCJfYXV0aF91c2VyX2lkIjoiMTkiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9','2016-11-25 16:33:41'),('chnac5de85557f24a7fadbd54d143162','ZjFlNzcxYjg5NGQ2YjA0MWJmOWYzNmU2ODZhMzE1M2FhYmZjYzFjNzp7Il9hdXRoX3VzZXJfaGFzaCI6ImNkNmQ3YmExYTY0Y2E5NDU3ZDgzNGU2YzM2OTMwMDU3MzI3OTBjZjciLCJfYXV0aF91c2VyX2lkIjoiMTMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsInJvb20iOiJyb29tMyJ9','2016-11-25 16:32:38'),('chnb03f953642b1b6f6ff1ee3692b16c','MWFkOGQ4MjJjYmU5YjNmMDI4NDVkYjJjNjBlYTNkMzc5YTk5OGIyYzp7Il9hdXRoX3VzZXJfaGFzaCI6ImY3ZDM4MzcyODFmOTk1ZWNiOWU3MmY1Y2I1MGNiNThkYzU2NGU1NGUiLCJfYXV0aF91c2VyX2lkIjoiMjAiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsInJvb20iOiJyb29tMiJ9','2016-11-25 16:32:28'),('chnb18f181bc27dabdd803d98ba90033','OWRmOTlmMjI1YTVjMWEyMzZiM2RlN2MxMGExZTRkZjI2MmFmOGU3MTp7ImRpc2N1c3Npb24iOiJyb29tNiIsIl9hdXRoX3VzZXJfaGFzaCI6ImE5ODc2NzRkMGEyMmVlOTdiOWM1NDBiYmVkZTJkZDQ0NGU4MGFhMDciLCJfYXV0aF91c2VyX2lkIjoiNTkiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9','2016-11-25 18:16:29'),('chnb2f260f9d827ce0d54d965db0cda6','ZDM2Y2NiYzA4NGEzZWE3NTg1ZjgwYTY0OWMzOGVlYTVjMWY5ZDY2OTp7ImRpc2N1c3Npb24iOiJyb29tNCIsIl9hdXRoX3VzZXJfaGFzaCI6IjI4MTgxNzI2YjZmYzUxMTMxNzQyNmUxMTQ1MmFjNzU0ZjRlNDQxNmMiLCJfYXV0aF91c2VyX2lkIjoiMTUiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9','2016-11-25 16:33:29'),('chnb47e18fe5680aa73a42eb37d8764b','Y2U5MjM3MmZhYzIyZTNiZDEzMTAyMTM3NTJlYzliNTE0NGVmYWJjODp7ImRpc2N1c3Npb24iOiJyb29tNiIsIl9hdXRoX3VzZXJfaGFzaCI6ImRiOWI5ODYyMDg3MjczMmMxZDA2OGQ5NzZkODFiNzI5NDMxN2EyNjUiLCJfYXV0aF91c2VyX2lkIjoiNTMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9','2016-11-25 18:07:11'),('chnb5686f1155d0dda80638cdec30bff','NzYxY2YzMDIxMWIyZjJhNGU2ZmIwZTE3MWQxOWMxNzEyZGM4N2FjMjp7ImRpc2N1c3Npb24iOiJyb29tOCIsIl9hdXRoX3VzZXJfaGFzaCI6Ijc1Yzc2OTlkNjQ1Y2UwMWY0YzNjYTBjMDY2YTFlZjE3YTRkOTUyMGQiLCJfYXV0aF91c2VyX2lkIjoiODMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9','2016-11-25 21:31:24'),('chnb9f4787e11afb52143f204d051eba','NGFlNTg2ZDBlMDBjNWU4YTdlZDIyMjQ3OGM2MjMzZjk3ZmFjNjEwZTp7ImRpc2N1c3Npb24iOiJyb29tNiIsIl9hdXRoX3VzZXJfaGFzaCI6ImMyM2IzYzc5ZjQzZTdiMTJlMjkxNTcyMDY4NDE3YWQ1YzQzMzcwYTEiLCJfYXV0aF91c2VyX2lkIjoiNzMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9','2016-11-25 18:40:22'),('chnbead08b5c592a433438feb039e0af','NDViMDUzMDM1N2Y4MDNjNDc2MjIzOThmZTU1Nzg4YmIxODUyOGI1Yjp7ImRpc2N1c3Npb24iOiJyb29tNCIsIl9hdXRoX3VzZXJfaGFzaCI6IjliYTcwMzI5NTQ1ZWQ1MTMzZTQ0ZTNkODk2M2FhNjQyNTZhMjU1MTYiLCJfYXV0aF91c2VyX2lkIjoiMzgiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9','2016-11-25 17:09:51'),('chnbf050c820d51ce0449116fb6063a4','ZDYzMjY0NDU1MGY4NjJjOTNlODI1YzY2ZTU0YzExYmZkYTY0MjBhYTp7ImRpc2N1c3Npb24iOiJyb29tNiIsIl9hdXRoX3VzZXJfaGFzaCI6IjEyMzNlZmY3OTVlNTVjM2QzMjgyMDNlMzhmYjg4ZDk1MDcyYWJmNDkiLCJfYXV0aF91c2VyX2lkIjoiNjkiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9','2016-11-25 18:29:31'),('chnc2e9e798859c642ea5dfc55e1fdd5','M2MzMTczNDliNzc0OThmZTY2NmY4MjdlMmJhOWE2OGJhZDM2NmIyZDp7ImRpc2N1c3Npb24iOiJyb29tNCIsIl9hdXRoX3VzZXJfaGFzaCI6IjhmMzNjMGJkZTllOWY0ZTI5NTc0OWJiNmQxODc2ZDI2YjRiNzJhNGYiLCJfYXV0aF91c2VyX2lkIjoiMTAiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9','2016-11-25 16:33:27'),('chnc872a6f49aec7143341724d677ade','M2Y1ODliMDhlMThhYjlhNzBlOGEzYWZkNmIyZjQ5ZmQ3YmFhOWM5OTp7ImRpc2N1c3Npb24iOiJyb29tNCIsIl9hdXRoX3VzZXJfaGFzaCI6IjY3YWJmYzRkZWViMGQ3NGI0ODc3N2IyZDU3YTE0MmY1ZDdjNDVkOWMiLCJfYXV0aF91c2VyX2lkIjoiMzciLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9','2016-11-25 17:03:07'),('chncb89562bb5cbe99a0e80d7a5c9592','ZWIzNTM0ZGM2ODNhZGNhY2UyMjRlMDYwMGMwYWIyNjJjN2M0ODFmMzp7Il9hdXRoX3VzZXJfaGFzaCI6ImYyMTUxOWIyMjI0OGE4MGJjNjIyNWM0ZGU4ZWVjNTlmODJjNjk3YmIiLCJfYXV0aF91c2VyX2lkIjoiNCIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwicm9vbSI6InJvb20xIn0=','2016-11-25 16:31:56'),('chnd0dcc8a95df5d0e9512d330bd3ca8','NTQyM2VmZGQzZTk1M2Q5MzgxN2I4OGMwMDI5ZTI2ZjkxZDhmNzAzYjp7ImRpc2N1c3Npb24iOiJyb29tNCIsIl9hdXRoX3VzZXJfaGFzaCI6IjlhMTFhYTA4ZGUwNWFiYjQzYzQxZDhkMmQyNzk3ZWE0ZmIwYjQ3YWMiLCJfYXV0aF91c2VyX2lkIjoiNiIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=','2016-11-25 17:27:37'),('chne460288e553cb8c6bab236db03e5d','NGFiY2ZiYjYyNTBhYmY5OWQ1ZmM4YWMzODIwNmE0NDk2NGZjYTNiNjp7ImRpc2N1c3Npb24iOiJyb29tNiIsIl9hdXRoX3VzZXJfaGFzaCI6IjFmMWQ3NTJiMDY2NzhmNDI0MDhjNTVhNjVmYTZkMTQzMWEyN2YzMjUiLCJfYXV0aF91c2VyX2lkIjoiNTAiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9','2016-11-25 18:05:50'),('chne523433469b47790f74be3c12ddab','OWFjODc4Y2FmODNkZGIyYjRlMDc4ZTA4YWM2OGI0YzA1MTk1MTkwMjp7ImRpc2N1c3Npb24iOiJyb29tNCIsIl9hdXRoX3VzZXJfaGFzaCI6ImE4ODhjMmFkZDZjYTc3YmJhMmRiZjQ0NTk5MGJkMWQ0Nzg1YWFiNDQiLCJfYXV0aF91c2VyX2lkIjoiMzYiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9','2016-11-25 16:57:46'),('chne97b287c373294b15aeba689f5c23','YjJkYmJkMDIxNTY4Nzk4ZTYyZmJkODQ3Nzk0MDRjNDk2MDhhZDM1Nzp7ImRpc2N1c3Npb24iOiJyb29tNCIsIl9hdXRoX3VzZXJfaGFzaCI6IjBkYzViNmVjODI5ZjRmN2QwYWI0ZDNmOTVmZDAzNjc5MTM3OTM4ZGIiLCJfYXV0aF91c2VyX2lkIjoiMzMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9','2016-11-25 16:48:19'),('chnf149d8e4f1b791671ae93ccf4416c','Y2U4YmRmNWNlNzgxN2FmMDE1NDYyNzAxM2Y4ZTA5NDFlMjdmZDkwMjp7ImRpc2N1c3Npb24iOiJyb29tNiIsIl9hdXRoX3VzZXJfaGFzaCI6ImQxMzg0Y2M5ZjlmNjlmMTM1NzYwODIxNDg3MDkzYWZkY2E0NmUwNjgiLCJfYXV0aF91c2VyX2lkIjoiNjciLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9','2016-11-25 18:24:14'),('chnf31d3e95226faefbbb81abde65af5','MTljOTAzM2QyOTJjNjEzNWQ4NWVjYzRlNDFlM2MzOTY3NDQxMmE2NTp7ImRpc2N1c3Npb24iOiJyb29tNCIsIl9hdXRoX3VzZXJfaGFzaCI6ImM2MjI5N2UwOWViOTNiM2Y1ZGI2NTIyMmQ2ZGY3Mjc5ZjIwYzNlYzMiLCJfYXV0aF91c2VyX2lkIjoiMjgiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9','2016-11-25 16:41:02'),('chnfa914d06c5a129f4e7b3739c6f7e7','NjQ4ZmM4NzQ0ODM2NDY3MzY1M2FhYTcxNzY1YmI5ZGIwNTdmODEyMDp7ImRpc2N1c3Npb24iOiJyb29tNyIsIl9hdXRoX3VzZXJfaGFzaCI6IjMxMzA2YzIzNDI1MDVhNWMyNDRkODlmNjU4OGYyYzRmNzljNWVhYjMiLCJfYXV0aF91c2VyX2lkIjoiNzYiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9','2016-11-25 19:21:47'),('chnfa93fd34d4c79d43c42360124ab3a','YzBjOTk3YjM5NDkzOTQ0Y2ZjY2JjY2EwMDNkODYxNTViNjYxMWZlZDp7ImRpc2N1c3Npb24iOiJyb29tNiIsIl9hdXRoX3VzZXJfaGFzaCI6IjJiYjk3M2Y0OTE5YzBjODQ5NmVhODFkNjI4YjEyODY3MDUyZTQxYjIiLCJfYXV0aF91c2VyX2lkIjoiNTEiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9','2016-11-25 18:05:32'),('chnfe8810c8a25c6d2c40c19df7318a3','MTVkMDVhNDU4ZDk2OWI0NTEwNjg5NDBmNzIyNmJkOTgyNTAwM2FlYTp7ImRpc2N1c3Npb24iOiJyb29tNCIsIl9hdXRoX3VzZXJfaGFzaCI6IjllM2YxMjAxOTY5YzUxOTQ5MmNmOTZhZWJlNDFmMTFmM2ZjOWFmMzMiLCJfYXV0aF91c2VyX2lkIjoiMTYiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9','2016-11-25 16:37:34'),('d3outy8901k9zo6ayrhfwzivr04u76z1','OGM0MDc0ZTI0MjBiMDk0MDlkZmFlNDlmZjBjYmI2MjIwOTY0ZWMyYjp7Il9hdXRoX3VzZXJfaGFzaCI6IjBiOWIwMmVjNmEwMTViYjk2MDczNjE2ZWYxMzVhNThhZTE5MjYwMDAiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiI0NyJ9','2016-11-25 18:03:05'),('dq0s8dv0ujia72q560dacji4l0bhyhqa','MjA0NTNlMmYxYzJjNmI0ZTJhZDRlYTE3NzgwMWFkNmRmMmRkODNjOTp7Il9hdXRoX3VzZXJfaGFzaCI6IjdjYjkyN2I4NzI0ODk1YzQzZDMzYWNiNDM1NjYwYTU0MGNjMzg2OGEiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIyNCJ9','2016-11-25 16:32:11'),('e9m6ldiniahahiap18ghhupazsl81khj','Y2E0YjdhNzQ4MTdjZjFiODlhMjQ5ZTI5OWYxMzNiMjMzNmEyNjgzOTp7Il9hdXRoX3VzZXJfaGFzaCI6IjdmMzlkMDdmYjYxYWQxNmZlZWZjODhjODQyYzBmNjM3NGZlY2MxZjYiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiI0OSJ9','2016-11-25 18:03:23'),('fhqifajcv92owzdz2ij8i9bk49y2obe5','ZTY4OWIyM2Q1MTdmN2FkMmRiZDZjZGY5YmY5MzkxMTM3NjRkYjhmYTp7Il9hdXRoX3VzZXJfaGFzaCI6ImMzYmU3NzhhMzU3Y2VhZWJmNGZkMWNkYzQ2N2NmNTU0MmVmMjY4ZDIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiI4MSJ9','2016-11-25 20:56:02'),('fzux1ticd5fagawds5g1yh8xgm05ajtd','ZDhhNjEyYmFhNzAxYTEzZjM0ZTk2M2EwZDBhMTExOTg3YzQ5MmRlMDp7Il9hdXRoX3VzZXJfaGFzaCI6IjlhMTFhYTA4ZGUwNWFiYjQzYzQxZDhkMmQyNzk3ZWE0ZmIwYjQ3YWMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiI2In0=','2016-11-25 16:28:48'),('g0c38oetotw5c4ibr1phhoc8k7q8jcdw','YmQ0OTJmYjQyZTE4OGFiZDQ4MjhmOWNkOWY5MDA1NjAyODk2OTMwNzp7Il9hdXRoX3VzZXJfaGFzaCI6ImJlYzdmNDJiMmYwN2JiNjE1M2Q3MTFlOWFmOGI1MDkzMDAxMDAyZjQiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIzOSJ9','2016-11-25 17:11:16'),('g45p5762nukt1g1ztmitie8pa25pohpn','ZjM1ZDQ2NDYyOWJjYWM4YTQ0ZTVhYjcwYTA1MTA1NjJjYzBkZTY4Yjp7Il9hdXRoX3VzZXJfaGFzaCI6IjNhNTRlNWJhYjdkY2IxNTIwNjI3Y2E2OTIyZGY5ZWI4YWZhMmQ2YTUiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiI4MiJ9','2016-11-25 21:23:39'),('ggmd91ci91hpswhza0y1zhlrmxpor8lh','NDk4ODc5NTkyMTE0NTNmNmZjMTg2MDY3NTM0ODZiYTk2YzBiZTk4Nzp7Il9hdXRoX3VzZXJfaGFzaCI6IjM4ZWFlYTdiYTgwM2FhNTM1NDE3OGZiYzM1YzZiYzhiMDMxMDJmNmUiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiI2NSJ9','2016-11-25 18:11:55'),('gmflpeuygowp2bswtjy4lmk7oityjzmx','N2MxZjJiZGE3OTI2MDY2ZjQ3NWE1NDIxMmQ5YWE1YTIyNjk1MWUyYzp7Il9hdXRoX3VzZXJfaGFzaCI6IjY3ZDQ2MTI0MmNlOTg2NmJlYWRkNWUwOTlhNjA5ODZmZmU1ZTY1NDEiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiI5In0=','2016-11-25 16:29:13'),('gqpodkt3hh4d2zxewz4a91wljlsvyh62','YzVhMGRlMjBhMGM3NGM2YWUxYTcwMWQzMDA4YWJlOGRlMGVjMjE5MTp7Il9hdXRoX3VzZXJfaGFzaCI6IjBmNzBlNjQ2NTAwYTg2ZDU0YmQyODljMzgxMzhjYzg2MDE0MjU0YzAiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxNCJ9','2016-11-25 16:30:13'),('gtqtcy7fujy61buro1c0nueol2az0i6c','YTBiZDM0YjUxMGZlZTI4Mjg3ZGUwYjdhMDkzZmU2OGFjOWQzNzAwOTp7Il9hdXRoX3VzZXJfaGFzaCI6ImJkMGY4N2QzYjVhZjU0NWE2OTBjN2U5NjM5NzNjMjQyY2E5ZWU3NmEiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiI2MyJ9','2016-11-25 18:08:43'),('hahl4o126exhiacy1dwej0khb1kz0x4c','NGNjMDA4ODAyYzFjYTdiODFiMDdlNTIxZmVkYTcyN2QwY2EyNmM3OTp7Il9hdXRoX3VzZXJfaGFzaCI6IjY3YWJmYzRkZWViMGQ3NGI0ODc3N2IyZDU3YTE0MmY1ZDdjNDVkOWMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIzNyJ9','2016-11-25 17:02:01'),('hc60nynl2goqt4ac7n6lqgkzfwtujae7','MTRlN2E2NzM1MmJiZTMxZTBmYzhiYmViMmNhNzgwYjBiNDQ4ZjU2Njp7Il9hdXRoX3VzZXJfaGFzaCI6IjExN2EwNzI0ZjExZTFmODNlMDFjMzk4NDFmNWQ1NGMyZjFkYjFmNDMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiI0NiJ9','2016-11-25 18:02:48'),('hdy1jfshqx8id7bzevx0m4a4eblwheah','NDUyN2YxNTVhNmI4YjA4MGM3MTQzMzViNDJhOTJlNzIxMTVlOTg0ZTp7Il9hdXRoX3VzZXJfaGFzaCI6IjJhZWM3NTc1NjM2MDkzYWJkZjA5YWVhMWZhNDNkOWUzZWJmM2UxZjYiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIyMSJ9','2016-11-25 16:31:15'),('hmxbaym3nlr4izjt5t2qrfkerj7xzv8c','N2EyYTdjODIyMDRlZDhhNjE4NTY3NzU4NTBjMzg2OGY4OGU1ZDhkZDp7Il9hdXRoX3VzZXJfaGFzaCI6IjI0NDcwMDNmMTc4ZWE4ODM4N2Q0NTRiODNhMzdkZWUwZDk2MGY2ZmYiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiI0OCJ9','2016-11-25 18:03:15'),('hs39vaur5xi4x2kki1nnl6fnzv5ikmfd','YzM2NzkyZGI2Y2RkZDZkZTMxMGFhMDRkMjE3MTlkYmQ5MmRiZjdiMDp7Il9hdXRoX3VzZXJfaGFzaCI6IjliYTcwMzI5NTQ1ZWQ1MTMzZTQ0ZTNkODk2M2FhNjQyNTZhMjU1MTYiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIzOCJ9','2016-11-25 17:08:55'),('i572ck215xo6fojgn6pll9kana8u7fve','NTkzZmQ1N2RmMTVlMmU1OTUxNzc3ZDBjNjlkOTUzMmQzOWM4ZmVmNzp7Il9hdXRoX3VzZXJfaGFzaCI6Ijk5YTIyYzMyMTEzYTVlY2MzMmVhYTgxM2E5Y2UyNzYwMDQ4MTg0YWIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIzMCJ9','2016-11-25 16:39:15'),('ia2cp087l1dpfcp7j2mc2kzalf3zs4nx','YzRjZTlkNDY5MjViNmQ2OTgyNTM3YWRhY2Q5ZGZlYzNhY2QzNzI2MDp7Il9hdXRoX3VzZXJfaGFzaCI6IjJkOGUzY2RjOGIxY2MzZThhMmI2OWNiNWVkNzVlMDE4YmJjZWY1NGQiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIyMyJ9','2016-11-25 16:31:50'),('iy46918o2e9ouuczrlmsbvlznahmuli8','MTcxNTdmY2YxMTE1MzFmM2FmMDMwOTU3MDA3YjJlMmExNGY2MzhlMDp7Il9hdXRoX3VzZXJfaGFzaCI6ImRiOWI5ODYyMDg3MjczMmMxZDA2OGQ5NzZkODFiNzI5NDMxN2EyNjUiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiI1MyJ9','2016-11-25 18:03:59'),('j10hhhyz6guc3v55vqh6mj3tm8qvujro','NWY1MGQ2ZDEyMGE0MTljOGZjMDE5ZTdmNzQwMDg4ZjczYTJlMWI1Yzp7Il9hdXRoX3VzZXJfaGFzaCI6ImNkMmVjNmNjYTY2NmRjNTA4ZTcxY2IzZWY3YTdiNzIwYmRhNjRlZjkiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiI2OCJ9','2016-11-25 18:26:29'),('j2821q37sgnt4n7wlm30t5srxepozvet','OGM0OWQ0YzVmNDFiY2M2YTVjMzI2ZTk1Zjc1YzY2NWQ5YjU0ZGJiMzp7Il9hdXRoX3VzZXJfaGFzaCI6IjBjNzc5NGY1ZGFkOWVlYmJhODNiOGI4N2E4NjMzZGJiMzdhYjYyMDkiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiI3OCJ9','2016-11-25 19:33:39'),('j2ztahqu1zsoiz8vd7h27c1b501hg1mf','MDQ3NzU1OGU5ZDhlNGI1YTI3OWRiZjYzZDExYTkyOTYyOGFkMTk5NTp7Il9hdXRoX3VzZXJfaGFzaCI6ImVjMDgxNDg3M2RiZWYwYTIxYjJhMWI4MmJjMTM4ZDUzMDY4YjA2MzIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiI4NiJ9','2016-11-25 22:27:23'),('jg1kogugz42ffzvvdrla3grokrw7qniw','MGFmY2Q3NjQ5MjdiZDZjNzhlMTEwN2EzMTM0OTRmZmY3ZTMyM2Q2NTp7Il9hdXRoX3VzZXJfaGFzaCI6ImNjNTljOGQzMWZlN2M5MDNjMTUwYzhlMTBkYjVjNzI1M2UzOTEyYWQiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiI2MSJ9','2016-11-25 18:07:33'),('joxmm9dyv7xix7fximnvprf3g9o31xc5','ZGQ2NjgyMmU2NmMwZDFjOTk2M2M3ZWMwYmM4ZDcyNzA1NGIyNGYzOTp7Il9hdXRoX3VzZXJfaGFzaCI6ImMzMmY1MTI1ZWMzMmFmNjZlZDAyM2RmMTZiZjM1YmM4MjYyMWVhOTEiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiI1In0=','2016-11-25 16:29:46'),('jr0jaq29x8bzgoivdyrp3zhvwxi6gjjd','YzhiMzU3MTUwYzhkM2ZkNDNhMzE5OTFkM2E5YjA1NWM3OGE3Zjg0Mzp7Il9hdXRoX3VzZXJfaGFzaCI6IjMxMzA2YzIzNDI1MDVhNWMyNDRkODlmNjU4OGYyYzRmNzljNWVhYjMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiI3NiJ9','2016-11-25 19:20:54'),('k58hky2t3set6u8n0v5wsuzrkgpfhp0d','MWZiMTcyOWZiYmViZWNhZjM2MDdlNzkxMzEyYWE1YjI0OGU3ZDg4YTp7Il9hdXRoX3VzZXJfaGFzaCI6ImM2Njg4YzJiZGViYWViYjhkNzlmMjNmZmQxZTc5NmE4MjJmZTAyZWQiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiI2NiJ9','2016-11-25 18:14:52'),('kknk1it96jn364wqhn0gmgvfu05oov5t','ZmI0NDNlMzE3NWEyNTYwMWEyZDQ2YjBhZjIxMTQ4NDhhZWY4NzFlYTp7Il9hdXRoX3VzZXJfaGFzaCI6ImQyODQ2ODI5MWFhMzQ5OGZhZTQ5ZmJhOTdlNGY4NGRlOGY5N2MzMTkiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIyNiJ9','2016-11-25 16:32:46'),('km9dckfpuhxj7107lz80110mfuuahqep','MzY1NmIwYjY1YTcwNTBjNTllYmJmNTEwYTNjMTY2MWRiMmMwNTU4YTp7Il9hdXRoX3VzZXJfaGFzaCI6Ijg2NjI4Mzg0YmE2OTE5MjU4OWY0M2E3MmJmYmYwYjI3OTU3ZTE5MjYiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiI0MyJ9','2016-11-25 17:56:26'),('kn4atilgxlrw0hlpppf9be1udzey807u','OTFlYWM3OTM2MGI2MDc5MzY4MTViNGE0N2VjYWZmYjc2ODY2NjZhNTp7Il9hdXRoX3VzZXJfaGFzaCI6ImNkNmQ3YmExYTY0Y2E5NDU3ZDgzNGU2YzM2OTMwMDU3MzI3OTBjZjciLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxMyJ9','2016-11-25 16:29:55'),('l2alzu2ae6dfho4titlwygfrqo0q2gmr','MTBkZTYzMjZlNTc0ZmY2NTdjNTkzNTM5YTQyMzIxMmNlZjQxYTY4Zjp7Il9hdXRoX3VzZXJfaGFzaCI6ImNhNzlmYWZlZjE0NGY5ZjhkMWMzMThjYzQyNzdkYmE5Y2ZhMjAwYTEiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxOCJ9','2016-11-25 16:30:47'),('ldygwgmqaomvfa167waw48jn6zte6xpi','YzE4ODIxNGE1MjYyMTdkOWVhMDEwODExYTdjMGZlZGIyZDY2ZWZhMDp7Il9hdXRoX3VzZXJfaGFzaCI6ImY3ZDM4MzcyODFmOTk1ZWNiOWU3MmY1Y2I1MGNiNThkYzU2NGU1NGUiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIyMCJ9','2016-11-25 16:31:06'),('lk8vaz9ifkcufvj42ndir6atpl3lrs2v','ZDVmMjI0OTE1ZDE1NGU4MzRiMzQxZWE5M2I2MWQyOWVhODI3MGVjZDp7Il9hdXRoX3VzZXJfaGFzaCI6IjI4MTgxNzI2YjZmYzUxMTMxNzQyNmUxMTQ1MmFjNzU0ZjRlNDQxNmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxNSJ9','2016-11-25 16:30:22'),('lolxwzaidvvc49zut4r5na5a50ugsokq','Yjg0OWJlMzA1ZTFhYzVhZTJkOTdhMWY3ZjZkOWQyMzdmNzhmZGUyYjp7Il9hdXRoX3VzZXJfaGFzaCI6ImE0NDU5Nzk3YmM0Nzc1ZWNhODljYjY2NjgwYTE3NWZiMDk4NTEyY2MiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIyNSJ9','2016-11-25 16:32:20'),('m3f1c69zxic9z8tnh9d8v3q96fva9057','ZDllOGIwNGIyMTJlOTkyYjhhMzkyNzRlM2NhMDVlMzc0Nzc4OTE0MTp7Il9hdXRoX3VzZXJfaGFzaCI6ImQ0MjZlZmNmOWE2M2RlYmVmMjU1NTRjMmU3MDc4ZGQ1ZjhlNTg2MmQiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiI2MiJ9','2016-11-25 18:08:22'),('md9irqg450kdfock14h022935yga8h8q','MTJiYjllNGY5MDQ1NzM4NzY0MzFmNDFiMmZiMjZkODZiZDEyNTllYTp7Il9hdXRoX3VzZXJfaGFzaCI6Ijc3Mjk4NjU3YjNmMjk0MmYzMzU0NjQzNDI2ZGRlNTIyMzlhNzM4OWMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiI4MiJ9','2016-11-25 21:23:18'),('mg4g48j0bdn2w1rmuaa6tyxc93gvmvy7','MDc3OWY1OGM0YzA0YmViZmNkYWVlZGM5N2MxOWMyZjM0NzJiNjFkMzp7Il9hdXRoX3VzZXJfaGFzaCI6IjQ5YTdjMDg1MzVlYTRkZTBmYWU1YTFjZThlNmI5YTI2MThhNmFiM2YiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxMiJ9','2016-11-25 16:29:38'),('n30pa0azvs6rd2jxi3x6tyi2vfclyebn','MmVjYjM4NTA4NDMwMDJiMGI1NjYwMGIzZTQ2NTJmODA0N2YxZTA3ODp7Il9hdXRoX3VzZXJfaGFzaCI6IjNhYTZmNjhiZjVmMTQwYWQzYjZlMDYyNDY4MzBlZTkwNTIwNGQzMjMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIyOSJ9','2016-11-25 16:39:04'),('ni3x8etbg8rituxtkxrc0zs8dzt6ve9b','YjFlMmUxNmFhMTU3ZGZmY2IwNGVhMmJkN2YyYzVjMzRkMjEzMmU5NTp7Il9hdXRoX3VzZXJfaGFzaCI6Ijg3NjU3MGYxYzIxZDIyMDZjMjQxZDczYzliNWIwODc0OTdkZmVhMTUiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxOSJ9','2016-11-25 16:30:57'),('now6btf9vyyf7cx5mht7izo2y58jecuu','MGRiZjU3ZGVhYjM5M2I3NmI4ZmJhNjg4YzhlNGE3NzUxNjYwODI4NDp7Il9hdXRoX3VzZXJfaGFzaCI6ImVlN2I2NjBkYWQ2MDcwYjAwMmU1YjUzYWI5NTY3YzViNmUwMDgyYjciLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiI0MSJ9','2016-11-25 17:27:12'),('ofc5tmt2b1vrr8xr7d09yyotdwn6kh42','YmIzMDVlYjg1NTU3MjUzMzBiNDgwOGMyYjkyYjZiYTA3ZDJhMGVhYTp7Il9hdXRoX3VzZXJfaGFzaCI6ImMyM2IzYzc5ZjQzZTdiMTJlMjkxNTcyMDY4NDE3YWQ1YzQzMzcwYTEiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiI3MyJ9','2016-11-25 18:39:43'),('olcwls0huv6wdhb5tsw6a1yy354v1fck','Y2YxOTUyODcwMzU1NTcxYzUzYmRkNTJlOWRhYjY0ZThkZWM3ODUzYTp7Il9hdXRoX3VzZXJfaGFzaCI6Ijk1ZWZlMjk4ZmVkNDkwNzQyNTNmZWU3MDAzODUzZTE5ZWQ2Y2FlNWMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiI1OCJ9','2016-11-25 18:05:15'),('omll4qi1grpq8xpvhhw5l7i253qq3yab','YWJhZmZlMDc3NWZiZTE5YjNkYjA4ZjMzZjRiZjQyYWI4NTM3YTc5Nzp7Il9hdXRoX3VzZXJfaGFzaCI6ImM2NGI5YmEyN2VhMjA1MDUyMGVmY2Q1OTcxZmNkMmY2ZWJjZTYxODMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiI1NCJ9','2016-11-25 18:04:07'),('ovwvi2dz7uxzoq7h906mxwlfm77y2chk','MjgzNDY3MDBhOWEzODRiY2U4MGZhYTRkYmEzNWRmMDExMjA3YTliNDp7Il9hdXRoX3VzZXJfaGFzaCI6ImQ3YTNhNDhlOTJkODZjN2U2YzdkNzVhNTNmZWFlOWI5MjA5MDMyNmYiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIyIn0=','2016-11-25 16:28:14'),('oxng1qyg9ywjgyq8bppq4q98rlrzsgxs','MDM1ZjQ0ZGIzZDRiNzMwZmYxZGZlMDhkZWEyNzA2Mzg1YjAzOTU0Mjp7Il9hdXRoX3VzZXJfaGFzaCI6IjJiYzJiMzdlOTg4ZTgwMTVjNTE5OTY3ZWVjYmM3NDkyZmZjZDZlYTYiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiI3MCJ9','2016-11-25 18:28:45'),('p76g7jexkublqr2ivq7x6d84fyyuwj82','OTU1MTZhYzAzMDlmYzU3Y2VkZDg1MmM5MDIyYzIyZDlhNmEzZGI5MDp7Il9hdXRoX3VzZXJfaGFzaCI6Ijk5NjAwNTRiNjcxOTM2NDZlODRlMjg4NmM5ZTUxNTFhODQ5MzA1MzAiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiI2MCJ9','2016-11-25 18:06:40'),('pejcf3r7yy0hwmyd5gt116bni3gephpi','NTQzNWVjZmI0NWY5NGRmZjE3ZDQyOWM3NDA2MzAyMWVlNTY1NGRmYzp7Il9hdXRoX3VzZXJfaGFzaCI6ImE1NTUzZTBlNmI1NDgxYmMzZmMwZDE0NTI0YTAxYzBmOWQwMzg4YmUiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIzNCJ9','2016-11-25 16:53:35'),('pplaz1gypgnb298038pn0z9iiwlvyxfr','YjExYTI2MGY0MjJkNjBmOThjYzdjOGIxNDY2NDgwOThhYjI3YWEzMDp7Il9hdXRoX3VzZXJfaGFzaCI6IjNhYjZlODQyOWRhZWMzNTNlMmI2ZDc3MTgwNzhiMDUwODM0NzcxZDIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxNyJ9','2016-11-25 16:30:38'),('r8888u6dd92z21rkww5e6xnf02k27nro','Zjk5NWU2ZWQ0MjA5MzE2ZDY4YzY4M2Q3MjM4NTJhYWM1MTM4NTdkZTp7Il9hdXRoX3VzZXJfaGFzaCI6ImZhMjZiMGQyMzJmN2QzMzBkNTIwNjQzYThlMGMxOGM2NTBjZjdhMjciLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiI0NSJ9','2016-11-25 18:02:35'),('rvz00isj4rvpa8egff3m8p5300nkb9ri','YjQwNzU5NTc0NTI4M2YxODRjMDE1MTVmOGI2ODEwODFkMmNlMDcxYTp7Il9hdXRoX3VzZXJfaGFzaCI6ImVlNTJmZTA1Yjc5NjY5YjIzMjk3NzYyZjYwNDk5NTdlMWM5NGM5ZGEiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiI3OSJ9','2016-11-25 20:10:40'),('s2czfuu8pxhx0s2kid6wcok5tqkxgko0','MTdmZDg5Mzk1NjZhMTg2OGQ0MmE4NzY2Nzg3ZWZjZGU0MTljMzQzZjp7Il9hdXRoX3VzZXJfaGFzaCI6IjMxYjVkNDM4ZjA5ODI1YjRmZTg2MzUxMDM3Y2M1YTcxMjliODY0NzciLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiI2NSJ9','2016-11-25 18:12:05'),('skpek7cmhqb3qm9xnc38arg9j93hmaqt','OGY5YmNiNDZmNzEyOWIxN2JkN2FkY2M5M2MwYmM4NTU4M2FlNjQzZjp7Il9hdXRoX3VzZXJfaGFzaCI6IjhjOWI3Mjg3MDRhODI0Y2FlMmE1MzVmMTM4ZTkyYWM0ZjY5MmJiOWYiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiI4MiJ9','2016-11-25 21:32:50'),('sqekctr607i928dkfbwu0yxbo15edt88','ZTY2YjMzMmFkMzM5YWJiZGRiZDBjMGNlZDAzM2VlYTliN2VhOTM3Mjp7Il9hdXRoX3VzZXJfaGFzaCI6ImU5ZjU1ZjBjOTA5M2I2OTI0OWFhNGE3YjU0NDBkYmY0OGYxMTk0N2YiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiI3NyJ9','2016-11-25 19:22:05'),('sqvspbtiuyy7p490tojd7c4fn0hi8tqp','ZDliOTZkNjgwZTM2MmU2MzhiMzBiNGViNjI2NGZhYzMwNjZmZjRkZTp7Il9hdXRoX3VzZXJfaGFzaCI6IjgyYmZiNDFiMDU3NWJlOTk5MGI1MDM5NmNjMDc4YTQyMGNlYzUxOTAiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiI4MiJ9','2016-11-25 21:35:24'),('t0tajl57o2c1yvca9v8eylm743udv8kd','NDRlN2M1MzE4OTZjNGFmMDU5ZGVkOGViOWEyYmQ5YWYyNTQwNTY3NDp7Il9hdXRoX3VzZXJfaGFzaCI6ImQwZTI5NzFlNzY1MTYxZDNmZDdkYTdkYWEyNDg0ZTEwMzQwMTFlMzMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxMSJ9','2016-11-25 16:29:30'),('tfql6koxb5f06smac2vn71vxu7zgfefx','OWFhY2EwOWRhMmYyMzUxZmUyZTRmMDIzOGY0NzYxMWQ5ZmMyMmY1NDp7Il9hdXRoX3VzZXJfaGFzaCI6IjZjODZhYjQ1ZWMwYzBlMTA3MWZlYzk0ZWNiMzllMWFjOTVkZjVmMzIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiI1NSJ9','2016-11-25 18:04:16'),('tzafv3e9dodt5qsbgqmfd942d7kd9g1k','OTgzMDI3NGRhYmU5ZDA0MDVmNDg0YTU3MTA3MDhmMDZkZmQxMzJhODp7Il9hdXRoX3VzZXJfaGFzaCI6IjUyNmEwMzdlYzVjZjI2OTkwYjE2YTc1MDI3ZTUzMDA0NzJlYjg2ZGMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiI0MCJ9','2016-11-25 17:14:09'),('uakknzrdkmsmswtzqekz7fg6f4vhyvbs','ZWYwYzRjMDllNDA4ZjgxYTliYmQ0YWQ1NWJjNGM2ZDU4YWMyOWJhYjp7Il9hdXRoX3VzZXJfaGFzaCI6IjUxNTU0ZGUyNTNkMDhjYTBiNjNlYjlmYTEzOTE0MWNiZWYwZjNlNTQiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIzMSJ9','2016-11-25 16:43:00'),('w3cp91etrifk6f1rpphrynvnn6l0o5bt','YzA4ODVhMjc4OTRkZDA2NDY1Yjc5MWNlYzYwZmZkNGYzNmRmODE2Mjp7Il9hdXRoX3VzZXJfaGFzaCI6ImE4ODhjMmFkZDZjYTc3YmJhMmRiZjQ0NTk5MGJkMWQ0Nzg1YWFiNDQiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIzNiJ9','2016-11-25 16:56:28'),('x7o728cdhok2uwyre4mhxdt9v4zrrel4','MTdjN2ZmYzk3MmJlYzUyZWNkOWViZTE4YjFiMWQ0NjA5NTg4NzM1YTp7Il9hdXRoX3VzZXJfaGFzaCI6IjllM2YxMjAxOTY5YzUxOTQ5MmNmOTZhZWJlNDFmMTFmM2ZjOWFmMzMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxNiJ9','2016-11-25 16:37:03'),('x7yymgzppno8ewbcm0zl7u0eksu0d5bs','YWRhODQyMmI5YjJiYTRkNmYwZjA4ZDVhYzhkYjk5MWUzZDA5MDM0NTp7Il9hdXRoX3VzZXJfaGFzaCI6IjM5MjNhMTJmNjExZTI0N2FjNWRkNjQ3OGUxNzFkN2EwYzRiNjc4Y2MiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiI3In0=','2016-11-25 16:28:56'),('xvxoy4xew2ecmizkvh2t6gtlzv3lb6ro','MzBmMmYzMDJjOTZlNjNkZjJkOTAzZmIzZDBlNzVlY2NhM2VjM2E5Mzp7Il9hdXRoX3VzZXJfaGFzaCI6Ijc1Yzc2OTlkNjQ1Y2UwMWY0YzNjYTBjMDY2YTFlZjE3YTRkOTUyMGQiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiI4MyJ9','2016-11-25 21:31:02'),('y2qaoc7yd5hfcrr0i6agz8xhvp2sop8x','MjNmYmI4YzhiNDI4MTI3YTdhYjZiMTg2ZTJiMWFlMGZkOTBkMjZlMTp7Il9hdXRoX3VzZXJfaGFzaCI6IjIwNGI1Y2FmY2U0MTYwMzYyZGU1N2I3YTQwM2Q4ZjVlZDAwOTJjMmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxIn0=','2016-11-25 16:28:06'),('yihqwgj1nuf4ulx3dzv7yt09ak5febfp','NDUxMDJhYzljNTY1YjI3ZjFmMjI4MWYyOGQ0MjcwZDM5MzdiMWMxYzp7Il9hdXRoX3VzZXJfaGFzaCI6IjQ2NDZkMGE5NDdjYmYwNzZiOTA5NGRmMDU0ZDYyZGIwNzRkMmM3OGYiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIzMiJ9','2016-11-25 16:47:26'),('yltkfen9krtidszqzat5o868h3x8gvoo','YjBjMjRmMTM2Mjc4NThkZDdiYTJjNDlmMDNhYjJiODJiNGQzYWJhZTp7Il9hdXRoX3VzZXJfaGFzaCI6IjJhMjYxMmQyMDUzZTg1Yzg5OWVkZTM1NWM5MDNiZjE5MzE1YzQ5OTUiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiI1NyJ9','2016-11-25 18:04:47'),('yrk6i4rgf9ob23e9b0gwkls4uagxy5jo','YTUxZjE3ZGI2MzgxMTY3ZDU0YzM2NjdkZGRhNWIzMjA2NDJhMmQxYjp7Il9hdXRoX3VzZXJfaGFzaCI6ImNlMjEzMjVmMGMyZmIxNGU3YWE0NmRiOWI4NDEzNmRmZDBmNjQ1NzAiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiI4MiJ9','2016-11-25 21:35:02'),('zv1yo846movj342muum25cyzdyjruix1','ZjFiNDAzYWI3OTk0OWFiMTkxODRiYTdmYzlkNDcxMzczMGEzNmM3Yjp7Il9hdXRoX3VzZXJfaGFzaCI6IjFlM2Y2ZTgwNGNmMzJhMDU1ZjVhOGJkMDc5YTUxNmYxZWFlZTExOGMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiI3NSJ9','2016-11-25 19:10:29');
/*!40000 ALTER TABLE `django_session` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `experiment_consent_form`
--
DROP TABLE IF EXISTS `experiment_consent_form`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `experiment_consent_form` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`agree` varchar(35) DEFAULT NULL,
`timestamp` datetime NOT NULL,
`user_id` int(11) NOT NULL,
PRIMARY KEY (`id`),
KEY `experiment_consent_form_d7e6d55b` (`timestamp`),
KEY `experiment_consent_form_e8701ad4` (`user_id`),
CONSTRAINT `experiment_consent_form_user_id_dae3684a_fk_auth_user_id` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=82 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `experiment_consent_form`
--
LOCK TABLES `experiment_consent_form` WRITE;
/*!40000 ALTER TABLE `experiment_consent_form` DISABLE KEYS */;
INSERT INTO `experiment_consent_form` VALUES (1,'signed','2016-11-11 16:31:19',7),(2,'signed','2016-11-11 16:31:19',8),(3,'signed','2016-11-11 16:31:31',1),(4,'signed','2016-11-11 16:31:32',4),(5,'signed','2016-11-11 16:31:37',14),(6,'signed','2016-11-11 16:31:50',20),(7,'signed','2016-11-11 16:31:50',17),(8,'signed','2016-11-11 16:31:53',13),(9,'signed','2016-11-11 16:31:59',3),(10,'signed','2016-11-11 16:32:21',10),(11,'signed','2016-11-11 16:32:26',15),(12,'signed','2016-11-11 16:32:28',18),(13,'signed','2016-11-11 16:33:03',23),(14,'signed','2016-11-11 16:33:19',25),(15,'signed','2016-11-11 16:33:23',26),(16,'signed','2016-11-11 16:33:26',19),(17,'signed','2016-11-11 16:33:44',27),(18,'signed','2016-11-11 16:33:47',24),(19,'signed','2016-11-11 16:37:13',16),(20,'signed','2016-11-11 16:37:14',2),(21,'signed','2016-11-11 16:39:39',29),(22,'signed','2016-11-11 16:39:49',30),(23,'signed','2016-11-11 16:40:12',28),(24,'signed','2016-11-11 16:45:54',22),(25,'signed','2016-11-11 16:47:50',33),(26,'signed','2016-11-11 16:48:15',32),(27,'signed','2016-11-11 16:54:21',35),(28,'signed','2016-11-11 16:57:06',36),(29,'signed','2016-11-11 16:57:32',9),(30,'signed','2016-11-11 17:02:32',37),(31,'signed','2016-11-11 17:08:27',21),(32,'signed','2016-11-11 17:09:20',38),(33,'signed','2016-11-11 17:11:47',39),(34,'signed','2016-11-11 17:14:46',40),(35,'signed','2016-11-11 17:27:29',6),(36,'signed','2016-11-11 17:29:15',42),(37,'signed','2016-11-11 17:29:16',31),(38,'signed','2016-11-11 17:56:56',43),(39,'signed','2016-11-11 18:02:36',44),(40,'signed','2016-11-11 18:03:40',45),(41,'signed','2016-11-11 18:03:41',46),(42,'signed','2016-11-11 18:04:27',48),(43,'signed','2016-11-11 18:04:47',49),(44,'signed','2016-11-11 18:04:49',47),(45,'signed','2016-11-11 18:04:52',54),(46,'signed','2016-11-11 18:05:04',56),(47,'signed','2016-11-11 18:05:04',51),(48,'signed','2016-11-11 18:05:15',41),(49,'signed','2016-11-11 18:05:17',52),(50,'signed','2016-11-11 18:05:19',55),(51,'signed','2016-11-11 18:05:31',53),(52,'signed','2016-11-11 18:05:34',57),(53,'signed','2016-11-11 18:05:39',50),(54,'signed','2016-11-11 18:06:24',58),(55,'signed','2016-11-11 18:07:58',61),(56,'signed','2016-11-11 18:08:04',59),(57,'signed','2016-11-11 18:08:23',60),(58,'signed','2016-11-11 18:08:55',62),(59,'signed','2016-11-11 18:09:47',63),(60,'signed','2016-11-11 18:12:16',64),(61,'signed','2016-11-11 18:15:27',66),(62,'signed','2016-11-11 18:23:50',67),(63,'signed','2016-11-11 18:27:07',68),(64,'signed','2016-11-11 18:28:48',69),(65,'signed','2016-11-11 18:29:01',70),(66,'signed','2016-11-11 18:30:13',71),(67,'signed','2016-11-11 18:34:53',72),(68,'signed','2016-11-11 18:40:04',73),(69,'signed','2016-11-11 18:56:11',74),(70,'signed','2016-11-11 19:21:28',75),(71,'signed','2016-11-11 19:21:34',76),(72,'signed','2016-11-11 19:22:49',77),(73,'signed','2016-11-11 19:38:07',78),(74,'signed','2016-11-11 20:10:53',79),(75,'signed','2016-11-11 20:56:03',80),(76,'signed','2016-11-11 21:04:23',81),(77,'signed','2016-11-11 21:23:28',82),(78,'signed','2016-11-11 21:31:18',83),(79,'signed','2016-11-11 22:02:21',84),(80,'signed','2016-11-11 22:18:54',85),(81,'signed','2016-11-11 22:27:54',86);
/*!40000 ALTER TABLE `experiment_consent_form` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `experiment_crowd`
--
DROP TABLE IF EXISTS `experiment_crowd`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `experiment_crowd` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`version_id` int(10) unsigned NOT NULL,
`size` int(10) unsigned NOT NULL,
`communication` varchar(255) NOT NULL,
`creation_date` datetime NOT NULL,
`is_active` int(11) NOT NULL,
PRIMARY KEY (`id`),
KEY `experiment_crowd_8424d087` (`creation_date`)
) ENGINE=InnoDB AUTO_INCREMENT=12 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `experiment_crowd`
--
LOCK TABLES `experiment_crowd` WRITE;
/*!40000 ALTER TABLE `experiment_crowd` DISABLE KEYS */;
INSERT INTO `experiment_crowd` VALUES (1,2,3,'_chat','2016-11-11 16:31:37',1),(2,2,3,'_chat','2016-11-11 16:32:20',1),(3,2,3,'_chat','2016-11-11 16:32:31',1),(4,2,30,'_forum','2016-11-11 16:33:18',1),(5,2,3,'_forum','2016-11-11 17:57:27',1),(6,2,30,'_forum','2016-11-11 18:02:57',1),(7,2,30,'_forum','2016-11-11 19:21:44',1),(8,2,30,'_forum','2016-11-11 20:56:32',1),(9,2,3,'_chat','2016-11-11 22:14:42',1),(10,2,3,'_chat','2016-11-11 22:18:58',1),(11,2,30,'_forum','2016-11-11 22:27:56',1);
/*!40000 ALTER TABLE `experiment_crowd` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `experiment_crowd_members`
--
DROP TABLE IF EXISTS `experiment_crowd_members`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `experiment_crowd_members` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`time_joined` datetime NOT NULL,
`cohort_id` int(10) unsigned NOT NULL,
`member_num` int(11) NOT NULL,
`crowd_id` int(11) NOT NULL,
`user_id` int(11) NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `user_id` (`user_id`),
KEY `experiment_crowd_member_crowd_id_60611600_fk_experiment_crowd_id` (`crowd_id`),
CONSTRAINT `experiment_crowd_members_user_id_868d5936_fk_auth_user_id` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`),
CONSTRAINT `experiment_crowd_member_crowd_id_60611600_fk_experiment_crowd_id` FOREIGN KEY (`crowd_id`) REFERENCES `experiment_crowd` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=81 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `experiment_crowd_members`
--
LOCK TABLES `experiment_crowd_members` WRITE;
/*!40000 ALTER TABLE `experiment_crowd_members` DISABLE KEYS */;
INSERT INTO `experiment_crowd_members` VALUES (1,'2016-11-11 16:31:37',0,0,1,1),(2,'2016-11-11 16:31:53',0,1,1,4),(3,'2016-11-11 16:32:12',0,2,1,3),(4,'2016-11-11 16:32:21',0,0,2,20),(5,'2016-11-11 16:32:26',0,1,2,17),(6,'2016-11-11 16:32:27',0,2,2,14),(7,'2016-11-11 16:32:31',0,0,3,7),(8,'2016-11-11 16:32:32',0,1,3,13),(9,'2016-11-11 16:33:18',0,2,3,18),(10,'2016-11-11 16:33:18',0,0,4,10),(11,'2016-11-11 16:33:22',0,1,4,15),(12,'2016-11-11 16:33:33',0,2,4,23),(13,'2016-11-11 16:33:37',1,3,4,19),(14,'2016-11-11 16:33:45',1,4,4,25),(15,'2016-11-11 16:34:00',1,5,4,26),(16,'2016-11-11 16:34:18',2,6,4,27),(17,'2016-11-11 16:34:26',2,7,4,24),(18,'2016-11-11 16:37:17',2,8,4,2),(19,'2016-11-11 16:37:30',3,9,4,16),(20,'2016-11-11 16:39:50',3,10,4,29),(21,'2016-11-11 16:40:58',3,11,4,28),(22,'2016-11-11 16:44:20',4,12,4,30),(23,'2016-11-11 16:46:20',4,13,4,22),(24,'2016-11-11 16:48:14',4,14,4,33),(25,'2016-11-11 16:48:30',5,15,4,32),(26,'2016-11-11 16:54:32',5,16,4,35),(27,'2016-11-11 16:57:36',5,17,4,9),(28,'2016-11-11 16:57:40',6,18,4,36),(29,'2016-11-11 17:03:00',6,19,4,37),(30,'2016-11-11 17:09:46',6,20,4,38),(31,'2016-11-11 17:12:59',7,21,4,39),(32,'2016-11-11 17:15:25',7,22,4,40),(33,'2016-11-11 17:27:00',7,23,4,21),(34,'2016-11-11 17:27:31',8,24,4,6),(35,'2016-11-11 17:29:19',8,25,4,31),(36,'2016-11-11 17:30:36',8,26,4,42),(37,'2016-11-11 17:57:27',0,0,5,43),(38,'2016-11-11 18:02:57',0,0,6,44),(39,'2016-11-11 18:04:38',0,1,6,45),(40,'2016-11-11 18:05:00',0,2,6,48),(41,'2016-11-11 18:05:03',1,3,6,47),(42,'2016-11-11 18:05:17',1,4,6,49),(43,'2016-11-11 18:05:21',1,5,6,56),(44,'2016-11-11 18:05:22',2,6,6,46),(45,'2016-11-11 18:05:25',2,7,6,54),(46,'2016-11-11 18:05:28',2,8,6,51),(47,'2016-11-11 18:05:33',3,9,6,55),(48,'2016-11-11 18:05:44',3,10,6,50),(49,'2016-11-11 18:05:45',3,11,6,57),(50,'2016-11-11 18:05:48',4,12,6,41),(51,'2016-11-11 18:06:29',4,13,6,52),(52,'2016-11-11 18:07:06',4,14,6,53),(53,'2016-11-11 18:07:21',5,15,6,58),(54,'2016-11-11 18:08:35',5,16,6,61),(55,'2016-11-11 18:08:43',5,17,6,60),(56,'2016-11-11 18:09:31',6,18,6,62),(57,'2016-11-11 18:11:22',6,19,6,63),(58,'2016-11-11 18:12:31',6,20,6,64),(59,'2016-11-11 18:14:07',7,21,6,59),(60,'2016-11-11 18:15:43',7,22,6,66),(61,'2016-11-11 18:24:08',7,23,6,67),(62,'2016-11-11 18:27:11',8,24,6,68),(63,'2016-11-11 18:29:15',8,25,6,70),(64,'2016-11-11 18:29:25',8,26,6,69),(65,'2016-11-11 18:30:36',9,27,6,71),(66,'2016-11-11 18:35:58',9,28,6,72),(67,'2016-11-11 18:40:15',9,29,6,73),(68,'2016-11-11 18:56:16',10,30,6,74),(69,'2016-11-11 19:21:44',0,0,7,76),(70,'2016-11-11 19:23:08',0,1,7,77),(71,'2016-11-11 19:23:26',0,2,7,75),(72,'2016-11-11 19:38:25',1,3,7,78),(73,'2016-11-11 20:11:01',1,4,7,79),(74,'2016-11-11 20:56:32',0,0,8,80),(75,'2016-11-11 21:04:30',0,1,8,81),(76,'2016-11-11 21:23:40',0,2,8,82),(77,'2016-11-11 21:31:21',1,3,8,83),(78,'2016-11-11 22:14:42',0,0,9,84),(79,'2016-11-11 22:18:58',0,0,10,85),(80,'2016-11-11 22:27:56',0,0,11,86);
/*!40000 ALTER TABLE `experiment_crowd_members` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `experiment_expuser`
--
DROP TABLE IF EXISTS `experiment_expuser`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `experiment_expuser` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`nickname` varchar(35) DEFAULT NULL,
`expstage` varchar(35) DEFAULT NULL,
`secret_code` int(11) NOT NULL,
`user_id` int(11) NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `secret_code` (`secret_code`),
UNIQUE KEY `user_id` (`user_id`),
CONSTRAINT `experiment_expuser_user_id_879be3d1_fk_auth_user_id` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=83 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `experiment_expuser`
--
LOCK TABLES `experiment_expuser` WRITE;
/*!40000 ALTER TABLE `experiment_expuser` DISABLE KEYS */;
INSERT INTO `experiment_expuser` VALUES (1,'Robert','task',97745,7),(2,'raja','wait_room',51904,8),(3,'WOOF','task',80578,1),(4,'appl','task',71992,4),(5,'Felix','task',53279,14),(6,'Fred','task',50526,20),(7,'Allie','task',21253,17),(8,'Dee','task',11340,13),(9,'steve','task',7130,3),(10,'KH','task',63130,10),(11,'Black','task',75195,15),(12,'Zongo','task',16102,18),(13,'pc','task',58671,23),(14,'V','task',80513,25),(15,'K','task',80367,26),(16,'BabyE143','task',8192,19),(17,'Andy','task',73266,27),(18,'Carson','task',79777,24),(19,'User238','task',79681,16),(20,'Brittany','task',46795,2),(21,'BunBun','task',63488,29),(22,'salsashark','task',32176,30),(23,'JB','task',96999,28),(24,'Snoopy','task',25343,22),(25,'go49','task',74472,33),(26,'mokka','task',26828,32),(27,'Bob','task',11919,35),(28,'Remy','task',65738,36),(29,'xtina','task',22613,9),(30,'cryjohoover','task',35688,37),(31,'memphissoul','task',13379,21),(32,'Aprilla','task',78123,38),(33,'Rainies','task',42251,39),(34,'MightyMouse','task',6937,40),(35,'jj','task',32439,6),(36,'Ninja','task',16547,42),(37,'Viking80','task',66191,31),(38,'Linzo','task',84041,43),(39,'L','task',84793,44),(40,'Tess','task',90334,45),(41,'Fooch','task',42494,46),(42,'mrnotoriousman','task',47320,48),(43,'Mew','task',44748,49),(44,'Blue','task',48713,47),(45,'Teddy','task',19134,54),(46,'criebth','task',90209,56),(47,'Nicole','task',57057,51),(48,'TJ','task',23326,41),(49,'John','task',1765,52),(50,'Taxi','task',85118,55),(51,'Ram','task',78425,53),(52,'blueshoes','task',76580,57),(53,'Lor','task',51960,50),(54,'Brentos','task',89697,58),(55,'Kbob','task',97237,61),(56,'JG','task',26927,59),(57,'PK','task',87039,60),(58,'Sugabanana','task',12517,62),(59,'Sara','task',13195,63),(60,'Lou','task',36112,64),(61,'Jon','task',89230,66),(62,'Andy','task',43804,67),(63,'Ok','task',98751,68),(64,'Charp','task',74638,69),(66,'Ashley J Williams','task',49966,70),(67,'CJ1992','task',78600,71),(68,'Ash','task',38916,72),(69,'kmonaco85','task',77103,73),(70,'slaanesh','task',15693,74),(71,'crelin','task',18660,75),(72,'goo','task',86238,76),(73,'Moo','task',84690,77),(74,'Frankie ','task',60202,78),(75,'grey','task',39739,79),(76,'Kiki','task',36147,80),(77,'DAVID ','task',67782,81),(78,'ZeeS','task',63583,82),(79,'JENNIFER ','task',64218,83),(80,'ap','task',6145,84),(81,'Lucy','task',47852,85),(82,'Jack','task',24372,86);
/*!40000 ALTER TABLE `experiment_expuser` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `experiment_problemhint`
--
DROP TABLE IF EXISTS `experiment_problemhint`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `experiment_problemhint` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`hint_type` varchar(255) NOT NULL,
`candidate_1` varchar(255) NOT NULL,
`candidate_2` varchar(255) NOT NULL,
`candidate_3` varchar(255) NOT NULL,
`candidate_4` varchar(255) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=433 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `experiment_problemhint`
--
LOCK TABLES `experiment_problemhint` WRITE;
/*!40000 ALTER TABLE `experiment_problemhint` DISABLE KEYS */;
INSERT INTO `experiment_problemhint` VALUES (1,'Analogies','+','+','-','+'),(2,'Verbal Comprehension','-','+','+','+'),(3,'Verbal Reasoning','+','-','+','+'),(4,'Spelling','+','-','0','-'),(5,'Grammar','0','0','+','-'),(6,'Antonyms','0','+','-','-'),(7,'Number sequences','+','-','+','+'),(8,'Data interpretation','0','+','0','+'),(9,'Arithmatic','+','-','-','+'),(10,'Letters-to-Numbers','+','+','0','-'),(11,'Algebra','-','-','+','-'),(12,'Trigonometry','0','+','-','-'),(13,'Shape Matching','+','-','-','+'),(14,'3D Views','0','0','+','+'),(15,'Missing Shape','0','-','+','+'),(16,'Map interpretation','+','+','0','-'),(17,'Rotated shapes','-','0','+','-'),(18,'Combining shapes','0','+','-','-'),(19,'Analogies','+','-','+','+'),(20,'Verbal Comprehension','+','+','+','-'),(21,'Verbal Reasoning','-','+','+','+'),(22,'Spelling','-','0','-','+'),(23,'Grammar','0','+','-','0'),(24,'Antonyms','+','-','-','0'),(25,'Number sequences','-','+','+','+'),(26,'Data interpretation','+','0','+','0'),(27,'Arithmatic','-','-','+','+'),(28,'Letters-to-Numbers','+','0','-','+'),(29,'Algebra','-','+','-','-'),(30,'Trigonometry','+','-','-','0'),(31,'Shape Matching','-','-','+','+'),(32,'3D Views','0','+','+','0'),(33,'Missing Shape','-','+','+','0'),(34,'Map interpretation','+','0','-','+'),(35,'Rotated shapes','0','+','-','-'),(36,'Combining shapes','+','-','-','0'),(37,'Analogies','-','+','+','+'),(38,'Verbal Comprehension','+','+','-','+'),(39,'Verbal Reasoning','+','+','+','-'),(40,'Spelling','0','-','+','-'),(41,'Grammar','+','-','0','0'),(42,'Antonyms','-','-','0','+'),(43,'Number sequences','+','+','+','-'),(44,'Data interpretation','0','+','0','+'),(45,'Arithmatic','-','+','+','-'),(46,'Letters-to-Numbers','0','-','+','+'),(47,'Algebra','+','-','-','-'),(48,'Trigonometry','-','-','0','+'),(49,'Shape Matching','-','+','+','-'),(50,'3D Views','+','+','0','0'),(51,'Missing Shape','+','+','0','-'),(52,'Map interpretation','0','-','+','+'),(53,'Rotated shapes','+','-','-','0'),(54,'Combining shapes','-','-','0','+'),(55,'Analogies','+','+','+','-'),(56,'Verbal Comprehension','+','-','+','+'),(57,'Verbal Reasoning','+','+','-','+'),(58,'Spelling','-','+','-','0'),(59,'Grammar','-','0','0','+'),(60,'Antonyms','-','0','+','-'),(61,'Number sequences','+','+','-','+'),(62,'Data interpretation','+','0','+','0'),(63,'Arithmatic','+','+','-','-'),(64,'Letters-to-Numbers','-','+','+','0'),(65,'Algebra','-','-','-','+'),(66,'Trigonometry','-','0','+','-'),(67,'Shape Matching','+','+','-','-'),(68,'3D Views','+','0','0','+'),(69,'Missing Shape','+','0','-','+'),(70,'Map interpretation','-','+','+','0'),(71,'Rotated shapes','-','-','0','+'),(72,'Combining shapes','-','0','+','-'),(73,'Analogies','+','+','+','-'),(74,'Verbal Comprehension','-','+','+','+'),(75,'Verbal Reasoning','+','-','+','+'),(76,'Spelling','+','-','-','0'),(77,'Grammar','0','0','-','+'),(78,'Antonyms','0','+','-','-'),(79,'Number sequences','+','-','+','+'),(80,'Data interpretation','0','+','+','0'),(81,'Arithmatic','+','-','+','-'),(82,'Letters-to-Numbers','+','+','-','0'),(83,'Algebra','-','-','-','+'),(84,'Trigonometry','0','+','-','-'),(85,'Shape Matching','+','-','+','-'),(86,'3D Views','0','0','+','+'),(87,'Missing Shape','0','-','+','+'),(88,'Map interpretation','+','+','-','0'),(89,'Rotated shapes','-','0','-','+'),(90,'Combining shapes','0','+','-','-'),(91,'Analogies','+','+','-','+'),(92,'Verbal Comprehension','+','-','+','+'),(93,'Verbal Reasoning','-','+','+','+'),(94,'Spelling','-','+','0','-'),(95,'Grammar','0','0','+','-'),(96,'Antonyms','+','0','-','-'),(97,'Number sequences','-','+','+','+'),(98,'Data interpretation','+','0','0','+'),(99,'Arithmatic','-','+','-','+'),(100,'Letters-to-Numbers','+','+','0','-'),(101,'Algebra','-','-','+','-'),(102,'Trigonometry','+','0','-','-'),(103,'Shape Matching','-','+','-','+'),(104,'3D Views','0','0','+','+'),(105,'Missing Shape','-','0','+','+'),(106,'Map interpretation','+','+','0','-'),(107,'Rotated shapes','0','-','+','-'),(108,'Combining shapes','+','0','-','-'),(109,'Analogies','-','+','+','+'),(110,'Verbal Comprehension','+','+','-','+'),(111,'Verbal Reasoning','+','-','+','+'),(112,'Spelling','0','-','+','-'),(113,'Grammar','+','0','0','-'),(114,'Antonyms','-','+','0','-'),(115,'Number sequences','+','-','+','+'),(116,'Data interpretation','0','+','0','+'),(117,'Arithmatic','-','-','+','+'),(118,'Letters-to-Numbers','0','+','+','-'),(119,'Algebra','+','-','-','-'),(120,'Trigonometry','-','+','0','-'),(121,'Shape Matching','-','-','+','+'),(122,'3D Views','+','0','0','+'),(123,'Missing Shape','+','-','0','+'),(124,'Map interpretation','0','+','+','-'),(125,'Rotated shapes','+','0','-','-'),(126,'Combining shapes','-','+','0','-'),(127,'Analogies','+','+','-','+'),(128,'Verbal Comprehension','+','+','+','-'),(129,'Verbal Reasoning','+','-','+','+'),(130,'Spelling','-','-','0','+'),(131,'Grammar','-','0','+','0'),(132,'Antonyms','-','+','-','0'),(133,'Number sequences','+','-','+','+'),(134,'Data interpretation','+','+','0','0'),(135,'Arithmatic','+','-','-','+'),(136,'Letters-to-Numbers','-','+','0','+'),(137,'Algebra','-','-','+','-'),(138,'Trigonometry','-','+','-','0'),(139,'Shape Matching','+','-','-','+'),(140,'3D Views','+','0','+','0'),(141,'Missing Shape','+','-','+','0'),(142,'Map interpretation','-','+','0','+'),(143,'Rotated shapes','-','0','+','-'),(144,'Combining shapes','-','+','-','0'),(145,'Analogies','+','-','+','+'),(146,'Verbal Comprehension','-','+','+','+'),(147,'Verbal Reasoning','+','+','-','+'),(148,'Spelling','+','0','-','-'),(149,'Grammar','0','+','0','-'),(150,'Antonyms','0','-','+','-'),(151,'Number sequences','+','+','-','+'),(152,'Data interpretation','0','0','+','+'),(153,'Arithmatic','+','-','-','+'),(154,'Letters-to-Numbers','+','0','+','-'),(155,'Algebra','-','+','-','-'),(156,'Trigonometry','0','-','+','-'),(157,'Shape Matching','+','-','-','+'),(158,'3D Views','0','+','0','+'),(159,'Missing Shape','0','+','-','+'),(160,'Map interpretation','+','0','+','-'),(161,'Rotated shapes','-','+','0','-'),(162,'Combining shapes','0','-','+','-'),(163,'Analogies','+','+','+','-'),(164,'Verbal Comprehension','+','-','+','+'),(165,'Verbal Reasoning','-','+','+','+'),(166,'Spelling','-','+','-','0'),(167,'Grammar','0','0','-','+'),(168,'Antonyms','+','0','-','-'),(169,'Number sequences','-','+','+','+'),(170,'Data interpretation','+','0','+','0'),(171,'Arithmatic','-','+','+','-'),(172,'Letters-to-Numbers','+','+','-','0'),(173,'Algebra','-','-','-','+'),(174,'Trigonometry','+','0','-','-'),(175,'Shape Matching','-','+','+','-'),(176,'3D Views','0','0','+','+'),(177,'Missing Shape','-','0','+','+'),(178,'Map interpretation','+','+','-','0'),(179,'Rotated shapes','0','-','-','+'),(180,'Combining shapes','+','0','-','-'),(181,'Analogies','-','+','+','+'),(182,'Verbal Comprehension','+','+','+','-'),(183,'Verbal Reasoning','+','-','+','+'),(184,'Spelling','0','-','-','+'),(185,'Grammar','+','0','-','0'),(186,'Antonyms','-','+','-','0'),(187,'Number sequences','+','-','+','+'),(188,'Data interpretation','0','+','+','0'),(189,'Arithmatic','-','-','+','+'),(190,'Letters-to-Numbers','0','+','-','+'),(191,'Algebra','+','-','-','-'),(192,'Trigonometry','-','+','-','0'),(193,'Shape Matching','-','-','+','+'),(194,'3D Views','+','0','+','0'),(195,'Missing Shape','+','-','+','0'),(196,'Map interpretation','0','+','-','+'),(197,'Rotated shapes','+','0','-','-'),(198,'Combining shapes','-','+','-','0'),(199,'Analogies','+','+','+','-'),(200,'Verbal Comprehension','+','+','-','+'),(201,'Verbal Reasoning','+','-','+','+'),(202,'Spelling','-','-','+','0'),(203,'Grammar','-','0','0','+'),(204,'Antonyms','-','+','0','-'),(205,'Number sequences','+','-','+','+'),(206,'Data interpretation','+','+','0','0'),(207,'Arithmatic','+','-','+','-'),(208,'Letters-to-Numbers','-','+','+','0'),(209,'Algebra','-','-','-','+'),(210,'Trigonometry','-','+','0','-'),(211,'Shape Matching','+','-','+','-'),(212,'3D Views','+','0','0','+'),(213,'Missing Shape','+','-','0','+'),(214,'Map interpretation','-','+','+','0'),(215,'Rotated shapes','-','0','-','+'),(216,'Combining shapes','-','+','0','-'),(217,'Analogies','+','+','+','-'),(218,'Verbal Comprehension','-','+','+','+'),(219,'Verbal Reasoning','+','+','-','+'),(220,'Spelling','+','-','-','0'),(221,'Grammar','0','-','0','+'),(222,'Antonyms','0','-','+','-'),(223,'Number sequences','+','+','-','+'),(224,'Data interpretation','0','+','+','0'),(225,'Arithmatic','+','+','-','-'),(226,'Letters-to-Numbers','+','-','+','0'),(227,'Algebra','-','-','-','+'),(228,'Trigonometry','0','-','+','-'),(229,'Shape Matching','+','+','-','-'),(230,'3D Views','0','+','0','+'),(231,'Missing Shape','0','+','-','+'),(232,'Map interpretation','+','-','+','0'),(233,'Rotated shapes','-','-','0','+'),(234,'Combining shapes','0','-','+','-'),(235,'Analogies','+','-','+','+'),(236,'Verbal Comprehension','+','+','-','+'),(237,'Verbal Reasoning','-','+','+','+'),(238,'Spelling','-','0','+','-'),(239,'Grammar','0','+','0','-'),(240,'Antonyms','+','-','0','-'),(241,'Number sequences','-','+','+','+'),(242,'Data interpretation','+','0','0','+'),(243,'Arithmatic','-','-','+','+'),(244,'Letters-to-Numbers','+','0','+','-'),(245,'Algebra','-','+','-','-'),(246,'Trigonometry','+','-','0','-'),(247,'Shape Matching','-','-','+','+'),(248,'3D Views','0','+','0','+'),(249,'Missing Shape','-','+','0','+'),(250,'Map interpretation','+','0','+','-'),(251,'Rotated shapes','0','+','-','-'),(252,'Combining shapes','+','-','0','-'),(253,'Analogies','-','+','+','+'),(254,'Verbal Comprehension','+','-','+','+'),(255,'Verbal Reasoning','+','+','-','+'),(256,'Spelling','0','+','-','-'),(257,'Grammar','+','0','0','-'),(258,'Antonyms','-','0','+','-'),(259,'Number sequences','+','+','-','+'),(260,'Data interpretation','0','0','+','+'),(261,'Arithmatic','-','+','-','+'),(262,'Letters-to-Numbers','0','+','+','-'),(263,'Algebra','+','-','-','-'),(264,'Trigonometry','-','0','+','-'),(265,'Shape Matching','-','+','-','+'),(266,'3D Views','+','0','0','+'),(267,'Missing Shape','+','0','-','+'),(268,'Map interpretation','0','+','+','-'),(269,'Rotated shapes','+','-','0','-'),(270,'Combining shapes','-','0','+','-'),(271,'Analogies','+','-','+','+'),(272,'Verbal Comprehension','+','+','+','-'),(273,'Verbal Reasoning','+','+','-','+'),(274,'Spelling','-','0','-','+'),(275,'Grammar','-','+','0','0'),(276,'Antonyms','-','-','+','0'),(277,'Number sequences','+','+','-','+'),(278,'Data interpretation','+','0','+','0'),(279,'Arithmatic','+','-','-','+'),(280,'Letters-to-Numbers','-','0','+','+'),(281,'Algebra','-','+','-','-'),(282,'Trigonometry','-','-','+','0'),(283,'Shape Matching','+','-','-','+'),(284,'3D Views','+','+','0','0'),(285,'Missing Shape','+','+','-','0'),(286,'Map interpretation','-','0','+','+'),(287,'Rotated shapes','-','+','0','-'),(288,'Combining shapes','-','-','+','0'),(289,'Analogies','+','-','+','+'),(290,'Verbal Comprehension','-','+','+','+'),(291,'Verbal Reasoning','+','+','+','-'),(292,'Spelling','+','0','-','-'),(293,'Grammar','0','+','-','0'),(294,'Antonyms','0','-','-','+'),(295,'Number sequences','+','+','+','-'),(296,'Data interpretation','0','0','+','+'),(297,'Arithmatic','+','-','+','-'),(298,'Letters-to-Numbers','+','0','-','+'),(299,'Algebra','-','+','-','-'),(300,'Trigonometry','0','-','-','+'),(301,'Shape Matching','+','-','+','-'),(302,'3D Views','0','+','+','0'),(303,'Missing Shape','0','+','+','-'),(304,'Map interpretation','+','0','-','+'),(305,'Rotated shapes','-','+','-','0'),(306,'Combining shapes','0','-','-','+'),(307,'Analogies','+','+','+','-'),(308,'Verbal Comprehension','+','+','-','+'),(309,'Verbal Reasoning','-','+','+','+'),(310,'Spelling','-','-','+','0'),(311,'Grammar','0','-','0','+'),(312,'Antonyms','+','-','0','-'),(313,'Number sequences','-','+','+','+'),(314,'Data interpretation','+','+','0','0'),(315,'Arithmatic','-','+','+','-'),(316,'Letters-to-Numbers','+','-','+','0'),(317,'Algebra','-','-','-','+'),(318,'Trigonometry','+','-','0','-'),(319,'Shape Matching','-','+','+','-'),(320,'3D Views','0','+','0','+'),(321,'Missing Shape','-','+','0','+'),(322,'Map interpretation','+','-','+','0'),(323,'Rotated shapes','0','-','-','+'),(324,'Combining shapes','+','-','0','-'),(325,'Analogies','-','+','+','+'),(326,'Verbal Comprehension','+','+','+','-'),(327,'Verbal Reasoning','+','+','-','+'),(328,'Spelling','0','-','-','+'),(329,'Grammar','+','-','0','0'),(330,'Antonyms','-','-','+','0'),(331,'Number sequences','+','+','-','+'),(332,'Data interpretation','0','+','+','0'),(333,'Arithmatic','-','+','-','+'),(334,'Letters-to-Numbers','0','-','+','+'),(335,'Algebra','+','-','-','-'),(336,'Trigonometry','-','-','+','0'),(337,'Shape Matching','-','+','-','+'),(338,'3D Views','+','+','0','0'),(339,'Missing Shape','+','+','-','0'),(340,'Map interpretation','0','-','+','+'),(341,'Rotated shapes','+','-','0','-'),(342,'Combining shapes','-','-','+','0'),(343,'Analogies','+','+','-','+'),(344,'Verbal Comprehension','+','-','+','+'),(345,'Verbal Reasoning','+','+','+','-'),(346,'Spelling','-','+','0','-'),(347,'Grammar','-','0','+','0'),(348,'Antonyms','-','0','-','+'),(349,'Number sequences','+','+','+','-'),(350,'Data interpretation','+','0','0','+'),(351,'Arithmatic','+','+','-','-'),(352,'Letters-to-Numbers','-','+','0','+'),(353,'Algebra','-','-','+','-'),(354,'Trigonometry','-','0','-','+'),(355,'Shape Matching','+','+','-','-'),(356,'3D Views','+','0','+','0'),(357,'Missing Shape','+','0','+','-'),(358,'Map interpretation','-','+','0','+'),(359,'Rotated shapes','-','-','+','0'),(360,'Combining shapes','-','0','-','+'),(361,'Analogies','+','+','-','+'),(362,'Verbal Comprehension','-','+','+','+'),(363,'Verbal Reasoning','+','+','+','-'),(364,'Spelling','+','-','0','-'),(365,'Grammar','0','-','+','0'),(366,'Antonyms','0','-','-','+'),(367,'Number sequences','+','+','+','-'),(368,'Data interpretation','0','+','0','+'),(369,'Arithmatic','+','+','-','-'),(370,'Letters-to-Numbers','+','-','0','+'),(371,'Algebra','-','-','+','-'),(372,'Trigonometry','0','-','-','+'),(373,'Shape Matching','+','+','-','-'),(374,'3D Views','0','+','+','0'),(375,'Missing Shape','0','+','+','-'),(376,'Map interpretation','+','-','0','+'),(377,'Rotated shapes','-','-','+','0'),(378,'Combining shapes','0','-','-','+'),(379,'Analogies','+','+','-','+'),(380,'Verbal Comprehension','+','+','+','-'),(381,'Verbal Reasoning','-','+','+','+'),(382,'Spelling','-','-','0','+'),(383,'Grammar','0','-','+','0'),(384,'Antonyms','+','-','-','0'),(385,'Number sequences','-','+','+','+'),(386,'Data interpretation','+','+','0','0'),(387,'Arithmatic','-','+','-','+'),(388,'Letters-to-Numbers','+','-','0','+'),(389,'Algebra','-','-','+','-'),(390,'Trigonometry','+','-','-','0'),(391,'Shape Matching','-','+','-','+'),(392,'3D Views','0','+','+','0'),(393,'Missing Shape','-','+','+','0'),(394,'Map interpretation','+','-','0','+'),(395,'Rotated shapes','0','-','+','-'),(396,'Combining shapes','+','-','-','0'),(397,'Analogies','-','+','+','+'),(398,'Verbal Comprehension','+','-','+','+'),(399,'Verbal Reasoning','+','+','+','-'),(400,'Spelling','0','+','-','-'),(401,'Grammar','+','0','-','0'),(402,'Antonyms','-','0','-','+'),(403,'Number sequences','+','+','+','-'),(404,'Data interpretation','0','0','+','+'),(405,'Arithmatic','-','+','+','-'),(406,'Letters-to-Numbers','0','+','-','+'),(407,'Algebra','+','-','-','-'),(408,'Trigonometry','-','0','-','+'),(409,'Shape Matching','-','+','+','-'),(410,'3D Views','+','0','+','0'),(411,'Missing Shape','+','0','+','-'),(412,'Map interpretation','0','+','-','+'),(413,'Rotated shapes','+','-','-','0'),(414,'Combining shapes','-','0','-','+'),(415,'Analogies','+','-','+','+'),(416,'Verbal Comprehension','+','+','-','+'),(417,'Verbal Reasoning','+','+','+','-'),(418,'Spelling','-','0','+','-'),(419,'Grammar','-','+','0','0'),(420,'Antonyms','-','-','0','+'),(421,'Number sequences','+','+','+','-'),(422,'Data interpretation','+','0','0','+'),(423,'Arithmatic','+','-','+','-'),(424,'Letters-to-Numbers','-','0','+','+'),(425,'Algebra','-','+','-','-'),(426,'Trigonometry','-','-','0','+'),(427,'Shape Matching','+','-','+','-'),(428,'3D Views','+','+','0','0'),(429,'Missing Shape','+','+','0','-'),(430,'Map interpretation','-','0','+','+'),(431,'Rotated shapes','-','+','-','0'),(432,'Combining shapes','-','-','0','+');
/*!40000 ALTER TABLE `experiment_problemhint` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `experiment_profile`
--
DROP TABLE IF EXISTS `experiment_profile`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `experiment_profile` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`person_id` int(10) unsigned NOT NULL,
`version_id` int(10) unsigned NOT NULL,
`crowd_size` int(10) unsigned NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=793 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `experiment_profile`
--
LOCK TABLES `experiment_profile` WRITE;
/*!40000 ALTER TABLE `experiment_profile` DISABLE KEYS */;
INSERT INTO `experiment_profile` VALUES (1,1,1,3),(2,1,2,3),(3,1,3,3),(4,1,4,3),(5,1,5,3),(6,1,6,3),(7,1,7,3),(8,1,8,3),(9,1,9,3),(10,1,10,3),(11,1,11,3),(12,1,12,3),(13,1,13,3),(14,1,14,3),(15,1,15,3),(16,1,16,3),(17,1,17,3),(18,1,18,3),(19,1,19,3),(20,1,20,3),(21,1,21,3),(22,1,22,3),(23,1,23,3),(24,1,24,3),(25,2,1,3),(26,2,2,3),(27,2,3,3),(28,2,4,3),(29,2,5,3),(30,2,6,3),(31,2,7,3),(32,2,8,3),(33,2,9,3),(34,2,10,3),(35,2,11,3),(36,2,12,3),(37,2,13,3),(38,2,14,3),(39,2,15,3),(40,2,16,3),(41,2,17,3),(42,2,18,3),(43,2,19,3),(44,2,20,3),(45,2,21,3),(46,2,22,3),(47,2,23,3),(48,2,24,3),(49,3,1,3),(50,3,2,3),(51,3,3,3),(52,3,4,3),(53,3,5,3),(54,3,6,3),(55,3,7,3),(56,3,8,3),(57,3,9,3),(58,3,10,3),(59,3,11,3),(60,3,12,3),(61,3,13,3),(62,3,14,3),(63,3,15,3),(64,3,16,3),(65,3,17,3),(66,3,18,3),(67,3,19,3),(68,3,20,3),(69,3,21,3),(70,3,22,3),(71,3,23,3),(72,3,24,3),(73,1,1,30),(74,1,2,30),(75,1,3,30),(76,1,4,30),(77,1,5,30),(78,1,6,30),(79,1,7,30),(80,1,8,30),(81,1,9,30),(82,1,10,30),(83,1,11,30),(84,1,12,30),(85,1,13,30),(86,1,14,30),(87,1,15,30),(88,1,16,30),(89,1,17,30),(90,1,18,30),(91,1,19,30),(92,1,20,30),(93,1,21,30),(94,1,22,30),(95,1,23,30),(96,1,24,30),(97,2,1,30),(98,2,2,30),(99,2,3,30),(100,2,4,30),(101,2,5,30),(102,2,6,30),(103,2,7,30),(104,2,8,30),(105,2,9,30),(106,2,10,30),(107,2,11,30),(108,2,12,30),(109,2,13,30),(110,2,14,30),(111,2,15,30),(112,2,16,30),(113,2,17,30),(114,2,18,30),(115,2,19,30),(116,2,20,30),(117,2,21,30),(118,2,22,30),(119,2,23,30),(120,2,24,30),(121,3,1,30),(122,3,2,30),(123,3,3,30),(124,3,4,30),(125,3,5,30),(126,3,6,30),(127,3,7,30),(128,3,8,30),(129,3,9,30),(130,3,10,30),(131,3,11,30),(132,3,12,30),(133,3,13,30),(134,3,14,30),(135,3,15,30),(136,3,16,30),(137,3,17,30),(138,3,18,30),(139,3,19,30),(140,3,20,30),(141,3,21,30),(142,3,22,30),(143,3,23,30),(144,3,24,30),(145,4,1,30),(146,4,2,30),(147,4,3,30),(148,4,4,30),(149,4,5,30),(150,4,6,30),(151,4,7,30),(152,4,8,30),(153,4,9,30),(154,4,10,30),(155,4,11,30),(156,4,12,30),(157,4,13,30),(158,4,14,30),(159,4,15,30),(160,4,16,30),(161,4,17,30),(162,4,18,30),(163,4,19,30),(164,4,20,30),(165,4,21,30),(166,4,22,30),(167,4,23,30),(168,4,24,30),(169,5,1,30),(170,5,2,30),(171,5,3,30),(172,5,4,30),(173,5,5,30),(174,5,6,30),(175,5,7,30),(176,5,8,30),(177,5,9,30),(178,5,10,30),(179,5,11,30),(180,5,12,30),(181,5,13,30),(182,5,14,30),(183,5,15,30),(184,5,16,30),(185,5,17,30),(186,5,18,30),(187,5,19,30),(188,5,20,30),(189,5,21,30),(190,5,22,30),(191,5,23,30),(192,5,24,30),(193,6,1,30),(194,6,2,30),(195,6,3,30),(196,6,4,30),(197,6,5,30),(198,6,6,30),(199,6,7,30),(200,6,8,30),(201,6,9,30),(202,6,10,30),(203,6,11,30),(204,6,12,30),(205,6,13,30),(206,6,14,30),(207,6,15,30),(208,6,16,30),(209,6,17,30),(210,6,18,30),(211,6,19,30),(212,6,20,30),(213,6,21,30),(214,6,22,30),(215,6,23,30),(216,6,24,30),(217,7,1,30),(218,7,2,30),(219,7,3,30),(220,7,4,30),(221,7,5,30),(222,7,6,30),(223,7,7,30),(224,7,8,30),(225,7,9,30),(226,7,10,30),(227,7,11,30),(228,7,12,30),(229,7,13,30),(230,7,14,30),(231,7,15,30),(232,7,16,30),(233,7,17,30),(234,7,18,30),(235,7,19,30),(236,7,20,30),(237,7,21,30),(238,7,22,30),(239,7,23,30),(240,7,24,30),(241,8,1,30),(242,8,2,30),(243,8,3,30),(244,8,4,30),(245,8,5,30),(246,8,6,30),(247,8,7,30),(248,8,8,30),(249,8,9,30),(250,8,10,30),(251,8,11,30),(252,8,12,30),(253,8,13,30),(254,8,14,30),(255,8,15,30),(256,8,16,30),(257,8,17,30),(258,8,18,30),(259,8,19,30),(260,8,20,30),(261,8,21,30),(262,8,22,30),(263,8,23,30),(264,8,24,30),(265,9,1,30),(266,9,2,30),(267,9,3,30),(268,9,4,30),(269,9,5,30),(270,9,6,30),(271,9,7,30),(272,9,8,30),(273,9,9,30),(274,9,10,30),(275,9,11,30),(276,9,12,30),(277,9,13,30),(278,9,14,30),(279,9,15,30),(280,9,16,30),(281,9,17,30),(282,9,18,30),(283,9,19,30),(284,9,20,30),(285,9,21,30),(286,9,22,30),(287,9,23,30),(288,9,24,30),(289,10,1,30),(290,10,2,30),(291,10,3,30),(292,10,4,30),(293,10,5,30),(294,10,6,30),(295,10,7,30),(296,10,8,30),(297,10,9,30),(298,10,10,30),(299,10,11,30),(300,10,12,30),(301,10,13,30),(302,10,14,30),(303,10,15,30),(304,10,16,30),(305,10,17,30),(306,10,18,30),(307,10,19,30),(308,10,20,30),(309,10,21,30),(310,10,22,30),(311,10,23,30),(312,10,24,30),(313,11,1,30),(314,11,2,30),(315,11,3,30),(316,11,4,30),(317,11,5,30),(318,11,6,30),(319,11,7,30),(320,11,8,30),(321,11,9,30),(322,11,10,30),(323,11,11,30),(324,11,12,30),(325,11,13,30),(326,11,14,30),(327,11,15,30),(328,11,16,30),(329,11,17,30),(330,11,18,30),(331,11,19,30),(332,11,20,30),(333,11,21,30),(334,11,22,30),(335,11,23,30),(336,11,24,30),(337,12,1,30),(338,12,2,30),(339,12,3,30),(340,12,4,30),(341,12,5,30),(342,12,6,30),(343,12,7,30),(344,12,8,30),(345,12,9,30),(346,12,10,30),(347,12,11,30),(348,12,12,30),(349,12,13,30),(350,12,14,30),(351,12,15,30),(352,12,16,30),(353,12,17,30),(354,12,18,30),(355,12,19,30),(356,12,20,30),(357,12,21,30),(358,12,22,30),(359,12,23,30),(360,12,24,30),(361,13,1,30),(362,13,2,30),(363,13,3,30),(364,13,4,30),(365,13,5,30),(366,13,6,30),(367,13,7,30),(368,13,8,30),(369,13,9,30),(370,13,10,30),(371,13,11,30),(372,13,12,30),(373,13,13,30),(374,13,14,30),(375,13,15,30),(376,13,16,30),(377,13,17,30),(378,13,18,30),(379,13,19,30),(380,13,20,30),(381,13,21,30),(382,13,22,30),(383,13,23,30),(384,13,24,30),(385,14,1,30),(386,14,2,30),(387,14,3,30),(388,14,4,30),(389,14,5,30),(390,14,6,30),(391,14,7,30),(392,14,8,30),(393,14,9,30),(394,14,10,30),(395,14,11,30),(396,14,12,30),(397,14,13,30),(398,14,14,30),(399,14,15,30),(400,14,16,30),(401,14,17,30),(402,14,18,30),(403,14,19,30),(404,14,20,30),(405,14,21,30),(406,14,22,30),(407,14,23,30),(408,14,24,30),(409,15,1,30),(410,15,2,30),(411,15,3,30),(412,15,4,30),(413,15,5,30),(414,15,6,30),(415,15,7,30),(416,15,8,30),(417,15,9,30),(418,15,10,30),(419,15,11,30),(420,15,12,30),(421,15,13,30),(422,15,14,30),(423,15,15,30),(424,15,16,30),(425,15,17,30),(426,15,18,30),(427,15,19,30),(428,15,20,30),(429,15,21,30),(430,15,22,30),(431,15,23,30),(432,15,24,30),(433,16,1,30),(434,16,2,30),(435,16,3,30),(436,16,4,30),(437,16,5,30),(438,16,6,30),(439,16,7,30),(440,16,8,30),(441,16,9,30),(442,16,10,30),(443,16,11,30),(444,16,12,30),(445,16,13,30),(446,16,14,30),(447,16,15,30),(448,16,16,30),(449,16,17,30),(450,16,18,30),(451,16,19,30),(452,16,20,30),(453,16,21,30),(454,16,22,30),(455,16,23,30),(456,16,24,30),(457,17,1,30),(458,17,2,30),(459,17,3,30),(460,17,4,30),(461,17,5,30),(462,17,6,30),(463,17,7,30),(464,17,8,30),(465,17,9,30),(466,17,10,30),(467,17,11,30),(468,17,12,30),(469,17,13,30),(470,17,14,30),(471,17,15,30),(472,17,16,30),(473,17,17,30),(474,17,18,30),(475,17,19,30),(476,17,20,30),(477,17,21,30),(478,17,22,30),(479,17,23,30),(480,17,24,30),(481,18,1,30),(482,18,2,30),(483,18,3,30),(484,18,4,30),(485,18,5,30),(486,18,6,30),(487,18,7,30),(488,18,8,30),(489,18,9,30),(490,18,10,30),(491,18,11,30),(492,18,12,30),(493,18,13,30),(494,18,14,30),(495,18,15,30),(496,18,16,30),(497,18,17,30),(498,18,18,30),(499,18,19,30),(500,18,20,30),(501,18,21,30),(502,18,22,30),(503,18,23,30),(504,18,24,30),(505,19,1,30),(506,19,2,30),(507,19,3,30),(508,19,4,30),(509,19,5,30),(510,19,6,30),(511,19,7,30),(512,19,8,30),(513,19,9,30),(514,19,10,30),(515,19,11,30),(516,19,12,30),(517,19,13,30),(518,19,14,30),(519,19,15,30),(520,19,16,30),(521,19,17,30),(522,19,18,30),(523,19,19,30),(524,19,20,30),(525,19,21,30),(526,19,22,30),(527,19,23,30),(528,19,24,30),(529,20,1,30),(530,20,2,30),(531,20,3,30),(532,20,4,30),(533,20,5,30),(534,20,6,30),(535,20,7,30),(536,20,8,30),(537,20,9,30),(538,20,10,30),(539,20,11,30),(540,20,12,30),(541,20,13,30),(542,20,14,30),(543,20,15,30),(544,20,16,30),(545,20,17,30),(546,20,18,30),(547,20,19,30),(548,20,20,30),(549,20,21,30),(550,20,22,30),(551,20,23,30),(552,20,24,30),(553,21,1,30),(554,21,2,30),(555,21,3,30),(556,21,4,30),(557,21,5,30),(558,21,6,30),(559,21,7,30),(560,21,8,30),(561,21,9,30),(562,21,10,30),(563,21,11,30),(564,21,12,30),(565,21,13,30),(566,21,14,30),(567,21,15,30),(568,21,16,30),(569,21,17,30),(570,21,18,30),(571,21,19,30),(572,21,20,30),(573,21,21,30),(574,21,22,30),(575,21,23,30),(576,21,24,30),(577,22,1,30),(578,22,2,30),(579,22,3,30),(580,22,4,30),(581,22,5,30),(582,22,6,30),(583,22,7,30),(584,22,8,30),(585,22,9,30),(586,22,10,30),(587,22,11,30),(588,22,12,30),(589,22,13,30),(590,22,14,30),(591,22,15,30),(592,22,16,30),(593,22,17,30),(594,22,18,30),(595,22,19,30),(596,22,20,30),(597,22,21,30),(598,22,22,30),(599,22,23,30),(600,22,24,30),(601,23,1,30),(602,23,2,30),(603,23,3,30),(604,23,4,30),(605,23,5,30),(606,23,6,30),(607,23,7,30),(608,23,8,30),(609,23,9,30),(610,23,10,30),(611,23,11,30),(612,23,12,30),(613,23,13,30),(614,23,14,30),(615,23,15,30),(616,23,16,30),(617,23,17,30),(618,23,18,30),(619,23,19,30),(620,23,20,30),(621,23,21,30),(622,23,22,30),(623,23,23,30),(624,23,24,30),(625,24,1,30),(626,24,2,30),(627,24,3,30),(628,24,4,30),(629,24,5,30),(630,24,6,30),(631,24,7,30),(632,24,8,30),(633,24,9,30),(634,24,10,30),(635,24,11,30),(636,24,12,30),(637,24,13,30),(638,24,14,30),(639,24,15,30),(640,24,16,30),(641,24,17,30),(642,24,18,30),(643,24,19,30),(644,24,20,30),(645,24,21,30),(646,24,22,30),(647,24,23,30),(648,24,24,30),(649,25,1,30),(650,25,2,30),(651,25,3,30),(652,25,4,30),(653,25,5,30),(654,25,6,30),(655,25,7,30),(656,25,8,30),(657,25,9,30),(658,25,10,30),(659,25,11,30),(660,25,12,30),(661,25,13,30),(662,25,14,30),(663,25,15,30),(664,25,16,30),(665,25,17,30),(666,25,18,30),(667,25,19,30),(668,25,20,30),(669,25,21,30),(670,25,22,30),(671,25,23,30),(672,25,24,30),(673,26,1,30),(674,26,2,30),(675,26,3,30),(676,26,4,30),(677,26,5,30),(678,26,6,30),(679,26,7,30),(680,26,8,30),(681,26,9,30),(682,26,10,30),(683,26,11,30),(684,26,12,30),(685,26,13,30),(686,26,14,30),(687,26,15,30),(688,26,16,30),(689,26,17,30),(690,26,18,30),(691,26,19,30),(692,26,20,30),(693,26,21,30),(694,26,22,30),(695,26,23,30),(696,26,24,30),(697,27,1,30),(698,27,2,30),(699,27,3,30),(700,27,4,30),(701,27,5,30),(702,27,6,30),(703,27,7,30),(704,27,8,30),(705,27,9,30),(706,27,10,30),(707,27,11,30),(708,27,12,30),(709,27,13,30),(710,27,14,30),(711,27,15,30),(712,27,16,30),(713,27,17,30),(714,27,18,30),(715,27,19,30),(716,27,20,30),(717,27,21,30),(718,27,22,30),(719,27,23,30),(720,27,24,30),(721,28,1,30),(722,28,2,30),(723,28,3,30),(724,28,4,30),(725,28,5,30),(726,28,6,30),(727,28,7,30),(728,28,8,30),(729,28,9,30),(730,28,10,30),(731,28,11,30),(732,28,12,30),(733,28,13,30),(734,28,14,30),(735,28,15,30),(736,28,16,30),(737,28,17,30),(738,28,18,30),(739,28,19,30),(740,28,20,30),(741,28,21,30),(742,28,22,30),(743,28,23,30),(744,28,24,30),(745,29,1,30),(746,29,2,30),(747,29,3,30),(748,29,4,30),(749,29,5,30),(750,29,6,30),(751,29,7,30),(752,29,8,30),(753,29,9,30),(754,29,10,30),(755,29,11,30),(756,29,12,30),(757,29,13,30),(758,29,14,30),(759,29,15,30),(760,29,16,30),(761,29,17,30),(762,29,18,30),(763,29,19,30),(764,29,20,30),(765,29,21,30),(766,29,22,30),(767,29,23,30),(768,29,24,30),(769,30,1,30),(770,30,2,30),(771,30,3,30),(772,30,4,30),(773,30,5,30),(774,30,6,30),(775,30,7,30),(776,30,8,30),(777,30,9,30),(778,30,10,30),(779,30,11,30),(780,30,12,30),(781,30,13,30),(782,30,14,30),(783,30,15,30),(784,30,16,30),(785,30,17,30),(786,30,18,30),(787,30,19,30),(788,30,20,30),(789,30,21,30),(790,30,22,30),(791,30,23,30),(792,30,24,30);
/*!40000 ALTER TABLE `experiment_profile` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `experiment_profilehint`
--
DROP TABLE IF EXISTS `experiment_profilehint`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `experiment_profilehint` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`person_id` int(10) unsigned NOT NULL,
`version_id` int(10) unsigned NOT NULL,
`crowd_size` int(10) unsigned NOT NULL,
`hint_id` int(11) NOT NULL,
PRIMARY KEY (`id`),
KEY `experiment_profile_hint_id_866b0139_fk_experiment_problemhint_id` (`hint_id`),
CONSTRAINT `experiment_profile_hint_id_866b0139_fk_experiment_problemhint_id` FOREIGN KEY (`hint_id`) REFERENCES `experiment_problemhint` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=7129 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `experiment_profilehint`
--
LOCK TABLES `experiment_profilehint` WRITE;
/*!40000 ALTER TABLE `experiment_profilehint` DISABLE KEYS */;
INSERT INTO `experiment_profilehint` VALUES (1,1,1,3,1),(2,1,2,3,19),(3,1,3,3,37),(4,1,4,3,55),(5,1,5,3,73),(6,1,6,3,91),(7,1,7,3,109),(8,1,8,3,127),(9,1,9,3,145),(10,1,10,3,163),(11,1,11,3,181),(12,1,12,3,199),(13,1,13,3,217),(14,1,14,3,235),(15,1,15,3,253),(16,1,16,3,271),(17,1,17,3,289),(18,1,18,3,307),(19,1,19,3,325),(20,1,20,3,343),(21,1,21,3,361),(22,1,22,3,379),(23,1,23,3,397),(24,1,24,3,415),(25,1,1,3,4),(26,1,2,3,22),(27,1,3,3,40),(28,1,4,3,58),(29,1,5,3,76),(30,1,6,3,94),(31,1,7,3,112),(32,1,8,3,130),(33,1,9,3,148),(34,1,10,3,166),(35,1,11,3,184),(36,1,12,3,202),(37,1,13,3,220),(38,1,14,3,238),(39,1,15,3,256),(40,1,16,3,274),(41,1,17,3,292),(42,1,18,3,310),(43,1,19,3,328),(44,1,20,3,346),(45,1,21,3,364),(46,1,22,3,382),(47,1,23,3,400),(48,1,24,3,418),(49,1,1,3,5),(50,1,2,3,23),(51,1,3,3,41),(52,1,4,3,59),(53,1,5,3,77),(54,1,6,3,95),(55,1,7,3,113),(56,1,8,3,131),(57,1,9,3,149),(58,1,10,3,167),(59,1,11,3,185),(60,1,12,3,203),(61,1,13,3,221),(62,1,14,3,239),(63,1,15,3,257),(64,1,16,3,275),(65,1,17,3,293),(66,1,18,3,311),(67,1,19,3,329),(68,1,20,3,347),(69,1,21,3,365),(70,1,22,3,383),(71,1,23,3,401),(72,1,24,3,419),(73,1,1,3,7),(74,1,2,3,25),(75,1,3,3,43),(76,1,4,3,61),(77,1,5,3,79),(78,1,6,3,97),(79,1,7,3,115),(80,1,8,3,133),(81,1,9,3,151),(82,1,10,3,169),(83,1,11,3,187),(84,1,12,3,205),(85,1,13,3,223),(86,1,14,3,241),(87,1,15,3,259),(88,1,16,3,277),(89,1,17,3,295),(90,1,18,3,313),(91,1,19,3,331),(92,1,20,3,349),(93,1,21,3,367),(94,1,22,3,385),(95,1,23,3,403),(96,1,24,3,421),(97,1,1,3,10),(98,1,2,3,28),(99,1,3,3,46),(100,1,4,3,64),(101,1,5,3,82),(102,1,6,3,100),(103,1,7,3,118),(104,1,8,3,136),(105,1,9,3,154),(106,1,10,3,172),(107,1,11,3,190),(108,1,12,3,208),(109,1,13,3,226),(110,1,14,3,244),(111,1,15,3,262),(112,1,16,3,280),(113,1,17,3,298),(114,1,18,3,316),(115,1,19,3,334),(116,1,20,3,352),(117,1,21,3,370),(118,1,22,3,388),(119,1,23,3,406),(120,1,24,3,424),(121,1,1,3,11),(122,1,2,3,29),(123,1,3,3,47),(124,1,4,3,65),(125,1,5,3,83),(126,1,6,3,101),(127,1,7,3,119),(128,1,8,3,137),(129,1,9,3,155),(130,1,10,3,173),(131,1,11,3,191),(132,1,12,3,209),(133,1,13,3,227),(134,1,14,3,245),(135,1,15,3,263),(136,1,16,3,281),(137,1,17,3,299),(138,1,18,3,317),(139,1,19,3,335),(140,1,20,3,353),(141,1,21,3,371),(142,1,22,3,389),(143,1,23,3,407),(144,1,24,3,425),(145,1,1,3,13),(146,1,2,3,31),(147,1,3,3,49),(148,1,4,3,67),(149,1,5,3,85),(150,1,6,3,103),(151,1,7,3,121),(152,1,8,3,139),(153,1,9,3,157),(154,1,10,3,175),(155,1,11,3,193),(156,1,12,3,211),(157,1,13,3,229),(158,1,14,3,247),(159,1,15,3,265),(160,1,16,3,283),(161,1,17,3,301),(162,1,18,3,319),(163,1,19,3,337),(164,1,20,3,355),(165,1,21,3,373),(166,1,22,3,391),(167,1,23,3,409),(168,1,24,3,427),(169,1,1,3,16),(170,1,2,3,34),(171,1,3,3,52),(172,1,4,3,70),(173,1,5,3,88),(174,1,6,3,106),(175,1,7,3,124),(176,1,8,3,142),(177,1,9,3,160),(178,1,10,3,178),(179,1,11,3,196),(180,1,12,3,214),(181,1,13,3,232),(182,1,14,3,250),(183,1,15,3,268),(184,1,16,3,286),(185,1,17,3,304),(186,1,18,3,322),(187,1,19,3,340),(188,1,20,3,358),(189,1,21,3,376),(190,1,22,3,394),(191,1,23,3,412),(192,1,24,3,430),(193,1,1,3,17),(194,1,2,3,35),(195,1,3,3,53),(196,1,4,3,71),(197,1,5,3,89),(198,1,6,3,107),(199,1,7,3,125),(200,1,8,3,143),(201,1,9,3,161),(202,1,10,3,179),(203,1,11,3,197),(204,1,12,3,215),(205,1,13,3,233),(206,1,14,3,251),(207,1,15,3,269),(208,1,16,3,287),(209,1,17,3,305),(210,1,18,3,323),(211,1,19,3,341),(212,1,20,3,359),(213,1,21,3,377),(214,1,22,3,395),(215,1,23,3,413),(216,1,24,3,431),(217,2,1,3,2),(218,2,2,3,20),(219,2,3,3,38),(220,2,4,3,56),(221,2,5,3,74),(222,2,6,3,92),(223,2,7,3,110),(224,2,8,3,128),(225,2,9,3,146),(226,2,10,3,164),(227,2,11,3,182),(228,2,12,3,200),(229,2,13,3,218),(230,2,14,3,236),(231,2,15,3,254),(232,2,16,3,272),(233,2,17,3,290),(234,2,18,3,308),(235,2,19,3,326),(236,2,20,3,344),(237,2,21,3,362),(238,2,22,3,380),(239,2,23,3,398),(240,2,24,3,416),(241,2,1,3,4),(242,2,2,3,22),(243,2,3,3,40),(244,2,4,3,58),(245,2,5,3,76),(246,2,6,3,94),(247,2,7,3,112),(248,2,8,3,130),(249,2,9,3,148),(250,2,10,3,166),(251,2,11,3,184),(252,2,12,3,202),(253,2,13,3,220),(254,2,14,3,238),(255,2,15,3,256),(256,2,16,3,274),(257,2,17,3,292),(258,2,18,3,310),(259,2,19,3,328),(260,2,20,3,346),(261,2,21,3,364),(262,2,22,3,382),(263,2,23,3,400),(264,2,24,3,418),(265,2,1,3,6),(266,2,2,3,24),(267,2,3,3,42),(268,2,4,3,60),(269,2,5,3,78),(270,2,6,3,96),(271,2,7,3,114),(272,2,8,3,132),(273,2,9,3,150),(274,2,10,3,168),(275,2,11,3,186),(276,2,12,3,204),(277,2,13,3,222),(278,2,14,3,240),(279,2,15,3,258),(280,2,16,3,276),(281,2,17,3,294),(282,2,18,3,312),(283,2,19,3,330),(284,2,20,3,348),(285,2,21,3,366),(286,2,22,3,384),(287,2,23,3,402),(288,2,24,3,420),(289,2,1,3,8),(290,2,2,3,26),(291,2,3,3,44),(292,2,4,3,62),(293,2,5,3,80),(294,2,6,3,98),(295,2,7,3,116),(296,2,8,3,134),(297,2,9,3,152),(298,2,10,3,170),(299,2,11,3,188),(300,2,12,3,206),(301,2,13,3,224),(302,2,14,3,242),(303,2,15,3,260),(304,2,16,3,278),(305,2,17,3,296),(306,2,18,3,314),(307,2,19,3,332),(308,2,20,3,350),(309,2,21,3,368),(310,2,22,3,386),(311,2,23,3,404),(312,2,24,3,422),(313,2,1,3,10),(314,2,2,3,28),(315,2,3,3,46),(316,2,4,3,64),(317,2,5,3,82),(318,2,6,3,100),(319,2,7,3,118),(320,2,8,3,136),(321,2,9,3,154),(322,2,10,3,172),(323,2,11,3,190),(324,2,12,3,208),(325,2,13,3,226),(326,2,14,3,244),(327,2,15,3,262),(328,2,16,3,280),(329,2,17,3,298),(330,2,18,3,316),(331,2,19,3,334),(332,2,20,3,352),(333,2,21,3,370),(334,2,22,3,388),(335,2,23,3,406),(336,2,24,3,424),(337,2,1,3,12),(338,2,2,3,30),(339,2,3,3,48),(340,2,4,3,66),(341,2,5,3,84),(342,2,6,3,102),(343,2,7,3,120),(344,2,8,3,138),(345,2,9,3,156),(346,2,10,3,174),(347,2,11,3,192),(348,2,12,3,210),(349,2,13,3,228),(350,2,14,3,246),(351,2,15,3,264),(352,2,16,3,282),(353,2,17,3,300),(354,2,18,3,318),(355,2,19,3,336),(356,2,20,3,354),(357,2,21,3,372),(358,2,22,3,390),(359,2,23,3,408),(360,2,24,3,426),(361,2,1,3,14),(362,2,2,3,32),(363,2,3,3,50),(364,2,4,3,68),(365,2,5,3,86),(366,2,6,3,104),(367,2,7,3,122),(368,2,8,3,140),(369,2,9,3,158),(370,2,10,3,176),(371,2,11,3,194),(372,2,12,3,212),(373,2,13,3,230),(374,2,14,3,248),(375,2,15,3,266),(376,2,16,3,284),(377,2,17,3,302),(378,2,18,3,320),(379,2,19,3,338),(380,2,20,3,356),(381,2,21,3,374),(382,2,22,3,392),(383,2,23,3,410),(384,2,24,3,428),(385,2,1,3,16),(386,2,2,3,34),(387,2,3,3,52),(388,2,4,3,70),(389,2,5,3,88),(390,2,6,3,106),(391,2,7,3,124),(392,2,8,3,142),(393,2,9,3,160),(394,2,10,3,178),(395,2,11,3,196),(396,2,12,3,214),(397,2,13,3,232),(398,2,14,3,250),(399,2,15,3,268),(400,2,16,3,286),(401,2,17,3,304),(402,2,18,3,322),(403,2,19,3,340),(404,2,20,3,358),(405,2,21,3,376),(406,2,22,3,394),(407,2,23,3,412),(408,2,24,3,430),(409,2,1,3,18),(410,2,2,3,36),(411,2,3,3,54),(412,2,4,3,72),(413,2,5,3,90),(414,2,6,3,108),(415,2,7,3,126),(416,2,8,3,144),(417,2,9,3,162),(418,2,10,3,180),(419,2,11,3,198),(420,2,12,3,216),(421,2,13,3,234),(422,2,14,3,252),(423,2,15,3,270),(424,2,16,3,288),(425,2,17,3,306),(426,2,18,3,324),(427,2,19,3,342),(428,2,20,3,360),(429,2,21,3,378),(430,2,22,3,396),(431,2,23,3,414),(432,2,24,3,432),(433,3,1,3,3),(434,3,2,3,21),(435,3,3,3,39),(436,3,4,3,57),(437,3,5,3,75),(438,3,6,3,93),(439,3,7,3,111),(440,3,8,3,129),(441,3,9,3,147),(442,3,10,3,165),(443,3,11,3,183),(444,3,12,3,201),(445,3,13,3,219),(446,3,14,3,237),(447,3,15,3,255),(448,3,16,3,273),(449,3,17,3,291),(450,3,18,3,309),(451,3,19,3,327),(452,3,20,3,345),(453,3,21,3,363),(454,3,22,3,381),(455,3,23,3,399),(456,3,24,3,417),(457,3,1,3,5),(458,3,2,3,23),(459,3,3,3,41),(460,3,4,3,59),(461,3,5,3,77),(462,3,6,3,95),(463,3,7,3,113),(464,3,8,3,131),(465,3,9,3,149),(466,3,10,3,167),(467,3,11,3,185),(468,3,12,3,203),(469,3,13,3,221),(470,3,14,3,239),(471,3,15,3,257),(472,3,16,3,275),(473,3,17,3,293),(474,3,18,3,311),(475,3,19,3,329),(476,3,20,3,347),(477,3,21,3,365),(478,3,22,3,383),(479,3,23,3,401),(480,3,24,3,419),(481,3,1,3,6),(482,3,2,3,24),(483,3,3,3,42),(484,3,4,3,60),(485,3,5,3,78),(486,3,6,3,96),(487,3,7,3,114),(488,3,8,3,132),(489,3,9,3,150),(490,3,10,3,168),(491,3,11,3,186),(492,3,12,3,204),(493,3,13,3,222),(494,3,14,3,240),(495,3,15,3,258),(496,3,16,3,276),(497,3,17,3,294),(498,3,18,3,312),(499,3,19,3,330),(500,3,20,3,348),(501,3,21,3,366),(502,3,22,3,384),(503,3,23,3,402),(504,3,24,3,420),(505,3,1,3,9),(506,3,2,3,27),(507,3,3,3,45),(508,3,4,3,63),(509,3,5,3,81),(510,3,6,3,99),(511,3,7,3,117),(512,3,8,3,135),(513,3,9,3,153),(514,3,10,3,171),(515,3,11,3,189),(516,3,12,3,207),(517,3,13,3,225),(518,3,14,3,243),(519,3,15,3,261),(520,3,16,3,279),(521,3,17,3,297),(522,3,18,3,315),(523,3,19,3,333),(524,3,20,3,351),(525,3,21,3,369),(526,3,22,3,387),(527,3,23,3,405),(528,3,24,3,423),(529,3,1,3,11),(530,3,2,3,29),(531,3,3,3,47),(532,3,4,3,65),(533,3,5,3,83),(534,3,6,3,101),(535,3,7,3,119),(536,3,8,3,137),(537,3,9,3,155),(538,3,10,3,173),(539,3,11,3,191),(540,3,12,3,209),(541,3,13,3,227),(542,3,14,3,245),(543,3,15,3,263),(544,3,16,3,281),(545,3,17,3,299),(546,3,18,3,317),(547,3,19,3,335),(548,3,20,3,353),(549,3,21,3,371),(550,3,22,3,389),(551,3,23,3,407),(552,3,24,3,425),(553,3,1,3,12),(554,3,2,3,30),(555,3,3,3,48),(556,3,4,3,66),(557,3,5,3,84),(558,3,6,3,102),(559,3,7,3,120),(560,3,8,3,138),(561,3,9,3,156),(562,3,10,3,174),(563,3,11,3,192),(564,3,12,3,210),(565,3,13,3,228),(566,3,14,3,246),(567,3,15,3,264),(568,3,16,3,282),(569,3,17,3,300),(570,3,18,3,318),(571,3,19,3,336),(572,3,20,3,354),(573,3,21,3,372),(574,3,22,3,390),(575,3,23,3,408),(576,3,24,3,426),(577,3,1,3,15),(578,3,2,3,33),(579,3,3,3,51),(580,3,4,3,69),(581,3,5,3,87),(582,3,6,3,105),(583,3,7,3,123),(584,3,8,3,141),(585,3,9,3,159),(586,3,10,3,177),(587,3,11,3,195),(588,3,12,3,213),(589,3,13,3,231),(590,3,14,3,249),(591,3,15,3,267),(592,3,16,3,285),(593,3,17,3,303),(594,3,18,3,321),(595,3,19,3,339),(596,3,20,3,357),(597,3,21,3,375),(598,3,22,3,393),(599,3,23,3,411),(600,3,24,3,429),(601,3,1,3,17),(602,3,2,3,35),(603,3,3,3,53),(604,3,4,3,71),(605,3,5,3,89),(606,3,6,3,107),(607,3,7,3,125),(608,3,8,3,143),(609,3,9,3,161),(610,3,10,3,179),(611,3,11,3,197),(612,3,12,3,215),(613,3,13,3,233),(614,3,14,3,251),(615,3,15,3,269),(616,3,16,3,287),(617,3,17,3,305),(618,3,18,3,323),(619,3,19,3,341),(620,3,20,3,359),(621,3,21,3,377),(622,3,22,3,395),(623,3,23,3,413),(624,3,24,3,431),(625,3,1,3,18),(626,3,2,3,36),(627,3,3,3,54),(628,3,4,3,72),(629,3,5,3,90),(630,3,6,3,108),(631,3,7,3,126),(632,3,8,3,144),(633,3,9,3,162),(634,3,10,3,180),(635,3,11,3,198),(636,3,12,3,216),(637,3,13,3,234),(638,3,14,3,252),(639,3,15,3,270),(640,3,16,3,288),(641,3,17,3,306),(642,3,18,3,324),(643,3,19,3,342),(644,3,20,3,360),(645,3,21,3,378),(646,3,22,3,396),(647,3,23,3,414),(648,3,24,3,432),(649,1,1,30,4),(650,1,2,30,22),(651,1,3,30,40),(652,1,4,30,58),(653,1,5,30,76),(654,1,6,30,94),(655,1,7,30,112),(656,1,8,30,130),(657,1,9,30,148),(658,1,10,30,166),(659,1,11,30,184),(660,1,12,30,202),(661,1,13,30,220),(662,1,14,30,238),(663,1,15,30,256),(664,1,16,30,274),(665,1,17,30,292),(666,1,18,30,310),(667,1,19,30,328),(668,1,20,30,346),(669,1,21,30,364),(670,1,22,30,382),(671,1,23,30,400),(672,1,24,30,418),(673,1,1,30,5),(674,1,2,30,23),(675,1,3,30,41),(676,1,4,30,59),(677,1,5,30,77),(678,1,6,30,95),(679,1,7,30,113),(680,1,8,30,131),(681,1,9,30,149),(682,1,10,30,167),(683,1,11,30,185),(684,1,12,30,203),(685,1,13,30,221),(686,1,14,30,239),(687,1,15,30,257),(688,1,16,30,275),(689,1,17,30,293),(690,1,18,30,311),(691,1,19,30,329),(692,1,20,30,347),(693,1,21,30,365),(694,1,22,30,383),(695,1,23,30,401),(696,1,24,30,419),(697,1,1,30,6),(698,1,2,30,24),(699,1,3,30,42),(700,1,4,30,60),(701,1,5,30,78),(702,1,6,30,96),(703,1,7,30,114),(704,1,8,30,132),(705,1,9,30,150),(706,1,10,30,168),(707,1,11,30,186),(708,1,12,30,204),(709,1,13,30,222),(710,1,14,30,240),(711,1,15,30,258),(712,1,16,30,276),(713,1,17,30,294),(714,1,18,30,312),(715,1,19,30,330),(716,1,20,30,348),(717,1,21,30,366),(718,1,22,30,384),(719,1,23,30,402),(720,1,24,30,420),(721,1,1,30,8),(722,1,2,30,26),(723,1,3,30,44),(724,1,4,30,62),(725,1,5,30,80),(726,1,6,30,98),(727,1,7,30,116),(728,1,8,30,134),(729,1,9,30,152),(730,1,10,30,170),(731,1,11,30,188),(732,1,12,30,206),(733,1,13,30,224),(734,1,14,30,242),(735,1,15,30,260),(736,1,16,30,278),(737,1,17,30,296),(738,1,18,30,314),(739,1,19,30,332),(740,1,20,30,350),(741,1,21,30,368),(742,1,22,30,386),(743,1,23,30,404),(744,1,24,30,422),(745,1,1,30,9),(746,1,2,30,27),(747,1,3,30,45),(748,1,4,30,63),(749,1,5,30,81),(750,1,6,30,99),(751,1,7,30,117),(752,1,8,30,135),(753,1,9,30,153),(754,1,10,30,171),(755,1,11,30,189),(756,1,12,30,207),(757,1,13,30,225),(758,1,14,30,243),(759,1,15,30,261),(760,1,16,30,279),(761,1,17,30,297),(762,1,18,30,315),(763,1,19,30,333),(764,1,20,30,351),(765,1,21,30,369),(766,1,22,30,387),(767,1,23,30,405),(768,1,24,30,423),(769,1,1,30,11),(770,1,2,30,29),(771,1,3,30,47),(772,1,4,30,65),(773,1,5,30,83),(774,1,6,30,101),(775,1,7,30,119),(776,1,8,30,137),(777,1,9,30,155),(778,1,10,30,173),(779,1,11,30,191),(780,1,12,30,209),(781,1,13,30,227),(782,1,14,30,245),(783,1,15,30,263),(784,1,16,30,281),(785,1,17,30,299),(786,1,18,30,317),(787,1,19,30,335),(788,1,20,30,353),(789,1,21,30,371),(790,1,22,30,389),(791,1,23,30,407),(792,1,24,30,425),(793,1,1,30,15),(794,1,2,30,33),(795,1,3,30,51),(796,1,4,30,69),(797,1,5,30,87),(798,1,6,30,105),(799,1,7,30,123),(800,1,8,30,141),(801,1,9,30,159),(802,1,10,30,177),(803,1,11,30,195),(804,1,12,30,213),(805,1,13,30,231),(806,1,14,30,249),(807,1,15,30,267),(808,1,16,30,285),(809,1,17,30,303),(810,1,18,30,321),(811,1,19,30,339),(812,1,20,30,357),(813,1,21,30,375),(814,1,22,30,393),(815,1,23,30,411),(816,1,24,30,429),(817,1,1,30,16),(818,1,2,30,34),(819,1,3,30,52),(820,1,4,30,70),(821,1,5,30,88),(822,1,6,30,106),(823,1,7,30,124),(824,1,8,30,142),(825,1,9,30,160),(826,1,10,30,178),(827,1,11,30,196),(828,1,12,30,214),(829,1,13,30,232),(830,1,14,30,250),(831,1,15,30,268),(832,1,16,30,286),(833,1,17,30,304),(834,1,18,30,322),(835,1,19,30,340),(836,1,20,30,358),(837,1,21,30,376),(838,1,22,30,394),(839,1,23,30,412),(840,1,24,30,430),(841,1,1,30,18),(842,1,2,30,36),(843,1,3,30,54),(844,1,4,30,72),(845,1,5,30,90),(846,1,6,30,108),(847,1,7,30,126),(848,1,8,30,144),(849,1,9,30,162),(850,1,10,30,180),(851,1,11,30,198),(852,1,12,30,216),(853,1,13,30,234),(854,1,14,30,252),(855,1,15,30,270),(856,1,16,30,288),(857,1,17,30,306),(858,1,18,30,324),(859,1,19,30,342),(860,1,20,30,360),(861,1,21,30,378),(862,1,22,30,396),(863,1,23,30,414),(864,1,24,30,432),(865,2,1,30,2),(866,2,2,30,20),(867,2,3,30,38),(868,2,4,30,56),(869,2,5,30,74),(870,2,6,30,92),(871,2,7,30,110),(872,2,8,30,128),(873,2,9,30,146),(874,2,10,30,164),(875,2,11,30,182),(876,2,12,30,200),(877,2,13,30,218),(878,2,14,30,236),(879,2,15,30,254),(880,2,16,30,272),(881,2,17,30,290),(882,2,18,30,308),(883,2,19,30,326),(884,2,20,30,344),(885,2,21,30,362),(886,2,22,30,380),(887,2,23,30,398),(888,2,24,30,416),(889,2,1,30,3),(890,2,2,30,21),(891,2,3,30,39),(892,2,4,30,57),(893,2,5,30,75),(894,2,6,30,93),(895,2,7,30,111),(896,2,8,30,129),(897,2,9,30,147),(898,2,10,30,165),(899,2,11,30,183),(900,2,12,30,201),(901,2,13,30,219),(902,2,14,30,237),(903,2,15,30,255),(904,2,16,30,273),(905,2,17,30,291),(906,2,18,30,309),(907,2,19,30,327),(908,2,20,30,345),(909,2,21,30,363),(910,2,22,30,381),(911,2,23,30,399),(912,2,24,30,417),(913,2,1,30,5),(914,2,2,30,23),(915,2,3,30,41),(916,2,4,30,59),(917,2,5,30,77),(918,2,6,30,95),(919,2,7,30,113),(920,2,8,30,131),(921,2,9,30,149),(922,2,10,30,167),(923,2,11,30,185),(924,2,12,30,203),(925,2,13,30,221),(926,2,14,30,239),(927,2,15,30,257),(928,2,16,30,275),(929,2,17,30,293),(930,2,18,30,311),(931,2,19,30,329),(932,2,20,30,347),(933,2,21,30,365),(934,2,22,30,383),(935,2,23,30,401),(936,2,24,30,419),(937,2,1,30,9),(938,2,2,30,27),(939,2,3,30,45),(940,2,4,30,63),(941,2,5,30,81),(942,2,6,30,99),(943,2,7,30,117),(944,2,8,30,135),(945,2,9,30,153),(946,2,10,30,171),(947,2,11,30,189),(948,2,12,30,207),(949,2,13,30,225),(950,2,14,30,243),(951,2,15,30,261),(952,2,16,30,279),(953,2,17,30,297),(954,2,18,30,315),(955,2,19,30,333),(956,2,20,30,351),(957,2,21,30,369),(958,2,22,30,387),(959,2,23,30,405),(960,2,24,30,423),(961,2,1,30,10),(962,2,2,30,28),(963,2,3,30,46),(964,2,4,30,64),(965,2,5,30,82),(966,2,6,30,100),(967,2,7,30,118),(968,2,8,30,136),(969,2,9,30,154),(970,2,10,30,172),(971,2,11,30,190),(972,2,12,30,208),(973,2,13,30,226),(974,2,14,30,244),(975,2,15,30,262),(976,2,16,30,280),(977,2,17,30,298),(978,2,18,30,316),(979,2,19,30,334),(980,2,20,30,352),(981,2,21,30,370),(982,2,22,30,388),(983,2,23,30,406),(984,2,24,30,424),(985,2,1,30,11),(986,2,2,30,29),(987,2,3,30,47),(988,2,4,30,65),(989,2,5,30,83),(990,2,6,30,101),(991,2,7,30,119),(992,2,8,30,137),(993,2,9,30,155),(994,2,10,30,173),(995,2,11,30,191),(996,2,12,30,209),(997,2,13,30,227),(998,2,14,30,245),(999,2,15,30,263),(1000,2,16,30,281),(1001,2,17,30,299),(1002,2,18,30,317),(1003,2,19,30,335),(1004,2,20,30,353),(1005,2,21,30,371),(1006,2,22,30,389),(1007,2,23,30,407),(1008,2,24,30,425),(1009,2,1,30,15),(1010,2,2,30,33),(1011,2,3,30,51),(1012,2,4,30,69),(1013,2,5,30,87),(1014,2,6,30,105),(1015,2,7,30,123),(1016,2,8,30,141),(1017,2,9,30,159),(1018,2,10,30,177),(1019,2,11,30,195),(1020,2,12,30,213),(1021,2,13,30,231),(1022,2,14,30,249),(1023,2,15,30,267),(1024,2,16,30,285),(1025,2,17,30,303),(1026,2,18,30,321),(1027,2,19,30,339),(1028,2,20,30,357),(1029,2,21,30,375),(1030,2,22,30,393),(1031,2,23,30,411),(1032,2,24,30,429),(1033,2,1,30,16),(1034,2,2,30,34),(1035,2,3,30,52),(1036,2,4,30,70),(1037,2,5,30,88),(1038,2,6,30,106),(1039,2,7,30,124),(1040,2,8,30,142),(1041,2,9,30,160),(1042,2,10,30,178),(1043,2,11,30,196),(1044,2,12,30,214),(1045,2,13,30,232),(1046,2,14,30,250),(1047,2,15,30,268),(1048,2,16,30,286),(1049,2,17,30,304),(1050,2,18,30,322),(1051,2,19,30,340),(1052,2,20,30,358),(1053,2,21,30,376),(1054,2,22,30,394),(1055,2,23,30,412),(1056,2,24,30,430),(1057,2,1,30,17),(1058,2,2,30,35),(1059,2,3,30,53),(1060,2,4,30,71),(1061,2,5,30,89),(1062,2,6,30,107),(1063,2,7,30,125),(1064,2,8,30,143),(1065,2,9,30,161),(1066,2,10,30,179),(1067,2,11,30,197),(1068,2,12,30,215),(1069,2,13,30,233),(1070,2,14,30,251),(1071,2,15,30,269),(1072,2,16,30,287),(1073,2,17,30,305),(1074,2,18,30,323),(1075,2,19,30,341),(1076,2,20,30,359),(1077,2,21,30,377),(1078,2,22,30,395),(1079,2,23,30,413),(1080,2,24,30,431),(1081,3,1,30,4),(1082,3,2,30,22),(1083,3,3,30,40),(1084,3,4,30,58),(1085,3,5,30,76),(1086,3,6,30,94),(1087,3,7,30,112),(1088,3,8,30,130),(1089,3,9,30,148),(1090,3,10,30,166),(1091,3,11,30,184),(1092,3,12,30,202),(1093,3,13,30,220),(1094,3,14,30,238),(1095,3,15,30,256),(1096,3,16,30,274),(1097,3,17,30,292),(1098,3,18,30,310),(1099,3,19,30,328),(1100,3,20,30,346),(1101,3,21,30,364),(1102,3,22,30,382),(1103,3,23,30,400),(1104,3,24,30,418),(1105,3,1,30,5),(1106,3,2,30,23),(1107,3,3,30,41),(1108,3,4,30,59),(1109,3,5,30,77),(1110,3,6,30,95),(1111,3,7,30,113),(1112,3,8,30,131),(1113,3,9,30,149),(1114,3,10,30,167),(1115,3,11,30,185),(1116,3,12,30,203),(1117,3,13,30,221),(1118,3,14,30,239),(1119,3,15,30,257),(1120,3,16,30,275),(1121,3,17,30,293),(1122,3,18,30,311),(1123,3,19,30,329),(1124,3,20,30,347),(1125,3,21,30,365),(1126,3,22,30,383),(1127,3,23,30,401),(1128,3,24,30,419),(1129,3,1,30,6),(1130,3,2,30,24),(1131,3,3,30,42),(1132,3,4,30,60),(1133,3,5,30,78),(1134,3,6,30,96),(1135,3,7,30,114),(1136,3,8,30,132),(1137,3,9,30,150),(1138,3,10,30,168),(1139,3,11,30,186),(1140,3,12,30,204),(1141,3,13,30,222),(1142,3,14,30,240),(1143,3,15,30,258),(1144,3,16,30,276),(1145,3,17,30,294),(1146,3,18,30,312),(1147,3,19,30,330),(1148,3,20,30,348),(1149,3,21,30,366),(1150,3,22,30,384),(1151,3,23,30,402),(1152,3,24,30,420),(1153,3,1,30,10),(1154,3,2,30,28),(1155,3,3,30,46),(1156,3,4,30,64),(1157,3,5,30,82),(1158,3,6,30,100),(1159,3,7,30,118),(1160,3,8,30,136),(1161,3,9,30,154),(1162,3,10,30,172),(1163,3,11,30,190),(1164,3,12,30,208),(1165,3,13,30,226),(1166,3,14,30,244),(1167,3,15,30,262),(1168,3,16,30,280),(1169,3,17,30,298),(1170,3,18,30,316),(1171,3,19,30,334),(1172,3,20,30,352),(1173,3,21,30,370),(1174,3,22,30,388),(1175,3,23,30,406),(1176,3,24,30,424),(1177,3,1,30,11),(1178,3,2,30,29),(1179,3,3,30,47),(1180,3,4,30,65),(1181,3,5,30,83),(1182,3,6,30,101),(1183,3,7,30,119),(1184,3,8,30,137),(1185,3,9,30,155),(1186,3,10,30,173),(1187,3,11,30,191),(1188,3,12,30,209),(1189,3,13,30,227),(1190,3,14,30,245),(1191,3,15,30,263),(1192,3,16,30,281),(1193,3,17,30,299),(1194,3,18,30,317),(1195,3,19,30,335),(1196,3,20,30,353),(1197,3,21,30,371),(1198,3,22,30,389),(1199,3,23,30,407),(1200,3,24,30,425),(1201,3,1,30,12),(1202,3,2,30,30),(1203,3,3,30,48),(1204,3,4,30,66),(1205,3,5,30,84),(1206,3,6,30,102),(1207,3,7,30,120),(1208,3,8,30,138),(1209,3,9,30,156),(1210,3,10,30,174),(1211,3,11,30,192),(1212,3,12,30,210),(1213,3,13,30,228),(1214,3,14,30,246),(1215,3,15,30,264),(1216,3,16,30,282),(1217,3,17,30,300),(1218,3,18,30,318),(1219,3,19,30,336),(1220,3,20,30,354),(1221,3,21,30,372),(1222,3,22,30,390),(1223,3,23,30,408),(1224,3,24,30,426),(1225,3,1,30,14),(1226,3,2,30,32),(1227,3,3,30,50),(1228,3,4,30,68),(1229,3,5,30,86),(1230,3,6,30,104),(1231,3,7,30,122),(1232,3,8,30,140),(1233,3,9,30,158),(1234,3,10,30,176),(1235,3,11,30,194),(1236,3,12,30,212),(1237,3,13,30,230),(1238,3,14,30,248),(1239,3,15,30,266),(1240,3,16,30,284),(1241,3,17,30,302),(1242,3,18,30,320),(1243,3,19,30,338),(1244,3,20,30,356),(1245,3,21,30,374),(1246,3,22,30,392),(1247,3,23,30,410),(1248,3,24,30,428),(1249,3,1,30,15),(1250,3,2,30,33),(1251,3,3,30,51),(1252,3,4,30,69),(1253,3,5,30,87),(1254,3,6,30,105),(1255,3,7,30,123),(1256,3,8,30,141),(1257,3,9,30,159),(1258,3,10,30,177),(1259,3,11,30,195),(1260,3,12,30,213),(1261,3,13,30,231),(1262,3,14,30,249),(1263,3,15,30,267),(1264,3,16,30,285),(1265,3,17,30,303),(1266,3,18,30,321),(1267,3,19,30,339),(1268,3,20,30,357),(1269,3,21,30,375),(1270,3,22,30,393),(1271,3,23,30,411),(1272,3,24,30,429),(1273,3,1,30,18),(1274,3,2,30,36),(1275,3,3,30,54),(1276,3,4,30,72),(1277,3,5,30,90),(1278,3,6,30,108),(1279,3,7,30,126),(1280,3,8,30,144),(1281,3,9,30,162),(1282,3,10,30,180),(1283,3,11,30,198),(1284,3,12,30,216),(1285,3,13,30,234),(1286,3,14,30,252),(1287,3,15,30,270),(1288,3,16,30,288),(1289,3,17,30,306),(1290,3,18,30,324),(1291,3,19,30,342),(1292,3,20,30,360),(1293,3,21,30,378),(1294,3,22,30,396),(1295,3,23,30,414),(1296,3,24,30,432),(1297,4,1,30,1),(1298,4,2,30,19),(1299,4,3,30,37),(1300,4,4,30,55),(1301,4,5,30,73),(1302,4,6,30,91),(1303,4,7,30,109),(1304,4,8,30,127),(1305,4,9,30,145),(1306,4,10,30,163),(1307,4,11,30,181),(1308,4,12,30,199),(1309,4,13,30,217),(1310,4,14,30,235),(1311,4,15,30,253),(1312,4,16,30,271),(1313,4,17,30,289),(1314,4,18,30,307),(1315,4,19,30,325),(1316,4,20,30,343),(1317,4,21,30,361),(1318,4,22,30,379),(1319,4,23,30,397),(1320,4,24,30,415),(1321,4,1,30,3),(1322,4,2,30,21),(1323,4,3,30,39),(1324,4,4,30,57),(1325,4,5,30,75),(1326,4,6,30,93),(1327,4,7,30,111),(1328,4,8,30,129),(1329,4,9,30,147),(1330,4,10,30,165),(1331,4,11,30,183),(1332,4,12,30,201),(1333,4,13,30,219),(1334,4,14,30,237),(1335,4,15,30,255),(1336,4,16,30,273),(1337,4,17,30,291),(1338,4,18,30,309),(1339,4,19,30,327),(1340,4,20,30,345),(1341,4,21,30,363),(1342,4,22,30,381),(1343,4,23,30,399),(1344,4,24,30,417),(1345,4,1,30,4),(1346,4,2,30,22),(1347,4,3,30,40),(1348,4,4,30,58),(1349,4,5,30,76),(1350,4,6,30,94),(1351,4,7,30,112),(1352,4,8,30,130),(1353,4,9,30,148),(1354,4,10,30,166),(1355,4,11,30,184),(1356,4,12,30,202),(1357,4,13,30,220),(1358,4,14,30,238),(1359,4,15,30,256),(1360,4,16,30,274),(1361,4,17,30,292),(1362,4,18,30,310),(1363,4,19,30,328),(1364,4,20,30,346),(1365,4,21,30,364),(1366,4,22,30,382),(1367,4,23,30,400),(1368,4,24,30,418),(1369,4,1,30,8),(1370,4,2,30,26),(1371,4,3,30,44),(1372,4,4,30,62),(1373,4,5,30,80),(1374,4,6,30,98),(1375,4,7,30,116),(1376,4,8,30,134),(1377,4,9,30,152),(1378,4,10,30,170),(1379,4,11,30,188),(1380,4,12,30,206),(1381,4,13,30,224),(1382,4,14,30,242),(1383,4,15,30,260),(1384,4,16,30,278),(1385,4,17,30,296),(1386,4,18,30,314),(1387,4,19,30,332),(1388,4,20,30,350),(1389,4,21,30,368),(1390,4,22,30,386),(1391,4,23,30,404),(1392,4,24,30,422),(1393,4,1,30,9),(1394,4,2,30,27),(1395,4,3,30,45),(1396,4,4,30,63),(1397,4,5,30,81),(1398,4,6,30,99),(1399,4,7,30,117),(1400,4,8,30,135),(1401,4,9,30,153),(1402,4,10,30,171),(1403,4,11,30,189),(1404,4,12,30,207),(1405,4,13,30,225),(1406,4,14,30,243),(1407,4,15,30,261),(1408,4,16,30,279),(1409,4,17,30,297),(1410,4,18,30,315),(1411,4,19,30,333),(1412,4,20,30,351),(1413,4,21,30,369),(1414,4,22,30,387),(1415,4,23,30,405),(1416,4,24,30,423),(1417,4,1,30,10),(1418,4,2,30,28),(1419,4,3,30,46),(1420,4,4,30,64),(1421,4,5,30,82),(1422,4,6,30,100),(1423,4,7,30,118),(1424,4,8,30,136),(1425,4,9,30,154),(1426,4,10,30,172),(1427,4,11,30,190),(1428,4,12,30,208),(1429,4,13,30,226),(1430,4,14,30,244),(1431,4,15,30,262),(1432,4,16,30,280),(1433,4,17,30,298),(1434,4,18,30,316),(1435,4,19,30,334),(1436,4,20,30,352),(1437,4,21,30,370),(1438,4,22,30,388),(1439,4,23,30,406),(1440,4,24,30,424),(1441,4,1,30,15),(1442,4,2,30,33),(1443,4,3,30,51),(1444,4,4,30,69),(1445,4,5,30,87),(1446,4,6,30,105),(1447,4,7,30,123),(1448,4,8,30,141),(1449,4,9,30,159),(1450,4,10,30,177),(1451,4,11,30,195),(1452,4,12,30,213),(1453,4,13,30,231),(1454,4,14,30,249),(1455,4,15,30,267),(1456,4,16,30,285),(1457,4,17,30,303),(1458,4,18,30,321),(1459,4,19,30,339),(1460,4,20,30,357),(1461,4,21,30,375),(1462,4,22,30,393),(1463,4,23,30,411),(1464,4,24,30,429),(1465,4,1,30,16),(1466,4,2,30,34),(1467,4,3,30,52),(1468,4,4,30,70),(1469,4,5,30,88),(1470,4,6,30,106),(1471,4,7,30,124),(1472,4,8,30,142),(1473,4,9,30,160),(1474,4,10,30,178),(1475,4,11,30,196),(1476,4,12,30,214),(1477,4,13,30,232),(1478,4,14,30,250),(1479,4,15,30,268),(1480,4,16,30,286),(1481,4,17,30,304),(1482,4,18,30,322),(1483,4,19,30,340),(1484,4,20,30,358),(1485,4,21,30,376),(1486,4,22,30,394),(1487,4,23,30,412),(1488,4,24,30,430),(1489,4,1,30,17),(1490,4,2,30,35),(1491,4,3,30,53),(1492,4,4,30,71),(1493,4,5,30,89),(1494,4,6,30,107),(1495,4,7,30,125),(1496,4,8,30,143),(1497,4,9,30,161),(1498,4,10,30,179),(1499,4,11,30,197),(1500,4,12,30,215),(1501,4,13,30,233),(1502,4,14,30,251),(1503,4,15,30,269),(1504,4,16,30,287),(1505,4,17,30,305),(1506,4,18,30,323),(1507,4,19,30,341),(1508,4,20,30,359),(1509,4,21,30,377),(1510,4,22,30,395),(1511,4,23,30,413),(1512,4,24,30,431),(1513,5,1,30,2),(1514,5,2,30,20),(1515,5,3,30,38),(1516,5,4,30,56),(1517,5,5,30,74),(1518,5,6,30,92),(1519,5,7,30,110),(1520,5,8,30,128),(1521,5,9,30,146),(1522,5,10,30,164),(1523,5,11,30,182),(1524,5,12,30,200),(1525,5,13,30,218),(1526,5,14,30,236),(1527,5,15,30,254),(1528,5,16,30,272),(1529,5,17,30,290),(1530,5,18,30,308),(1531,5,19,30,326),(1532,5,20,30,344),(1533,5,21,30,362),(1534,5,22,30,380),(1535,5,23,30,398),(1536,5,24,30,416),(1537,5,1,30,4),(1538,5,2,30,22),(1539,5,3,30,40),(1540,5,4,30,58),(1541,5,5,30,76),(1542,5,6,30,94),(1543,5,7,30,112),(1544,5,8,30,130),(1545,5,9,30,148),(1546,5,10,30,166),(1547,5,11,30,184),(1548,5,12,30,202),(1549,5,13,30,220),(1550,5,14,30,238),(1551,5,15,30,256),(1552,5,16,30,274),(1553,5,17,30,292),(1554,5,18,30,310),(1555,5,19,30,328),(1556,5,20,30,346),(1557,5,21,30,364),(1558,5,22,30,382),(1559,5,23,30,400),(1560,5,24,30,418),(1561,5,1,30,5),(1562,5,2,30,23),(1563,5,3,30,41),(1564,5,4,30,59),(1565,5,5,30,77),(1566,5,6,30,95),(1567,5,7,30,113),(1568,5,8,30,131),(1569,5,9,30,149),(1570,5,10,30,167),(1571,5,11,30,185),(1572,5,12,30,203),(1573,5,13,30,221),(1574,5,14,30,239),(1575,5,15,30,257),(1576,5,16,30,275),(1577,5,17,30,293),(1578,5,18,30,311),(1579,5,19,30,329),(1580,5,20,30,347),(1581,5,21,30,365),(1582,5,22,30,383),(1583,5,23,30,401),(1584,5,24,30,419),(1585,5,1,30,10),(1586,5,2,30,28),(1587,5,3,30,46),(1588,5,4,30,64),(1589,5,5,30,82),(1590,5,6,30,100),(1591,5,7,30,118),(1592,5,8,30,136),(1593,5,9,30,154),(1594,5,10,30,172),(1595,5,11,30,190),(1596,5,12,30,208),(1597,5,13,30,226),(1598,5,14,30,244),(1599,5,15,30,262),(1600,5,16,30,280),(1601,5,17,30,298),(1602,5,18,30,316),(1603,5,19,30,334),(1604,5,20,30,352),(1605,5,21,30,370),(1606,5,22,30,388),(1607,5,23,30,406),(1608,5,24,30,424),(1609,5,1,30,11),(1610,5,2,30,29),(1611,5,3,30,47),(1612,5,4,30,65),(1613,5,5,30,83),(1614,5,6,30,101),(1615,5,7,30,119),(1616,5,8,30,137),(1617,5,9,30,155),(1618,5,10,30,173),(1619,5,11,30,191),(1620,5,12,30,209),(1621,5,13,30,227),(1622,5,14,30,245),(1623,5,15,30,263),(1624,5,16,30,281),(1625,5,17,30,299),(1626,5,18,30,317),(1627,5,19,30,335),(1628,5,20,30,353),(1629,5,21,30,371),(1630,5,22,30,389),(1631,5,23,30,407),(1632,5,24,30,425),(1633,5,1,30,12),(1634,5,2,30,30),(1635,5,3,30,48),(1636,5,4,30,66),(1637,5,5,30,84),(1638,5,6,30,102),(1639,5,7,30,120),(1640,5,8,30,138),(1641,5,9,30,156),(1642,5,10,30,174),(1643,5,11,30,192),(1644,5,12,30,210),(1645,5,13,30,228),(1646,5,14,30,246),(1647,5,15,30,264),(1648,5,16,30,282),(1649,5,17,30,300),(1650,5,18,30,318),(1651,5,19,30,336),(1652,5,20,30,354),(1653,5,21,30,372),(1654,5,22,30,390),(1655,5,23,30,408),(1656,5,24,30,426),(1657,5,1,30,16),(1658,5,2,30,34),(1659,5,3,30,52),(1660,5,4,30,70),(1661,5,5,30,88),(1662,5,6,30,106),(1663,5,7,30,124),(1664,5,8,30,142),(1665,5,9,30,160),(1666,5,10,30,178),(1667,5,11,30,196),(1668,5,12,30,214),(1669,5,13,30,232),(1670,5,14,30,250),(1671,5,15,30,268),(1672,5,16,30,286),(1673,5,17,30,304),(1674,5,18,30,322),(1675,5,19,30,340),(1676,5,20,30,358),(1677,5,21,30,376),(1678,5,22,30,394),(1679,5,23,30,412),(1680,5,24,30,430),(1681,5,1,30,17),(1682,5,2,30,35),(1683,5,3,30,53),(1684,5,4,30,71),(1685,5,5,30,89),(1686,5,6,30,107),(1687,5,7,30,125),(1688,5,8,30,143),(1689,5,9,30,161),(1690,5,10,30,179),(1691,5,11,30,197),(1692,5,12,30,215),(1693,5,13,30,233),(1694,5,14,30,251),(1695,5,15,30,269),(1696,5,16,30,287),(1697,5,17,30,305),(1698,5,18,30,323),(1699,5,19,30,341),(1700,5,20,30,359),(1701,5,21,30,377),(1702,5,22,30,395),(1703,5,23,30,413),(1704,5,24,30,431),(1705,5,1,30,18),(1706,5,2,30,36),(1707,5,3,30,54),(1708,5,4,30,72),(1709,5,5,30,90),(1710,5,6,30,108),(1711,5,7,30,126),(1712,5,8,30,144),(1713,5,9,30,162),(1714,5,10,30,180),(1715,5,11,30,198),(1716,5,12,30,216),(1717,5,13,30,234),(1718,5,14,30,252),(1719,5,15,30,270),(1720,5,16,30,288),(1721,5,17,30,306),(1722,5,18,30,324),(1723,5,19,30,342),(1724,5,20,30,360),(1725,5,21,30,378),(1726,5,22,30,396),(1727,5,23,30,414),(1728,5,24,30,432),(1729,6,1,30,3),(1730,6,2,30,21),(1731,6,3,30,39),(1732,6,4,30,57),(1733,6,5,30,75),(1734,6,6,30,93),(1735,6,7,30,111),(1736,6,8,30,129),(1737,6,9,30,147),(1738,6,10,30,165),(1739,6,11,30,183),(1740,6,12,30,201),(1741,6,13,30,219),(1742,6,14,30,237),(1743,6,15,30,255),(1744,6,16,30,273),(1745,6,17,30,291),(1746,6,18,30,309),(1747,6,19,30,327),(1748,6,20,30,345),(1749,6,21,30,363),(1750,6,22,30,381),(1751,6,23,30,399),(1752,6,24,30,417),(1753,6,1,30,4),(1754,6,2,30,22),(1755,6,3,30,40),(1756,6,4,30,58),(1757,6,5,30,76),(1758,6,6,30,94),(1759,6,7,30,112),(1760,6,8,30,130),(1761,6,9,30,148),(1762,6,10,30,166),(1763,6,11,30,184),(1764,6,12,30,202),(1765,6,13,30,220),(1766,6,14,30,238),(1767,6,15,30,256),(1768,6,16,30,274),(1769,6,17,30,292),(1770,6,18,30,310),(1771,6,19,30,328),(1772,6,20,30,346),(1773,6,21,30,364),(1774,6,22,30,382),(1775,6,23,30,400),(1776,6,24,30,418),(1777,6,1,30,5),(1778,6,2,30,23),(1779,6,3,30,41),(1780,6,4,30,59),(1781,6,5,30,77),(1782,6,6,30,95),(1783,6,7,30,113),(1784,6,8,30,131),(1785,6,9,30,149),(1786,6,10,30,167),(1787,6,11,30,185),(1788,6,12,30,203),(1789,6,13,30,221),(1790,6,14,30,239),(1791,6,15,30,257),(1792,6,16,30,275),(1793,6,17,30,293),(1794,6,18,30,311),(1795,6,19,30,329),(1796,6,20,30,347),(1797,6,21,30,365),(1798,6,22,30,383),(1799,6,23,30,401),(1800,6,24,30,419),(1801,6,1,30,9),(1802,6,2,30,27),(1803,6,3,30,45),(1804,6,4,30,63),(1805,6,5,30,81),(1806,6,6,30,99),(1807,6,7,30,117),(1808,6,8,30,135),(1809,6,9,30,153),(1810,6,10,30,171),(1811,6,11,30,189),(1812,6,12,30,207),(1813,6,13,30,225),(1814,6,14,30,243),(1815,6,15,30,261),(1816,6,16,30,279),(1817,6,17,30,297),(1818,6,18,30,315),(1819,6,19,30,333),(1820,6,20,30,351),(1821,6,21,30,369),(1822,6,22,30,387),(1823,6,23,30,405),(1824,6,24,30,423),(1825,6,1,30,10),(1826,6,2,30,28),(1827,6,3,30,46),(1828,6,4,30,64),(1829,6,5,30,82),(1830,6,6,30,100),(1831,6,7,30,118),(1832,6,8,30,136),(1833,6,9,30,154),(1834,6,10,30,172),(1835,6,11,30,190),(1836,6,12,30,208),(1837,6,13,30,226),(1838,6,14,30,244),(1839,6,15,30,262),(1840,6,16,30,280),(1841,6,17,30,298),(1842,6,18,30,316),(1843,6,19,30,334),(1844,6,20,30,352),(1845,6,21,30,370),(1846,6,22,30,388),(1847,6,23,30,406),(1848,6,24,30,424),(1849,6,1,30,11),(1850,6,2,30,29),(1851,6,3,30,47),(1852,6,4,30,65),(1853,6,5,30,83),(1854,6,6,30,101),(1855,6,7,30,119),(1856,6,8,30,137),(1857,6,9,30,155),(1858,6,10,30,173),(1859,6,11,30,191),(1860,6,12,30,209),(1861,6,13,30,227),(1862,6,14,30,245),(1863,6,15,30,263),(1864,6,16,30,281),(1865,6,17,30,299),(1866,6,18,30,317),(1867,6,19,30,335),(1868,6,20,30,353),(1869,6,21,30,371),(1870,6,22,30,389),(1871,6,23,30,407),(1872,6,24,30,425),(1873,6,1,30,14),(1874,6,2,30,32),(1875,6,3,30,50),(1876,6,4,30,68),(1877,6,5,30,86),(1878,6,6,30,104),(1879,6,7,30,122),(1880,6,8,30,140),(1881,6,9,30,158),(1882,6,10,30,176),(1883,6,11,30,194),(1884,6,12,30,212),(1885,6,13,30,230),(1886,6,14,30,248),(1887,6,15,30,266),(1888,6,16,30,284),(1889,6,17,30,302),(1890,6,18,30,320),(1891,6,19,30,338),(1892,6,20,30,356),(1893,6,21,30,374),(1894,6,22,30,392),(1895,6,23,30,410),(1896,6,24,30,428),(1897,6,1,30,17),(1898,6,2,30,35),(1899,6,3,30,53),(1900,6,4,30,71),(1901,6,5,30,89),(1902,6,6,30,107),(1903,6,7,30,125),(1904,6,8,30,143),(1905,6,9,30,161),(1906,6,10,30,179),(1907,6,11,30,197),(1908,6,12,30,215),(1909,6,13,30,233),(1910,6,14,30,251),(1911,6,15,30,269),(1912,6,16,30,287),(1913,6,17,30,305),(1914,6,18,30,323),(1915,6,19,30,341),(1916,6,20,30,359),(1917,6,21,30,377),(1918,6,22,30,395),(1919,6,23,30,413),(1920,6,24,30,431),(1921,6,1,30,18),(1922,6,2,30,36),(1923,6,3,30,54),(1924,6,4,30,72),(1925,6,5,30,90),(1926,6,6,30,108),(1927,6,7,30,126),(1928,6,8,30,144),(1929,6,9,30,162),(1930,6,10,30,180),(1931,6,11,30,198),(1932,6,12,30,216),(1933,6,13,30,234),(1934,6,14,30,252),(1935,6,15,30,270),(1936,6,16,30,288),(1937,6,17,30,306),(1938,6,18,30,324),(1939,6,19,30,342),(1940,6,20,30,360),(1941,6,21,30,378),(1942,6,22,30,396),(1943,6,23,30,414),(1944,6,24,30,432),(1945,7,1,30,3),(1946,7,2,30,21),(1947,7,3,30,39),(1948,7,4,30,57),(1949,7,5,30,75),(1950,7,6,30,93),(1951,7,7,30,111),(1952,7,8,30,129),(1953,7,9,30,147),(1954,7,10,30,165),(1955,7,11,30,183),(1956,7,12,30,201),(1957,7,13,30,219),(1958,7,14,30,237),(1959,7,15,30,255),(1960,7,16,30,273),(1961,7,17,30,291),(1962,7,18,30,309),(1963,7,19,30,327),(1964,7,20,30,345),(1965,7,21,30,363),(1966,7,22,30,381),(1967,7,23,30,399),(1968,7,24,30,417),(1969,7,1,30,4),(1970,7,2,30,22),(1971,7,3,30,40),(1972,7,4,30,58),(1973,7,5,30,76),(1974,7,6,30,94),(1975,7,7,30,112),(1976,7,8,30,130),(1977,7,9,30,148),(1978,7,10,30,166),(1979,7,11,30,184),(1980,7,12,30,202),(1981,7,13,30,220),(1982,7,14,30,238),(1983,7,15,30,256),(1984,7,16,30,274),(1985,7,17,30,292),(1986,7,18,30,310),(1987,7,19,30,328),(1988,7,20,30,346),(1989,7,21,30,364),(1990,7,22,30,382),(1991,7,23,30,400),(1992,7,24,30,418),(1993,7,1,30,5),(1994,7,2,30,23),(1995,7,3,30,41),(1996,7,4,30,59),(1997,7,5,30,77),(1998,7,6,30,95),(1999,7,7,30,113),(2000,7,8,30,131),(2001,7,9,30,149),(2002,7,10,30,167),(2003,7,11,30,185),(2004,7,12,30,203),(2005,7,13,30,221),(2006,7,14,30,239),(2007,7,15,30,257),(2008,7,16,30,275),(2009,7,17,30,293),(2010,7,18,30,311),(2011,7,19,30,329),(2012,7,20,30,347),(2013,7,21,30,365),(2014,7,22,30,383),(2015,7,23,30,401),(2016,7,24,30,419),(2017,7,1,30,7),(2018,7,2,30,25),(2019,7,3,30,43),(2020,7,4,30,61),(2021,7,5,30,79),(2022,7,6,30,97),(2023,7,7,30,115),(2024,7,8,30,133),(2025,7,9,30,151),(2026,7,10,30,169),(2027,7,11,30,187),(2028,7,12,30,205),(2029,7,13,30,223),(2030,7,14,30,241),(2031,7,15,30,259),(2032,7,16,30,277),(2033,7,17,30,295),(2034,7,18,30,313),(2035,7,19,30,331),(2036,7,20,30,349),(2037,7,21,30,367),(2038,7,22,30,385),(2039,7,23,30,403),(2040,7,24,30,421),(2041,7,1,30,9),(2042,7,2,30,27),(2043,7,3,30,45),(2044,7,4,30,63),(2045,7,5,30,81),(2046,7,6,30,99),(2047,7,7,30,117),(2048,7,8,30,135),(2049,7,9,30,153),(2050,7,10,30,171),(2051,7,11,30,189),(2052,7,12,30,207),(2053,7,13,30,225),(2054,7,14,30,243),(2055,7,15,30,261),(2056,7,16,30,279),(2057,7,17,30,297),(2058,7,18,30,315),(2059,7,19,30,333),(2060,7,20,30,351),(2061,7,21,30,369),(2062,7,22,30,387),(2063,7,23,30,405),(2064,7,24,30,423),(2065,7,1,30,10),(2066,7,2,30,28),(2067,7,3,30,46),(2068,7,4,30,64),(2069,7,5,30,82),(2070,7,6,30,100),(2071,7,7,30,118),(2072,7,8,30,136),(2073,7,9,30,154),(2074,7,10,30,172),(2075,7,11,30,190),(2076,7,12,30,208),(2077,7,13,30,226),(2078,7,14,30,244),(2079,7,15,30,262),(2080,7,16,30,280),(2081,7,17,30,298),(2082,7,18,30,316),(2083,7,19,30,334),(2084,7,20,30,352),(2085,7,21,30,370),(2086,7,22,30,388),(2087,7,23,30,406),(2088,7,24,30,424),(2089,7,1,30,14),(2090,7,2,30,32),(2091,7,3,30,50),(2092,7,4,30,68),(2093,7,5,30,86),(2094,7,6,30,104),(2095,7,7,30,122),(2096,7,8,30,140),(2097,7,9,30,158),(2098,7,10,30,176),(2099,7,11,30,194),(2100,7,12,30,212),(2101,7,13,30,230),(2102,7,14,30,248),(2103,7,15,30,266),(2104,7,16,30,284),(2105,7,17,30,302),(2106,7,18,30,320),(2107,7,19,30,338),(2108,7,20,30,356),(2109,7,21,30,374),(2110,7,22,30,392),(2111,7,23,30,410),(2112,7,24,30,428),(2113,7,1,30,16),(2114,7,2,30,34),(2115,7,3,30,52),(2116,7,4,30,70),(2117,7,5,30,88),(2118,7,6,30,106),(2119,7,7,30,124),(2120,7,8,30,142),(2121,7,9,30,160),(2122,7,10,30,178),(2123,7,11,30,196),(2124,7,12,30,214),(2125,7,13,30,232),(2126,7,14,30,250),(2127,7,15,30,268),(2128,7,16,30,286),(2129,7,17,30,304),(2130,7,18,30,322),(2131,7,19,30,340),(2132,7,20,30,358),(2133,7,21,30,376),(2134,7,22,30,394),(2135,7,23,30,412),(2136,7,24,30,430),(2137,7,1,30,18),(2138,7,2,30,36),(2139,7,3,30,54),(2140,7,4,30,72),(2141,7,5,30,90),(2142,7,6,30,108),(2143,7,7,30,126),(2144,7,8,30,144),(2145,7,9,30,162),(2146,7,10,30,180),(2147,7,11,30,198),(2148,7,12,30,216),(2149,7,13,30,234),(2150,7,14,30,252),(2151,7,15,30,270),(2152,7,16,30,288),(2153,7,17,30,306),(2154,7,18,30,324),(2155,7,19,30,342),(2156,7,20,30,360),(2157,7,21,30,378),(2158,7,22,30,396),(2159,7,23,30,414),(2160,7,24,30,432),(2161,8,1,30,2),(2162,8,2,30,20),(2163,8,3,30,38),(2164,8,4,30,56),(2165,8,5,30,74),(2166,8,6,30,92),(2167,8,7,30,110),(2168,8,8,30,128),(2169,8,9,30,146),(2170,8,10,30,164),(2171,8,11,30,182),(2172,8,12,30,200),(2173,8,13,30,218),(2174,8,14,30,236),(2175,8,15,30,254),(2176,8,16,30,272),(2177,8,17,30,290),(2178,8,18,30,308),(2179,8,19,30,326),(2180,8,20,30,344),(2181,8,21,30,362),(2182,8,22,30,380),(2183,8,23,30,398),(2184,8,24,30,416),(2185,8,1,30,3),(2186,8,2,30,21),(2187,8,3,30,39),(2188,8,4,30,57),(2189,8,5,30,75),(2190,8,6,30,93),(2191,8,7,30,111),(2192,8,8,30,129),(2193,8,9,30,147),(2194,8,10,30,165),(2195,8,11,30,183),(2196,8,12,30,201),(2197,8,13,30,219),(2198,8,14,30,237),(2199,8,15,30,255),(2200,8,16,30,273),(2201,8,17,30,291),(2202,8,18,30,309),(2203,8,19,30,327),(2204,8,20,30,345),(2205,8,21,30,363),(2206,8,22,30,381),(2207,8,23,30,399),(2208,8,24,30,417),(2209,8,1,30,6),(2210,8,2,30,24),(2211,8,3,30,42),(2212,8,4,30,60),(2213,8,5,30,78),(2214,8,6,30,96),(2215,8,7,30,114),(2216,8,8,30,132),(2217,8,9,30,150),(2218,8,10,30,168),(2219,8,11,30,186),(2220,8,12,30,204),(2221,8,13,30,222),(2222,8,14,30,240),(2223,8,15,30,258),(2224,8,16,30,276),(2225,8,17,30,294),(2226,8,18,30,312),(2227,8,19,30,330),(2228,8,20,30,348),(2229,8,21,30,366),(2230,8,22,30,384),(2231,8,23,30,402),(2232,8,24,30,420),(2233,8,1,30,9),(2234,8,2,30,27),(2235,8,3,30,45),(2236,8,4,30,63),(2237,8,5,30,81),(2238,8,6,30,99),(2239,8,7,30,117),(2240,8,8,30,135),(2241,8,9,30,153),(2242,8,10,30,171),(2243,8,11,30,189),(2244,8,12,30,207),(2245,8,13,30,225),(2246,8,14,30,243),(2247,8,15,30,261),(2248,8,16,30,279),(2249,8,17,30,297),(2250,8,18,30,315),(2251,8,19,30,333),(2252,8,20,30,351),(2253,8,21,30,369),(2254,8,22,30,387),(2255,8,23,30,405),(2256,8,24,30,423),(2257,8,1,30,11),(2258,8,2,30,29),(2259,8,3,30,47),(2260,8,4,30,65),(2261,8,5,30,83),(2262,8,6,30,101),(2263,8,7,30,119),(2264,8,8,30,137),(2265,8,9,30,155),(2266,8,10,30,173),(2267,8,11,30,191),(2268,8,12,30,209),(2269,8,13,30,227),(2270,8,14,30,245),(2271,8,15,30,263),(2272,8,16,30,281),(2273,8,17,30,299),(2274,8,18,30,317),(2275,8,19,30,335),(2276,8,20,30,353),(2277,8,21,30,371),(2278,8,22,30,389),(2279,8,23,30,407),(2280,8,24,30,425),(2281,8,1,30,12),(2282,8,2,30,30),(2283,8,3,30,48),(2284,8,4,30,66),(2285,8,5,30,84),(2286,8,6,30,102),(2287,8,7,30,120),(2288,8,8,30,138),(2289,8,9,30,156),(2290,8,10,30,174),(2291,8,11,30,192),(2292,8,12,30,210),(2293,8,13,30,228),(2294,8,14,30,246),(2295,8,15,30,264),(2296,8,16,30,282),(2297,8,17,30,300),(2298,8,18,30,318),(2299,8,19,30,336),(2300,8,20,30,354),(2301,8,21,30,372),(2302,8,22,30,390),(2303,8,23,30,408),(2304,8,24,30,426),(2305,8,1,30,16),(2306,8,2,30,34),(2307,8,3,30,52),(2308,8,4,30,70),(2309,8,5,30,88),(2310,8,6,30,106),(2311,8,7,30,124),(2312,8,8,30,142),(2313,8,9,30,160),(2314,8,10,30,178),(2315,8,11,30,196),(2316,8,12,30,214),(2317,8,13,30,232),(2318,8,14,30,250),(2319,8,15,30,268),(2320,8,16,30,286),(2321,8,17,30,304),(2322,8,18,30,322),(2323,8,19,30,340),(2324,8,20,30,358),(2325,8,21,30,376),(2326,8,22,30,394),(2327,8,23,30,412),(2328,8,24,30,430),(2329,8,1,30,17),(2330,8,2,30,35),(2331,8,3,30,53),(2332,8,4,30,71),(2333,8,5,30,89),(2334,8,6,30,107),(2335,8,7,30,125),(2336,8,8,30,143),(2337,8,9,30,161),(2338,8,10,30,179),(2339,8,11,30,197),(2340,8,12,30,215),(2341,8,13,30,233),(2342,8,14,30,251),(2343,8,15,30,269),(2344,8,16,30,287),(2345,8,17,30,305),(2346,8,18,30,323),(2347,8,19,30,341),(2348,8,20,30,359),(2349,8,21,30,377),(2350,8,22,30,395),(2351,8,23,30,413),(2352,8,24,30,431),(2353,8,1,30,18),(2354,8,2,30,36),(2355,8,3,30,54),(2356,8,4,30,72),(2357,8,5,30,90),(2358,8,6,30,108),(2359,8,7,30,126),(2360,8,8,30,144),(2361,8,9,30,162),(2362,8,10,30,180),(2363,8,11,30,198),(2364,8,12,30,216),(2365,8,13,30,234),(2366,8,14,30,252),(2367,8,15,30,270),(2368,8,16,30,288),(2369,8,17,30,306),(2370,8,18,30,324),(2371,8,19,30,342),(2372,8,20,30,360),(2373,8,21,30,378),(2374,8,22,30,396),(2375,8,23,30,414),(2376,8,24,30,432),(2377,9,1,30,3),(2378,9,2,30,21),(2379,9,3,30,39),(2380,9,4,30,57),(2381,9,5,30,75),(2382,9,6,30,93),(2383,9,7,30,111),(2384,9,8,30,129),(2385,9,9,30,147),(2386,9,10,30,165),(2387,9,11,30,183),(2388,9,12,30,201),(2389,9,13,30,219),(2390,9,14,30,237),(2391,9,15,30,255),(2392,9,16,30,273),(2393,9,17,30,291),(2394,9,18,30,309),(2395,9,19,30,327),(2396,9,20,30,345),(2397,9,21,30,363),(2398,9,22,30,381),(2399,9,23,30,399),(2400,9,24,30,417),(2401,9,1,30,4),(2402,9,2,30,22),(2403,9,3,30,40),(2404,9,4,30,58),(2405,9,5,30,76),(2406,9,6,30,94),(2407,9,7,30,112),(2408,9,8,30,130),(2409,9,9,30,148),(2410,9,10,30,166),(2411,9,11,30,184),(2412,9,12,30,202),(2413,9,13,30,220),(2414,9,14,30,238),(2415,9,15,30,256),(2416,9,16,30,274),(2417,9,17,30,292),(2418,9,18,30,310),(2419,9,19,30,328),(2420,9,20,30,346),(2421,9,21,30,364),(2422,9,22,30,382),(2423,9,23,30,400),(2424,9,24,30,418),(2425,9,1,30,6),(2426,9,2,30,24),(2427,9,3,30,42),(2428,9,4,30,60),(2429,9,5,30,78),(2430,9,6,30,96),(2431,9,7,30,114),(2432,9,8,30,132),(2433,9,9,30,150),(2434,9,10,30,168),(2435,9,11,30,186),(2436,9,12,30,204),(2437,9,13,30,222),(2438,9,14,30,240),(2439,9,15,30,258),(2440,9,16,30,276),(2441,9,17,30,294),(2442,9,18,30,312),(2443,9,19,30,330),(2444,9,20,30,348),(2445,9,21,30,366),(2446,9,22,30,384),(2447,9,23,30,402),(2448,9,24,30,420),(2449,9,1,30,8),(2450,9,2,30,26),(2451,9,3,30,44),(2452,9,4,30,62),(2453,9,5,30,80),(2454,9,6,30,98),(2455,9,7,30,116),(2456,9,8,30,134),(2457,9,9,30,152),(2458,9,10,30,170),(2459,9,11,30,188),(2460,9,12,30,206),(2461,9,13,30,224),(2462,9,14,30,242),(2463,9,15,30,260),(2464,9,16,30,278),(2465,9,17,30,296),(2466,9,18,30,314),(2467,9,19,30,332),(2468,9,20,30,350),(2469,9,21,30,368),(2470,9,22,30,386),(2471,9,23,30,404),(2472,9,24,30,422),(2473,9,1,30,11),(2474,9,2,30,29),(2475,9,3,30,47),(2476,9,4,30,65),(2477,9,5,30,83),(2478,9,6,30,101),(2479,9,7,30,119),(2480,9,8,30,137),(2481,9,9,30,155),(2482,9,10,30,173),(2483,9,11,30,191),(2484,9,12,30,209),(2485,9,13,30,227),(2486,9,14,30,245),(2487,9,15,30,263),(2488,9,16,30,281),(2489,9,17,30,299),(2490,9,18,30,317),(2491,9,19,30,335),(2492,9,20,30,353),(2493,9,21,30,371),(2494,9,22,30,389),(2495,9,23,30,407),(2496,9,24,30,425),(2497,9,1,30,12),(2498,9,2,30,30),(2499,9,3,30,48),(2500,9,4,30,66),(2501,9,5,30,84),(2502,9,6,30,102),(2503,9,7,30,120),(2504,9,8,30,138),(2505,9,9,30,156),(2506,9,10,30,174),(2507,9,11,30,192),(2508,9,12,30,210),(2509,9,13,30,228),(2510,9,14,30,246),(2511,9,15,30,264),(2512,9,16,30,282),(2513,9,17,30,300),(2514,9,18,30,318),(2515,9,19,30,336),(2516,9,20,30,354),(2517,9,21,30,372),(2518,9,22,30,390),(2519,9,23,30,408),(2520,9,24,30,426),(2521,9,1,30,15),(2522,9,2,30,33),(2523,9,3,30,51),(2524,9,4,30,69),(2525,9,5,30,87),(2526,9,6,30,105),(2527,9,7,30,123),(2528,9,8,30,141),(2529,9,9,30,159),(2530,9,10,30,177),(2531,9,11,30,195),(2532,9,12,30,213),(2533,9,13,30,231),(2534,9,14,30,249),(2535,9,15,30,267),(2536,9,16,30,285),(2537,9,17,30,303),(2538,9,18,30,321),(2539,9,19,30,339),(2540,9,20,30,357),(2541,9,21,30,375),(2542,9,22,30,393),(2543,9,23,30,411),(2544,9,24,30,429),(2545,9,1,30,16),(2546,9,2,30,34),(2547,9,3,30,52),(2548,9,4,30,70),(2549,9,5,30,88),(2550,9,6,30,106),(2551,9,7,30,124),(2552,9,8,30,142),(2553,9,9,30,160),(2554,9,10,30,178),(2555,9,11,30,196),(2556,9,12,30,214),(2557,9,13,30,232),(2558,9,14,30,250),(2559,9,15,30,268),(2560,9,16,30,286),(2561,9,17,30,304),(2562,9,18,30,322),(2563,9,19,30,340),(2564,9,20,30,358),(2565,9,21,30,376),(2566,9,22,30,394),(2567,9,23,30,412),(2568,9,24,30,430),(2569,9,1,30,17),(2570,9,2,30,35),(2571,9,3,30,53),(2572,9,4,30,71),(2573,9,5,30,89),(2574,9,6,30,107),(2575,9,7,30,125),(2576,9,8,30,143),(2577,9,9,30,161),(2578,9,10,30,179),(2579,9,11,30,197),(2580,9,12,30,215),(2581,9,13,30,233),(2582,9,14,30,251),(2583,9,15,30,269),(2584,9,16,30,287),(2585,9,17,30,305),(2586,9,18,30,323),(2587,9,19,30,341),(2588,9,20,30,359),(2589,9,21,30,377),(2590,9,22,30,395),(2591,9,23,30,413),(2592,9,24,30,431),(2593,10,1,30,2),(2594,10,2,30,20),(2595,10,3,30,38),(2596,10,4,30,56),(2597,10,5,30,74),(2598,10,6,30,92),(2599,10,7,30,110),(2600,10,8,30,128),(2601,10,9,30,146),(2602,10,10,30,164),(2603,10,11,30,182),(2604,10,12,30,200),(2605,10,13,30,218),(2606,10,14,30,236),(2607,10,15,30,254),(2608,10,16,30,272),(2609,10,17,30,290),(2610,10,18,30,308),(2611,10,19,30,326),(2612,10,20,30,344),(2613,10,21,30,362),(2614,10,22,30,380),(2615,10,23,30,398),(2616,10,24,30,416),(2617,10,1,30,4),(2618,10,2,30,22),(2619,10,3,30,40),(2620,10,4,30,58),(2621,10,5,30,76),(2622,10,6,30,94),(2623,10,7,30,112),(2624,10,8,30,130),(2625,10,9,30,148),(2626,10,10,30,166),(2627,10,11,30,184),(2628,10,12,30,202),(2629,10,13,30,220),(2630,10,14,30,238),(2631,10,15,30,256),(2632,10,16,30,274),(2633,10,17,30,292),(2634,10,18,30,310),(2635,10,19,30,328),(2636,10,20,30,346),(2637,10,21,30,364),(2638,10,22,30,382),(2639,10,23,30,400),(2640,10,24,30,418),(2641,10,1,30,6),(2642,10,2,30,24),(2643,10,3,30,42),(2644,10,4,30,60),(2645,10,5,30,78),(2646,10,6,30,96),(2647,10,7,30,114),(2648,10,8,30,132),(2649,10,9,30,150),(2650,10,10,30,168),(2651,10,11,30,186),(2652,10,12,30,204),(2653,10,13,30,222),(2654,10,14,30,240),(2655,10,15,30,258),(2656,10,16,30,276),(2657,10,17,30,294),(2658,10,18,30,312),(2659,10,19,30,330),(2660,10,20,30,348),(2661,10,21,30,366),(2662,10,22,30,384),(2663,10,23,30,402),(2664,10,24,30,420),(2665,10,1,30,9),(2666,10,2,30,27),(2667,10,3,30,45),(2668,10,4,30,63),(2669,10,5,30,81),(2670,10,6,30,99),(2671,10,7,30,117),(2672,10,8,30,135),(2673,10,9,30,153),(2674,10,10,30,171),(2675,10,11,30,189),(2676,10,12,30,207),(2677,10,13,30,225),(2678,10,14,30,243),(2679,10,15,30,261),(2680,10,16,30,279),(2681,10,17,30,297),(2682,10,18,30,315),(2683,10,19,30,333),(2684,10,20,30,351),(2685,10,21,30,369),(2686,10,22,30,387),(2687,10,23,30,405),(2688,10,24,30,423),(2689,10,1,30,10),(2690,10,2,30,28),(2691,10,3,30,46),(2692,10,4,30,64),(2693,10,5,30,82),(2694,10,6,30,100),(2695,10,7,30,118),(2696,10,8,30,136),(2697,10,9,30,154),(2698,10,10,30,172),(2699,10,11,30,190),(2700,10,12,30,208),(2701,10,13,30,226),(2702,10,14,30,244),(2703,10,15,30,262),(2704,10,16,30,280),(2705,10,17,30,298),(2706,10,18,30,316),(2707,10,19,30,334),(2708,10,20,30,352),(2709,10,21,30,370),(2710,10,22,30,388),(2711,10,23,30,406),(2712,10,24,30,424),(2713,10,1,30,12),(2714,10,2,30,30),(2715,10,3,30,48),(2716,10,4,30,66),(2717,10,5,30,84),(2718,10,6,30,102),(2719,10,7,30,120),(2720,10,8,30,138),(2721,10,9,30,156),(2722,10,10,30,174),(2723,10,11,30,192),(2724,10,12,30,210),(2725,10,13,30,228),(2726,10,14,30,246),(2727,10,15,30,264),(2728,10,16,30,282),(2729,10,17,30,300),(2730,10,18,30,318),(2731,10,19,30,336),(2732,10,20,30,354),(2733,10,21,30,372),(2734,10,22,30,390),(2735,10,23,30,408),(2736,10,24,30,426),(2737,10,1,30,13),(2738,10,2,30,31),(2739,10,3,30,49),(2740,10,4,30,67),(2741,10,5,30,85),(2742,10,6,30,103),(2743,10,7,30,121),(2744,10,8,30,139),(2745,10,9,30,157),(2746,10,10,30,175),(2747,10,11,30,193),(2748,10,12,30,211),(2749,10,13,30,229),(2750,10,14,30,247),(2751,10,15,30,265),(2752,10,16,30,283),(2753,10,17,30,301),(2754,10,18,30,319),(2755,10,19,30,337),(2756,10,20,30,355),(2757,10,21,30,373),(2758,10,22,30,391),(2759,10,23,30,409),(2760,10,24,30,427),(2761,10,1,30,15),(2762,10,2,30,33),(2763,10,3,30,51),(2764,10,4,30,69),(2765,10,5,30,87),(2766,10,6,30,105),(2767,10,7,30,123),(2768,10,8,30,141),(2769,10,9,30,159),(2770,10,10,30,177),(2771,10,11,30,195),(2772,10,12,30,213),(2773,10,13,30,231),(2774,10,14,30,249),(2775,10,15,30,267),(2776,10,16,30,285),(2777,10,17,30,303),(2778,10,18,30,321),(2779,10,19,30,339),(2780,10,20,30,357),(2781,10,21,30,375),(2782,10,22,30,393),(2783,10,23,30,411),(2784,10,24,30,429),(2785,10,1,30,16),(2786,10,2,30,34),(2787,10,3,30,52),(2788,10,4,30,70),(2789,10,5,30,88),(2790,10,6,30,106),(2791,10,7,30,124),(2792,10,8,30,142),(2793,10,9,30,160),(2794,10,10,30,178),(2795,10,11,30,196),(2796,10,12,30,214),(2797,10,13,30,232),(2798,10,14,30,250),(2799,10,15,30,268),(2800,10,16,30,286),(2801,10,17,30,304),(2802,10,18,30,322),(2803,10,19,30,340),(2804,10,20,30,358),(2805,10,21,30,376),(2806,10,22,30,394),(2807,10,23,30,412),(2808,10,24,30,430),(2809,11,1,30,3),(2810,11,2,30,21),(2811,11,3,30,39),(2812,11,4,30,57),(2813,11,5,30,75),(2814,11,6,30,93),(2815,11,7,30,111),(2816,11,8,30,129),(2817,11,9,30,147),(2818,11,10,30,165),(2819,11,11,30,183),(2820,11,12,30,201),(2821,11,13,30,219),(2822,11,14,30,237),(2823,11,15,30,255),(2824,11,16,30,273),(2825,11,17,30,291),(2826,11,18,30,309),(2827,11,19,30,327),(2828,11,20,30,345),(2829,11,21,30,363),(2830,11,22,30,381),(2831,11,23,30,399),(2832,11,24,30,417),(2833,11,1,30,5),(2834,11,2,30,23),(2835,11,3,30,41),(2836,11,4,30,59),(2837,11,5,30,77),(2838,11,6,30,95),(2839,11,7,30,113),(2840,11,8,30,131),(2841,11,9,30,149),(2842,11,10,30,167),(2843,11,11,30,185),(2844,11,12,30,203),(2845,11,13,30,221),(2846,11,14,30,239),(2847,11,15,30,257),(2848,11,16,30,275),(2849,11,17,30,293),(2850,11,18,30,311),(2851,11,19,30,329),(2852,11,20,30,347),(2853,11,21,30,365),(2854,11,22,30,383),(2855,11,23,30,401),(2856,11,24,30,419),(2857,11,1,30,6),(2858,11,2,30,24),(2859,11,3,30,42),(2860,11,4,30,60),(2861,11,5,30,78),(2862,11,6,30,96),(2863,11,7,30,114),(2864,11,8,30,132),(2865,11,9,30,150),(2866,11,10,30,168),(2867,11,11,30,186),(2868,11,12,30,204),(2869,11,13,30,222),(2870,11,14,30,240),(2871,11,15,30,258),(2872,11,16,30,276),(2873,11,17,30,294),(2874,11,18,30,312),(2875,11,19,30,330),(2876,11,20,30,348),(2877,11,21,30,366),(2878,11,22,30,384),(2879,11,23,30,402),(2880,11,24,30,420),(2881,11,1,30,8),(2882,11,2,30,26),(2883,11,3,30,44),(2884,11,4,30,62),(2885,11,5,30,80),(2886,11,6,30,98),(2887,11,7,30,116),(2888,11,8,30,134),(2889,11,9,30,152),(2890,11,10,30,170),(2891,11,11,30,188),(2892,11,12,30,206),(2893,11,13,30,224),(2894,11,14,30,242),(2895,11,15,30,260),(2896,11,16,30,278),(2897,11,17,30,296),(2898,11,18,30,314),(2899,11,19,30,332),(2900,11,20,30,350),(2901,11,21,30,368),(2902,11,22,30,386),(2903,11,23,30,404),(2904,11,24,30,422),(2905,11,1,30,9),(2906,11,2,30,27),(2907,11,3,30,45),(2908,11,4,30,63),(2909,11,5,30,81),(2910,11,6,30,99),(2911,11,7,30,117),(2912,11,8,30,135),(2913,11,9,30,153),(2914,11,10,30,171),(2915,11,11,30,189),(2916,11,12,30,207),(2917,11,13,30,225),(2918,11,14,30,243),(2919,11,15,30,261),(2920,11,16,30,279),(2921,11,17,30,297),(2922,11,18,30,315),(2923,11,19,30,333),(2924,11,20,30,351),(2925,11,21,30,369),(2926,11,22,30,387),(2927,11,23,30,405),(2928,11,24,30,423),(2929,11,1,30,12),(2930,11,2,30,30),(2931,11,3,30,48),(2932,11,4,30,66),(2933,11,5,30,84),(2934,11,6,30,102),(2935,11,7,30,120),(2936,11,8,30,138),(2937,11,9,30,156),(2938,11,10,30,174),(2939,11,11,30,192),(2940,11,12,30,210),(2941,11,13,30,228),(2942,11,14,30,246),(2943,11,15,30,264),(2944,11,16,30,282),(2945,11,17,30,300),(2946,11,18,30,318),(2947,11,19,30,336),(2948,11,20,30,354),(2949,11,21,30,372),(2950,11,22,30,390),(2951,11,23,30,408),(2952,11,24,30,426),(2953,11,1,30,16),(2954,11,2,30,34),(2955,11,3,30,52),(2956,11,4,30,70),(2957,11,5,30,88),(2958,11,6,30,106),(2959,11,7,30,124),(2960,11,8,30,142),(2961,11,9,30,160),(2962,11,10,30,178),(2963,11,11,30,196),(2964,11,12,30,214),(2965,11,13,30,232),(2966,11,14,30,250),(2967,11,15,30,268),(2968,11,16,30,286),(2969,11,17,30,304),(2970,11,18,30,322),(2971,11,19,30,340),(2972,11,20,30,358),(2973,11,21,30,376),(2974,11,22,30,394),(2975,11,23,30,412),(2976,11,24,30,430),(2977,11,1,30,17),(2978,11,2,30,35),(2979,11,3,30,53),(2980,11,4,30,71),(2981,11,5,30,89),(2982,11,6,30,107),(2983,11,7,30,125),(2984,11,8,30,143),(2985,11,9,30,161),(2986,11,10,30,179),(2987,11,11,30,197),(2988,11,12,30,215),(2989,11,13,30,233),(2990,11,14,30,251),(2991,11,15,30,269),(2992,11,16,30,287),(2993,11,17,30,305),(2994,11,18,30,323),(2995,11,19,30,341),(2996,11,20,30,359),(2997,11,21,30,377),(2998,11,22,30,395),(2999,11,23,30,413),(3000,11,24,30,431),(3001,11,1,30,18),(3002,11,2,30,36),(3003,11,3,30,54),(3004,11,4,30,72),(3005,11,5,30,90),(3006,11,6,30,108),(3007,11,7,30,126),(3008,11,8,30,144),(3009,11,9,30,162),(3010,11,10,30,180),(3011,11,11,30,198),(3012,11,12,30,216),(3013,11,13,30,234),(3014,11,14,30,252),(3015,11,15,30,270),(3016,11,16,30,288),(3017,11,17,30,306),(3018,11,18,30,324),(3019,11,19,30,342),(3020,11,20,30,360),(3021,11,21,30,378),(3022,11,22,30,396),(3023,11,23,30,414),(3024,11,24,30,432),(3025,12,1,30,3),(3026,12,2,30,21),(3027,12,3,30,39),(3028,12,4,30,57),(3029,12,5,30,75),(3030,12,6,30,93),(3031,12,7,30,111),(3032,12,8,30,129),(3033,12,9,30,147),(3034,12,10,30,165),(3035,12,11,30,183),(3036,12,12,30,201),(3037,12,13,30,219),(3038,12,14,30,237),(3039,12,15,30,255),(3040,12,16,30,273),(3041,12,17,30,291),(3042,12,18,30,309),(3043,12,19,30,327),(3044,12,20,30,345),(3045,12,21,30,363),(3046,12,22,30,381),(3047,12,23,30,399),(3048,12,24,30,417),(3049,12,1,30,4),(3050,12,2,30,22),(3051,12,3,30,40),(3052,12,4,30,58),(3053,12,5,30,76),(3054,12,6,30,94),(3055,12,7,30,112),(3056,12,8,30,130),(3057,12,9,30,148),(3058,12,10,30,166),(3059,12,11,30,184),(3060,12,12,30,202),(3061,12,13,30,220),(3062,12,14,30,238),(3063,12,15,30,256),(3064,12,16,30,274),(3065,12,17,30,292),(3066,12,18,30,310),(3067,12,19,30,328),(3068,12,20,30,346),(3069,12,21,30,364),(3070,12,22,30,382),(3071,12,23,30,400),(3072,12,24,30,418),(3073,12,1,30,5),(3074,12,2,30,23),(3075,12,3,30,41),(3076,12,4,30,59),(3077,12,5,30,77),(3078,12,6,30,95),(3079,12,7,30,113),(3080,12,8,30,131),(3081,12,9,30,149),(3082,12,10,30,167),(3083,12,11,30,185),(3084,12,12,30,203),(3085,12,13,30,221),(3086,12,14,30,239),(3087,12,15,30,257),(3088,12,16,30,275),(3089,12,17,30,293),(3090,12,18,30,311),(3091,12,19,30,329),(3092,12,20,30,347),(3093,12,21,30,365),(3094,12,22,30,383),(3095,12,23,30,401),(3096,12,24,30,419),(3097,12,1,30,9),(3098,12,2,30,27),(3099,12,3,30,45),(3100,12,4,30,63),(3101,12,5,30,81),(3102,12,6,30,99),(3103,12,7,30,117),(3104,12,8,30,135),(3105,12,9,30,153),(3106,12,10,30,171),(3107,12,11,30,189),(3108,12,12,30,207),(3109,12,13,30,225),(3110,12,14,30,243),(3111,12,15,30,261),(3112,12,16,30,279),(3113,12,17,30,297),(3114,12,18,30,315),(3115,12,19,30,333),(3116,12,20,30,351),(3117,12,21,30,369),(3118,12,22,30,387),(3119,12,23,30,405),(3120,12,24,30,423),(3121,12,1,30,11),(3122,12,2,30,29),(3123,12,3,30,47),(3124,12,4,30,65),(3125,12,5,30,83),(3126,12,6,30,101),(3127,12,7,30,119),(3128,12,8,30,137),(3129,12,9,30,155),(3130,12,10,30,173),(3131,12,11,30,191),(3132,12,12,30,209),(3133,12,13,30,227),(3134,12,14,30,245),(3135,12,15,30,263),(3136,12,16,30,281),(3137,12,17,30,299),(3138,12,18,30,317),(3139,12,19,30,335),(3140,12,20,30,353),(3141,12,21,30,371),(3142,12,22,30,389),(3143,12,23,30,407),(3144,12,24,30,425),(3145,12,1,30,12),(3146,12,2,30,30),(3147,12,3,30,48),(3148,12,4,30,66),(3149,12,5,30,84),(3150,12,6,30,102),(3151,12,7,30,120),(3152,12,8,30,138),(3153,12,9,30,156),(3154,12,10,30,174),(3155,12,11,30,192),(3156,12,12,30,210),(3157,12,13,30,228),(3158,12,14,30,246),(3159,12,15,30,264),(3160,12,16,30,282),(3161,12,17,30,300),(3162,12,18,30,318),(3163,12,19,30,336),(3164,12,20,30,354),(3165,12,21,30,372),(3166,12,22,30,390),(3167,12,23,30,408),(3168,12,24,30,426),(3169,12,1,30,14),(3170,12,2,30,32),(3171,12,3,30,50),(3172,12,4,30,68),(3173,12,5,30,86),(3174,12,6,30,104),(3175,12,7,30,122),(3176,12,8,30,140),(3177,12,9,30,158),(3178,12,10,30,176),(3179,12,11,30,194),(3180,12,12,30,212),(3181,12,13,30,230),(3182,12,14,30,248),(3183,12,15,30,266),(3184,12,16,30,284),(3185,12,17,30,302),(3186,12,18,30,320),(3187,12,19,30,338),(3188,12,20,30,356),(3189,12,21,30,374),(3190,12,22,30,392),(3191,12,23,30,410),(3192,12,24,30,428),(3193,12,1,30,17),(3194,12,2,30,35),(3195,12,3,30,53),(3196,12,4,30,71),(3197,12,5,30,89),(3198,12,6,30,107),(3199,12,7,30,125),(3200,12,8,30,143),(3201,12,9,30,161),(3202,12,10,30,179),(3203,12,11,30,197),(3204,12,12,30,215),(3205,12,13,30,233),(3206,12,14,30,251),(3207,12,15,30,269),(3208,12,16,30,287),(3209,12,17,30,305),(3210,12,18,30,323),(3211,12,19,30,341),(3212,12,20,30,359),(3213,12,21,30,377),(3214,12,22,30,395),(3215,12,23,30,413),(3216,12,24,30,431),(3217,12,1,30,18),(3218,12,2,30,36),(3219,12,3,30,54),(3220,12,4,30,72),(3221,12,5,30,90),(3222,12,6,30,108),(3223,12,7,30,126),(3224,12,8,30,144),(3225,12,9,30,162),(3226,12,10,30,180),(3227,12,11,30,198),(3228,12,12,30,216),(3229,12,13,30,234),(3230,12,14,30,252),(3231,12,15,30,270),(3232,12,16,30,288),(3233,12,17,30,306),(3234,12,18,30,324),(3235,12,19,30,342),(3236,12,20,30,360),(3237,12,21,30,378),(3238,12,22,30,396),(3239,12,23,30,414),(3240,12,24,30,432),(3241,13,1,30,3),(3242,13,2,30,21),(3243,13,3,30,39),(3244,13,4,30,57),(3245,13,5,30,75),(3246,13,6,30,93),(3247,13,7,30,111),(3248,13,8,30,129),(3249,13,9,30,147),(3250,13,10,30,165),(3251,13,11,30,183),(3252,13,12,30,201),(3253,13,13,30,219),(3254,13,14,30,237),(3255,13,15,30,255),(3256,13,16,30,273),(3257,13,17,30,291),(3258,13,18,30,309),(3259,13,19,30,327),(3260,13,20,30,345),(3261,13,21,30,363),(3262,13,22,30,381),(3263,13,23,30,399),(3264,13,24,30,417),(3265,13,1,30,4),(3266,13,2,30,22),(3267,13,3,30,40),(3268,13,4,30,58),(3269,13,5,30,76),(3270,13,6,30,94),(3271,13,7,30,112),(3272,13,8,30,130),(3273,13,9,30,148),(3274,13,10,30,166),(3275,13,11,30,184),(3276,13,12,30,202),(3277,13,13,30,220),(3278,13,14,30,238),(3279,13,15,30,256),(3280,13,16,30,274),(3281,13,17,30,292),(3282,13,18,30,310),(3283,13,19,30,328),(3284,13,20,30,346),(3285,13,21,30,364),(3286,13,22,30,382),(3287,13,23,30,400),(3288,13,24,30,418),(3289,13,1,30,6),(3290,13,2,30,24),(3291,13,3,30,42),(3292,13,4,30,60),(3293,13,5,30,78),(3294,13,6,30,96),(3295,13,7,30,114),(3296,13,8,30,132),(3297,13,9,30,150),(3298,13,10,30,168),(3299,13,11,30,186),(3300,13,12,30,204),(3301,13,13,30,222),(3302,13,14,30,240),(3303,13,15,30,258),(3304,13,16,30,276),(3305,13,17,30,294),(3306,13,18,30,312),(3307,13,19,30,330),(3308,13,20,30,348),(3309,13,21,30,366),(3310,13,22,30,384),(3311,13,23,30,402),(3312,13,24,30,420),(3313,13,1,30,10),(3314,13,2,30,28),(3315,13,3,30,46),(3316,13,4,30,64),(3317,13,5,30,82),(3318,13,6,30,100),(3319,13,7,30,118),(3320,13,8,30,136),(3321,13,9,30,154),(3322,13,10,30,172),(3323,13,11,30,190),(3324,13,12,30,208),(3325,13,13,30,226),(3326,13,14,30,244),(3327,13,15,30,262),(3328,13,16,30,280),(3329,13,17,30,298),(3330,13,18,30,316),(3331,13,19,30,334),(3332,13,20,30,352),(3333,13,21,30,370),(3334,13,22,30,388),(3335,13,23,30,406),(3336,13,24,30,424),(3337,13,1,30,11),(3338,13,2,30,29),(3339,13,3,30,47),(3340,13,4,30,65),(3341,13,5,30,83),(3342,13,6,30,101),(3343,13,7,30,119),(3344,13,8,30,137),(3345,13,9,30,155),(3346,13,10,30,173),(3347,13,11,30,191),(3348,13,12,30,209),(3349,13,13,30,227),(3350,13,14,30,245),(3351,13,15,30,263),(3352,13,16,30,281),(3353,13,17,30,299),(3354,13,18,30,317),(3355,13,19,30,335),(3356,13,20,30,353),(3357,13,21,30,371),(3358,13,22,30,389),(3359,13,23,30,407),(3360,13,24,30,425),(3361,13,1,30,12),(3362,13,2,30,30),(3363,13,3,30,48),(3364,13,4,30,66),(3365,13,5,30,84),(3366,13,6,30,102),(3367,13,7,30,120),(3368,13,8,30,138),(3369,13,9,30,156),(3370,13,10,30,174),(3371,13,11,30,192),(3372,13,12,30,210),(3373,13,13,30,228),(3374,13,14,30,246),(3375,13,15,30,264),(3376,13,16,30,282),(3377,13,17,30,300),(3378,13,18,30,318),(3379,13,19,30,336),(3380,13,20,30,354),(3381,13,21,30,372),(3382,13,22,30,390),(3383,13,23,30,408),(3384,13,24,30,426),(3385,13,1,30,14),(3386,13,2,30,32),(3387,13,3,30,50),(3388,13,4,30,68),(3389,13,5,30,86),(3390,13,6,30,104),(3391,13,7,30,122),(3392,13,8,30,140),(3393,13,9,30,158),(3394,13,10,30,176),(3395,13,11,30,194),(3396,13,12,30,212),(3397,13,13,30,230),(3398,13,14,30,248),(3399,13,15,30,266),(3400,13,16,30,284),(3401,13,17,30,302),(3402,13,18,30,320),(3403,13,19,30,338),(3404,13,20,30,356),(3405,13,21,30,374),(3406,13,22,30,392),(3407,13,23,30,410),(3408,13,24,30,428),(3409,13,1,30,15),(3410,13,2,30,33),(3411,13,3,30,51),(3412,13,4,30,69),(3413,13,5,30,87),(3414,13,6,30,105),(3415,13,7,30,123),(3416,13,8,30,141),(3417,13,9,30,159),(3418,13,10,30,177),(3419,13,11,30,195),(3420,13,12,30,213),(3421,13,13,30,231),(3422,13,14,30,249),(3423,13,15,30,267),(3424,13,16,30,285),(3425,13,17,30,303),(3426,13,18,30,321),(3427,13,19,30,339),(3428,13,20,30,357),(3429,13,21,30,375),(3430,13,22,30,393),(3431,13,23,30,411),(3432,13,24,30,429),(3433,13,1,30,16),(3434,13,2,30,34),(3435,13,3,30,52),(3436,13,4,30,70),(3437,13,5,30,88),(3438,13,6,30,106),(3439,13,7,30,124),(3440,13,8,30,142),(3441,13,9,30,160),(3442,13,10,30,178),(3443,13,11,30,196),(3444,13,12,30,214),(3445,13,13,30,232),(3446,13,14,30,250),(3447,13,15,30,268),(3448,13,16,30,286),(3449,13,17,30,304),(3450,13,18,30,322),(3451,13,19,30,340),(3452,13,20,30,358),(3453,13,21,30,376),(3454,13,22,30,394),(3455,13,23,30,412),(3456,13,24,30,430),(3457,14,1,30,4),(3458,14,2,30,22),(3459,14,3,30,40),(3460,14,4,30,58),(3461,14,5,30,76),(3462,14,6,30,94),(3463,14,7,30,112),(3464,14,8,30,130),(3465,14,9,30,148),(3466,14,10,30,166),(3467,14,11,30,184),(3468,14,12,30,202),(3469,14,13,30,220),(3470,14,14,30,238),(3471,14,15,30,256),(3472,14,16,30,274),(3473,14,17,30,292),(3474,14,18,30,310),(3475,14,19,30,328),(3476,14,20,30,346),(3477,14,21,30,364),(3478,14,22,30,382),(3479,14,23,30,400),(3480,14,24,30,418),(3481,14,1,30,5),(3482,14,2,30,23),(3483,14,3,30,41),(3484,14,4,30,59),(3485,14,5,30,77),(3486,14,6,30,95),(3487,14,7,30,113),(3488,14,8,30,131),(3489,14,9,30,149),(3490,14,10,30,167),(3491,14,11,30,185),(3492,14,12,30,203),(3493,14,13,30,221),(3494,14,14,30,239),(3495,14,15,30,257),(3496,14,16,30,275),(3497,14,17,30,293),(3498,14,18,30,311),(3499,14,19,30,329),(3500,14,20,30,347),(3501,14,21,30,365),(3502,14,22,30,383),(3503,14,23,30,401),(3504,14,24,30,419),(3505,14,1,30,6),(3506,14,2,30,24),(3507,14,3,30,42),(3508,14,4,30,60),(3509,14,5,30,78),(3510,14,6,30,96),(3511,14,7,30,114),(3512,14,8,30,132),(3513,14,9,30,150),(3514,14,10,30,168),(3515,14,11,30,186),(3516,14,12,30,204),(3517,14,13,30,222),(3518,14,14,30,240),(3519,14,15,30,258),(3520,14,16,30,276),(3521,14,17,30,294),(3522,14,18,30,312),(3523,14,19,30,330),(3524,14,20,30,348),(3525,14,21,30,366),(3526,14,22,30,384),(3527,14,23,30,402),(3528,14,24,30,420),(3529,14,1,30,8),(3530,14,2,30,26),(3531,14,3,30,44),(3532,14,4,30,62),(3533,14,5,30,80),(3534,14,6,30,98),(3535,14,7,30,116),(3536,14,8,30,134),(3537,14,9,30,152),(3538,14,10,30,170),(3539,14,11,30,188),(3540,14,12,30,206),(3541,14,13,30,224),(3542,14,14,30,242),(3543,14,15,30,260),(3544,14,16,30,278),(3545,14,17,30,296),(3546,14,18,30,314),(3547,14,19,30,332),(3548,14,20,30,350),(3549,14,21,30,368),(3550,14,22,30,386),(3551,14,23,30,404),(3552,14,24,30,422),(3553,14,1,30,10),(3554,14,2,30,28),(3555,14,3,30,46),(3556,14,4,30,64),(3557,14,5,30,82),(3558,14,6,30,100),(3559,14,7,30,118),(3560,14,8,30,136),(3561,14,9,30,154),(3562,14,10,30,172),(3563,14,11,30,190),(3564,14,12,30,208),(3565,14,13,30,226),(3566,14,14,30,244),(3567,14,15,30,262),(3568,14,16,30,280),(3569,14,17,30,298),(3570,14,18,30,316),(3571,14,19,30,334),(3572,14,20,30,352),(3573,14,21,30,370),(3574,14,22,30,388),(3575,14,23,30,406),(3576,14,24,30,424),(3577,14,1,30,12),(3578,14,2,30,30),(3579,14,3,30,48),(3580,14,4,30,66),(3581,14,5,30,84),(3582,14,6,30,102),(3583,14,7,30,120),(3584,14,8,30,138),(3585,14,9,30,156),(3586,14,10,30,174),(3587,14,11,30,192),(3588,14,12,30,210),(3589,14,13,30,228),(3590,14,14,30,246),(3591,14,15,30,264),(3592,14,16,30,282),(3593,14,17,30,300),(3594,14,18,30,318),(3595,14,19,30,336),(3596,14,20,30,354),(3597,14,21,30,372),(3598,14,22,30,390),(3599,14,23,30,408),(3600,14,24,30,426),(3601,14,1,30,15),(3602,14,2,30,33),(3603,14,3,30,51),(3604,14,4,30,69),(3605,14,5,30,87),(3606,14,6,30,105),(3607,14,7,30,123),(3608,14,8,30,141),(3609,14,9,30,159),(3610,14,10,30,177),(3611,14,11,30,195),(3612,14,12,30,213),(3613,14,13,30,231),(3614,14,14,30,249),(3615,14,15,30,267),(3616,14,16,30,285),(3617,14,17,30,303),(3618,14,18,30,321),(3619,14,19,30,339),(3620,14,20,30,357),(3621,14,21,30,375),(3622,14,22,30,393),(3623,14,23,30,411),(3624,14,24,30,429),(3625,14,1,30,16),(3626,14,2,30,34),(3627,14,3,30,52),(3628,14,4,30,70),(3629,14,5,30,88),(3630,14,6,30,106),(3631,14,7,30,124),(3632,14,8,30,142),(3633,14,9,30,160),(3634,14,10,30,178),(3635,14,11,30,196),(3636,14,12,30,214),(3637,14,13,30,232),(3638,14,14,30,250),(3639,14,15,30,268),(3640,14,16,30,286),(3641,14,17,30,304),(3642,14,18,30,322),(3643,14,19,30,340),(3644,14,20,30,358),(3645,14,21,30,376),(3646,14,22,30,394),(3647,14,23,30,412),(3648,14,24,30,430),(3649,14,1,30,17),(3650,14,2,30,35),(3651,14,3,30,53),(3652,14,4,30,71),(3653,14,5,30,89),(3654,14,6,30,107),(3655,14,7,30,125),(3656,14,8,30,143),(3657,14,9,30,161),(3658,14,10,30,179),(3659,14,11,30,197),(3660,14,12,30,215),(3661,14,13,30,233),(3662,14,14,30,251),(3663,14,15,30,269),(3664,14,16,30,287),(3665,14,17,30,305),(3666,14,18,30,323),(3667,14,19,30,341),(3668,14,20,30,359),(3669,14,21,30,377),(3670,14,22,30,395),(3671,14,23,30,413),(3672,14,24,30,431),(3673,15,1,30,2),(3674,15,2,30,20),(3675,15,3,30,38),(3676,15,4,30,56),(3677,15,5,30,74),(3678,15,6,30,92),(3679,15,7,30,110),(3680,15,8,30,128),(3681,15,9,30,146),(3682,15,10,30,164),(3683,15,11,30,182),(3684,15,12,30,200),(3685,15,13,30,218),(3686,15,14,30,236),(3687,15,15,30,254),(3688,15,16,30,272),(3689,15,17,30,290),(3690,15,18,30,308),(3691,15,19,30,326),(3692,15,20,30,344),(3693,15,21,30,362),(3694,15,22,30,380),(3695,15,23,30,398),(3696,15,24,30,416),(3697,15,1,30,4),(3698,15,2,30,22),(3699,15,3,30,40),(3700,15,4,30,58),(3701,15,5,30,76),(3702,15,6,30,94),(3703,15,7,30,112),(3704,15,8,30,130),(3705,15,9,30,148),(3706,15,10,30,166),(3707,15,11,30,184),(3708,15,12,30,202),(3709,15,13,30,220),(3710,15,14,30,238),(3711,15,15,30,256),(3712,15,16,30,274),(3713,15,17,30,292),(3714,15,18,30,310),(3715,15,19,30,328),(3716,15,20,30,346),(3717,15,21,30,364),(3718,15,22,30,382),(3719,15,23,30,400),(3720,15,24,30,418),(3721,15,1,30,6),(3722,15,2,30,24),(3723,15,3,30,42),(3724,15,4,30,60),(3725,15,5,30,78),(3726,15,6,30,96),(3727,15,7,30,114),(3728,15,8,30,132),(3729,15,9,30,150),(3730,15,10,30,168),(3731,15,11,30,186),(3732,15,12,30,204),(3733,15,13,30,222),(3734,15,14,30,240),(3735,15,15,30,258),(3736,15,16,30,276),(3737,15,17,30,294),(3738,15,18,30,312),(3739,15,19,30,330),(3740,15,20,30,348),(3741,15,21,30,366),(3742,15,22,30,384),(3743,15,23,30,402),(3744,15,24,30,420),(3745,15,1,30,9),(3746,15,2,30,27),(3747,15,3,30,45),(3748,15,4,30,63),(3749,15,5,30,81),(3750,15,6,30,99),(3751,15,7,30,117),(3752,15,8,30,135),(3753,15,9,30,153),(3754,15,10,30,171),(3755,15,11,30,189),(3756,15,12,30,207),(3757,15,13,30,225),(3758,15,14,30,243),(3759,15,15,30,261),(3760,15,16,30,279),(3761,15,17,30,297),(3762,15,18,30,315),(3763,15,19,30,333),(3764,15,20,30,351),(3765,15,21,30,369),(3766,15,22,30,387),(3767,15,23,30,405),(3768,15,24,30,423),(3769,15,1,30,10),(3770,15,2,30,28),(3771,15,3,30,46),(3772,15,4,30,64),(3773,15,5,30,82),(3774,15,6,30,100),(3775,15,7,30,118),(3776,15,8,30,136),(3777,15,9,30,154),(3778,15,10,30,172),(3779,15,11,30,190),(3780,15,12,30,208),(3781,15,13,30,226),(3782,15,14,30,244),(3783,15,15,30,262),(3784,15,16,30,280),(3785,15,17,30,298),(3786,15,18,30,316),(3787,15,19,30,334),(3788,15,20,30,352),(3789,15,21,30,370),(3790,15,22,30,388),(3791,15,23,30,406),(3792,15,24,30,424),(3793,15,1,30,11),(3794,15,2,30,29),(3795,15,3,30,47),(3796,15,4,30,65),(3797,15,5,30,83),(3798,15,6,30,101),(3799,15,7,30,119),(3800,15,8,30,137),(3801,15,9,30,155),(3802,15,10,30,173),(3803,15,11,30,191),(3804,15,12,30,209),(3805,15,13,30,227),(3806,15,14,30,245),(3807,15,15,30,263),(3808,15,16,30,281),(3809,15,17,30,299),(3810,15,18,30,317),(3811,15,19,30,335),(3812,15,20,30,353),(3813,15,21,30,371),(3814,15,22,30,389),(3815,15,23,30,407),(3816,15,24,30,425),(3817,15,1,30,15),(3818,15,2,30,33),(3819,15,3,30,51),(3820,15,4,30,69),(3821,15,5,30,87),(3822,15,6,30,105),(3823,15,7,30,123),(3824,15,8,30,141),(3825,15,9,30,159),(3826,15,10,30,177),(3827,15,11,30,195),(3828,15,12,30,213),(3829,15,13,30,231),(3830,15,14,30,249),(3831,15,15,30,267),(3832,15,16,30,285),(3833,15,17,30,303),(3834,15,18,30,321),(3835,15,19,30,339),(3836,15,20,30,357),(3837,15,21,30,375),(3838,15,22,30,393),(3839,15,23,30,411),(3840,15,24,30,429),(3841,15,1,30,17),(3842,15,2,30,35),(3843,15,3,30,53),(3844,15,4,30,71),(3845,15,5,30,89),(3846,15,6,30,107),(3847,15,7,30,125),(3848,15,8,30,143),(3849,15,9,30,161),(3850,15,10,30,179),(3851,15,11,30,197),(3852,15,12,30,215),(3853,15,13,30,233),(3854,15,14,30,251),(3855,15,15,30,269),(3856,15,16,30,287),(3857,15,17,30,305),(3858,15,18,30,323),(3859,15,19,30,341),(3860,15,20,30,359),(3861,15,21,30,377),(3862,15,22,30,395),(3863,15,23,30,413),(3864,15,24,30,431),(3865,15,1,30,18),(3866,15,2,30,36),(3867,15,3,30,54),(3868,15,4,30,72),(3869,15,5,30,90),(3870,15,6,30,108),(3871,15,7,30,126),(3872,15,8,30,144),(3873,15,9,30,162),(3874,15,10,30,180),(3875,15,11,30,198),(3876,15,12,30,216),(3877,15,13,30,234),(3878,15,14,30,252),(3879,15,15,30,270),(3880,15,16,30,288),(3881,15,17,30,306),(3882,15,18,30,324),(3883,15,19,30,342),(3884,15,20,30,360),(3885,15,21,30,378),(3886,15,22,30,396),(3887,15,23,30,414),(3888,15,24,30,432),(3889,16,1,30,3),(3890,16,2,30,21),(3891,16,3,30,39),(3892,16,4,30,57),(3893,16,5,30,75),(3894,16,6,30,93),(3895,16,7,30,111),(3896,16,8,30,129),(3897,16,9,30,147),(3898,16,10,30,165),(3899,16,11,30,183),(3900,16,12,30,201),(3901,16,13,30,219),(3902,16,14,30,237),(3903,16,15,30,255),(3904,16,16,30,273),(3905,16,17,30,291),(3906,16,18,30,309),(3907,16,19,30,327),(3908,16,20,30,345),(3909,16,21,30,363),(3910,16,22,30,381),(3911,16,23,30,399),(3912,16,24,30,417),(3913,16,1,30,4),(3914,16,2,30,22),(3915,16,3,30,40),(3916,16,4,30,58),(3917,16,5,30,76),(3918,16,6,30,94),(3919,16,7,30,112),(3920,16,8,30,130),(3921,16,9,30,148),(3922,16,10,30,166),(3923,16,11,30,184),(3924,16,12,30,202),(3925,16,13,30,220),(3926,16,14,30,238),(3927,16,15,30,256),(3928,16,16,30,274),(3929,16,17,30,292),(3930,16,18,30,310),(3931,16,19,30,328),(3932,16,20,30,346),(3933,16,21,30,364),(3934,16,22,30,382),(3935,16,23,30,400),(3936,16,24,30,418),(3937,16,1,30,6),(3938,16,2,30,24),(3939,16,3,30,42),(3940,16,4,30,60),(3941,16,5,30,78),(3942,16,6,30,96),(3943,16,7,30,114),(3944,16,8,30,132),(3945,16,9,30,150),(3946,16,10,30,168),(3947,16,11,30,186),(3948,16,12,30,204),(3949,16,13,30,222),(3950,16,14,30,240),(3951,16,15,30,258),(3952,16,16,30,276),(3953,16,17,30,294),(3954,16,18,30,312),(3955,16,19,30,330),(3956,16,20,30,348),(3957,16,21,30,366),(3958,16,22,30,384),(3959,16,23,30,402),(3960,16,24,30,420),(3961,16,1,30,8),(3962,16,2,30,26),(3963,16,3,30,44),(3964,16,4,30,62),(3965,16,5,30,80),(3966,16,6,30,98),(3967,16,7,30,116),(3968,16,8,30,134),(3969,16,9,30,152),(3970,16,10,30,170),(3971,16,11,30,188),(3972,16,12,30,206),(3973,16,13,30,224),(3974,16,14,30,242),(3975,16,15,30,260),(3976,16,16,30,278),(3977,16,17,30,296),(3978,16,18,30,314),(3979,16,19,30,332),(3980,16,20,30,350),(3981,16,21,30,368),(3982,16,22,30,386),(3983,16,23,30,404),(3984,16,24,30,422),(3985,16,1,30,9),(3986,16,2,30,27),(3987,16,3,30,45),(3988,16,4,30,63),(3989,16,5,30,81),(3990,16,6,30,99),(3991,16,7,30,117),(3992,16,8,30,135),(3993,16,9,30,153),(3994,16,10,30,171),(3995,16,11,30,189),(3996,16,12,30,207),(3997,16,13,30,225),(3998,16,14,30,243),(3999,16,15,30,261),(4000,16,16,30,279),(4001,16,17,30,297),(4002,16,18,30,315),(4003,16,19,30,333),(4004,16,20,30,351),(4005,16,21,30,369),(4006,16,22,30,387),(4007,16,23,30,405),(4008,16,24,30,423),(4009,16,1,30,12),(4010,16,2,30,30),(4011,16,3,30,48),(4012,16,4,30,66),(4013,16,5,30,84),(4014,16,6,30,102),(4015,16,7,30,120),(4016,16,8,30,138),(4017,16,9,30,156),(4018,16,10,30,174),(4019,16,11,30,192),(4020,16,12,30,210),(4021,16,13,30,228),(4022,16,14,30,246),(4023,16,15,30,264),(4024,16,16,30,282),(4025,16,17,30,300),(4026,16,18,30,318),(4027,16,19,30,336),(4028,16,20,30,354),(4029,16,21,30,372),(4030,16,22,30,390),(4031,16,23,30,408),(4032,16,24,30,426),(4033,16,1,30,15),(4034,16,2,30,33),(4035,16,3,30,51),(4036,16,4,30,69),(4037,16,5,30,87),(4038,16,6,30,105),(4039,16,7,30,123),(4040,16,8,30,141),(4041,16,9,30,159),(4042,16,10,30,177),(4043,16,11,30,195),(4044,16,12,30,213),(4045,16,13,30,231),(4046,16,14,30,249),(4047,16,15,30,267),(4048,16,16,30,285),(4049,16,17,30,303),(4050,16,18,30,321),(4051,16,19,30,339),(4052,16,20,30,357),(4053,16,21,30,375),(4054,16,22,30,393),(4055,16,23,30,411),(4056,16,24,30,429),(4057,16,1,30,17),(4058,16,2,30,35),(4059,16,3,30,53),(4060,16,4,30,71),(4061,16,5,30,89),(4062,16,6,30,107),(4063,16,7,30,125),(4064,16,8,30,143),(4065,16,9,30,161),(4066,16,10,30,179),(4067,16,11,30,197),(4068,16,12,30,215),(4069,16,13,30,233),(4070,16,14,30,251),(4071,16,15,30,269),(4072,16,16,30,287),(4073,16,17,30,305),(4074,16,18,30,323),(4075,16,19,30,341),(4076,16,20,30,359),(4077,16,21,30,377),(4078,16,22,30,395),(4079,16,23,30,413),(4080,16,24,30,431),(4081,16,1,30,18),(4082,16,2,30,36),(4083,16,3,30,54),(4084,16,4,30,72),(4085,16,5,30,90),(4086,16,6,30,108),(4087,16,7,30,126),(4088,16,8,30,144),(4089,16,9,30,162),(4090,16,10,30,180),(4091,16,11,30,198),(4092,16,12,30,216),(4093,16,13,30,234),(4094,16,14,30,252),(4095,16,15,30,270),(4096,16,16,30,288),(4097,16,17,30,306),(4098,16,18,30,324),(4099,16,19,30,342),(4100,16,20,30,360),(4101,16,21,30,378),(4102,16,22,30,396),(4103,16,23,30,414),(4104,16,24,30,432),(4105,17,1,30,2),(4106,17,2,30,20),(4107,17,3,30,38),(4108,17,4,30,56),(4109,17,5,30,74),(4110,17,6,30,92),(4111,17,7,30,110),(4112,17,8,30,128),(4113,17,9,30,146),(4114,17,10,30,164),(4115,17,11,30,182),(4116,17,12,30,200),(4117,17,13,30,218),(4118,17,14,30,236),(4119,17,15,30,254),(4120,17,16,30,272),(4121,17,17,30,290),(4122,17,18,30,308),(4123,17,19,30,326),(4124,17,20,30,344),(4125,17,21,30,362),(4126,17,22,30,380),(4127,17,23,30,398),(4128,17,24,30,416),(4129,17,1,30,5),(4130,17,2,30,23),(4131,17,3,30,41),(4132,17,4,30,59),(4133,17,5,30,77),(4134,17,6,30,95),(4135,17,7,30,113),(4136,17,8,30,131),(4137,17,9,30,149),(4138,17,10,30,167),(4139,17,11,30,185),(4140,17,12,30,203),(4141,17,13,30,221),(4142,17,14,30,239),(4143,17,15,30,257),(4144,17,16,30,275),(4145,17,17,30,293),(4146,17,18,30,311),(4147,17,19,30,329),(4148,17,20,30,347),(4149,17,21,30,365),(4150,17,22,30,383),(4151,17,23,30,401),(4152,17,24,30,419),(4153,17,1,30,6),(4154,17,2,30,24),(4155,17,3,30,42),(4156,17,4,30,60),(4157,17,5,30,78),(4158,17,6,30,96),(4159,17,7,30,114),(4160,17,8,30,132),(4161,17,9,30,150),(4162,17,10,30,168),(4163,17,11,30,186),(4164,17,12,30,204),(4165,17,13,30,222),(4166,17,14,30,240),(4167,17,15,30,258),(4168,17,16,30,276),(4169,17,17,30,294),(4170,17,18,30,312),(4171,17,19,30,330),(4172,17,20,30,348),(4173,17,21,30,366),(4174,17,22,30,384),(4175,17,23,30,402),(4176,17,24,30,420),(4177,17,1,30,9),(4178,17,2,30,27),(4179,17,3,30,45),(4180,17,4,30,63),(4181,17,5,30,81),(4182,17,6,30,99),(4183,17,7,30,117),(4184,17,8,30,135),(4185,17,9,30,153),(4186,17,10,30,171),(4187,17,11,30,189),(4188,17,12,30,207),(4189,17,13,30,225),(4190,17,14,30,243),(4191,17,15,30,261),(4192,17,16,30,279),(4193,17,17,30,297),(4194,17,18,30,315),(4195,17,19,30,333),(4196,17,20,30,351),(4197,17,21,30,369),(4198,17,22,30,387),(4199,17,23,30,405),(4200,17,24,30,423),(4201,17,1,30,10),(4202,17,2,30,28),(4203,17,3,30,46),(4204,17,4,30,64),(4205,17,5,30,82),(4206,17,6,30,100),(4207,17,7,30,118),(4208,17,8,30,136),(4209,17,9,30,154),(4210,17,10,30,172),(4211,17,11,30,190),(4212,17,12,30,208),(4213,17,13,30,226),(4214,17,14,30,244),(4215,17,15,30,262),(4216,17,16,30,280),(4217,17,17,30,298),(4218,17,18,30,316),(4219,17,19,30,334),(4220,17,20,30,352),(4221,17,21,30,370),(4222,17,22,30,388),(4223,17,23,30,406),(4224,17,24,30,424),(4225,17,1,30,11),(4226,17,2,30,29),(4227,17,3,30,47),(4228,17,4,30,65),(4229,17,5,30,83),(4230,17,6,30,101),(4231,17,7,30,119),(4232,17,8,30,137),(4233,17,9,30,155),(4234,17,10,30,173),(4235,17,11,30,191),(4236,17,12,30,209),(4237,17,13,30,227),(4238,17,14,30,245),(4239,17,15,30,263),(4240,17,16,30,281),(4241,17,17,30,299),(4242,17,18,30,317),(4243,17,19,30,335),(4244,17,20,30,353),(4245,17,21,30,371),(4246,17,22,30,389),(4247,17,23,30,407),(4248,17,24,30,425),(4249,17,1,30,15),(4250,17,2,30,33),(4251,17,3,30,51),(4252,17,4,30,69),(4253,17,5,30,87),(4254,17,6,30,105),(4255,17,7,30,123),(4256,17,8,30,141),(4257,17,9,30,159),(4258,17,10,30,177),(4259,17,11,30,195),(4260,17,12,30,213),(4261,17,13,30,231),(4262,17,14,30,249),(4263,17,15,30,267),(4264,17,16,30,285),(4265,17,17,30,303),(4266,17,18,30,321),(4267,17,19,30,339),(4268,17,20,30,357),(4269,17,21,30,375),(4270,17,22,30,393),(4271,17,23,30,411),(4272,17,24,30,429),(4273,17,1,30,16),(4274,17,2,30,34),(4275,17,3,30,52),(4276,17,4,30,70),(4277,17,5,30,88),(4278,17,6,30,106),(4279,17,7,30,124),(4280,17,8,30,142),(4281,17,9,30,160),(4282,17,10,30,178),(4283,17,11,30,196),(4284,17,12,30,214),(4285,17,13,30,232),(4286,17,14,30,250),(4287,17,15,30,268),(4288,17,16,30,286),(4289,17,17,30,304),(4290,17,18,30,322),(4291,17,19,30,340),(4292,17,20,30,358),(4293,17,21,30,376),(4294,17,22,30,394),(4295,17,23,30,412),(4296,17,24,30,430),(4297,17,1,30,18),(4298,17,2,30,36),(4299,17,3,30,54),(4300,17,4,30,72),(4301,17,5,30,90),(4302,17,6,30,108),(4303,17,7,30,126),(4304,17,8,30,144),(4305,17,9,30,162),(4306,17,10,30,180),(4307,17,11,30,198),(4308,17,12,30,216),(4309,17,13,30,234),(4310,17,14,30,252),(4311,17,15,30,270),(4312,17,16,30,288),(4313,17,17,30,306),(4314,17,18,30,324),(4315,17,19,30,342),(4316,17,20,30,360),(4317,17,21,30,378),(4318,17,22,30,396),(4319,17,23,30,414),(4320,17,24,30,432),(4321,18,1,30,3),(4322,18,2,30,21),(4323,18,3,30,39),(4324,18,4,30,57),(4325,18,5,30,75),(4326,18,6,30,93),(4327,18,7,30,111),(4328,18,8,30,129),(4329,18,9,30,147),(4330,18,10,30,165),(4331,18,11,30,183),(4332,18,12,30,201),(4333,18,13,30,219),(4334,18,14,30,237),(4335,18,15,30,255),(4336,18,16,30,273),(4337,18,17,30,291),(4338,18,18,30,309),(4339,18,19,30,327),(4340,18,20,30,345),(4341,18,21,30,363),(4342,18,22,30,381),(4343,18,23,30,399),(4344,18,24,30,417),(4345,18,1,30,4),(4346,18,2,30,22),(4347,18,3,30,40),(4348,18,4,30,58),(4349,18,5,30,76),(4350,18,6,30,94),(4351,18,7,30,112),(4352,18,8,30,130),(4353,18,9,30,148),(4354,18,10,30,166),(4355,18,11,30,184),(4356,18,12,30,202),(4357,18,13,30,220),(4358,18,14,30,238),(4359,18,15,30,256),(4360,18,16,30,274),(4361,18,17,30,292),(4362,18,18,30,310),(4363,18,19,30,328),(4364,18,20,30,346),(4365,18,21,30,364),(4366,18,22,30,382),(4367,18,23,30,400),(4368,18,24,30,418),(4369,18,1,30,5),(4370,18,2,30,23),(4371,18,3,30,41),(4372,18,4,30,59),(4373,18,5,30,77),(4374,18,6,30,95),(4375,18,7,30,113),(4376,18,8,30,131),(4377,18,9,30,149),(4378,18,10,30,167),(4379,18,11,30,185),(4380,18,12,30,203),(4381,18,13,30,221),(4382,18,14,30,239),(4383,18,15,30,257),(4384,18,16,30,275),(4385,18,17,30,293),(4386,18,18,30,311),(4387,18,19,30,329),(4388,18,20,30,347),(4389,18,21,30,365),(4390,18,22,30,383),(4391,18,23,30,401),(4392,18,24,30,419),(4393,18,1,30,10),(4394,18,2,30,28),(4395,18,3,30,46),(4396,18,4,30,64),(4397,18,5,30,82),(4398,18,6,30,100),(4399,18,7,30,118),(4400,18,8,30,136),(4401,18,9,30,154),(4402,18,10,30,172),(4403,18,11,30,190),(4404,18,12,30,208),(4405,18,13,30,226),(4406,18,14,30,244),(4407,18,15,30,262),(4408,18,16,30,280),(4409,18,17,30,298),(4410,18,18,30,316),(4411,18,19,30,334),(4412,18,20,30,352),(4413,18,21,30,370),(4414,18,22,30,388),(4415,18,23,30,406),(4416,18,24,30,424),(4417,18,1,30,11),(4418,18,2,30,29),(4419,18,3,30,47),(4420,18,4,30,65),(4421,18,5,30,83),(4422,18,6,30,101),(4423,18,7,30,119),(4424,18,8,30,137),(4425,18,9,30,155),(4426,18,10,30,173),(4427,18,11,30,191),(4428,18,12,30,209),(4429,18,13,30,227),(4430,18,14,30,245),(4431,18,15,30,263),(4432,18,16,30,281),(4433,18,17,30,299),(4434,18,18,30,317),(4435,18,19,30,335),(4436,18,20,30,353),(4437,18,21,30,371),(4438,18,22,30,389),(4439,18,23,30,407),(4440,18,24,30,425),(4441,18,1,30,12),(4442,18,2,30,30),(4443,18,3,30,48),(4444,18,4,30,66),(4445,18,5,30,84),(4446,18,6,30,102),(4447,18,7,30,120),(4448,18,8,30,138),(4449,18,9,30,156),(4450,18,10,30,174),(4451,18,11,30,192),(4452,18,12,30,210),(4453,18,13,30,228),(4454,18,14,30,246),(4455,18,15,30,264),(4456,18,16,30,282),(4457,18,17,30,300),(4458,18,18,30,318),(4459,18,19,30,336),(4460,18,20,30,354),(4461,18,21,30,372),(4462,18,22,30,390),(4463,18,23,30,408),(4464,18,24,30,426),(4465,18,1,30,14),(4466,18,2,30,32),(4467,18,3,30,50),(4468,18,4,30,68),(4469,18,5,30,86),(4470,18,6,30,104),(4471,18,7,30,122),(4472,18,8,30,140),(4473,18,9,30,158),(4474,18,10,30,176),(4475,18,11,30,194),(4476,18,12,30,212),(4477,18,13,30,230),(4478,18,14,30,248),(4479,18,15,30,266),(4480,18,16,30,284),(4481,18,17,30,302),(4482,18,18,30,320),(4483,18,19,30,338),(4484,18,20,30,356),(4485,18,21,30,374),(4486,18,22,30,392),(4487,18,23,30,410),(4488,18,24,30,428),(4489,18,1,30,15),(4490,18,2,30,33),(4491,18,3,30,51),(4492,18,4,30,69),(4493,18,5,30,87),(4494,18,6,30,105),(4495,18,7,30,123),(4496,18,8,30,141),(4497,18,9,30,159),(4498,18,10,30,177),(4499,18,11,30,195),(4500,18,12,30,213),(4501,18,13,30,231),(4502,18,14,30,249),(4503,18,15,30,267),(4504,18,16,30,285),(4505,18,17,30,303),(4506,18,18,30,321),(4507,18,19,30,339),(4508,18,20,30,357),(4509,18,21,30,375),(4510,18,22,30,393),(4511,18,23,30,411),(4512,18,24,30,429),(4513,18,1,30,18),(4514,18,2,30,36),(4515,18,3,30,54),(4516,18,4,30,72),(4517,18,5,30,90),(4518,18,6,30,108),(4519,18,7,30,126),(4520,18,8,30,144),(4521,18,9,30,162),(4522,18,10,30,180),(4523,18,11,30,198),(4524,18,12,30,216),(4525,18,13,30,234),(4526,18,14,30,252),(4527,18,15,30,270),(4528,18,16,30,288),(4529,18,17,30,306),(4530,18,18,30,324),(4531,18,19,30,342),(4532,18,20,30,360),(4533,18,21,30,378),(4534,18,22,30,396),(4535,18,23,30,414),(4536,18,24,30,432),(4537,19,1,30,3),(4538,19,2,30,21),(4539,19,3,30,39),(4540,19,4,30,57),(4541,19,5,30,75),(4542,19,6,30,93),(4543,19,7,30,111),(4544,19,8,30,129),(4545,19,9,30,147),(4546,19,10,30,165),(4547,19,11,30,183),(4548,19,12,30,201),(4549,19,13,30,219),(4550,19,14,30,237),(4551,19,15,30,255),(4552,19,16,30,273),(4553,19,17,30,291),(4554,19,18,30,309),(4555,19,19,30,327),(4556,19,20,30,345),(4557,19,21,30,363),(4558,19,22,30,381),(4559,19,23,30,399),(4560,19,24,30,417),(4561,19,1,30,4),(4562,19,2,30,22),(4563,19,3,30,40),(4564,19,4,30,58),(4565,19,5,30,76),(4566,19,6,30,94),(4567,19,7,30,112),(4568,19,8,30,130),(4569,19,9,30,148),(4570,19,10,30,166),(4571,19,11,30,184),(4572,19,12,30,202),(4573,19,13,30,220),(4574,19,14,30,238),(4575,19,15,30,256),(4576,19,16,30,274),(4577,19,17,30,292),(4578,19,18,30,310),(4579,19,19,30,328),(4580,19,20,30,346),(4581,19,21,30,364),(4582,19,22,30,382),(4583,19,23,30,400),(4584,19,24,30,418),(4585,19,1,30,6),(4586,19,2,30,24),(4587,19,3,30,42),(4588,19,4,30,60),(4589,19,5,30,78),(4590,19,6,30,96),(4591,19,7,30,114),(4592,19,8,30,132),(4593,19,9,30,150),(4594,19,10,30,168),(4595,19,11,30,186),(4596,19,12,30,204),(4597,19,13,30,222),(4598,19,14,30,240),(4599,19,15,30,258),(4600,19,16,30,276),(4601,19,17,30,294),(4602,19,18,30,312),(4603,19,19,30,330),(4604,19,20,30,348),(4605,19,21,30,366),(4606,19,22,30,384),(4607,19,23,30,402),(4608,19,24,30,420),(4609,19,1,30,9),(4610,19,2,30,27),(4611,19,3,30,45),(4612,19,4,30,63),(4613,19,5,30,81),(4614,19,6,30,99),(4615,19,7,30,117),(4616,19,8,30,135),(4617,19,9,30,153),(4618,19,10,30,171),(4619,19,11,30,189),(4620,19,12,30,207),(4621,19,13,30,225),(4622,19,14,30,243),(4623,19,15,30,261),(4624,19,16,30,279),(4625,19,17,30,297),(4626,19,18,30,315),(4627,19,19,30,333),(4628,19,20,30,351),(4629,19,21,30,369),(4630,19,22,30,387),(4631,19,23,30,405),(4632,19,24,30,423),(4633,19,1,30,10),(4634,19,2,30,28),(4635,19,3,30,46),(4636,19,4,30,64),(4637,19,5,30,82),(4638,19,6,30,100),(4639,19,7,30,118),(4640,19,8,30,136),(4641,19,9,30,154),(4642,19,10,30,172),(4643,19,11,30,190),(4644,19,12,30,208),(4645,19,13,30,226),(4646,19,14,30,244),(4647,19,15,30,262),(4648,19,16,30,280),(4649,19,17,30,298),(4650,19,18,30,316),(4651,19,19,30,334),(4652,19,20,30,352),(4653,19,21,30,370),(4654,19,22,30,388),(4655,19,23,30,406),(4656,19,24,30,424),(4657,19,1,30,11),(4658,19,2,30,29),(4659,19,3,30,47),(4660,19,4,30,65),(4661,19,5,30,83),(4662,19,6,30,101),(4663,19,7,30,119),(4664,19,8,30,137),(4665,19,9,30,155),(4666,19,10,30,173),(4667,19,11,30,191),(4668,19,12,30,209),(4669,19,13,30,227),(4670,19,14,30,245),(4671,19,15,30,263),(4672,19,16,30,281),(4673,19,17,30,299),(4674,19,18,30,317),(4675,19,19,30,335),(4676,19,20,30,353),(4677,19,21,30,371),(4678,19,22,30,389),(4679,19,23,30,407),(4680,19,24,30,425),(4681,19,1,30,14),(4682,19,2,30,32),(4683,19,3,30,50),(4684,19,4,30,68),(4685,19,5,30,86),(4686,19,6,30,104),(4687,19,7,30,122),(4688,19,8,30,140),(4689,19,9,30,158),(4690,19,10,30,176),(4691,19,11,30,194),(4692,19,12,30,212),(4693,19,13,30,230),(4694,19,14,30,248),(4695,19,15,30,266),(4696,19,16,30,284),(4697,19,17,30,302),(4698,19,18,30,320),(4699,19,19,30,338),(4700,19,20,30,356),(4701,19,21,30,374),(4702,19,22,30,392),(4703,19,23,30,410),(4704,19,24,30,428),(4705,19,1,30,15),(4706,19,2,30,33),(4707,19,3,30,51),(4708,19,4,30,69),(4709,19,5,30,87),(4710,19,6,30,105),(4711,19,7,30,123),(4712,19,8,30,141),(4713,19,9,30,159),(4714,19,10,30,177),(4715,19,11,30,195),(4716,19,12,30,213),(4717,19,13,30,231),(4718,19,14,30,249),(4719,19,15,30,267),(4720,19,16,30,285),(4721,19,17,30,303),(4722,19,18,30,321),(4723,19,19,30,339),(4724,19,20,30,357),(4725,19,21,30,375),(4726,19,22,30,393),(4727,19,23,30,411),(4728,19,24,30,429),(4729,19,1,30,16),(4730,19,2,30,34),(4731,19,3,30,52),(4732,19,4,30,70),(4733,19,5,30,88),(4734,19,6,30,106),(4735,19,7,30,124),(4736,19,8,30,142),(4737,19,9,30,160),(4738,19,10,30,178),(4739,19,11,30,196),(4740,19,12,30,214),(4741,19,13,30,232),(4742,19,14,30,250),(4743,19,15,30,268),(4744,19,16,30,286),(4745,19,17,30,304),(4746,19,18,30,322),(4747,19,19,30,340),(4748,19,20,30,358),(4749,19,21,30,376),(4750,19,22,30,394),(4751,19,23,30,412),(4752,19,24,30,430),(4753,20,1,30,2),(4754,20,2,30,20),(4755,20,3,30,38),(4756,20,4,30,56),(4757,20,5,30,74),(4758,20,6,30,92),(4759,20,7,30,110),(4760,20,8,30,128),(4761,20,9,30,146),(4762,20,10,30,164),(4763,20,11,30,182),(4764,20,12,30,200),(4765,20,13,30,218),(4766,20,14,30,236),(4767,20,15,30,254),(4768,20,16,30,272),(4769,20,17,30,290),(4770,20,18,30,308),(4771,20,19,30,326),(4772,20,20,30,344),(4773,20,21,30,362),(4774,20,22,30,380),(4775,20,23,30,398),(4776,20,24,30,416),(4777,20,1,30,5),(4778,20,2,30,23),(4779,20,3,30,41),(4780,20,4,30,59),(4781,20,5,30,77),(4782,20,6,30,95),(4783,20,7,30,113),(4784,20,8,30,131),(4785,20,9,30,149),(4786,20,10,30,167),(4787,20,11,30,185),(4788,20,12,30,203),(4789,20,13,30,221),(4790,20,14,30,239),(4791,20,15,30,257),(4792,20,16,30,275),(4793,20,17,30,293),(4794,20,18,30,311),(4795,20,19,30,329),(4796,20,20,30,347),(4797,20,21,30,365),(4798,20,22,30,383),(4799,20,23,30,401),(4800,20,24,30,419),(4801,20,1,30,6),(4802,20,2,30,24),(4803,20,3,30,42),(4804,20,4,30,60),(4805,20,5,30,78),(4806,20,6,30,96),(4807,20,7,30,114),(4808,20,8,30,132),(4809,20,9,30,150),(4810,20,10,30,168),(4811,20,11,30,186),(4812,20,12,30,204),(4813,20,13,30,222),(4814,20,14,30,240),(4815,20,15,30,258),(4816,20,16,30,276),(4817,20,17,30,294),(4818,20,18,30,312),(4819,20,19,30,330),(4820,20,20,30,348),(4821,20,21,30,366),(4822,20,22,30,384),(4823,20,23,30,402),(4824,20,24,30,420),(4825,20,1,30,9),(4826,20,2,30,27),(4827,20,3,30,45),(4828,20,4,30,63),(4829,20,5,30,81),(4830,20,6,30,99),(4831,20,7,30,117),(4832,20,8,30,135),(4833,20,9,30,153),(4834,20,10,30,171),(4835,20,11,30,189),(4836,20,12,30,207),(4837,20,13,30,225),(4838,20,14,30,243),(4839,20,15,30,261),(4840,20,16,30,279),(4841,20,17,30,297),(4842,20,18,30,315),(4843,20,19,30,333),(4844,20,20,30,351),(4845,20,21,30,369),(4846,20,22,30,387),(4847,20,23,30,405),(4848,20,24,30,423),(4849,20,1,30,10),(4850,20,2,30,28),(4851,20,3,30,46),(4852,20,4,30,64),(4853,20,5,30,82),(4854,20,6,30,100),(4855,20,7,30,118),(4856,20,8,30,136),(4857,20,9,30,154),(4858,20,10,30,172),(4859,20,11,30,190),(4860,20,12,30,208),(4861,20,13,30,226),(4862,20,14,30,244),(4863,20,15,30,262),(4864,20,16,30,280),(4865,20,17,30,298),(4866,20,18,30,316),(4867,20,19,30,334),(4868,20,20,30,352),(4869,20,21,30,370),(4870,20,22,30,388),(4871,20,23,30,406),(4872,20,24,30,424),(4873,20,1,30,12),(4874,20,2,30,30),(4875,20,3,30,48),(4876,20,4,30,66),(4877,20,5,30,84),(4878,20,6,30,102),(4879,20,7,30,120),(4880,20,8,30,138),(4881,20,9,30,156),(4882,20,10,30,174),(4883,20,11,30,192),(4884,20,12,30,210),(4885,20,13,30,228),(4886,20,14,30,246),(4887,20,15,30,264),(4888,20,16,30,282),(4889,20,17,30,300),(4890,20,18,30,318),(4891,20,19,30,336),(4892,20,20,30,354),(4893,20,21,30,372),(4894,20,22,30,390),(4895,20,23,30,408),(4896,20,24,30,426),(4897,20,1,30,16),(4898,20,2,30,34),(4899,20,3,30,52),(4900,20,4,30,70),(4901,20,5,30,88),(4902,20,6,30,106),(4903,20,7,30,124),(4904,20,8,30,142),(4905,20,9,30,160),(4906,20,10,30,178),(4907,20,11,30,196),(4908,20,12,30,214),(4909,20,13,30,232),(4910,20,14,30,250),(4911,20,15,30,268),(4912,20,16,30,286),(4913,20,17,30,304),(4914,20,18,30,322),(4915,20,19,30,340),(4916,20,20,30,358),(4917,20,21,30,376),(4918,20,22,30,394),(4919,20,23,30,412),(4920,20,24,30,430),(4921,20,1,30,17),(4922,20,2,30,35),(4923,20,3,30,53),(4924,20,4,30,71),(4925,20,5,30,89),(4926,20,6,30,107),(4927,20,7,30,125),(4928,20,8,30,143),(4929,20,9,30,161),(4930,20,10,30,179),(4931,20,11,30,197),(4932,20,12,30,215),(4933,20,13,30,233),(4934,20,14,30,251),(4935,20,15,30,269),(4936,20,16,30,287),(4937,20,17,30,305),(4938,20,18,30,323),(4939,20,19,30,341),(4940,20,20,30,359),(4941,20,21,30,377),(4942,20,22,30,395),(4943,20,23,30,413),(4944,20,24,30,431),(4945,20,1,30,18),(4946,20,2,30,36),(4947,20,3,30,54),(4948,20,4,30,72),(4949,20,5,30,90),(4950,20,6,30,108),(4951,20,7,30,126),(4952,20,8,30,144),(4953,20,9,30,162),(4954,20,10,30,180),(4955,20,11,30,198),(4956,20,12,30,216),(4957,20,13,30,234),(4958,20,14,30,252),(4959,20,15,30,270),(4960,20,16,30,288),(4961,20,17,30,306),(4962,20,18,30,324),(4963,20,19,30,342),(4964,20,20,30,360),(4965,20,21,30,378),(4966,20,22,30,396),(4967,20,23,30,414),(4968,20,24,30,432),(4969,21,1,30,3),(4970,21,2,30,21),(4971,21,3,30,39),(4972,21,4,30,57),(4973,21,5,30,75),(4974,21,6,30,93),(4975,21,7,30,111),(4976,21,8,30,129),(4977,21,9,30,147),(4978,21,10,30,165),(4979,21,11,30,183),(4980,21,12,30,201),(4981,21,13,30,219),(4982,21,14,30,237),(4983,21,15,30,255),(4984,21,16,30,273),(4985,21,17,30,291),(4986,21,18,30,309),(4987,21,19,30,327),(4988,21,20,30,345),(4989,21,21,30,363),(4990,21,22,30,381),(4991,21,23,30,399),(4992,21,24,30,417),(4993,21,1,30,5),(4994,21,2,30,23),(4995,21,3,30,41),(4996,21,4,30,59),(4997,21,5,30,77),(4998,21,6,30,95),(4999,21,7,30,113),(5000,21,8,30,131),(5001,21,9,30,149),(5002,21,10,30,167),(5003,21,11,30,185),(5004,21,12,30,203),(5005,21,13,30,221),(5006,21,14,30,239),(5007,21,15,30,257),(5008,21,16,30,275),(5009,21,17,30,293),(5010,21,18,30,311),(5011,21,19,30,329),(5012,21,20,30,347),(5013,21,21,30,365),(5014,21,22,30,383),(5015,21,23,30,401),(5016,21,24,30,419),(5017,21,1,30,6),(5018,21,2,30,24),(5019,21,3,30,42),(5020,21,4,30,60),(5021,21,5,30,78),(5022,21,6,30,96),(5023,21,7,30,114),(5024,21,8,30,132),(5025,21,9,30,150),(5026,21,10,30,168),(5027,21,11,30,186),(5028,21,12,30,204),(5029,21,13,30,222),(5030,21,14,30,240),(5031,21,15,30,258),(5032,21,16,30,276),(5033,21,17,30,294),(5034,21,18,30,312),(5035,21,19,30,330),(5036,21,20,30,348),(5037,21,21,30,366),(5038,21,22,30,384),(5039,21,23,30,402),(5040,21,24,30,420),(5041,21,1,30,8),(5042,21,2,30,26),(5043,21,3,30,44),(5044,21,4,30,62),(5045,21,5,30,80),(5046,21,6,30,98),(5047,21,7,30,116),(5048,21,8,30,134),(5049,21,9,30,152),(5050,21,10,30,170),(5051,21,11,30,188),(5052,21,12,30,206),(5053,21,13,30,224),(5054,21,14,30,242),(5055,21,15,30,260),(5056,21,16,30,278),(5057,21,17,30,296),(5058,21,18,30,314),(5059,21,19,30,332),(5060,21,20,30,350),(5061,21,21,30,368),(5062,21,22,30,386),(5063,21,23,30,404),(5064,21,24,30,422),(5065,21,1,30,11),(5066,21,2,30,29),(5067,21,3,30,47),(5068,21,4,30,65),(5069,21,5,30,83),(5070,21,6,30,101),(5071,21,7,30,119),(5072,21,8,30,137),(5073,21,9,30,155),(5074,21,10,30,173),(5075,21,11,30,191),(5076,21,12,30,209),(5077,21,13,30,227),(5078,21,14,30,245),(5079,21,15,30,263),(5080,21,16,30,281),(5081,21,17,30,299),(5082,21,18,30,317),(5083,21,19,30,335),(5084,21,20,30,353),(5085,21,21,30,371),(5086,21,22,30,389),(5087,21,23,30,407),(5088,21,24,30,425),(5089,21,1,30,12),(5090,21,2,30,30),(5091,21,3,30,48),(5092,21,4,30,66),(5093,21,5,30,84),(5094,21,6,30,102),(5095,21,7,30,120),(5096,21,8,30,138),(5097,21,9,30,156),(5098,21,10,30,174),(5099,21,11,30,192),(5100,21,12,30,210),(5101,21,13,30,228),(5102,21,14,30,246),(5103,21,15,30,264),(5104,21,16,30,282),(5105,21,17,30,300),(5106,21,18,30,318),(5107,21,19,30,336),(5108,21,20,30,354),(5109,21,21,30,372),(5110,21,22,30,390),(5111,21,23,30,408),(5112,21,24,30,426),(5113,21,1,30,15),(5114,21,2,30,33),(5115,21,3,30,51),(5116,21,4,30,69),(5117,21,5,30,87),(5118,21,6,30,105),(5119,21,7,30,123),(5120,21,8,30,141),(5121,21,9,30,159),(5122,21,10,30,177),(5123,21,11,30,195),(5124,21,12,30,213),(5125,21,13,30,231),(5126,21,14,30,249),(5127,21,15,30,267),(5128,21,16,30,285),(5129,21,17,30,303),(5130,21,18,30,321),(5131,21,19,30,339),(5132,21,20,30,357),(5133,21,21,30,375),(5134,21,22,30,393),(5135,21,23,30,411),(5136,21,24,30,429),(5137,21,1,30,16),(5138,21,2,30,34),(5139,21,3,30,52),(5140,21,4,30,70),(5141,21,5,30,88),(5142,21,6,30,106),(5143,21,7,30,124),(5144,21,8,30,142),(5145,21,9,30,160),(5146,21,10,30,178),(5147,21,11,30,196),(5148,21,12,30,214),(5149,21,13,30,232),(5150,21,14,30,250),(5151,21,15,30,268),(5152,21,16,30,286),(5153,21,17,30,304),(5154,21,18,30,322),(5155,21,19,30,340),(5156,21,20,30,358),(5157,21,21,30,376),(5158,21,22,30,394),(5159,21,23,30,412),(5160,21,24,30,430),(5161,21,1,30,17),(5162,21,2,30,35),(5163,21,3,30,53),(5164,21,4,30,71),(5165,21,5,30,89),(5166,21,6,30,107),(5167,21,7,30,125),(5168,21,8,30,143),(5169,21,9,30,161),(5170,21,10,30,179),(5171,21,11,30,197),(5172,21,12,30,215),(5173,21,13,30,233),(5174,21,14,30,251),(5175,21,15,30,269),(5176,21,16,30,287),(5177,21,17,30,305),(5178,21,18,30,323),(5179,21,19,30,341),(5180,21,20,30,359),(5181,21,21,30,377),(5182,21,22,30,395),(5183,21,23,30,413),(5184,21,24,30,431),(5185,22,1,30,3),(5186,22,2,30,21),(5187,22,3,30,39),(5188,22,4,30,57),(5189,22,5,30,75),(5190,22,6,30,93),(5191,22,7,30,111),(5192,22,8,30,129),(5193,22,9,30,147),(5194,22,10,30,165),(5195,22,11,30,183),(5196,22,12,30,201),(5197,22,13,30,219),(5198,22,14,30,237),(5199,22,15,30,255),(5200,22,16,30,273),(5201,22,17,30,291),(5202,22,18,30,309),(5203,22,19,30,327),(5204,22,20,30,345),(5205,22,21,30,363),(5206,22,22,30,381),(5207,22,23,30,399),(5208,22,24,30,417),(5209,22,1,30,4),(5210,22,2,30,22),(5211,22,3,30,40),(5212,22,4,30,58),(5213,22,5,30,76),(5214,22,6,30,94),(5215,22,7,30,112),(5216,22,8,30,130),(5217,22,9,30,148),(5218,22,10,30,166),(5219,22,11,30,184),(5220,22,12,30,202),(5221,22,13,30,220),(5222,22,14,30,238),(5223,22,15,30,256),(5224,22,16,30,274),(5225,22,17,30,292),(5226,22,18,30,310),(5227,22,19,30,328),(5228,22,20,30,346),(5229,22,21,30,364),(5230,22,22,30,382),(5231,22,23,30,400),(5232,22,24,30,418),(5233,22,1,30,6),(5234,22,2,30,24),(5235,22,3,30,42),(5236,22,4,30,60),(5237,22,5,30,78),(5238,22,6,30,96),(5239,22,7,30,114),(5240,22,8,30,132),(5241,22,9,30,150),(5242,22,10,30,168),(5243,22,11,30,186),(5244,22,12,30,204),(5245,22,13,30,222),(5246,22,14,30,240),(5247,22,15,30,258),(5248,22,16,30,276),(5249,22,17,30,294),(5250,22,18,30,312),(5251,22,19,30,330),(5252,22,20,30,348),(5253,22,21,30,366),(5254,22,22,30,384),(5255,22,23,30,402),(5256,22,24,30,420),(5257,22,1,30,9),(5258,22,2,30,27),(5259,22,3,30,45),(5260,22,4,30,63),(5261,22,5,30,81),(5262,22,6,30,99),(5263,22,7,30,117),(5264,22,8,30,135),(5265,22,9,30,153),(5266,22,10,30,171),(5267,22,11,30,189),(5268,22,12,30,207),(5269,22,13,30,225),(5270,22,14,30,243),(5271,22,15,30,261),(5272,22,16,30,279),(5273,22,17,30,297),(5274,22,18,30,315),(5275,22,19,30,333),(5276,22,20,30,351),(5277,22,21,30,369),(5278,22,22,30,387),(5279,22,23,30,405),(5280,22,24,30,423),(5281,22,1,30,10),(5282,22,2,30,28),(5283,22,3,30,46),(5284,22,4,30,64),(5285,22,5,30,82),(5286,22,6,30,100),(5287,22,7,30,118),(5288,22,8,30,136),(5289,22,9,30,154),(5290,22,10,30,172),(5291,22,11,30,190),(5292,22,12,30,208),(5293,22,13,30,226),(5294,22,14,30,244),(5295,22,15,30,262),(5296,22,16,30,280),(5297,22,17,30,298),(5298,22,18,30,316),(5299,22,19,30,334),(5300,22,20,30,352),(5301,22,21,30,370),(5302,22,22,30,388),(5303,22,23,30,406),(5304,22,24,30,424),(5305,22,1,30,12),(5306,22,2,30,30),(5307,22,3,30,48),(5308,22,4,30,66),(5309,22,5,30,84),(5310,22,6,30,102),(5311,22,7,30,120),(5312,22,8,30,138),(5313,22,9,30,156),(5314,22,10,30,174),(5315,22,11,30,192),(5316,22,12,30,210),(5317,22,13,30,228),(5318,22,14,30,246),(5319,22,15,30,264),(5320,22,16,30,282),(5321,22,17,30,300),(5322,22,18,30,318),(5323,22,19,30,336),(5324,22,20,30,354),(5325,22,21,30,372),(5326,22,22,30,390),(5327,22,23,30,408),(5328,22,24,30,426),(5329,22,1,30,14),(5330,22,2,30,32),(5331,22,3,30,50),(5332,22,4,30,68),(5333,22,5,30,86),(5334,22,6,30,104),(5335,22,7,30,122),(5336,22,8,30,140),(5337,22,9,30,158),(5338,22,10,30,176),(5339,22,11,30,194),(5340,22,12,30,212),(5341,22,13,30,230),(5342,22,14,30,248),(5343,22,15,30,266),(5344,22,16,30,284),(5345,22,17,30,302),(5346,22,18,30,320),(5347,22,19,30,338),(5348,22,20,30,356),(5349,22,21,30,374),(5350,22,22,30,392),(5351,22,23,30,410),(5352,22,24,30,428),(5353,22,1,30,16),(5354,22,2,30,34),(5355,22,3,30,52),(5356,22,4,30,70),(5357,22,5,30,88),(5358,22,6,30,106),(5359,22,7,30,124),(5360,22,8,30,142),(5361,22,9,30,160),(5362,22,10,30,178),(5363,22,11,30,196),(5364,22,12,30,214),(5365,22,13,30,232),(5366,22,14,30,250),(5367,22,15,30,268),(5368,22,16,30,286),(5369,22,17,30,304),(5370,22,18,30,322),(5371,22,19,30,340),(5372,22,20,30,358),(5373,22,21,30,376),(5374,22,22,30,394),(5375,22,23,30,412),(5376,22,24,30,430),(5377,22,1,30,17),(5378,22,2,30,35),(5379,22,3,30,53),(5380,22,4,30,71),(5381,22,5,30,89),(5382,22,6,30,107),(5383,22,7,30,125),(5384,22,8,30,143),(5385,22,9,30,161),(5386,22,10,30,179),(5387,22,11,30,197),(5388,22,12,30,215),(5389,22,13,30,233),(5390,22,14,30,251),(5391,22,15,30,269),(5392,22,16,30,287),(5393,22,17,30,305),(5394,22,18,30,323),(5395,22,19,30,341),(5396,22,20,30,359),(5397,22,21,30,377),(5398,22,22,30,395),(5399,22,23,30,413),(5400,22,24,30,431),(5401,23,1,30,2),(5402,23,2,30,20),(5403,23,3,30,38),(5404,23,4,30,56),(5405,23,5,30,74),(5406,23,6,30,92),(5407,23,7,30,110),(5408,23,8,30,128),(5409,23,9,30,146),(5410,23,10,30,164),(5411,23,11,30,182),(5412,23,12,30,200),(5413,23,13,30,218),(5414,23,14,30,236),(5415,23,15,30,254),(5416,23,16,30,272),(5417,23,17,30,290),(5418,23,18,30,308),(5419,23,19,30,326),(5420,23,20,30,344),(5421,23,21,30,362),(5422,23,22,30,380),(5423,23,23,30,398),(5424,23,24,30,416),(5425,23,1,30,4),(5426,23,2,30,22),(5427,23,3,30,40),(5428,23,4,30,58),(5429,23,5,30,76),(5430,23,6,30,94),(5431,23,7,30,112),(5432,23,8,30,130),(5433,23,9,30,148),(5434,23,10,30,166),(5435,23,11,30,184),(5436,23,12,30,202),(5437,23,13,30,220),(5438,23,14,30,238),(5439,23,15,30,256),(5440,23,16,30,274),(5441,23,17,30,292),(5442,23,18,30,310),(5443,23,19,30,328),(5444,23,20,30,346),(5445,23,21,30,364),(5446,23,22,30,382),(5447,23,23,30,400),(5448,23,24,30,418),(5449,23,1,30,6),(5450,23,2,30,24),(5451,23,3,30,42),(5452,23,4,30,60),(5453,23,5,30,78),(5454,23,6,30,96),(5455,23,7,30,114),(5456,23,8,30,132),(5457,23,9,30,150),(5458,23,10,30,168),(5459,23,11,30,186),(5460,23,12,30,204),(5461,23,13,30,222),(5462,23,14,30,240),(5463,23,15,30,258),(5464,23,16,30,276),(5465,23,17,30,294),(5466,23,18,30,312),(5467,23,19,30,330),(5468,23,20,30,348),(5469,23,21,30,366),(5470,23,22,30,384),(5471,23,23,30,402),(5472,23,24,30,420),(5473,23,1,30,9),(5474,23,2,30,27),(5475,23,3,30,45),(5476,23,4,30,63),(5477,23,5,30,81),(5478,23,6,30,99),(5479,23,7,30,117),(5480,23,8,30,135),(5481,23,9,30,153),(5482,23,10,30,171),(5483,23,11,30,189),(5484,23,12,30,207),(5485,23,13,30,225),(5486,23,14,30,243),(5487,23,15,30,261),(5488,23,16,30,279),(5489,23,17,30,297),(5490,23,18,30,315),(5491,23,19,30,333),(5492,23,20,30,351),(5493,23,21,30,369),(5494,23,22,30,387),(5495,23,23,30,405),(5496,23,24,30,423),(5497,23,1,30,10),(5498,23,2,30,28),(5499,23,3,30,46),(5500,23,4,30,64),(5501,23,5,30,82),(5502,23,6,30,100),(5503,23,7,30,118),(5504,23,8,30,136),(5505,23,9,30,154),(5506,23,10,30,172),(5507,23,11,30,190),(5508,23,12,30,208),(5509,23,13,30,226),(5510,23,14,30,244),(5511,23,15,30,262),(5512,23,16,30,280),(5513,23,17,30,298),(5514,23,18,30,316),(5515,23,19,30,334),(5516,23,20,30,352),(5517,23,21,30,370),(5518,23,22,30,388),(5519,23,23,30,406),(5520,23,24,30,424),(5521,23,1,30,11),(5522,23,2,30,29),(5523,23,3,30,47),(5524,23,4,30,65),(5525,23,5,30,83),(5526,23,6,30,101),(5527,23,7,30,119),(5528,23,8,30,137),(5529,23,9,30,155),(5530,23,10,30,173),(5531,23,11,30,191),(5532,23,12,30,209),(5533,23,13,30,227),(5534,23,14,30,245),(5535,23,15,30,263),(5536,23,16,30,281),(5537,23,17,30,299),(5538,23,18,30,317),(5539,23,19,30,335),(5540,23,20,30,353),(5541,23,21,30,371),(5542,23,22,30,389),(5543,23,23,30,407),(5544,23,24,30,425),(5545,23,1,30,16),(5546,23,2,30,34),(5547,23,3,30,52),(5548,23,4,30,70),(5549,23,5,30,88),(5550,23,6,30,106),(5551,23,7,30,124),(5552,23,8,30,142),(5553,23,9,30,160),(5554,23,10,30,178),(5555,23,11,30,196),(5556,23,12,30,214),(5557,23,13,30,232),(5558,23,14,30,250),(5559,23,15,30,268),(5560,23,16,30,286),(5561,23,17,30,304),(5562,23,18,30,322),(5563,23,19,30,340),(5564,23,20,30,358),(5565,23,21,30,376),(5566,23,22,30,394),(5567,23,23,30,412),(5568,23,24,30,430),(5569,23,1,30,17),(5570,23,2,30,35),(5571,23,3,30,53),(5572,23,4,30,71),(5573,23,5,30,89),(5574,23,6,30,107),(5575,23,7,30,125),(5576,23,8,30,143),(5577,23,9,30,161),(5578,23,10,30,179),(5579,23,11,30,197),(5580,23,12,30,215),(5581,23,13,30,233),(5582,23,14,30,251),(5583,23,15,30,269),(5584,23,16,30,287),(5585,23,17,30,305),(5586,23,18,30,323),(5587,23,19,30,341),(5588,23,20,30,359),(5589,23,21,30,377),(5590,23,22,30,395),(5591,23,23,30,413),(5592,23,24,30,431),(5593,23,1,30,18),(5594,23,2,30,36),(5595,23,3,30,54),(5596,23,4,30,72),(5597,23,5,30,90),(5598,23,6,30,108),(5599,23,7,30,126),(5600,23,8,30,144),(5601,23,9,30,162),(5602,23,10,30,180),(5603,23,11,30,198),(5604,23,12,30,216),(5605,23,13,30,234),(5606,23,14,30,252),(5607,23,15,30,270),(5608,23,16,30,288),(5609,23,17,30,306),(5610,23,18,30,324),(5611,23,19,30,342),(5612,23,20,30,360),(5613,23,21,30,378),(5614,23,22,30,396),(5615,23,23,30,414),(5616,23,24,30,432),(5617,24,1,30,3),(5618,24,2,30,21),(5619,24,3,30,39),(5620,24,4,30,57),(5621,24,5,30,75),(5622,24,6,30,93),(5623,24,7,30,111),(5624,24,8,30,129),(5625,24,9,30,147),(5626,24,10,30,165),(5627,24,11,30,183),(5628,24,12,30,201),(5629,24,13,30,219),(5630,24,14,30,237),(5631,24,15,30,255),(5632,24,16,30,273),(5633,24,17,30,291),(5634,24,18,30,309),(5635,24,19,30,327),(5636,24,20,30,345),(5637,24,21,30,363),(5638,24,22,30,381),(5639,24,23,30,399),(5640,24,24,30,417),(5641,24,1,30,5),(5642,24,2,30,23),(5643,24,3,30,41),(5644,24,4,30,59),(5645,24,5,30,77),(5646,24,6,30,95),(5647,24,7,30,113),(5648,24,8,30,131),(5649,24,9,30,149),(5650,24,10,30,167),(5651,24,11,30,185),(5652,24,12,30,203),(5653,24,13,30,221),(5654,24,14,30,239),(5655,24,15,30,257),(5656,24,16,30,275),(5657,24,17,30,293),(5658,24,18,30,311),(5659,24,19,30,329),(5660,24,20,30,347),(5661,24,21,30,365),(5662,24,22,30,383),(5663,24,23,30,401),(5664,24,24,30,419),(5665,24,1,30,6),(5666,24,2,30,24),(5667,24,3,30,42),(5668,24,4,30,60),(5669,24,5,30,78),(5670,24,6,30,96),(5671,24,7,30,114),(5672,24,8,30,132),(5673,24,9,30,150),(5674,24,10,30,168),(5675,24,11,30,186),(5676,24,12,30,204),(5677,24,13,30,222),(5678,24,14,30,240),(5679,24,15,30,258),(5680,24,16,30,276),(5681,24,17,30,294),(5682,24,18,30,312),(5683,24,19,30,330),(5684,24,20,30,348),(5685,24,21,30,366),(5686,24,22,30,384),(5687,24,23,30,402),(5688,24,24,30,420),(5689,24,1,30,8),(5690,24,2,30,26),(5691,24,3,30,44),(5692,24,4,30,62),(5693,24,5,30,80),(5694,24,6,30,98),(5695,24,7,30,116),(5696,24,8,30,134),(5697,24,9,30,152),(5698,24,10,30,170),(5699,24,11,30,188),(5700,24,12,30,206),(5701,24,13,30,224),(5702,24,14,30,242),(5703,24,15,30,260),(5704,24,16,30,278),(5705,24,17,30,296),(5706,24,18,30,314),(5707,24,19,30,332),(5708,24,20,30,350),(5709,24,21,30,368),(5710,24,22,30,386),(5711,24,23,30,404),(5712,24,24,30,422),(5713,24,1,30,10),(5714,24,2,30,28),(5715,24,3,30,46),(5716,24,4,30,64),(5717,24,5,30,82),(5718,24,6,30,100),(5719,24,7,30,118),(5720,24,8,30,136),(5721,24,9,30,154),(5722,24,10,30,172),(5723,24,11,30,190),(5724,24,12,30,208),(5725,24,13,30,226),(5726,24,14,30,244),(5727,24,15,30,262),(5728,24,16,30,280),(5729,24,17,30,298),(5730,24,18,30,316),(5731,24,19,30,334),(5732,24,20,30,352),(5733,24,21,30,370),(5734,24,22,30,388),(5735,24,23,30,406),(5736,24,24,30,424),(5737,24,1,30,11),(5738,24,2,30,29),(5739,24,3,30,47),(5740,24,4,30,65),(5741,24,5,30,83),(5742,24,6,30,101),(5743,24,7,30,119),(5744,24,8,30,137),(5745,24,9,30,155),(5746,24,10,30,173),(5747,24,11,30,191),(5748,24,12,30,209),(5749,24,13,30,227),(5750,24,14,30,245),(5751,24,15,30,263),(5752,24,16,30,281),(5753,24,17,30,299),(5754,24,18,30,317),(5755,24,19,30,335),(5756,24,20,30,353),(5757,24,21,30,371),(5758,24,22,30,389),(5759,24,23,30,407),(5760,24,24,30,425),(5761,24,1,30,15),(5762,24,2,30,33),(5763,24,3,30,51),(5764,24,4,30,69),(5765,24,5,30,87),(5766,24,6,30,105),(5767,24,7,30,123),(5768,24,8,30,141),(5769,24,9,30,159),(5770,24,10,30,177),(5771,24,11,30,195),(5772,24,12,30,213),(5773,24,13,30,231),(5774,24,14,30,249),(5775,24,15,30,267),(5776,24,16,30,285),(5777,24,17,30,303),(5778,24,18,30,321),(5779,24,19,30,339),(5780,24,20,30,357),(5781,24,21,30,375),(5782,24,22,30,393),(5783,24,23,30,411),(5784,24,24,30,429),(5785,24,1,30,17),(5786,24,2,30,35),(5787,24,3,30,53),(5788,24,4,30,71),(5789,24,5,30,89),(5790,24,6,30,107),(5791,24,7,30,125),(5792,24,8,30,143),(5793,24,9,30,161),(5794,24,10,30,179),(5795,24,11,30,197),(5796,24,12,30,215),(5797,24,13,30,233),(5798,24,14,30,251),(5799,24,15,30,269),(5800,24,16,30,287),(5801,24,17,30,305),(5802,24,18,30,323),(5803,24,19,30,341),(5804,24,20,30,359),(5805,24,21,30,377),(5806,24,22,30,395),(5807,24,23,30,413),(5808,24,24,30,431),(5809,24,1,30,18),(5810,24,2,30,36),(5811,24,3,30,54),(5812,24,4,30,72),(5813,24,5,30,90),(5814,24,6,30,108),(5815,24,7,30,126),(5816,24,8,30,144),(5817,24,9,30,162),(5818,24,10,30,180),(5819,24,11,30,198),(5820,24,12,30,216),(5821,24,13,30,234),(5822,24,14,30,252),(5823,24,15,30,270),(5824,24,16,30,288),(5825,24,17,30,306),(5826,24,18,30,324),(5827,24,19,30,342),(5828,24,20,30,360),(5829,24,21,30,378),(5830,24,22,30,396),(5831,24,23,30,414),(5832,24,24,30,432),(5833,25,1,30,3),(5834,25,2,30,21),(5835,25,3,30,39),(5836,25,4,30,57),(5837,25,5,30,75),(5838,25,6,30,93),(5839,25,7,30,111),(5840,25,8,30,129),(5841,25,9,30,147),(5842,25,10,30,165),(5843,25,11,30,183),(5844,25,12,30,201),(5845,25,13,30,219),(5846,25,14,30,237),(5847,25,15,30,255),(5848,25,16,30,273),(5849,25,17,30,291),(5850,25,18,30,309),(5851,25,19,30,327),(5852,25,20,30,345),(5853,25,21,30,363),(5854,25,22,30,381),(5855,25,23,30,399),(5856,25,24,30,417),(5857,25,1,30,5),(5858,25,2,30,23),(5859,25,3,30,41),(5860,25,4,30,59),(5861,25,5,30,77),(5862,25,6,30,95),(5863,25,7,30,113),(5864,25,8,30,131),(5865,25,9,30,149),(5866,25,10,30,167),(5867,25,11,30,185),(5868,25,12,30,203),(5869,25,13,30,221),(5870,25,14,30,239),(5871,25,15,30,257),(5872,25,16,30,275),(5873,25,17,30,293),(5874,25,18,30,311),(5875,25,19,30,329),(5876,25,20,30,347),(5877,25,21,30,365),(5878,25,22,30,383),(5879,25,23,30,401),(5880,25,24,30,419),(5881,25,1,30,6),(5882,25,2,30,24),(5883,25,3,30,42),(5884,25,4,30,60),(5885,25,5,30,78),(5886,25,6,30,96),(5887,25,7,30,114),(5888,25,8,30,132),(5889,25,9,30,150),(5890,25,10,30,168),(5891,25,11,30,186),(5892,25,12,30,204),(5893,25,13,30,222),(5894,25,14,30,240),(5895,25,15,30,258),(5896,25,16,30,276),(5897,25,17,30,294),(5898,25,18,30,312),(5899,25,19,30,330),(5900,25,20,30,348),(5901,25,21,30,366),(5902,25,22,30,384),(5903,25,23,30,402),(5904,25,24,30,420),(5905,25,1,30,9),(5906,25,2,30,27),(5907,25,3,30,45),(5908,25,4,30,63),(5909,25,5,30,81),(5910,25,6,30,99),(5911,25,7,30,117),(5912,25,8,30,135),(5913,25,9,30,153),(5914,25,10,30,171),(5915,25,11,30,189),(5916,25,12,30,207),(5917,25,13,30,225),(5918,25,14,30,243),(5919,25,15,30,261),(5920,25,16,30,279),(5921,25,17,30,297),(5922,25,18,30,315),(5923,25,19,30,333),(5924,25,20,30,351),(5925,25,21,30,369),(5926,25,22,30,387),(5927,25,23,30,405),(5928,25,24,30,423),(5929,25,1,30,10),(5930,25,2,30,28),(5931,25,3,30,46),(5932,25,4,30,64),(5933,25,5,30,82),(5934,25,6,30,100),(5935,25,7,30,118),(5936,25,8,30,136),(5937,25,9,30,154),(5938,25,10,30,172),(5939,25,11,30,190),(5940,25,12,30,208),(5941,25,13,30,226),(5942,25,14,30,244),(5943,25,15,30,262),(5944,25,16,30,280),(5945,25,17,30,298),(5946,25,18,30,316),(5947,25,19,30,334),(5948,25,20,30,352),(5949,25,21,30,370),(5950,25,22,30,388),(5951,25,23,30,406),(5952,25,24,30,424),(5953,25,1,30,12),(5954,25,2,30,30),(5955,25,3,30,48),(5956,25,4,30,66),(5957,25,5,30,84),(5958,25,6,30,102),(5959,25,7,30,120),(5960,25,8,30,138),(5961,25,9,30,156),(5962,25,10,30,174),(5963,25,11,30,192),(5964,25,12,30,210),(5965,25,13,30,228),(5966,25,14,30,246),(5967,25,15,30,264),(5968,25,16,30,282),(5969,25,17,30,300),(5970,25,18,30,318),(5971,25,19,30,336),(5972,25,20,30,354),(5973,25,21,30,372),(5974,25,22,30,390),(5975,25,23,30,408),(5976,25,24,30,426),(5977,25,1,30,14),(5978,25,2,30,32),(5979,25,3,30,50),(5980,25,4,30,68),(5981,25,5,30,86),(5982,25,6,30,104),(5983,25,7,30,122),(5984,25,8,30,140),(5985,25,9,30,158),(5986,25,10,30,176),(5987,25,11,30,194),(5988,25,12,30,212),(5989,25,13,30,230),(5990,25,14,30,248),(5991,25,15,30,266),(5992,25,16,30,284),(5993,25,17,30,302),(5994,25,18,30,320),(5995,25,19,30,338),(5996,25,20,30,356),(5997,25,21,30,374),(5998,25,22,30,392),(5999,25,23,30,410),(6000,25,24,30,428),(6001,25,1,30,15),(6002,25,2,30,33),(6003,25,3,30,51),(6004,25,4,30,69),(6005,25,5,30,87),(6006,25,6,30,105),(6007,25,7,30,123),(6008,25,8,30,141),(6009,25,9,30,159),(6010,25,10,30,177),(6011,25,11,30,195),(6012,25,12,30,213),(6013,25,13,30,231),(6014,25,14,30,249),(6015,25,15,30,267),(6016,25,16,30,285),(6017,25,17,30,303),(6018,25,18,30,321),(6019,25,19,30,339),(6020,25,20,30,357),(6021,25,21,30,375),(6022,25,22,30,393),(6023,25,23,30,411),(6024,25,24,30,429),(6025,25,1,30,18),(6026,25,2,30,36),(6027,25,3,30,54),(6028,25,4,30,72),(6029,25,5,30,90),(6030,25,6,30,108),(6031,25,7,30,126),(6032,25,8,30,144),(6033,25,9,30,162),(6034,25,10,30,180),(6035,25,11,30,198),(6036,25,12,30,216),(6037,25,13,30,234),(6038,25,14,30,252),(6039,25,15,30,270),(6040,25,16,30,288),(6041,25,17,30,306),(6042,25,18,30,324),(6043,25,19,30,342),(6044,25,20,30,360),(6045,25,21,30,378),(6046,25,22,30,396),(6047,25,23,30,414),(6048,25,24,30,432),(6049,26,1,30,4),(6050,26,2,30,22),(6051,26,3,30,40),(6052,26,4,30,58),(6053,26,5,30,76),(6054,26,6,30,94),(6055,26,7,30,112),(6056,26,8,30,130),(6057,26,9,30,148),(6058,26,10,30,166),(6059,26,11,30,184),(6060,26,12,30,202),(6061,26,13,30,220),(6062,26,14,30,238),(6063,26,15,30,256),(6064,26,16,30,274),(6065,26,17,30,292),(6066,26,18,30,310),(6067,26,19,30,328),(6068,26,20,30,346),(6069,26,21,30,364),(6070,26,22,30,382),(6071,26,23,30,400),(6072,26,24,30,418),(6073,26,1,30,5),(6074,26,2,30,23),(6075,26,3,30,41),(6076,26,4,30,59),(6077,26,5,30,77),(6078,26,6,30,95),(6079,26,7,30,113),(6080,26,8,30,131),(6081,26,9,30,149),(6082,26,10,30,167),(6083,26,11,30,185),(6084,26,12,30,203),(6085,26,13,30,221),(6086,26,14,30,239),(6087,26,15,30,257),(6088,26,16,30,275),(6089,26,17,30,293),(6090,26,18,30,311),(6091,26,19,30,329),(6092,26,20,30,347),(6093,26,21,30,365),(6094,26,22,30,383),(6095,26,23,30,401),(6096,26,24,30,419),(6097,26,1,30,6),(6098,26,2,30,24),(6099,26,3,30,42),(6100,26,4,30,60),(6101,26,5,30,78),(6102,26,6,30,96),(6103,26,7,30,114),(6104,26,8,30,132),(6105,26,9,30,150),(6106,26,10,30,168),(6107,26,11,30,186),(6108,26,12,30,204),(6109,26,13,30,222),(6110,26,14,30,240),(6111,26,15,30,258),(6112,26,16,30,276),(6113,26,17,30,294),(6114,26,18,30,312),(6115,26,19,30,330),(6116,26,20,30,348),(6117,26,21,30,366),(6118,26,22,30,384),(6119,26,23,30,402),(6120,26,24,30,420),(6121,26,1,30,8),(6122,26,2,30,26),(6123,26,3,30,44),(6124,26,4,30,62),(6125,26,5,30,80),(6126,26,6,30,98),(6127,26,7,30,116),(6128,26,8,30,134),(6129,26,9,30,152),(6130,26,10,30,170),(6131,26,11,30,188),(6132,26,12,30,206),(6133,26,13,30,224),(6134,26,14,30,242),(6135,26,15,30,260),(6136,26,16,30,278),(6137,26,17,30,296),(6138,26,18,30,314),(6139,26,19,30,332),(6140,26,20,30,350),(6141,26,21,30,368),(6142,26,22,30,386),(6143,26,23,30,404),(6144,26,24,30,422),(6145,26,1,30,10),(6146,26,2,30,28),(6147,26,3,30,46),(6148,26,4,30,64),(6149,26,5,30,82),(6150,26,6,30,100),(6151,26,7,30,118),(6152,26,8,30,136),(6153,26,9,30,154),(6154,26,10,30,172),(6155,26,11,30,190),(6156,26,12,30,208),(6157,26,13,30,226),(6158,26,14,30,244),(6159,26,15,30,262),(6160,26,16,30,280),(6161,26,17,30,298),(6162,26,18,30,316),(6163,26,19,30,334),(6164,26,20,30,352),(6165,26,21,30,370),(6166,26,22,30,388),(6167,26,23,30,406),(6168,26,24,30,424),(6169,26,1,30,12),(6170,26,2,30,30),(6171,26,3,30,48),(6172,26,4,30,66),(6173,26,5,30,84),(6174,26,6,30,102),(6175,26,7,30,120),(6176,26,8,30,138),(6177,26,9,30,156),(6178,26,10,30,174),(6179,26,11,30,192),(6180,26,12,30,210),(6181,26,13,30,228),(6182,26,14,30,246),(6183,26,15,30,264),(6184,26,16,30,282),(6185,26,17,30,300),(6186,26,18,30,318),(6187,26,19,30,336),(6188,26,20,30,354),(6189,26,21,30,372),(6190,26,22,30,390),(6191,26,23,30,408),(6192,26,24,30,426),(6193,26,1,30,16),(6194,26,2,30,34),(6195,26,3,30,52),(6196,26,4,30,70),(6197,26,5,30,88),(6198,26,6,30,106),(6199,26,7,30,124),(6200,26,8,30,142),(6201,26,9,30,160),(6202,26,10,30,178),(6203,26,11,30,196),(6204,26,12,30,214),(6205,26,13,30,232),(6206,26,14,30,250),(6207,26,15,30,268),(6208,26,16,30,286),(6209,26,17,30,304),(6210,26,18,30,322),(6211,26,19,30,340),(6212,26,20,30,358),(6213,26,21,30,376),(6214,26,22,30,394),(6215,26,23,30,412),(6216,26,24,30,430),(6217,26,1,30,17),(6218,26,2,30,35),(6219,26,3,30,53),(6220,26,4,30,71),(6221,26,5,30,89),(6222,26,6,30,107),(6223,26,7,30,125),(6224,26,8,30,143),(6225,26,9,30,161),(6226,26,10,30,179),(6227,26,11,30,197),(6228,26,12,30,215),(6229,26,13,30,233),(6230,26,14,30,251),(6231,26,15,30,269),(6232,26,16,30,287),(6233,26,17,30,305),(6234,26,18,30,323),(6235,26,19,30,341),(6236,26,20,30,359),(6237,26,21,30,377),(6238,26,22,30,395),(6239,26,23,30,413),(6240,26,24,30,431),(6241,26,1,30,18),(6242,26,2,30,36),(6243,26,3,30,54),(6244,26,4,30,72),(6245,26,5,30,90),(6246,26,6,30,108),(6247,26,7,30,126),(6248,26,8,30,144),(6249,26,9,30,162),(6250,26,10,30,180),(6251,26,11,30,198),(6252,26,12,30,216),(6253,26,13,30,234),(6254,26,14,30,252),(6255,26,15,30,270),(6256,26,16,30,288),(6257,26,17,30,306),(6258,26,18,30,324),(6259,26,19,30,342),(6260,26,20,30,360),(6261,26,21,30,378),(6262,26,22,30,396),(6263,26,23,30,414),(6264,26,24,30,432),(6265,27,1,30,2),(6266,27,2,30,20),(6267,27,3,30,38),(6268,27,4,30,56),(6269,27,5,30,74),(6270,27,6,30,92),(6271,27,7,30,110),(6272,27,8,30,128),(6273,27,9,30,146),(6274,27,10,30,164),(6275,27,11,30,182),(6276,27,12,30,200),(6277,27,13,30,218),(6278,27,14,30,236),(6279,27,15,30,254),(6280,27,16,30,272),(6281,27,17,30,290),(6282,27,18,30,308),(6283,27,19,30,326),(6284,27,20,30,344),(6285,27,21,30,362),(6286,27,22,30,380),(6287,27,23,30,398),(6288,27,24,30,416),(6289,27,1,30,3),(6290,27,2,30,21),(6291,27,3,30,39),(6292,27,4,30,57),(6293,27,5,30,75),(6294,27,6,30,93),(6295,27,7,30,111),(6296,27,8,30,129),(6297,27,9,30,147),(6298,27,10,30,165),(6299,27,11,30,183),(6300,27,12,30,201),(6301,27,13,30,219),(6302,27,14,30,237),(6303,27,15,30,255),(6304,27,16,30,273),(6305,27,17,30,291),(6306,27,18,30,309),(6307,27,19,30,327),(6308,27,20,30,345),(6309,27,21,30,363),(6310,27,22,30,381),(6311,27,23,30,399),(6312,27,24,30,417),(6313,27,1,30,4),(6314,27,2,30,22),(6315,27,3,30,40),(6316,27,4,30,58),(6317,27,5,30,76),(6318,27,6,30,94),(6319,27,7,30,112),(6320,27,8,30,130),(6321,27,9,30,148),(6322,27,10,30,166),(6323,27,11,30,184),(6324,27,12,30,202),(6325,27,13,30,220),(6326,27,14,30,238),(6327,27,15,30,256),(6328,27,16,30,274),(6329,27,17,30,292),(6330,27,18,30,310),(6331,27,19,30,328),(6332,27,20,30,346),(6333,27,21,30,364),(6334,27,22,30,382),(6335,27,23,30,400),(6336,27,24,30,418),(6337,27,1,30,9),(6338,27,2,30,27),(6339,27,3,30,45),(6340,27,4,30,63),(6341,27,5,30,81),(6342,27,6,30,99),(6343,27,7,30,117),(6344,27,8,30,135),(6345,27,9,30,153),(6346,27,10,30,171),(6347,27,11,30,189),(6348,27,12,30,207),(6349,27,13,30,225),(6350,27,14,30,243),(6351,27,15,30,261),(6352,27,16,30,279),(6353,27,17,30,297),(6354,27,18,30,315),(6355,27,19,30,333),(6356,27,20,30,351),(6357,27,21,30,369),(6358,27,22,30,387),(6359,27,23,30,405),(6360,27,24,30,423),(6361,27,1,30,11),(6362,27,2,30,29),(6363,27,3,30,47),(6364,27,4,30,65),(6365,27,5,30,83),(6366,27,6,30,101),(6367,27,7,30,119),(6368,27,8,30,137),(6369,27,9,30,155),(6370,27,10,30,173),(6371,27,11,30,191),(6372,27,12,30,209),(6373,27,13,30,227),(6374,27,14,30,245),(6375,27,15,30,263),(6376,27,16,30,281),(6377,27,17,30,299),(6378,27,18,30,317),(6379,27,19,30,335),(6380,27,20,30,353),(6381,27,21,30,371),(6382,27,22,30,389),(6383,27,23,30,407),(6384,27,24,30,425),(6385,27,1,30,12),(6386,27,2,30,30),(6387,27,3,30,48),(6388,27,4,30,66),(6389,27,5,30,84),(6390,27,6,30,102),(6391,27,7,30,120),(6392,27,8,30,138),(6393,27,9,30,156),(6394,27,10,30,174),(6395,27,11,30,192),(6396,27,12,30,210),(6397,27,13,30,228),(6398,27,14,30,246),(6399,27,15,30,264),(6400,27,16,30,282),(6401,27,17,30,300),(6402,27,18,30,318),(6403,27,19,30,336),(6404,27,20,30,354),(6405,27,21,30,372),(6406,27,22,30,390),(6407,27,23,30,408),(6408,27,24,30,426),(6409,27,1,30,15),(6410,27,2,30,33),(6411,27,3,30,51),(6412,27,4,30,69),(6413,27,5,30,87),(6414,27,6,30,105),(6415,27,7,30,123),(6416,27,8,30,141),(6417,27,9,30,159),(6418,27,10,30,177),(6419,27,11,30,195),(6420,27,12,30,213),(6421,27,13,30,231),(6422,27,14,30,249),(6423,27,15,30,267),(6424,27,16,30,285),(6425,27,17,30,303),(6426,27,18,30,321),(6427,27,19,30,339),(6428,27,20,30,357),(6429,27,21,30,375),(6430,27,22,30,393),(6431,27,23,30,411),(6432,27,24,30,429),(6433,27,1,30,16),(6434,27,2,30,34),(6435,27,3,30,52),(6436,27,4,30,70),(6437,27,5,30,88),(6438,27,6,30,106),(6439,27,7,30,124),(6440,27,8,30,142),(6441,27,9,30,160),(6442,27,10,30,178),(6443,27,11,30,196),(6444,27,12,30,214),(6445,27,13,30,232),(6446,27,14,30,250),(6447,27,15,30,268),(6448,27,16,30,286),(6449,27,17,30,304),(6450,27,18,30,322),(6451,27,19,30,340),(6452,27,20,30,358),(6453,27,21,30,376),(6454,27,22,30,394),(6455,27,23,30,412),(6456,27,24,30,430),(6457,27,1,30,17),(6458,27,2,30,35),(6459,27,3,30,53),(6460,27,4,30,71),(6461,27,5,30,89),(6462,27,6,30,107),(6463,27,7,30,125),(6464,27,8,30,143),(6465,27,9,30,161),(6466,27,10,30,179),(6467,27,11,30,197),(6468,27,12,30,215),(6469,27,13,30,233),(6470,27,14,30,251),(6471,27,15,30,269),(6472,27,16,30,287),(6473,27,17,30,305),(6474,27,18,30,323),(6475,27,19,30,341),(6476,27,20,30,359),(6477,27,21,30,377),(6478,27,22,30,395),(6479,27,23,30,413),(6480,27,24,30,431),(6481,28,1,30,3),(6482,28,2,30,21),(6483,28,3,30,39),(6484,28,4,30,57),(6485,28,5,30,75),(6486,28,6,30,93),(6487,28,7,30,111),(6488,28,8,30,129),(6489,28,9,30,147),(6490,28,10,30,165),(6491,28,11,30,183),(6492,28,12,30,201),(6493,28,13,30,219),(6494,28,14,30,237),(6495,28,15,30,255),(6496,28,16,30,273),(6497,28,17,30,291),(6498,28,18,30,309),(6499,28,19,30,327),(6500,28,20,30,345),(6501,28,21,30,363),(6502,28,22,30,381),(6503,28,23,30,399),(6504,28,24,30,417),(6505,28,1,30,4),(6506,28,2,30,22),(6507,28,3,30,40),(6508,28,4,30,58),(6509,28,5,30,76),(6510,28,6,30,94),(6511,28,7,30,112),(6512,28,8,30,130),(6513,28,9,30,148),(6514,28,10,30,166),(6515,28,11,30,184),(6516,28,12,30,202),(6517,28,13,30,220),(6518,28,14,30,238),(6519,28,15,30,256),(6520,28,16,30,274),(6521,28,17,30,292),(6522,28,18,30,310),(6523,28,19,30,328),(6524,28,20,30,346),(6525,28,21,30,364),(6526,28,22,30,382),(6527,28,23,30,400),(6528,28,24,30,418),(6529,28,1,30,5),(6530,28,2,30,23),(6531,28,3,30,41),(6532,28,4,30,59),(6533,28,5,30,77),(6534,28,6,30,95),(6535,28,7,30,113),(6536,28,8,30,131),(6537,28,9,30,149),(6538,28,10,30,167),(6539,28,11,30,185),(6540,28,12,30,203),(6541,28,13,30,221),(6542,28,14,30,239),(6543,28,15,30,257),(6544,28,16,30,275),(6545,28,17,30,293),(6546,28,18,30,311),(6547,28,19,30,329),(6548,28,20,30,347),(6549,28,21,30,365),(6550,28,22,30,383),(6551,28,23,30,401),(6552,28,24,30,419),(6553,28,1,30,9),(6554,28,2,30,27),(6555,28,3,30,45),(6556,28,4,30,63),(6557,28,5,30,81),(6558,28,6,30,99),(6559,28,7,30,117),(6560,28,8,30,135),(6561,28,9,30,153),(6562,28,10,30,171),(6563,28,11,30,189),(6564,28,12,30,207),(6565,28,13,30,225),(6566,28,14,30,243),(6567,28,15,30,261),(6568,28,16,30,279),(6569,28,17,30,297),(6570,28,18,30,315),(6571,28,19,30,333),(6572,28,20,30,351),(6573,28,21,30,369),(6574,28,22,30,387),(6575,28,23,30,405),(6576,28,24,30,423),(6577,28,1,30,10),(6578,28,2,30,28),(6579,28,3,30,46),(6580,28,4,30,64),(6581,28,5,30,82),(6582,28,6,30,100),(6583,28,7,30,118),(6584,28,8,30,136),(6585,28,9,30,154),(6586,28,10,30,172),(6587,28,11,30,190),(6588,28,12,30,208),(6589,28,13,30,226),(6590,28,14,30,244),(6591,28,15,30,262),(6592,28,16,30,280),(6593,28,17,30,298),(6594,28,18,30,316),(6595,28,19,30,334),(6596,28,20,30,352),(6597,28,21,30,370),(6598,28,22,30,388),(6599,28,23,30,406),(6600,28,24,30,424),(6601,28,1,30,12),(6602,28,2,30,30),(6603,28,3,30,48),(6604,28,4,30,66),(6605,28,5,30,84),(6606,28,6,30,102),(6607,28,7,30,120),(6608,28,8,30,138),(6609,28,9,30,156),(6610,28,10,30,174),(6611,28,11,30,192),(6612,28,12,30,210),(6613,28,13,30,228),(6614,28,14,30,246),(6615,28,15,30,264),(6616,28,16,30,282),(6617,28,17,30,300),(6618,28,18,30,318),(6619,28,19,30,336),(6620,28,20,30,354),(6621,28,21,30,372),(6622,28,22,30,390),(6623,28,23,30,408),(6624,28,24,30,426),(6625,28,1,30,14),(6626,28,2,30,32),(6627,28,3,30,50),(6628,28,4,30,68),(6629,28,5,30,86),(6630,28,6,30,104),(6631,28,7,30,122),(6632,28,8,30,140),(6633,28,9,30,158),(6634,28,10,30,176),(6635,28,11,30,194),(6636,28,12,30,212),(6637,28,13,30,230),(6638,28,14,30,248),(6639,28,15,30,266),(6640,28,16,30,284),(6641,28,17,30,302),(6642,28,18,30,320),(6643,28,19,30,338),(6644,28,20,30,356),(6645,28,21,30,374),(6646,28,22,30,392),(6647,28,23,30,410),(6648,28,24,30,428),(6649,28,1,30,15),(6650,28,2,30,33),(6651,28,3,30,51),(6652,28,4,30,69),(6653,28,5,30,87),(6654,28,6,30,105),(6655,28,7,30,123),(6656,28,8,30,141),(6657,28,9,30,159),(6658,28,10,30,177),(6659,28,11,30,195),(6660,28,12,30,213),(6661,28,13,30,231),(6662,28,14,30,249),(6663,28,15,30,267),(6664,28,16,30,285),(6665,28,17,30,303),(6666,28,18,30,321),(6667,28,19,30,339),(6668,28,20,30,357),(6669,28,21,30,375),(6670,28,22,30,393),(6671,28,23,30,411),(6672,28,24,30,429),(6673,28,1,30,16),(6674,28,2,30,34),(6675,28,3,30,52),(6676,28,4,30,70),(6677,28,5,30,88),(6678,28,6,30,106),(6679,28,7,30,124),(6680,28,8,30,142),(6681,28,9,30,160),(6682,28,10,30,178),(6683,28,11,30,196),(6684,28,12,30,214),(6685,28,13,30,232),(6686,28,14,30,250),(6687,28,15,30,268),(6688,28,16,30,286),(6689,28,17,30,304),(6690,28,18,30,322),(6691,28,19,30,340),(6692,28,20,30,358),(6693,28,21,30,376),(6694,28,22,30,394),(6695,28,23,30,412),(6696,28,24,30,430),(6697,29,1,30,3),(6698,29,2,30,21),(6699,29,3,30,39),(6700,29,4,30,57),(6701,29,5,30,75),(6702,29,6,30,93),(6703,29,7,30,111),(6704,29,8,30,129),(6705,29,9,30,147),(6706,29,10,30,165),(6707,29,11,30,183),(6708,29,12,30,201),(6709,29,13,30,219),(6710,29,14,30,237),(6711,29,15,30,255),(6712,29,16,30,273),(6713,29,17,30,291),(6714,29,18,30,309),(6715,29,19,30,327),(6716,29,20,30,345),(6717,29,21,30,363),(6718,29,22,30,381),(6719,29,23,30,399),(6720,29,24,30,417),(6721,29,1,30,5),(6722,29,2,30,23),(6723,29,3,30,41),(6724,29,4,30,59),(6725,29,5,30,77),(6726,29,6,30,95),(6727,29,7,30,113),(6728,29,8,30,131),(6729,29,9,30,149),(6730,29,10,30,167),(6731,29,11,30,185),(6732,29,12,30,203),(6733,29,13,30,221),(6734,29,14,30,239),(6735,29,15,30,257),(6736,29,16,30,275),(6737,29,17,30,293),(6738,29,18,30,311),(6739,29,19,30,329),(6740,29,20,30,347),(6741,29,21,30,365),(6742,29,22,30,383),(6743,29,23,30,401),(6744,29,24,30,419),(6745,29,1,30,6),(6746,29,2,30,24),(6747,29,3,30,42),(6748,29,4,30,60),(6749,29,5,30,78),(6750,29,6,30,96),(6751,29,7,30,114),(6752,29,8,30,132),(6753,29,9,30,150),(6754,29,10,30,168),(6755,29,11,30,186),(6756,29,12,30,204),(6757,29,13,30,222),(6758,29,14,30,240),(6759,29,15,30,258),(6760,29,16,30,276),(6761,29,17,30,294),(6762,29,18,30,312),(6763,29,19,30,330),(6764,29,20,30,348),(6765,29,21,30,366),(6766,29,22,30,384),(6767,29,23,30,402),(6768,29,24,30,420),(6769,29,1,30,8),(6770,29,2,30,26),(6771,29,3,30,44),(6772,29,4,30,62),(6773,29,5,30,80),(6774,29,6,30,98),(6775,29,7,30,116),(6776,29,8,30,134),(6777,29,9,30,152),(6778,29,10,30,170),(6779,29,11,30,188),(6780,29,12,30,206),(6781,29,13,30,224),(6782,29,14,30,242),(6783,29,15,30,260),(6784,29,16,30,278),(6785,29,17,30,296),(6786,29,18,30,314),(6787,29,19,30,332),(6788,29,20,30,350),(6789,29,21,30,368),(6790,29,22,30,386),(6791,29,23,30,404),(6792,29,24,30,422),(6793,29,1,30,11),(6794,29,2,30,29),(6795,29,3,30,47),(6796,29,4,30,65),(6797,29,5,30,83),(6798,29,6,30,101),(6799,29,7,30,119),(6800,29,8,30,137),(6801,29,9,30,155),(6802,29,10,30,173),(6803,29,11,30,191),(6804,29,12,30,209),(6805,29,13,30,227),(6806,29,14,30,245),(6807,29,15,30,263),(6808,29,16,30,281),(6809,29,17,30,299),(6810,29,18,30,317),(6811,29,19,30,335),(6812,29,20,30,353),(6813,29,21,30,371),(6814,29,22,30,389),(6815,29,23,30,407),(6816,29,24,30,425),(6817,29,1,30,12),(6818,29,2,30,30),(6819,29,3,30,48),(6820,29,4,30,66),(6821,29,5,30,84),(6822,29,6,30,102),(6823,29,7,30,120),(6824,29,8,30,138),(6825,29,9,30,156),(6826,29,10,30,174),(6827,29,11,30,192),(6828,29,12,30,210),(6829,29,13,30,228),(6830,29,14,30,246),(6831,29,15,30,264),(6832,29,16,30,282),(6833,29,17,30,300),(6834,29,18,30,318),(6835,29,19,30,336),(6836,29,20,30,354),(6837,29,21,30,372),(6838,29,22,30,390),(6839,29,23,30,408),(6840,29,24,30,426),(6841,29,1,30,15),(6842,29,2,30,33),(6843,29,3,30,51),(6844,29,4,30,69),(6845,29,5,30,87),(6846,29,6,30,105),(6847,29,7,30,123),(6848,29,8,30,141),(6849,29,9,30,159),(6850,29,10,30,177),(6851,29,11,30,195),(6852,29,12,30,213),(6853,29,13,30,231),(6854,29,14,30,249),(6855,29,15,30,267),(6856,29,16,30,285),(6857,29,17,30,303),(6858,29,18,30,321),(6859,29,19,30,339),(6860,29,20,30,357),(6861,29,21,30,375),(6862,29,22,30,393),(6863,29,23,30,411),(6864,29,24,30,429),(6865,29,1,30,17),(6866,29,2,30,35),(6867,29,3,30,53),(6868,29,4,30,71),(6869,29,5,30,89),(6870,29,6,30,107),(6871,29,7,30,125),(6872,29,8,30,143),(6873,29,9,30,161),(6874,29,10,30,179),(6875,29,11,30,197),(6876,29,12,30,215),(6877,29,13,30,233),(6878,29,14,30,251),(6879,29,15,30,269),(6880,29,16,30,287),(6881,29,17,30,305),(6882,29,18,30,323),(6883,29,19,30,341),(6884,29,20,30,359),(6885,29,21,30,377),(6886,29,22,30,395),(6887,29,23,30,413),(6888,29,24,30,431),(6889,29,1,30,18),(6890,29,2,30,36),(6891,29,3,30,54),(6892,29,4,30,72),(6893,29,5,30,90),(6894,29,6,30,108),(6895,29,7,30,126),(6896,29,8,30,144),(6897,29,9,30,162),(6898,29,10,30,180),(6899,29,11,30,198),(6900,29,12,30,216),(6901,29,13,30,234),(6902,29,14,30,252),(6903,29,15,30,270),(6904,29,16,30,288),(6905,29,17,30,306),(6906,29,18,30,324),(6907,29,19,30,342),(6908,29,20,30,360),(6909,29,21,30,378),(6910,29,22,30,396),(6911,29,23,30,414),(6912,29,24,30,432),(6913,30,1,30,2),(6914,30,2,30,20),(6915,30,3,30,38),(6916,30,4,30,56),(6917,30,5,30,74),(6918,30,6,30,92),(6919,30,7,30,110),(6920,30,8,30,128),(6921,30,9,30,146),(6922,30,10,30,164),(6923,30,11,30,182),(6924,30,12,30,200),(6925,30,13,30,218),(6926,30,14,30,236),(6927,30,15,30,254),(6928,30,16,30,272),(6929,30,17,30,290),(6930,30,18,30,308),(6931,30,19,30,326),(6932,30,20,30,344),(6933,30,21,30,362),(6934,30,22,30,380),(6935,30,23,30,398),(6936,30,24,30,416),(6937,30,1,30,5),(6938,30,2,30,23),(6939,30,3,30,41),(6940,30,4,30,59),(6941,30,5,30,77),(6942,30,6,30,95),(6943,30,7,30,113),(6944,30,8,30,131),(6945,30,9,30,149),(6946,30,10,30,167),(6947,30,11,30,185),(6948,30,12,30,203),(6949,30,13,30,221),(6950,30,14,30,239),(6951,30,15,30,257),(6952,30,16,30,275),(6953,30,17,30,293),(6954,30,18,30,311),(6955,30,19,30,329),(6956,30,20,30,347),(6957,30,21,30,365),(6958,30,22,30,383),(6959,30,23,30,401),(6960,30,24,30,419),(6961,30,1,30,6),(6962,30,2,30,24),(6963,30,3,30,42),(6964,30,4,30,60),(6965,30,5,30,78),(6966,30,6,30,96),(6967,30,7,30,114),(6968,30,8,30,132),(6969,30,9,30,150),(6970,30,10,30,168),(6971,30,11,30,186),(6972,30,12,30,204),(6973,30,13,30,222),(6974,30,14,30,240),(6975,30,15,30,258),(6976,30,16,30,276),(6977,30,17,30,294),(6978,30,18,30,312),(6979,30,19,30,330),(6980,30,20,30,348),(6981,30,21,30,366),(6982,30,22,30,384),(6983,30,23,30,402),(6984,30,24,30,420),(6985,30,1,30,9),(6986,30,2,30,27),(6987,30,3,30,45),(6988,30,4,30,63),(6989,30,5,30,81),(6990,30,6,30,99),(6991,30,7,30,117),(6992,30,8,30,135),(6993,30,9,30,153),(6994,30,10,30,171),(6995,30,11,30,189),(6996,30,12,30,207),(6997,30,13,30,225),(6998,30,14,30,243),(6999,30,15,30,261),(7000,30,16,30,279),(7001,30,17,30,297),(7002,30,18,30,315),(7003,30,19,30,333),(7004,30,20,30,351),(7005,30,21,30,369),(7006,30,22,30,387),(7007,30,23,30,405),(7008,30,24,30,423),(7009,30,1,30,11),(7010,30,2,30,29),(7011,30,3,30,47),(7012,30,4,30,65),(7013,30,5,30,83),(7014,30,6,30,101),(7015,30,7,30,119),(7016,30,8,30,137),(7017,30,9,30,155),(7018,30,10,30,173),(7019,30,11,30,191),(7020,30,12,30,209),(7021,30,13,30,227),(7022,30,14,30,245),(7023,30,15,30,263),(7024,30,16,30,281),(7025,30,17,30,299),(7026,30,18,30,317),(7027,30,19,30,335),(7028,30,20,30,353),(7029,30,21,30,371),(7030,30,22,30,389),(7031,30,23,30,407),(7032,30,24,30,425),(7033,30,1,30,12),(7034,30,2,30,30),(7035,30,3,30,48),(7036,30,4,30,66),(7037,30,5,30,84),(7038,30,6,30,102),(7039,30,7,30,120),(7040,30,8,30,138),(7041,30,9,30,156),(7042,30,10,30,174),(7043,30,11,30,192),(7044,30,12,30,210),(7045,30,13,30,228),(7046,30,14,30,246),(7047,30,15,30,264),(7048,30,16,30,282),(7049,30,17,30,300),(7050,30,18,30,318),(7051,30,19,30,336),(7052,30,20,30,354),(7053,30,21,30,372),(7054,30,22,30,390),(7055,30,23,30,408),(7056,30,24,30,426),(7057,30,1,30,15),(7058,30,2,30,33),(7059,30,3,30,51),(7060,30,4,30,69),(7061,30,5,30,87),(7062,30,6,30,105),(7063,30,7,30,123),(7064,30,8,30,141),(7065,30,9,30,159),(7066,30,10,30,177),(7067,30,11,30,195),(7068,30,12,30,213),(7069,30,13,30,231),(7070,30,14,30,249),(7071,30,15,30,267),(7072,30,16,30,285),(7073,30,17,30,303),(7074,30,18,30,321),(7075,30,19,30,339),(7076,30,20,30,357),(7077,30,21,30,375),(7078,30,22,30,393),(7079,30,23,30,411),(7080,30,24,30,429),(7081,30,1,30,17),(7082,30,2,30,35),(7083,30,3,30,53),(7084,30,4,30,71),(7085,30,5,30,89),(7086,30,6,30,107),(7087,30,7,30,125),(7088,30,8,30,143),(7089,30,9,30,161),(7090,30,10,30,179),(7091,30,11,30,197),(7092,30,12,30,215),(7093,30,13,30,233),(7094,30,14,30,251),(7095,30,15,30,269),(7096,30,16,30,287),(7097,30,17,30,305),(7098,30,18,30,323),(7099,30,19,30,341),(7100,30,20,30,359),(7101,30,21,30,377),(7102,30,22,30,395),(7103,30,23,30,413),(7104,30,24,30,431),(7105,30,1,30,18),(7106,30,2,30,36),(7107,30,3,30,54),(7108,30,4,30,72),(7109,30,5,30,90),(7110,30,6,30,108),(7111,30,7,30,126),(7112,30,8,30,144),(7113,30,9,30,162),(7114,30,10,30,180),(7115,30,11,30,198),(7116,30,12,30,216),(7117,30,13,30,234),(7118,30,14,30,252),(7119,30,15,30,270),(7120,30,16,30,288),(7121,30,17,30,306),(7122,30,18,30,324),(7123,30,19,30,342),(7124,30,20,30,360),(7125,30,21,30,378),(7126,30,22,30,396),(7127,30,23,30,414),(7128,30,24,30,432);
/*!40000 ALTER TABLE `experiment_profilehint` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `experiment_questions`
--
DROP TABLE IF EXISTS `experiment_questions`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `experiment_questions` (
`worker_id` int(11) NOT NULL,
`GrpSol` longtext NOT NULL,
`InvSol` longtext NOT NULL,
`DegConf` int(11) NOT NULL,
`Diff` longtext NOT NULL,
`GrpExp1_1` int(10) unsigned NOT NULL,
`GrpExp1_2` int(10) unsigned NOT NULL,
`GrpExp1_3` int(10) unsigned NOT NULL,
`GrpExp1_4` int(10) unsigned NOT NULL,
`GrpExp1_5` int(10) unsigned NOT NULL,
`GrpExp1_6` int(10) unsigned NOT NULL,
`GrpExp1_7` int(10) unsigned NOT NULL,
`GrpExp2` longtext NOT NULL,
`Sex` varchar(35) NOT NULL,
`Age` int(10) unsigned NOT NULL,
`Edu` varchar(35) NOT NULL,
`Empl_schoolFull` varchar(35) NOT NULL,
`Empl_schoolPart` varchar(35) NOT NULL,
`Empl_full` varchar(35) NOT NULL,
`Empl_part` varchar(35) NOT NULL,
`Country` longtext NOT NULL,
`HITs` longtext NOT NULL,
PRIMARY KEY (`worker_id`),
CONSTRAINT `experiment_questions_worker_id_d4d07782_fk_auth_user_id` FOREIGN KEY (`worker_id`) REFERENCES `auth_user` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `experiment_questions`
--
LOCK TABLES `experiment_questions` WRITE;
/*!40000 ALTER TABLE `experiment_questions` DISABLE KEYS */;
INSERT INTO `experiment_questions` VALUES (1,'D','D',80,'They are the same',5,6,5,5,6,5,5,'Yeah, we all used our different charts to pick the best candidate','male',23,'undergrad','no','no','no','no','US','1000'),(2,'B','B',80,'They were the same (hopefully, unless someone decided to just do their own thing and vote D). ',2,2,2,3,5,5,3,'The only thing that the majority of the members could agree with that the best candidate was either B or D. More people wanted to be argumentative than anything else, and couldn\'t reach a happy medium in that most people agreed with B. ','female',27,'undergrad','yes','no','yes','no','USA','300'),(4,'D','D',90,'They are the same',6,6,6,6,6,7,7,'One of them did, one of them sort of did. WOOF was very communicative with me and helped me to put all the pieces together. Steve left halfway through :( but something they said before they left helped anyway. ','female',23,'some college','no','no','yes','no','United States','3300'),(6,'b','b',70,'many people said b but some people said a',4,3,3,4,4,4,4,'yes, they offered reasonings','male',23,'undergrad','no','no','no','yes','usa','100000'),(7,'A','D',100,'The difference is my strongest candidate is different than my group members candidate so I prefer mine. The group decision, I had to compromise.',7,7,7,7,7,7,6,'One of them did to the end, that was Dee. She and I shared our candidates ratings and compared them to see which was the best choice which required compromises. The other helped in the beginning but left maybe 3 minutes in., he was Zongo.','male',24,'undergrad','yes','no','no','no','USA','2,400'),(9,'D','D',50,'We all agreed.',5,5,5,5,5,5,5,'Yes, but I think most of the other groups contribution in chat led to the decision.','female',26,'some college','yes','no','no','no','united states','7500'),(10,'B','D',50,'The group was split between B and D. My data looked like D was better, so that\'s what I would choose.',5,6,6,6,6,5,5,'Yes, we all discussed our data.','female',36,'masters','no','no','no','no','United States','40000'),(13,'A','A',100,'I and the other person who was still communicating weighed the grades and A seemed to be the stronger candidate. Our third person stopped communicating, so I have no idea what they did.',7,7,7,7,7,7,7,'We compared pluses and zeros and found one that had more. Our third person was not helpful, as he stopped chatting for some reason.','female',38,'high school','no','no','no','no','United States','224000'),(14,'A','B',0,'we figured out each person had different info',6,3,6,4,2,3,6,'I think so, we cooperated well','male',30,'undergrad','no','no','yes','no','USA','15600'),(15,'B','B',100,'Individually some of the workers prefer option D over candidate B. This can be explain because we were given different information about the candidates.',7,6,7,7,7,7,7,'At the beginning there were different opinions about the best candidates, B or D. It looked like we were managing different information, so we narrowed down the choices to this 2 candidates and decide to vote for the best choice as a group. 10 votes in favor of B, and 2 votes in favor of the candidate D. For my data, the choice made by the group was the best possible one, since the candidate B did average or above average in every category except for Arithmatic.','male',22,'some college','no','yes','no','no','Venezuela','4700'),(16,'B','B',70,'N/A',4,4,4,4,4,4,5,'Yes. They gave their opinion about the correct answer.','male',22,'undergrad','no','no','yes','no','United States','10000'),(17,'A','Candidate A',90,'It was different at first, but in the end we all decided to go with A because between the three of us, A had the most positives.',7,7,7,7,7,7,7,'Yes, they helped me. One person had a really good idea to use a total number between the three of us to give us the better candidate. They seemed really smart with that.','female',32,'some college','no','no','yes','no','USA','13100'),(19,'B','D',90,'I had a strong preference for the option D, but a majority of the others in my group selected B. Therefore it was much easier just to agree with my group, then to waste more time debating my preference most others did not agree with. ',2,2,4,2,2,1,6,'I do not recall taking part in anything puzzle related. If there was supposed to be something to that effect, i did not get a chance to do it. ','female',28,'undergrad','no','no','yes','no','United States ','4500'),(20,'A','D',70,'We were shown different results. For me, D had the best results. Overall from all the results, A had the highest total.',6,6,6,6,6,6,6,'Yes, we learned that each person was shown different results. Then we agreed on choosing the candidate with the highest total overall.','male',35,'doctoral','no','no','no','yes','USA','2000'),(21,'B','B',100,'N/A',6,5,5,5,5,6,6,'The group\'s reassurance is what helped us out. I assume the puzzle was the categories listed that are irrelevant to normal job performance.','male',31,'undergrad','no','no','yes','no','USA','200'),(22,'B','D',80,'It seemed like different people in the group were exposed to different scores for each of the candidates. The scores that I saw showed D only scoring \"bad\" on one metric, D had three \"good\" scores and all the rest were average. This was the best overall score in my opinion. D had the fewest \"bad\" scores compared to everyone else, and tied another candidate for the most \"good\" scores (candidate B).',4,3,3,3,4,3,5,'Everyone seemed to just give their opinion without really providing too much detail. The little detail that was provided seemed to indicate we might have been exposed to different information for the candidates. It was a bit confusing, and I don\'t think people felt very cohesive within the group.','male',44,'undergrad','no','no','yes','no','U.S.','16500'),(23,'B','D',90,'I believe that D was better across the board, but B was my second choice. My group agreed on B and I can agree with that choice as well ',6,6,6,6,6,6,6,'We worked together. We felt that the information each of us were given were not exactly the same. We had to work together to make the best decision, blind. ','female',31,'high school','no','no','no','yes','USA','5000'),(24,'Option B','Option A',70,'I think we may have had different data. But, my Option A had the most positives and the least negatives. My Option D was close, but there were some minor differences. Therefore I think I personally would have recommend Option A, but Option B was the clear group favorite.',6,3,6,6,4,3,4,'They were. I was \"Carson\" so I was the one who tried to get everyone organized and upvote the person we thought was best for the final decision. Everyone participated and we were able to decide on our candidate. There was a lot of input and everyone was agreeable, it was definitely a group effort.','male',26,'undergrad','no','no','yes','no','USA','20,000'),(25,'B','B',100,'The group and my individual solution were the same.',6,6,6,6,7,7,7,'Yes, we talked about things until it was put to a group vote.','female',60,'undergrad','no','no','yes','no','United States','1060'),(26,'B','B',90,'Some people were interested in Candidate D, while a majority were interested in Candidate B. Of the tests that measured skills, Candidate B performed the best while Candidate D came close, but was not as good as Candidate B.',6,7,7,6,5,6,6,'We all seemed to agree that one candidate was stronger than the others.','male',30,'undergrad','no','no','yes','no','USA','33000'),(27,'B','D',50,'We all had different data about the candidates.',3,2,2,3,5,4,5,'The tool was awful. We couldn\'t communicate well.','male',34,'undergrad','no','no','yes','no','Canada','11000'),(28,'B','B',90,'The solutions were the same as I agreed with my group.',5,6,5,6,6,7,7,'Everyone seemed to agree on B based on the test scores. The group helped me to shore up my own position which was B as well.','male',44,'some college','no','no','yes','no','United States','1000'),(29,'D','D',90,'My group came to the conclusion of D being the best candidate.',7,7,7,7,7,7,7,'They were okay in helping. It is hard to do it in a forum setting but most of us agreed that D was the clear winner.','female',29,'some college','no','no','yes','no','USA','500'),(30,'D','D',60,'They were the same.',5,5,5,5,5,5,5,'I was having trouble deciding between 2 candidates so I looked at which one the others favored.','female',31,'some college','no','no','yes','no','US','33130'),(31,'B','A or B',90,'To me, it seemed that A had better qualifications because he or she had a lot of +\'s and skills, much more so than B.',5,6,6,6,5,5,6,'They were helpful in providing advice and communicating consistently.','female',36,'undergrad','no','no','yes','no','USA','13,000'),(35,'A','A',80,'they aren\'t different',5,5,5,5,5,6,4,'THey all provided good insight and opinions','male',47,'undergrad','yes','no','no','no','USA','10500'),(36,'B','D',90,'Everybody apparently was given different statistics. Both B and D did well on my page with D doing slightly better, but the overall sense was that more people had B doing well.',6,6,6,6,6,6,6,'Everyone used upvotes as a strategy to count score with sporadic posts updating the current score','female',27,'undergrad','no','no','yes','no','United States','1300'),(38,'B','B',50,'there\'s a chance they may be different, since we were all given different data. Some candidates D had more + signs, while others\' B had the most. This doesn\'t seem very fair.',5,6,6,6,5,5,6,'Somewhat. I believe we reached a consensus, yet some late stragglers may choose D if they don\'t read the whole chat.','female',39,'some college','no','no','no','yes','United States of America','2270'),(39,'D','D',60,'The majority voted D so we had the same solution',5,3,3,4,4,5,5,'Yes, most of the members in the group had the same opinion as mine so I was more confident about the result','female',28,'some college','no','no','yes','no','United States','3000'),(41,'B','B',90,'most of them know b is the best candidate',7,7,6,6,6,6,7,'yes by telling their choices','male',25,'masters','no','no','yes','no','US','10000+'),(42,'B','B',70,'N/A, they were the same.',3,3,4,5,5,6,6,'There wasn\'t much interaction. It seemed like the group had pretty much decided when I arrived and I just agreed with what the final choice was, since it matched my own opinion.','female',53,'undergrad','no','no','yes','no','United States','15000'),(43,'D','D',100,'It was just me. I waited for 20 minutes and no one else came.',4,4,4,4,4,4,4,'There was no group. I chose D because it had the most positive test results.','female',32,'undergrad','no','no','yes','no','USA','7000'),(44,'D','D',100,'N/A',6,6,6,6,6,6,6,'Everyone had different results looks like, but D was most average.','female',33,'some college','no','no','no','no','US','5700'),(45,'D','B',40,'We were all given different information. Some were given info that made B better and some were given info giving D better. My info showed B was better',6,6,6,6,6,4,6,'Yes we were able to figure out that we all had different info','female',59,'undergrad','no','no','no','yes','US','30000'),(46,'D','D',50,'They were the same',6,5,5,5,5,6,6,'Yeah they helped a lot, we quickly noticed that we weren\'t seeing the same information and we averaged out all out combined scores and looked like we came to a decision that we liked. ','male',34,'undergrad','no','no','yes','no','United States','9800'),(47,'D','D',50,'They\'re the same.',6,6,6,6,6,6,6,'Yes, we all communicated and realized that the sheets we got were different so we held a vote. ','male',30,'undergrad','no','no','yes','no','United States','6907'),(48,'B','B',50,'Same',2,1,1,2,6,6,6,'I originally liked A but I could see B as a good candidate so I agreed','male',27,'some college','yes','no','no','yes','USA','5000'),(49,'D','B',0,'My group discovered that everybody had different results. One person\'s candidate B did not have the same credentials as another person\'s candidate B. We decided on D as a majority vote. ',6,6,6,6,6,6,6,'Yes. We shared information on our candidates and came up with a decision together.','female',21,'some college','yes','no','no','no','USA','1600'),(50,'D','D',100,'Same solution',6,6,6,6,6,6,6,'No, I figured it out by myself and then saw some other members had the same answer','female',29,'undergrad','no','no','yes','no','Chile','10000'),(51,'D','B',50,'B looked best on paper to me, but many of my group said that was the weakest so I went with D',6,6,6,6,6,6,6,'They explained what was on there screens','female',23,'undergrad','no','no','no','yes','USA','6000'),(52,'D','D',80,'D was the best average candidate, but A had the most positives with 2 negatives.',6,6,6,7,7,7,7,'Everyone just basically communicated which of their candidates had the least negatives, and we all chose what we thought was best.','male',28,'high school','no','no','yes','no','United States','1000'),(54,'D','A',40,'Apparently the group was given different criteria for each candidate, apparently the survey admins were trying to trick us. Based on mutual agreement, we went with D, even though for me (and some others) A seemed to be slightly better.',5,6,6,5,6,6,5,'Yes, we communicated our initial preferences. However, when it became apparent that we were not all seeing the same criteria, we negotiated until we came up with a response.','male',52,'undergrad','no','no','yes','no','USA','2500'),(55,'D','D',30,'Some people wanted a different candidate but a majority decided on D',2,3,2,4,4,4,5,'We figured out some of us had different info. Others didn\'t seem to get that.','male',26,'some college','no','no','no','no','USA','40k'),(57,'D','D',90,'n/a',6,6,5,5,5,7,7,'We all put in our own input and discussed in depth what we were all looking at, what was important, and why certain attributes were important.','female',26,'high school','yes','no','no','no','USA','34000'),(58,'D','D',90,'The majority of us agreed on D',6,6,6,6,6,6,6,'Everyone was helpful in debating what candidate had more positives and what those positives were in.','male',28,'some college','no','no','yes','no','united states','2100'),(59,'Candidate D','D',90,'They are the same ',5,5,5,6,6,7,6,'People just mainly said who they voted for, there wasn\'t a lot of discussion as to why. A few people did mention that Candidate D was more well rounded. ','female',42,'undergrad','no','no','yes','no','United States ','15000'),(63,'D','A',70,'The group decided on D because everyones candidates were different. D was a comprimise between all of us',6,6,6,6,6,6,5,'Well it seems as though all candidates differed which made it difficult. But choosing the best between the majority was our strategy so that helped.','female',32,'undergrad','no','no','no','no','USA','19,000'),(64,'D','D',50,'Well the group was swaying with either D or B. I said B but alot of people said D and I feel D is a good choice overall because of the less -\'s rather and 0 which was more equal',5,4,5,5,4,5,5,'Well they made me view D more closely and I saw it was a better choice.','male',30,'undergrad','no','no','yes','no','USA','3000'),(66,'D','D',100,'Same',7,7,7,7,7,7,7,'We chose D because he looked the best','male',24,'some college','yes','no','yes','no','USA','5100'),(67,'D','B',30,'Most members in my group decided D. However, I only saw mostly average scores and a larger number of negatives for that candidate.',7,5,5,5,4,2,7,'In a way they did help. Though it was hard to be certain that we were all looking at the same exact information.','male',26,'some college','no','no','yes','no','USA','80k'),(68,'D','D',100,'None',4,4,3,4,3,4,4,'Yes they figured it out with me','male',27,'some college','yes','no','no','no','USA','5555'),(69,'D','B',90,'B had more positives and averages than D.',5,5,5,5,5,5,5,'They gave reasons and didn\'t immediately shut down anyone who disagreed.','female',33,'some college','no','no','no','yes','USA','1000'),(70,'A','A',100,'N/A',6,6,6,6,6,6,5,'No one really said anything other than who they liked the best.','female',24,'some college','yes','no','no','no','USA','2000'),(71,'B','B',70,'They are not different. Most wanted B.',5,5,5,5,5,5,5,'They helped and we communicated about the puzzle. Everyone had some good ideas. ','female',49,'masters','no','no','yes','no','united states','26000'),(72,'B','B',70,'Me and my group selected B',6,6,6,6,6,6,6,'By sharing their ideas my group members helped me to solve the puzzle.','male',28,'undergrad','no','no','yes','no','United States','20'),(73,'B','B',50,'N/A',5,5,5,5,5,5,5,'They kind of just stopped talking, but I assumed we picked B','female',31,'undergrad','no','no','no','no','usa','2500'),(75,'D','B',70,'The group decided on D from the available information because as far as we could tell D had less negative tests and therefore would have less performance issues on the job overall. I began to secondguess this choice right at the very end though because B\'s list of positive score tests was very impressive sounding and made them seem to be the more intelligent and capable candidate overall, and one that is more capable of critical thinking skills necesarry to excel in the workforce. So looking at pure numbers of tests scored positive vs negative it would be D but looking at the actual tests themselves it seems to me like it would be B.',5,6,7,6,5,4,7,'They shared the test scores they had available to them just as I shared mine so we had a combined view of the entire candidate test list (or what was available to us since our third partner went MIA)','male',29,'some college','no','no','yes','yes','USA','12500'),(77,'D','D',90,'They are not different.',5,5,5,6,6,6,6,'For what it\'s worth, our third group member never said anything once we began discussing the candidates, so we were unsure as to whether the test results they had would show us anything that would change our minds about the candidates. The other group member who did actually participate and I both entered the test results we had, since they differed. We didn\'t know this at first, of course, but when our initial assessment differed, we quickly realized we had access to different pieces of the puzzle. With more pieces, D looked better than B, which was my first inclination.','male',40,'undergrad','no','no','no','no','USA','8200'),(78,'D','D',90,'no difference.',4,4,4,4,4,4,4,'Most people were just saying hi . ','female',31,'some college','no','no','no','yes','usa','3420'),(79,'D','A',30,'I think A had more positive traits that make up for the negative traits',3,2,2,3,3,2,5,'They did point out good things to consider, but ultimately I disagreed with their conclusion.','female',28,'undergrad','no','no','yes','no','usa','2500'),(82,'B','A',60,'I preferred A as my first choice, then B. The group favored B and C, so we met in the middle with B as our selection.',5,6,6,5,6,6,6,'We quickly reached an agreement on which candidate to select based upon a selection that was \'in the middle\' for everyone.','female',35,'some college','no','yes','no','no','usa','500'),(83,'Candidate B','Candidate D',50,'Because this candidate has more ability than others ',4,3,2,3,2,1,3,'yeah they solve','male',26,'undergrad','no','no','yes','no','United statess','20'),(86,'candidate A','Candidate A',50,'This person has the ability to do it ',5,6,5,4,4,4,3,'No ','male',26,'undergrad','no','no','yes','no','United States','20');
/*!40000 ALTER TABLE `experiment_questions` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `experiment_taskuser`
--
DROP TABLE IF EXISTS `experiment_taskuser`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `experiment_taskuser` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`crowd` varchar(35) NOT NULL,
`time_type` varchar(35) NOT NULL,
`time_stamp` datetime NOT NULL,
`user_id` int(11) NOT NULL,
PRIMARY KEY (`id`),
KEY `experiment_taskuser_user_id_12b46309_fk_auth_user_id` (`user_id`),
KEY `experiment_taskuser_2cbc047f` (`crowd`),
KEY `experiment_taskuser_e5ae8353` (`time_stamp`),
CONSTRAINT `experiment_taskuser_user_id_12b46309_fk_auth_user_id` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=159 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `experiment_taskuser`
--
LOCK TABLES `experiment_taskuser` WRITE;
/*!40000 ALTER TABLE `experiment_taskuser` DISABLE KEYS */;
INSERT INTO `experiment_taskuser` VALUES (1,'room4','start','2016-11-11 16:33:27',10),(2,'room4','start','2016-11-11 16:33:29',15),(3,'room4','start','2016-11-11 16:33:37',23),(4,'room4','start','2016-11-11 16:33:41',19),(5,'room4','start','2016-11-11 16:33:49',25),(6,'room4','start','2016-11-11 16:34:03',26),(7,'room4','start','2016-11-11 16:34:30',24),(8,'room4','end','2016-11-11 16:36:38',26),(9,'room4','start','2016-11-11 16:37:22',2),(10,'room4','start','2016-11-11 16:37:34',16),(11,'room4','start','2016-11-11 16:39:54',29),(12,'room4','start','2016-11-11 16:41:02',28),(13,'room4','end','2016-11-11 16:42:11',29),(14,'room4','end','2016-11-11 16:43:37',2),(15,'room4','end','2016-11-11 16:43:38',28),(16,'room4','start','2016-11-11 16:44:25',30),(17,'room4','end','2016-11-11 16:44:35',23),(18,'room4','end','2016-11-11 16:44:38',10),(19,'room4','end','2016-11-11 16:44:54',24),(20,'room4','end','2016-11-11 16:45:18',15),(21,'room4','end','2016-11-11 16:45:19',16),(22,'room4','end','2016-11-11 16:46:11',19),(23,'room4','start','2016-11-11 16:46:25',22),(24,'room4','end','2016-11-11 16:47:27',25),(25,'room4','start','2016-11-11 16:47:37',25),(26,'room4','start','2016-11-11 16:48:19',33),(27,'room4','start','2016-11-11 16:48:37',32),(28,'room4','end','2016-11-11 16:48:45',30),(29,'room4','end','2016-11-11 16:49:21',32),(30,'room4','end','2016-11-11 16:51:05',22),(31,'room4','end','2016-11-11 16:51:43',33),(32,'room4','start','2016-11-11 16:54:00',33),(33,'room4','end','2016-11-11 16:54:12',33),(34,'room4','start','2016-11-11 16:54:36',35),(35,'room4','end','2016-11-11 16:57:44',35),(36,'room4','start','2016-11-11 16:57:45',9),(37,'room4','start','2016-11-11 16:57:46',36),(38,'room4','end','2016-11-11 17:02:18',9),(39,'room4','start','2016-11-11 17:03:07',37),(40,'room4','end','2016-11-11 17:04:37',36),(41,'room4','start','2016-11-11 17:09:51',38),(42,'room4','end','2016-11-11 17:11:06',37),(43,'room4','start','2016-11-11 17:13:04',39),(44,'room4','start','2016-11-11 17:15:30',40),(45,'room4','end','2016-11-11 17:18:56',39),(46,'room4','end','2016-11-11 17:22:57',38),(47,'room4','end','2016-11-11 17:26:18',40),(48,'room4','start','2016-11-11 17:27:13',21),(49,'room4','start','2016-11-11 17:27:37',6),(50,'room4','start','2016-11-11 17:29:25',31),(51,'room4','start','2016-11-11 17:30:44',42),(52,'room4','end','2016-11-11 17:31:34',21),(53,'room4','end','2016-11-11 17:33:01',31),(54,'room4','start','2016-11-11 17:33:12',31),(55,'room4','end','2016-11-11 17:36:32',31),(56,'room4','end','2016-11-11 17:39:35',6),(57,'room4','end','2016-11-11 17:42:04',42),(58,'room5','start','2016-11-11 17:57:35',43),(59,'room6','start','2016-11-11 18:04:17',44),(60,'room6','start','2016-11-11 18:04:55',45),(61,'room6','start','2016-11-11 18:05:04',48),(62,'room6','start','2016-11-11 18:05:16',47),(63,'room6','start','2016-11-11 18:05:24',49),(64,'room6','start','2016-11-11 18:05:27',56),(65,'room6','start','2016-11-11 18:05:30',54),(66,'room6','start','2016-11-11 18:05:32',51),(67,'room6','start','2016-11-11 18:05:36',55),(68,'room6','start','2016-11-11 18:05:50',50),(69,'room6','start','2016-11-11 18:05:50',57),(70,'room6','start','2016-11-11 18:05:55',41),(71,'room6','start','2016-11-11 18:06:44',52),(72,'room6','start','2016-11-11 18:07:11',53),(73,'room6','start','2016-11-11 18:07:25',58),(74,'room6','start','2016-11-11 18:08:49',61),(75,'room6','start','2016-11-11 18:08:50',60),(76,'room6','end','2016-11-11 18:09:24',41),(77,'room6','start','2016-11-11 18:09:35',62),(78,'room6','end','2016-11-11 18:09:37',62),(79,'room6','end','2016-11-11 18:09:45',56),(80,'room6','end','2016-11-11 18:10:45',60),(81,'room6','end','2016-11-11 18:10:51',58),(82,'room6','start','2016-11-11 18:11:28',63),(83,'room6','end','2016-11-11 18:12:07',61),(84,'room6','end','2016-11-11 18:12:12',48),(85,'room6','start','2016-11-11 18:12:12',48),(86,'room6','end','2016-11-11 18:12:15',48),(87,'room6','start','2016-11-11 18:12:36',64),(88,'room6','start','2016-11-11 18:14:12',59),(89,'room6','end','2016-11-11 18:15:31',64),(90,'room6','end','2016-11-11 18:15:44',55),(91,'room6','start','2016-11-11 18:15:54',66),(92,'room6','end','2016-11-11 18:16:14',51),(93,'room6','end','2016-11-11 18:16:28',59),(94,'room6','start','2016-11-11 18:16:29',59),(95,'room6','end','2016-11-11 18:16:57',66),(96,'room6','end','2016-11-11 18:17:08',49),(97,'room5','end','2016-11-11 18:18:06',43),(98,'room6','end','2016-11-11 18:18:48',54),(99,'room6','end','2016-11-11 18:18:57',63),(100,'room6','end','2016-11-11 18:19:06',50),(101,'room6','end','2016-11-11 18:19:13',47),(102,'room6','end','2016-11-11 18:19:15',52),(103,'room6','end','2016-11-11 18:19:29',57),(104,'room6','end','2016-11-11 18:19:34',59),(105,'room6','end','2016-11-11 18:19:36',44),(106,'room6','end','2016-11-11 18:19:36',45),(107,'room6','end','2016-11-11 18:20:04',53),(108,'room6','start','2016-11-11 18:24:14',67),(109,'room6','end','2016-11-11 18:26:52',67),(110,'room6','start','2016-11-11 18:27:19',68),(111,'room6','end','2016-11-11 18:28:04',68),(112,'room6','start','2016-11-11 18:29:22',70),(113,'room6','start','2016-11-11 18:29:31',69),(114,'room6','start','2016-11-11 18:30:43',71),(115,'room6','end','2016-11-11 18:30:49',70),(116,'room6','end','2016-11-11 18:31:15',69),(117,'room6','end','2016-11-11 18:32:29',71),(118,'room6','start','2016-11-11 18:36:04',72),(119,'room6','start','2016-11-11 18:40:21',73),(120,'room6','end','2016-11-11 18:43:16',73),(121,'room6','end','2016-11-11 18:47:05',72),(122,'room7','start','2016-11-11 19:21:47',76),(123,'room7','start','2016-11-11 19:23:10',77),(124,'room7','start','2016-11-11 19:23:30',75),(125,'room7','end','2016-11-11 19:23:57',76),(126,'room7','start','2016-11-11 19:38:29',78),(127,'room7','end','2016-11-11 19:39:43',78),(128,'room7','end','2016-11-11 19:46:54',75),(129,'room7','end','2016-11-11 19:48:35',77),(130,'room7','start','2016-11-11 20:11:05',79),(131,'room7','end','2016-11-11 20:14:07',79),(132,'room8','start','2016-11-11 20:56:35',80),(133,'room8','end','2016-11-11 21:00:10',80),(134,'room8','start','2016-11-11 21:00:11',80),(135,'room8','start','2016-11-11 21:04:33',81),(136,'room8','end','2016-11-11 21:04:46',81),(137,'room8','end','2016-11-11 21:05:41',80),(138,'room8','start','2016-11-11 21:23:44',82),(139,'room8','end','2016-11-11 21:26:13',82),(140,'room8','start','2016-11-11 21:26:14',82),(141,'room8','end','2016-11-11 21:26:20',82),(142,'room8','start','2016-11-11 21:26:25',82),(143,'room8','start','2016-11-11 21:31:24',83),(144,'room8','start','2016-11-11 21:32:31',82),(145,'room8','end','2016-11-11 21:32:36',82),(146,'room8','start','2016-11-11 21:35:07',82),(147,'room8','end','2016-11-11 21:35:11',82),(148,'room8','end','2016-11-11 21:36:09',83),(149,'room8','end','2016-11-11 21:36:30',82),(150,'room8','start','2016-11-11 21:37:38',82),(151,'room8','end','2016-11-11 21:37:48',82),(152,'room8','start','2016-11-11 21:37:49',82),(153,'room8','end','2016-11-11 21:38:06',82),(154,'room8','start','2016-11-11 21:38:19',82),(155,'room8','end','2016-11-11 21:38:45',82),(156,'room8','start','2016-11-11 21:41:04',82),(157,'room11','start','2016-11-11 22:27:59',86),(158,'room11','end','2016-11-11 22:30:17',86);
/*!40000 ALTER TABLE `experiment_taskuser` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `experiment_userprofile`
--
DROP TABLE IF EXISTS `experiment_userprofile`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `experiment_userprofile` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`crowd_id` int(11) NOT NULL,
`profile_id` int(11) NOT NULL,
`user_id` int(11) NOT NULL,
PRIMARY KEY (`id`),
KEY `experiment_userprofile_crowd_id_e594bfc4_fk_experiment_crowd_id` (`crowd_id`),
KEY `experiment_userprof_profile_id_67390d27_fk_experiment_profile_id` (`profile_id`),
KEY `experiment_userprofile_user_id_09e9f097_fk_auth_user_id` (`user_id`),
CONSTRAINT `experiment_userprofile_crowd_id_e594bfc4_fk_experiment_crowd_id` FOREIGN KEY (`crowd_id`) REFERENCES `experiment_crowd` (`id`),
CONSTRAINT `experiment_userprofile_user_id_09e9f097_fk_auth_user_id` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`),
CONSTRAINT `experiment_userprof_profile_id_67390d27_fk_experiment_profile_id` FOREIGN KEY (`profile_id`) REFERENCES `experiment_profile` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=80 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `experiment_userprofile`
--
LOCK TABLES `experiment_userprofile` WRITE;
/*!40000 ALTER TABLE `experiment_userprofile` DISABLE KEYS */;
INSERT INTO `experiment_userprofile` VALUES (1,1,2,1),(2,1,26,4),(3,1,50,3),(4,2,2,20),(5,2,26,17),(6,2,50,14),(7,3,2,7),(8,3,26,13),(9,3,50,18),(10,4,74,10),(11,4,98,15),(12,4,122,23),(13,4,146,19),(14,4,170,25),(15,4,194,26),(16,4,218,27),(17,4,242,24),(18,4,266,2),(19,4,290,16),(20,4,314,29),(21,4,338,28),(22,4,362,30),(23,4,386,22),(24,4,410,33),(25,4,434,32),(26,4,458,35),(27,4,482,9),(28,4,506,36),(29,4,530,37),(30,4,554,38),(31,4,578,39),(32,4,602,40),(33,4,626,21),(34,4,650,6),(35,4,674,31),(36,4,698,42),(37,5,2,43),(38,6,74,44),(39,6,98,45),(40,6,122,48),(41,6,146,47),(42,6,170,49),(43,6,194,56),(44,6,218,46),(45,6,242,54),(46,6,266,51),(47,6,290,55),(48,6,314,50),(49,6,338,57),(50,6,362,41),(51,6,386,52),(52,6,410,53),(53,6,434,58),(54,6,458,61),(55,6,482,60),(56,6,506,62),(57,6,530,63),(58,6,554,64),(59,6,578,59),(60,6,602,66),(61,6,626,67),(62,6,650,68),(63,6,674,70),(64,6,698,69),(65,6,722,71),(66,6,746,72),(67,6,770,73),(68,7,74,76),(69,7,98,77),(70,7,122,75),(71,7,146,78),(72,7,170,79),(73,8,74,80),(74,8,98,81),(75,8,122,82),(76,8,146,83),(77,9,2,84),(78,10,2,85),(79,11,74,86);
/*!40000 ALTER TABLE `experiment_userprofile` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `forum_discussion`
--
DROP TABLE IF EXISTS `forum_discussion`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `forum_discussion` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` longtext NOT NULL,
`label` varchar(50) NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `label` (`label`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `forum_discussion`
--
LOCK TABLES `forum_discussion` WRITE;
/*!40000 ALTER TABLE `forum_discussion` DISABLE KEYS */;
INSERT INTO `forum_discussion` VALUES (1,'','room4'),(2,'','room5'),(3,'','room6'),(4,'','room7'),(5,'','room8'),(6,'','room11');
/*!40000 ALTER TABLE `forum_discussion` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `forum_statement`
--
DROP TABLE IF EXISTS `forum_statement`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `forum_statement` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`handle` longtext NOT NULL,
`message` longtext NOT NULL,
`timestamp` datetime NOT NULL,
`isreply` int(11) NOT NULL,
`parentid` int(11) NOT NULL,
`ups` int(11) NOT NULL,
`downs` int(11) NOT NULL,
`score` int(11) NOT NULL,
`lft` int(10) unsigned NOT NULL,
`rght` int(10) unsigned NOT NULL,
`tree_id` int(10) unsigned NOT NULL,
`level` int(10) unsigned NOT NULL,
`discussion_id` int(11) NOT NULL,
`parent_id` int(11) DEFAULT NULL,
`user_id` int(11) NOT NULL,
PRIMARY KEY (`id`),
KEY `forum_statement_discussion_id_57c97485_fk_forum_discussion_id` (`discussion_id`),
KEY `forum_statement_user_id_e8e2d38d_fk_auth_user_id` (`user_id`),
KEY `forum_statement_d7e6d55b` (`timestamp`),
KEY `forum_statement_caf7cc51` (`lft`),
KEY `forum_statement_3cfbd988` (`rght`),
KEY `forum_statement_656442a0` (`tree_id`),
KEY `forum_statement_c9e9a848` (`level`),
KEY `forum_statement_6be37982` (`parent_id`),
CONSTRAINT `forum_statement_discussion_id_57c97485_fk_forum_discussion_id` FOREIGN KEY (`discussion_id`) REFERENCES `forum_discussion` (`id`),
CONSTRAINT `forum_statement_parent_id_64a26ae8_fk_forum_statement_id` FOREIGN KEY (`parent_id`) REFERENCES `forum_statement` (`id`),
CONSTRAINT `forum_statement_user_id_e8e2d38d_fk_auth_user_id` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=295 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `forum_statement`
--
LOCK TABLES `forum_statement` WRITE;
/*!40000 ALTER TABLE `forum_statement` DISABLE KEYS */;
INSERT INTO `forum_statement` VALUES (1,'V','How about B?\n','2016-11-11 16:34:27',0,0,0,0,0,1,2,1,0,1,NULL,25),(2,'BabyE143','Hello Everyone. I am Erica nice to meet you all, and I look forward to working with you. v','2016-11-11 16:34:34',0,0,0,0,0,1,2,2,0,1,NULL,19),(3,'BabyE143','I believe D is a better choice if you ask me. ','2016-11-11 16:35:00',0,0,2,0,2,1,2,3,0,1,NULL,19),(4,'pc','HI ... how do you guys feel about D?\n','2016-11-11 16:35:02',0,0,1,0,1,1,2,4,0,1,NULL,23),(5,'BabyE143','D has many more + signs. ','2016-11-11 16:35:13',0,0,0,0,0,1,2,5,0,1,NULL,19),(6,'Carson','Hey Guys. I think A - most positives, least negatives','2016-11-11 16:35:14',0,0,0,0,0,1,2,6,0,1,NULL,24),(7,'K','Candidate B seems to be the best of the available candidates','2016-11-11 16:35:21',0,0,0,0,0,1,2,7,0,1,NULL,26),(8,'KH','D looks the best on my side.\n','2016-11-11 16:35:25',0,0,0,0,0,1,2,8,0,1,NULL,10),(9,'Black','Hi fellow workers, my name is Black. I think B is a good choice.','2016-11-11 16:35:33',0,0,0,0,0,1,2,9,0,1,NULL,15),(10,'V','D worries me on verbal comprehension','2016-11-11 16:35:37',0,0,1,1,0,1,2,10,0,1,NULL,25),(11,'V','I think B has a good mix of skills','2016-11-11 16:36:30',0,0,0,0,0,1,2,11,0,1,NULL,25),(12,'pc','Can we eliminate one? C?\n','2016-11-11 16:36:40',0,0,2,0,2,1,2,12,0,1,NULL,23),(13,'Carson','So how do we decide?','2016-11-11 16:36:44',0,0,0,0,0,1,2,13,0,1,NULL,24),(14,'Carson','Agree with eliminating C','2016-11-11 16:37:06',0,0,0,0,0,1,2,14,0,1,NULL,24),(15,'KH','C has almost all negatives for me.','2016-11-11 16:37:18',0,0,1,0,1,1,2,15,0,1,NULL,10),(16,'BabyE143','C is definitely out ','2016-11-11 16:37:18',0,0,0,0,0,1,2,16,0,1,NULL,19),(17,'V','Eliminating is a good idea. C is the obvious choice to go.','2016-11-11 16:37:22',0,0,0,0,0,1,2,17,0,1,NULL,25),(18,'pc','B & D have the most votes so far ... can we vote between the two options?\n','2016-11-11 16:37:30',0,0,0,0,0,1,2,18,0,1,NULL,23),(19,'User238','Hi','2016-11-11 16:37:42',0,0,0,0,0,1,2,19,0,1,NULL,16),(20,'Black','B did well, average or above average in everything except for Arithmatic.','2016-11-11 16:38:01',0,0,0,0,0,1,2,20,0,1,NULL,15),(21,'Carson','How about we list the remaining options 1 at a time and most upvotes wins?','2016-11-11 16:38:02',0,0,0,0,0,1,2,21,0,1,NULL,24),(22,'BabyE143','i still stand with D for my final choice. ','2016-11-11 16:38:05',0,0,0,0,0,1,2,22,0,1,NULL,19),(23,'Brittany','I agree that either B or D are a good choice.','2016-11-11 16:38:20',0,0,1,0,1,1,2,23,0,1,NULL,2),(24,'User238','I think that A is the best','2016-11-11 16:38:21',0,0,0,1,-1,1,2,24,0,1,NULL,16),(25,'BabyE143','Yep D is the best out of the options.\n','2016-11-11 16:38:28',0,0,2,0,2,1,2,25,0,1,NULL,19),(26,'KH','It\'s B or D from my data. My vote would be D.\n','2016-11-11 16:39:04',0,0,0,0,0,1,2,26,0,1,NULL,10),(27,'V','I think Carson has the right idea - go thru each item','2016-11-11 16:39:17',0,0,1,0,1,1,2,27,0,1,NULL,25),(28,'pc','IF you had to pick between B and D ... right that choice and we will see where we are?\n','2016-11-11 16:39:36',0,0,0,0,0,1,4,28,0,1,NULL,23),(29,'Black','My choice would be B.','2016-11-11 16:39:39',0,0,0,0,0,1,2,29,0,1,NULL,15),(30,'V','B','2016-11-11 16:39:56',0,0,0,0,0,1,2,30,0,1,NULL,25),(31,'Brittany','B','2016-11-11 16:40:19',0,0,0,0,0,1,2,31,0,1,NULL,2),(32,'Carson','I think we all have different data. But between B and D I\'ll go D','2016-11-11 16:40:21',0,0,0,0,0,1,4,32,0,1,NULL,24),(33,'BunBun','I believe Candidate D is the best.','2016-11-11 16:40:34',0,0,1,0,1,1,2,33,0,1,NULL,29),(34,'BunBun','I agree with D.','2016-11-11 16:40:45',1,32,8,1,7,2,3,32,1,1,32,29),(35,'BunBun','I think we should choose D.','2016-11-11 16:40:53',1,28,0,0,0,2,3,28,1,1,28,29),(36,'BabyE143','D. ','2016-11-11 16:41:09',0,0,1,0,1,1,4,34,0,1,NULL,19),(37,'User238','D','2016-11-11 16:41:17',0,0,0,0,0,1,4,35,0,1,NULL,16),(38,'BunBun','I really agree with you.','2016-11-11 16:41:28',1,37,0,0,0,2,3,35,1,1,37,29),(39,'pc','I believe we DO all have different information... therefore there is no way to logically make that choice. Can we all agree to B since at this moment it has the most votes???\n','2016-11-11 16:41:35',0,0,3,0,3,1,2,36,0,1,NULL,23),(40,'BunBun','That is a good idea. I agree.','2016-11-11 16:41:39',1,36,0,0,0,2,3,34,1,1,36,29),(41,'V','D seems to be the clear winner','2016-11-11 16:41:49',0,0,1,0,1,1,2,37,0,1,NULL,25),(42,'Brittany','I agree, pc. ','2016-11-11 16:42:08',0,0,1,0,1,1,2,38,0,1,NULL,2),(43,'Carson','Lets do this','2016-11-11 16:42:09',0,0,3,2,1,1,2,39,0,1,NULL,24),(44,'pc','OK, never mind ... D then?\n','2016-11-11 16:42:12',0,0,1,0,1,1,2,40,0,1,NULL,23),(45,'Carson','Upvote for Option B here','2016-11-11 16:42:16',0,0,13,1,12,1,4,41,0,1,NULL,24),(46,'Carson','Upvote for Option D here','2016-11-11 16:42:20',0,0,2,1,1,1,2,42,0,1,NULL,24),(47,'V','B','2016-11-11 16:42:29',0,0,1,0,1,1,2,43,0,1,NULL,25),(48,'Carson','Whatever wins, wins. We have different data so we just need to make a decision.','2016-11-11 16:42:30',0,0,0,0,0,1,2,44,0,1,NULL,24),(49,'JB','My vote is for B','2016-11-11 16:42:43',0,0,1,0,1,1,2,45,0,1,NULL,28),(50,'pc','B B B B ','2016-11-11 16:42:46',0,0,1,0,1,1,2,46,0,1,NULL,23),(51,'Carson','So B is leading 10-2, not sure how many people are in here though...','2016-11-11 16:43:37',0,0,1,0,1,1,2,47,0,1,NULL,24),(52,'BabyE143','B it is. Do we all agree? ','2016-11-11 16:43:38',0,0,1,0,1,1,8,48,0,1,NULL,19),(53,'pc','B has the most up votes. B has been steady choice. Can we agree to go with B','2016-11-11 16:43:45',0,0,2,0,2,1,2,49,0,1,NULL,23),(54,'pc','YES','2016-11-11 16:43:57',1,52,1,0,1,2,3,48,1,1,52,23),(55,'Carson','Fine with me!','2016-11-11 16:44:02',0,0,1,0,1,1,2,50,0,1,NULL,24),(56,'V','yup','2016-11-11 16:44:04',0,0,0,0,0,1,2,51,0,1,NULL,25),(57,'pc','','2016-11-11 16:44:04',1,52,0,0,0,4,5,48,1,1,52,23),(58,'Black','Good idea, it seems to be majority on B.','2016-11-11 16:44:08',1,45,0,0,0,2,3,41,1,1,45,15),(59,'V','we done?','2016-11-11 16:46:42',0,0,0,0,0,1,2,52,0,1,NULL,25),(60,'salsashark','Hello everyone! I think either B or D are the best choice. How about you?','2016-11-11 16:47:37',0,0,0,0,0,1,4,53,0,1,NULL,30),(61,'Snoopy','Hi everyone. I like D the best.','2016-11-11 16:47:57',0,0,0,1,-1,1,6,54,0,1,NULL,22),(62,'go49','Hello!','2016-11-11 16:48:52',0,0,0,0,0,1,2,55,0,1,NULL,33),(63,'mokka','','2016-11-11 16:48:57',0,0,0,0,0,1,2,56,0,1,NULL,32),(64,'mokka','Hello','2016-11-11 16:49:11',0,0,0,0,0,1,2,57,0,1,NULL,32),(65,'go49','do we have enough ppl?','2016-11-11 16:49:26',0,0,0,0,0,1,2,58,0,1,NULL,33),(66,'go49','hello?','2016-11-11 16:50:47',0,0,0,0,0,1,2,59,0,1,NULL,33),(67,'Snoopy','Seems like more people like B. I still think D is overall better. But, I\'ll go with B.','2016-11-11 16:50:55',1,52,1,0,1,6,7,48,1,1,52,22),(68,'Bob','Hi, I\'m Bob','2016-11-11 16:55:32',0,0,0,0,0,1,2,60,0,1,NULL,35),(69,'Bob','seems like A to me\n','2016-11-11 16:57:31',0,0,0,0,0,1,2,61,0,1,NULL,35),(70,'xtina','I think D has the widest range skills.','2016-11-11 17:02:06',0,0,0,0,0,1,2,62,0,1,NULL,9),(71,'Remy','B has 11 votes right now vs D at 7. Are we voting B??','2016-11-11 17:02:24',0,0,3,0,3,1,6,63,0,1,NULL,36),(72,'cryjohoover','Hi, everyone. What about Candidate A? Lots of pluses and some Averages.\n','2016-11-11 17:05:11',0,0,1,0,1,1,4,64,0,1,NULL,37),(73,'cryjohoover','So I see everyone saying D but one mine A has the most pluses and averages. ','2016-11-11 17:08:19',0,0,1,0,1,1,12,65,0,1,NULL,37),(74,'Aprilla','Yes.. i agree either A or B','2016-11-11 17:11:50',1,72,0,0,0,2,3,64,1,1,72,38),(75,'Aprilla','that must be from another group?\nI agree, A or B has better chances\n','2016-11-11 17:13:12',1,73,0,0,0,2,3,65,1,1,73,38),(76,'Aprilla','B has more pluses and less - than A','2016-11-11 17:14:09',1,73,0,0,0,4,7,65,1,1,73,38),(77,'Rainies','Hi there. I think candidate D is better','2016-11-11 17:15:05',0,0,0,0,0,1,2,66,0,1,NULL,39),(78,'Aprilla','Def B here\n','2016-11-11 17:15:13',1,71,0,0,0,2,3,63,1,1,71,38),(79,'Aprilla','B has 5 +, A has 4 +\nB has 2 -, A has 3 -','2016-11-11 17:15:54',1,71,0,0,0,4,5,63,1,1,71,38),(80,'MightyMouse','Hello\n','2016-11-11 17:17:43',0,0,0,0,0,1,2,67,0,1,NULL,40),(81,'Rainies','D candidate has 5+ in my case','2016-11-11 17:18:02',1,73,0,0,0,8,11,65,1,1,73,39),(82,'Aprilla','B','2016-11-11 17:18:05',1,60,0,0,0,2,3,53,1,1,60,38),(83,'Aprilla','B','2016-11-11 17:18:15',1,61,0,0,0,2,3,54,1,1,61,38),(84,'Aprilla','b','2016-11-11 17:18:26',1,61,0,0,0,4,5,54,1,1,61,38),(85,'MightyMouse','I think either A, with 5+ 3- or D with 4+ 3-','2016-11-11 17:19:17',0,0,0,0,0,1,6,68,0,1,NULL,40),(86,'Aprilla','In my case, B has 5 and D has 2\n..\nmost are going to select B, I believe','2016-11-11 17:20:12',1,81,0,0,0,9,10,65,2,1,81,38),(87,'MightyMouse','It seems we are either from different groups or our candidates are not in the same order.','2016-11-11 17:22:14',0,0,3,2,1,1,2,69,0,1,NULL,40),(88,'Aprilla','It looks like we all don\'t have the same info to work with. What a twist, eh? \n','2016-11-11 17:22:29',1,85,1,0,1,2,5,68,1,1,85,38),(89,'MightyMouse','Yes, quite confusing. Not sure if we are supposed to be \"fighting\" because we each have different candidates that are better or if we are supposed to work together and realize that we have the same candidates just with different letters. Not sure if we end up answering as a group or individually.','2016-11-11 17:24:47',1,88,0,0,0,3,4,68,2,1,88,40),(90,'jj','hello ','2016-11-11 17:27:53',0,0,0,0,0,1,2,70,0,1,NULL,6),(91,'memphissoul','Greetings. It looks like B would be my choice. The +\'s are in the categories that matter.','2016-11-11 17:28:41',0,0,1,0,1,1,8,71,0,1,NULL,21),(92,'Viking80','Good morning guys!\nI\'m Elena, looking forward to working with you!','2016-11-11 17:30:27',0,0,0,0,0,1,4,72,0,1,NULL,31),(93,'memphissoul','I agree with B','2016-11-11 17:30:35',1,76,0,0,0,5,6,65,2,1,76,21),(94,'jj','i agree','2016-11-11 17:30:56',1,91,1,0,1,2,5,71,1,1,91,6),(95,'memphissoul','Hi Elena!','2016-11-11 17:31:04',1,92,0,0,0,2,3,72,1,1,92,21),(96,'memphissoul','That\'s whats up.','2016-11-11 17:31:18',1,94,0,0,0,3,4,71,2,1,94,21),(97,'Viking80','How about an A?','2016-11-11 17:31:23',0,0,0,0,0,1,2,73,0,1,NULL,31),(98,'Viking80','A has a lot of good credentials!','2016-11-11 17:31:44',0,0,0,0,0,1,4,74,0,1,NULL,31),(99,'Ninja','Hi, I\'m Ninja.','2016-11-11 17:32:30',0,0,0,0,0,1,2,75,0,1,NULL,42),(100,'Ninja','B would be my suggestion. They have the most +\'s and the least -\'s.','2016-11-11 17:33:27',0,0,0,0,0,1,2,76,0,1,NULL,42),(101,'Ninja','I agree also.','2016-11-11 17:34:27',1,91,0,0,0,6,7,71,1,1,91,42),(102,'Viking80','So we are agreed on B?','2016-11-11 17:34:42',0,0,1,0,1,1,8,77,0,1,NULL,31),(103,'Ninja','A only has 3 +\'s, so I think that B is a better choice.','2016-11-11 17:35:13',1,98,0,0,0,2,3,74,1,1,98,42),(104,'Ninja','I\'m good with B.','2016-11-11 17:36:00',1,102,0,0,0,2,3,77,1,1,102,42),(105,'jj','yes','2016-11-11 17:36:38',1,102,0,0,0,4,5,77,1,1,102,6),(106,'Ninja','OK, I\'m choosing B and moving on. Bye folks!','2016-11-11 17:40:25',1,102,0,0,0,6,7,77,1,1,102,42),(107,'Linzo','I think candidate D looks good.','2016-11-11 17:58:40',0,0,0,0,0,1,2,78,0,2,NULL,43),(108,'Linzo','Hola! Anyone else there?\n','2016-11-11 17:59:37',0,0,0,0,0,1,2,79,0,2,NULL,43),(109,'Blue','Hello!','2016-11-11 18:05:49',0,0,1,0,1,1,6,80,0,3,NULL,47),(110,'Mew','Hi!','2016-11-11 18:05:56',0,0,0,0,0,1,2,81,0,3,NULL,49),(111,'Tess','Hi','2016-11-11 18:05:58',0,0,0,0,0,1,2,82,0,3,NULL,45),(112,'mrnotoriousman','hey\n','2016-11-11 18:05:59',0,0,0,0,0,1,2,83,0,3,NULL,48),(113,'Taxi','hey','2016-11-11 18:05:59',0,0,0,0,0,1,6,84,0,3,NULL,55),(114,'Nicole','Hi!','2016-11-11 18:06:02',1,109,0,0,0,2,3,80,1,3,109,51),(115,'Lor','Hello!\n','2016-11-11 18:06:04',0,0,0,0,0,1,2,85,0,3,NULL,50),(116,'L','Hi there','2016-11-11 18:06:24',0,0,0,0,0,1,2,86,0,3,NULL,44),(117,'criebth','hey','2016-11-11 18:06:25',0,0,0,0,0,1,2,87,0,3,NULL,56),(118,'Mew','I think A is most qualified.','2016-11-11 18:06:29',0,0,0,0,0,1,2,88,0,3,NULL,49),(119,'blueshoes','Hey!','2016-11-11 18:06:31',0,0,0,0,0,1,2,89,0,3,NULL,57),(120,'TJ','hi','2016-11-11 18:06:41',0,0,0,0,0,1,2,90,0,3,NULL,41),(121,'Teddy','hey\n','2016-11-11 18:06:41',0,0,0,0,0,1,2,91,0,3,NULL,54),(122,'mrnotoriousman','Definitely not candidate C','2016-11-11 18:06:44',0,0,0,0,0,1,2,92,0,3,NULL,48),(123,'Blue','So we just need to pick a candidate? ','2016-11-11 18:06:54',0,0,0,0,0,1,2,93,0,3,NULL,47),(124,'Nicole','I like candidate D','2016-11-11 18:06:56',0,0,2,0,2,1,2,94,0,3,NULL,51),(125,'criebth','im thinking B is most qualified\n','2016-11-11 18:07:06',0,0,0,0,0,1,2,95,0,3,NULL,56),(126,'Blue','I\'d go with D. Seems the most well rounded.','2016-11-11 18:07:11',0,0,1,0,1,1,2,96,0,3,NULL,47),(127,'L','D looks good, pretty average, only one negative.','2016-11-11 18:07:17',0,0,1,0,1,1,2,97,0,3,NULL,44),(128,'Teddy','I\'m thinking maybe A\n','2016-11-11 18:07:19',0,0,0,0,0,1,2,98,0,3,NULL,54),(129,'blueshoes','Candidate D looks most qualified','2016-11-11 18:07:21',0,0,0,0,0,1,2,99,0,3,NULL,57),(130,'Mew','Actually, yeah. Now that I look at the tasks more closely, I think B is the most qualified.','2016-11-11 18:07:23',0,0,0,0,0,1,2,100,0,3,NULL,49),(131,'Tess','B looks great','2016-11-11 18:07:43',0,0,0,0,0,1,2,101,0,3,NULL,45),(132,'Nicole','Yes I guess Candidate B is better than D','2016-11-11 18:07:44',0,0,0,0,0,1,2,102,0,3,NULL,51),(133,'Lor','I\'d say D is the most qualified, then a, b and C\n ','2016-11-11 18:07:52',0,0,1,0,1,1,2,103,0,3,NULL,50),(134,'Mew','Neither A or D are good at algebra, which is sort of a basic requirement.','2016-11-11 18:07:59',0,0,0,0,0,1,2,104,0,3,NULL,49),(135,'mrnotoriousman','A seems like a good problem solver','2016-11-11 18:08:00',0,0,0,0,0,1,2,105,0,3,NULL,48),(136,'Blue','D has more +s and less negatives than B.','2016-11-11 18:08:11',0,0,1,0,1,1,2,106,0,3,NULL,47),(137,'John','Yeah, I\'d go with D for average, or A for lots of positives.','2016-11-11 18:08:24',0,0,1,0,1,1,2,107,0,3,NULL,52),(138,'Teddy','D got a minus in verbal comprehension, not good\n','2016-11-11 18:08:24',0,0,0,0,0,1,2,108,0,3,NULL,54),(139,'Brentos','hello','2016-11-11 18:08:25',0,0,0,0,0,1,2,109,0,3,NULL,58),(140,'criebth','B has more +','2016-11-11 18:08:27',0,0,0,0,0,1,2,110,0,3,NULL,56),(141,'TJ','B is good candidate\n','2016-11-11 18:09:01',0,0,0,0,0,1,4,111,0,3,NULL,41),(142,'Blue','Seems we\'re all looking at different sheets\n','2016-11-11 18:09:05',0,0,0,0,0,1,2,112,0,3,NULL,47),(143,'Nicole','B has the most + while also having the least -','2016-11-11 18:09:05',0,0,0,0,0,1,2,113,0,3,NULL,51),(144,'Ram','Hai!\n','2016-11-11 18:09:10',0,0,0,0,0,1,2,114,0,3,NULL,53),(145,'Lor','So the \"-\" means bad performance, so it\'s better a candidate with more +s and 0s','2016-11-11 18:09:13',0,0,1,0,1,1,2,115,0,3,NULL,50),(146,'L','B has a negative for arithmetic though, pretty basic necessity.','2016-11-11 18:09:26',0,0,1,0,1,1,2,116,0,3,NULL,44),(147,'PK','Hello','2016-11-11 18:09:42',0,0,0,0,0,1,2,117,0,3,NULL,60),(148,'Teddy','B has more minuses than either A or D','2016-11-11 18:09:46',0,0,0,0,0,1,2,118,0,3,NULL,54),(149,'Tess','B has 6 + and only 1 -','2016-11-11 18:09:47',0,0,0,0,0,1,2,119,0,3,NULL,45),(150,'Mew','I\'m still sticking to B. They only have a - in trigonometry and combining shapes, which aren\'t really important for a job unless you\'re a chemical engineer, etc.','2016-11-11 18:09:49',0,0,1,0,1,1,2,120,0,3,NULL,49),(151,'Lor','D is bad at only Rotated shapes, so I think he\'s the best candidate\n','2016-11-11 18:09:53',0,0,0,0,0,1,2,121,0,3,NULL,50),(152,'Blue','Because on mine D has 6 +s and 1 negative while B has 3 pluses and two negatives','2016-11-11 18:09:54',0,0,0,0,0,1,2,122,0,3,NULL,47),(153,'Nicole','Pretty sure we must have different sheets','2016-11-11 18:10:01',0,0,0,0,0,1,2,123,0,3,NULL,51),(154,'Kbob','Hello, is it confirmed then that we all have different information shown?','2016-11-11 18:10:26',0,0,0,0,0,1,4,124,0,3,NULL,61),(155,'John','I\'d say A if spelling doesnt need to be perfect.','2016-11-11 18:10:29',0,0,1,0,1,1,2,125,0,3,NULL,52),(156,'Taxi','Candidate D looks pretty good actually. Just never communicate with he/she verbally and only through text based communication and we golden.','2016-11-11 18:10:32',0,0,1,0,1,1,2,126,0,3,NULL,55),(157,'Lor','My candidate B has - in Combining shapes, trigonometry, arithmatic, antonyms','2016-11-11 18:10:36',0,0,0,0,0,1,2,127,0,3,NULL,50),(158,'mrnotoriousman','Ill vote for B too','2016-11-11 18:10:39',0,0,0,0,0,1,2,128,0,3,NULL,48),(159,'Kbob','Or might we all have the same information, just labeled under different candidates?','2016-11-11 18:10:40',0,0,0,0,0,1,4,129,0,3,NULL,61),(160,'Nicole','Yes I do not have the same things everyone is saying','2016-11-11 18:10:50',1,154,0,0,0,2,3,124,1,3,154,51),(161,'Mew','Does everyone have a candidate with only 1 + and the rest as -\'s?','2016-11-11 18:11:23',0,0,0,0,0,1,10,130,0,3,NULL,49),(162,'Nicole','Don\'t think so mine doesn\'t even have same categories','2016-11-11 18:11:27',1,159,0,0,0,2,3,129,1,3,159,51),(163,'Teddy','Yeah apparently we\'re seeing different scales for the same people; on mine B has 4 minuses','2016-11-11 18:11:29',0,0,0,0,0,1,6,131,0,3,NULL,54),(164,'Nicole','nope','2016-11-11 18:11:55',1,161,0,0,0,2,3,130,1,3,161,51),(165,'John','Not me.\n','2016-11-11 18:11:56',1,161,0,0,0,4,5,130,1,3,161,52),(166,'Nicole','no','2016-11-11 18:11:56',1,161,0,0,0,6,7,130,1,3,161,51),(167,'blueshoes','D has the least amount of negative marks','2016-11-11 18:12:06',0,0,0,0,0,1,2,132,0,3,NULL,57),(168,'Teddy','I have no candidate with only one plus','2016-11-11 18:12:11',0,0,0,0,0,1,2,133,0,3,NULL,54),(169,'Taxi','B has 4 minus on mine as well\n','2016-11-11 18:12:23',1,163,0,0,0,2,3,131,1,3,163,55),(170,'Nicole','Lets just agree on one lol','2016-11-11 18:12:24',0,0,0,0,0,1,2,134,0,3,NULL,51),(171,'Sara','Hello\n','2016-11-11 18:12:30',0,0,0,0,0,1,2,135,0,3,NULL,63),(172,'John','Mine has 2 minuses for B. 1 for antonyms, and 1 for trigonometry. ','2016-11-11 18:12:57',1,163,0,0,0,4,5,131,1,3,163,52),(173,'Mew','So if all of us have completely different results, how are we supposed to agree on one?','2016-11-11 18:12:59',0,0,0,0,0,1,2,136,0,3,NULL,49),(174,'Nicole','I say B or D','2016-11-11 18:13:04',0,0,2,0,2,1,2,137,0,3,NULL,51),(175,'Lor','So D is the best one?','2016-11-11 18:13:12',0,0,2,0,2,1,2,138,0,3,NULL,50),(176,'Blue','Maybe that\'s what they\'re testing heh\n','2016-11-11 18:13:20',0,0,0,0,0,1,2,139,0,3,NULL,47),(177,'Lou','Hello','2016-11-11 18:13:27',0,0,0,0,0,1,2,140,0,3,NULL,64),(178,'Taxi','They trying to make us argue.. zzz.\n','2016-11-11 18:13:40',0,0,0,0,0,1,2,141,0,3,NULL,55),(179,'Lou','B is looking good','2016-11-11 18:13:46',0,0,0,0,0,1,2,142,0,3,NULL,64),(180,'Teddy','yeah, testing how people communicate en masse, esp, with fuzzy information\n\n','2016-11-11 18:13:51',0,0,0,0,0,1,2,143,0,3,NULL,54),(181,'blueshoes','I don\'t','2016-11-11 18:14:01',1,161,0,0,0,8,9,130,1,3,161,57),(182,'John','Everyone just name the top 2 candidates they have with the most positives, and we will choose from what seems to be the average out of us all.','2016-11-11 18:14:03',0,0,0,0,0,1,6,144,0,3,NULL,52),(183,'Mew','In that case, I\'d say none of them are the best candidate because there\'s not enough info.','2016-11-11 18:14:11',0,0,0,0,0,1,2,145,0,3,NULL,49),(184,'Lor','So well, what should we do then? Just agree on a candidate and hit \"next\"?','2016-11-11 18:14:21',0,0,1,0,1,1,2,146,0,3,NULL,50),(185,'Tess','how can we decide when they are all different. It doesn\'t matter to me. B or D','2016-11-11 18:14:27',0,0,0,0,0,1,2,147,0,3,NULL,45),(186,'Taxi','My vote is D. Upvote if you agree. lol.','2016-11-11 18:14:30',0,0,13,0,13,1,2,148,0,3,NULL,55),(187,'Teddy','B is weakest for me but I can go with that if everyone wants\n','2016-11-11 18:14:33',0,0,0,1,-1,1,2,149,0,3,NULL,54),(188,'Sara','A looks the most positive for me','2016-11-11 18:14:37',1,182,0,0,0,2,3,144,1,3,182,63),(189,'Lou','Id go with B','2016-11-11 18:14:41',0,0,0,1,-1,1,2,150,0,3,NULL,64),(190,'Blue','B and D are the best ones on my sheet with D being better. So I\'ll vote D','2016-11-11 18:14:58',0,0,2,0,2,1,2,151,0,3,NULL,47),(191,'Lor','B is the weakest for me too, D is the strongest','2016-11-11 18:15:02',0,0,0,0,0,1,2,152,0,3,NULL,50),(192,'Mew','B is the best for me.','2016-11-11 18:15:04',0,0,0,4,-4,1,2,153,0,3,NULL,49),(193,'Teddy','D works for me','2016-11-11 18:15:06',0,0,1,0,1,1,2,154,0,3,NULL,54),(194,'JG','Hello\n','2016-11-11 18:15:10',0,0,0,0,0,1,2,155,0,3,NULL,59),(195,'L','Going with John\'s idea, A is 3 +, 3 -, 3 o. D is 3 +, 1 -, 5 0,','2016-11-11 18:15:10',0,0,1,0,1,1,2,156,0,3,NULL,44),(196,'John','Mine is A (has - for spelling and missing shape) second best for me is B (negative for rotated shapes, and positive/average for everything else)\n','2016-11-11 18:15:18',1,182,0,0,0,4,5,144,1,3,182,52),(197,'Lor','So I guess we all should say whatever option is the best for each of us?','2016-11-11 18:15:25',0,0,0,0,0,1,6,157,0,3,NULL,50),(198,'JG','So what do you all think? I think candidate looks like the best option','2016-11-11 18:16:07',0,0,0,0,0,1,4,158,0,3,NULL,59),(199,'Jon','Hiya','2016-11-11 18:16:14',0,0,0,0,0,1,2,159,0,3,NULL,66),(200,'Mew','Looks like were going with D then.','2016-11-11 18:16:17',0,0,1,0,1,1,2,160,0,3,NULL,49),(201,'Teddy','per instructions it\'s a joint task','2016-11-11 18:16:18',0,0,0,0,0,1,2,161,0,3,NULL,54),(202,'L','Eck, meant B, not A. >.<','2016-11-11 18:16:18',0,0,0,0,0,1,2,162,0,3,NULL,44),(203,'Sara','Do you think we all have the same results but mixed up letters?','2016-11-11 18:16:20',1,197,0,0,0,2,5,157,1,3,197,63),(204,'Ram','\"A \"has more important positive skills.','2016-11-11 18:16:34',0,0,0,0,0,1,2,163,0,3,NULL,53),(205,'John','Based on what everyone else is saying, D seems like the safest.','2016-11-11 18:16:35',1,198,0,0,0,2,3,158,1,3,198,52),(206,'Teddy','so is D it?','2016-11-11 18:16:35',0,0,3,0,3,1,4,164,0,3,NULL,54),(207,'Lor','probably','2016-11-11 18:16:43',1,203,0,0,0,3,4,157,2,3,203,50),(208,'Lor','maybe we should all vote for D then, I don\'t know','2016-11-11 18:17:03',1,206,3,0,3,2,3,164,1,3,206,50),(209,'Tess','I say B\nIt did not say we had to agree','2016-11-11 18:17:10',0,0,0,0,0,1,2,165,0,3,NULL,45),(210,'blueshoes','Soooo now what lol','2016-11-11 18:17:33',0,0,0,0,0,1,2,166,0,3,NULL,57),(211,'Teddy','I say we go with D, the indecision is costing us money','2016-11-11 18:17:45',0,0,1,0,1,1,4,167,0,3,NULL,54),(212,'L','Already spent 15 min on this, majority vote is D, looks like.','2016-11-11 18:18:04',0,0,1,0,1,1,2,168,0,3,NULL,44),(213,'John','I say lets just vote. Reply to this comment with A, B, C, or D.','2016-11-11 18:18:04',0,0,1,0,1,1,8,169,0,3,NULL,52),(214,'Blue','I\'ll go D then','2016-11-11 18:18:04',0,0,0,0,0,1,2,170,0,3,NULL,47),(215,'blueshoes','agreed','2016-11-11 18:18:05',1,211,0,0,0,2,3,167,1,3,211,57),(216,'JG','Candidate B has way too many negatives. D is a much better candidate','2016-11-11 18:18:06',0,0,0,0,0,1,4,171,0,3,NULL,59),(217,'Blue','D','2016-11-11 18:18:16',1,213,1,0,1,2,3,169,1,3,213,47),(218,'Ram','A has more positives','2016-11-11 18:18:28',1,141,0,0,0,2,3,111,1,3,141,53),(219,'John','D','2016-11-11 18:18:37',1,213,0,0,0,4,5,169,1,3,213,52),(220,'Sara','ok D works for me','2016-11-11 18:18:38',1,216,0,0,0,2,3,171,1,3,216,63),(221,'Teddy','okay D, I\'m outta here','2016-11-11 18:18:42',0,0,0,0,0,1,2,172,0,3,NULL,54),(222,'JG','D gets my vote','2016-11-11 18:18:45',0,0,0,0,0,1,2,173,0,3,NULL,59),(223,'Ram','A has more possitives','2016-11-11 18:18:50',1,109,0,0,0,4,5,80,1,3,109,53),(224,'Ram','A has more possitives','2016-11-11 18:18:59',1,113,0,0,0,2,3,84,1,3,113,53),(225,'John','D it is.','2016-11-11 18:19:02',0,0,0,0,0,1,2,174,0,3,NULL,52),(226,'Ram','A has more possitives','2016-11-11 18:19:06',1,113,0,0,0,4,5,84,1,3,113,53),(227,'blueshoes','D','2016-11-11 18:19:14',1,213,0,0,0,6,7,169,1,3,213,57),(228,'L','D it is. Thanks all!','2016-11-11 18:19:24',0,0,0,0,0,1,2,175,0,3,NULL,44),(229,'L','','2016-11-11 18:19:25',0,0,0,0,0,1,2,176,0,3,NULL,44),(230,'Andy','It\'s hard to tell, but candidate B looks good.','2016-11-11 18:26:13',0,0,0,0,0,1,2,177,0,3,NULL,67),(231,'Ok','oi','2016-11-11 18:27:47',0,0,0,0,0,1,2,178,0,3,NULL,68),(232,'Ashley J Williams','Hi peeps','2016-11-11 18:30:01',0,0,0,0,0,1,2,179,0,3,NULL,70),(233,'Charp','B\n','2016-11-11 18:30:14',0,0,0,0,0,1,2,180,0,3,NULL,69),(234,'CJ1992','hi','2016-11-11 18:31:19',0,0,0,0,0,1,2,181,0,3,NULL,71),(235,'CJ1992','B','2016-11-11 18:32:22',0,0,0,0,0,1,2,182,0,3,NULL,71),(236,'Ash','hi\n','2016-11-11 18:39:57',0,0,0,0,0,1,2,183,0,3,NULL,72),(237,'Ash','Shall we vote b??','2016-11-11 18:41:41',0,0,0,0,0,1,4,184,0,3,NULL,72),(238,'kmonaco85','I think B\n','2016-11-11 18:42:33',1,237,0,0,0,2,3,184,1,3,237,73),(239,'goo','hii','2016-11-11 19:23:02',0,0,0,0,0,1,4,185,0,4,NULL,76),(240,'goo','','2016-11-11 19:23:41',0,0,0,0,0,1,2,186,0,4,NULL,76),(241,'goo','anybody here\n','2016-11-11 19:23:44',1,239,0,0,0,2,3,185,1,4,239,76),(242,'Moo','Hello?','2016-11-11 19:24:10',0,0,0,0,0,1,2,187,0,4,NULL,77),(243,'crelin','Hello, I am the mighty Crelin - how many we got here?','2016-11-11 19:24:34',0,0,0,0,0,1,2,188,0,4,NULL,75),(244,'crelin','3? Looks like enough. So opinions on the candidates?','2016-11-11 19:25:02',0,0,0,0,0,1,2,189,0,4,NULL,75),(245,'Moo','I would lean toward B.','2016-11-11 19:25:24',0,0,0,0,0,1,2,190,0,4,NULL,77),(246,'crelin','My opinions:\nA: Seems well rounded overall but spelling, missing shape, and algebra show a lack of basic skills usage so they seem specialized and adept at some more specific tasks but basic lacks which would hurt in work environment','2016-11-11 19:26:48',0,0,0,0,0,1,2,191,0,4,NULL,75),(247,'crelin','B: B is a good candidate as you mentioned, minus\'s in trig and combining ships are understandable, as well as antonyms...those are more complex categories (depending on the type of combining shapes...3d visualization of shapes from 2d perspectives always gets me)\n\nC: Bad option, just bad.\n\nD: I like D as well, only one negative...they are adept at least at almost every function with some positives....not much lacking and only room to improve.','2016-11-11 19:28:16',0,0,0,0,0,1,2,192,0,4,NULL,75),(248,'crelin','I would rather hire someone who can perform at least adequately in all their job functions than someone who will need help from time to time but be super efficient at other times...less overall oversight needed.','2016-11-11 19:29:46',0,0,0,0,0,1,2,193,0,4,NULL,75),(249,'Moo','I said B because they only performed badly on one test, average on a couple of others. D would be second with 3 bad performances and 2 averages. A and C have too many bad test results.\n','2016-11-11 19:30:20',0,0,0,0,0,1,4,194,0,4,NULL,77),(250,'crelin','Hello? Bueller? Bueller? Bueller?','2016-11-11 19:30:46',0,0,0,0,0,1,2,195,0,4,NULL,75),(251,'crelin','B performed badly on 3 tests according to my screen antonyms, trigonometry, and combining shapes.','2016-11-11 19:31:26',0,0,0,0,0,1,2,196,0,4,NULL,75),(252,'Moo','If we had more to go on with regard to what the job actually was, it may make more sense to look at individual tests, but to me, if it\'s all relevant to the job, whoever has the best test scores overall would be the best candidate.\n','2016-11-11 19:31:31',0,0,0,0,0,1,2,197,0,4,NULL,77),(253,'crelin','B performed badly on 3 tests according to my screen antonyms, trigonometry, and combining shapes.','2016-11-11 19:31:40',1,249,0,0,0,2,3,194,1,4,249,75),(254,'Moo','We must have different information given to us. Combining shapes isn\'t even one of the tests on my list.\n','2016-11-11 19:32:10',0,0,0,0,0,1,2,198,0,4,NULL,77),(255,'crelin','Alright, our letters are mixed up it seems! My dad did bad on one test (algebra) and average on a lot of others and good on spelling and letters-to-numbers - is that how your B is?','2016-11-11 19:32:35',0,0,0,0,0,1,2,199,0,4,NULL,75),(256,'crelin','my D - not my dad*','2016-11-11 19:32:56',0,0,0,0,0,1,2,200,0,4,NULL,75),(257,'Moo','Geez, this scrolling in the comment area is lame.','2016-11-11 19:33:14',0,0,0,0,0,1,2,201,0,4,NULL,77),(258,'crelin','Agreed....alright I have in ABCD order\nSPELLING -0-+\nGRAMMAR 0+-0\nANTONYMS +--0\nLETTERS-TO-NUMBERS +0-+\nALGEBRA -+--\nTRIGONOMETRY +--0\n3D VIEWS 0++0\nMISSING SHAPE -++0\nCOMBINING SHAPES +--0','2016-11-11 19:34:23',0,0,0,0,0,1,2,202,0,4,NULL,75),(259,'Moo','Here D did poorly on verbal comprehension, algebra and rotated shapes. B did poorly on arithmetic. At least A and C we can agree suck. :D\n','2016-11-11 19:34:57',0,0,0,0,0,1,2,203,0,4,NULL,77),(260,'crelin','alright, shall we go with B then? I decided early on B was decent so B is acceptable to me','2016-11-11 19:37:15',0,0,0,0,0,1,2,204,0,4,NULL,75),(261,'crelin','Im thinking they might be in the right order but theres a bunch of tests and we each only got a sample since the tests that we both show for them do match','2016-11-11 19:38:31',0,0,0,0,0,1,2,205,0,4,NULL,75),(262,'Moo','From mine: ABCD: Verbal Comprehension +++- Verbal Reasoning -+++ Grammar 0+-0 Arithmetic --++ Letters-to-numbers +0-+ Algebra -+-- Missing Shape -++0 Map Interpretation +0-+ Rotated Shapes 0+--\n','2016-11-11 19:39:45',0,0,0,0,0,1,2,206,0,4,NULL,77),(263,'crelin','so we have B: Bad at arithmatic, antonyms, trigonometry, and combining shapes and D: bad at algebra, rotated shapes, and verbal comprehension','2016-11-11 19:41:03',0,0,0,0,0,1,4,207,0,4,NULL,75),(264,'Moo','Yeah, guess that\'s what\'s going on, and thus the need to collaborate. Wonder if silent other person has anything vastly different.\n','2016-11-11 19:41:27',0,0,0,0,0,1,2,208,0,4,NULL,77),(265,'crelin','B: good at verbal comp, verbal reason, grammar, algebra, missing shape, rotated shape, grammar, 3d views\nand D: good at spelling, letters-to-numbers, map interp, verbal reason, arithmetic','2016-11-11 19:43:05',0,0,0,0,0,1,2,209,0,4,NULL,75),(266,'crelin','B: good at verbal comp, verbal reason, grammar, algebra, missing shape, rotated shape, grammar, 3d views\nand D: good at spelling, letters-to-numbers, map interp, verbal reason, arithmetic','2016-11-11 19:43:19',1,263,0,0,0,2,3,207,1,4,263,75),(267,'Moo','Well, if D has poor performance on just 3 vs. 4 for B, let\'s go with D.\n','2016-11-11 19:43:20',0,0,0,0,0,1,2,210,0,4,NULL,77),(268,'crelin','I\'m ok with that. D it is.','2016-11-11 19:43:55',0,0,0,0,0,1,2,211,0,4,NULL,75),(269,'Moo','Is goo even still here?','2016-11-11 19:44:14',0,0,0,0,0,1,14,212,0,4,NULL,77),(270,'crelin','Idle or left I guess','2016-11-11 19:44:44',1,269,0,0,0,2,3,212,1,4,269,75),(271,'Moo','Well, that can\'t be helped. Hopefully we had enough information to make the right call for the bonus. :)\n','2016-11-11 19:45:42',0,0,0,0,0,1,2,213,0,4,NULL,77),(272,'crelin','D has less negs but B\'s postiives is damn impressive sounding.','2016-11-11 19:45:51',1,269,0,0,0,4,5,212,1,4,269,75),(273,'crelin','Yup, D it is.','2016-11-11 19:46:00',1,269,0,0,0,6,7,212,1,4,269,75),(274,'crelin','not gonna second guess myself','2016-11-11 19:46:05',1,269,0,0,0,8,13,212,1,4,269,75),(275,'Moo','Yeah, despite nice +\'s for B, I think it\'d be preferrable to not have to worry about bad performances in anything on a day to day basis...\n','2016-11-11 19:46:42',1,274,0,0,0,9,12,212,2,4,274,77),(276,'crelin','agreed.','2016-11-11 19:46:52',1,275,0,0,0,10,11,212,3,4,275,75),(277,'grey','hello','2016-11-11 20:11:55',0,0,0,0,0,1,2,214,0,4,NULL,79),(278,'grey','Wouldn\'t A be the best?','2016-11-11 20:13:10',0,0,0,0,0,1,4,215,0,4,NULL,79),(279,'grey','A has 5 +\'s','2016-11-11 20:13:55',1,278,0,0,0,2,3,215,1,4,278,79),(280,'Kiki','Anybody there yet?','2016-11-11 20:57:28',0,0,0,0,0,1,6,216,0,5,NULL,80),(281,'ZeeS','Hello!!\n','2016-11-11 21:24:34',0,0,0,0,0,1,2,217,0,5,NULL,82),(282,'ZeeS','are you still here?\n','2016-11-11 21:25:23',1,280,2,2,0,2,3,216,1,5,280,82),(283,'ZeeS','Hello!!\n','2016-11-11 21:29:16',0,0,0,0,0,1,2,218,0,5,NULL,82),(284,'JENNIFER ','Candidate c and candidate B ','2016-11-11 21:34:11',0,0,0,0,0,1,4,219,0,5,NULL,83),(285,'JENNIFER ','hello\n','2016-11-11 21:35:29',0,0,0,0,0,1,2,220,0,5,NULL,83),(286,'ZeeS','I was thinking A or B\n','2016-11-11 21:35:29',0,0,0,0,0,1,2,221,0,5,NULL,82),(287,'ZeeS','Could we agree on B?\n','2016-11-11 21:35:53',1,284,0,0,0,2,3,219,1,5,284,82),(288,'JENNIFER ','we will having as B','2016-11-11 21:35:57',0,0,0,0,0,1,4,222,0,5,NULL,83),(289,'ZeeS','Agreed, it is B','2016-11-11 21:36:25',1,288,0,0,0,2,3,222,1,5,288,82),(290,'ZeeS','It was nice working with you!! I hope that B is a great choice for everyone!','2016-11-11 21:41:25',0,0,0,0,0,1,2,223,0,5,NULL,82),(291,'ZeeS','Hello:) Are you ok with B as our selection?','2016-11-11 21:44:15',1,280,0,0,0,4,5,216,1,5,280,82),(292,'Jack','hello\n','2016-11-11 22:28:13',0,0,0,0,0,1,2,224,0,6,NULL,86),(293,'Jack','i think so candidate A and candidate c ','2016-11-11 22:29:32',0,0,0,0,0,1,2,225,0,6,NULL,86),(294,'Jack','finally i choose candidate A','2016-11-11 22:30:13',0,0,0,0,0,1,2,226,0,6,NULL,86);
/*!40000 ALTER TABLE `forum_statement` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `forum_vote`
--
DROP TABLE IF EXISTS `forum_vote`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `forum_vote` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`handle` longtext NOT NULL,
`value` int(11) NOT NULL,
`statement_id` int(11) NOT NULL,
`user_id` int(11) NOT NULL,
PRIMARY KEY (`id`),
KEY `forum_vote_statement_id_2008b3fd_fk_forum_statement_id` (`statement_id`),
KEY `forum_vote_user_id_b98fcc95_fk_auth_user_id` (`user_id`),
CONSTRAINT `forum_vote_statement_id_2008b3fd_fk_forum_statement_id` FOREIGN KEY (`statement_id`) REFERENCES `forum_statement` (`id`),
CONSTRAINT `forum_vote_user_id_b98fcc95_fk_auth_user_id` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=134 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `forum_vote`
--
LOCK TABLES `forum_vote` WRITE;
/*!40000 ALTER TABLE `forum_vote` DISABLE KEYS */;
INSERT INTO `forum_vote` VALUES (1,'BabyE143',1,10,19),(2,'BabyE143',-1,10,19),(3,'BabyE143',1,12,19),(4,'Carson',1,12,24),(5,'BabyE143',1,15,19),(6,'BabyE143',1,4,19),(7,'BabyE143',1,3,19),(8,'Brittany',1,25,2),(9,'Brittany',1,25,2),(10,'Carson',1,27,24),(11,'Black',1,23,15),(12,'Black',-1,24,15),(13,'Carson',1,39,24),(14,'Brittany',1,45,2),(15,'BabyE143',1,44,19),(16,'BabyE143',1,43,19),(17,'BabyE143',1,43,19),(18,'BabyE143',1,43,19),(19,'BabyE143',-1,43,19),(20,'pc',1,45,23),(21,'BabyE143',-1,43,19),(22,'BabyE143',1,42,19),(23,'Brittany',1,45,2),(24,'BabyE143',1,41,19),(25,'Brittany',1,45,2),(26,'Black',1,45,15),(27,'Brittany',1,45,2),(28,'BabyE143',1,36,19),(29,'V',1,45,25),(30,'BabyE143',1,33,19),(31,'BabyE143',1,34,19),(32,'BabyE143',1,34,19),(33,'BabyE143',1,34,19),(34,'BabyE143',1,34,19),(35,'BabyE143',1,34,19),(36,'BabyE143',1,34,19),(37,'BabyE143',1,34,19),(38,'BabyE143',1,34,19),(39,'Carson',1,46,24),(40,'Carson',1,46,24),(41,'Carson',1,39,24),(42,'Carson',1,45,24),(43,'Carson',1,45,24),(44,'Carson',1,45,24),(45,'Carson',1,45,24),(46,'Carson',-1,45,24),(47,'Remy',1,45,36),(48,'Remy',-1,34,36),(49,'Remy',1,52,36),(50,'Remy',1,53,36),(51,'Aprilla',1,72,38),(52,'Aprilla',1,73,38),(53,'Aprilla',1,71,38),(54,'Aprilla',1,71,38),(55,'Aprilla',1,39,38),(56,'Rainies',1,3,39),(57,'Aprilla',1,45,38),(58,'Aprilla',-1,46,38),(59,'Aprilla',1,47,38),(60,'Aprilla',1,49,38),(61,'Aprilla',1,50,38),(62,'Aprilla',1,51,38),(63,'Aprilla',1,54,38),(64,'Aprilla',1,67,38),(65,'Aprilla',1,53,38),(66,'Aprilla',1,55,38),(67,'Aprilla',-1,61,38),(68,'Aprilla',1,71,38),(69,'Aprilla',1,87,38),(70,'MightyMouse',-1,87,40),(71,'MightyMouse',-1,87,40),(72,'MightyMouse',1,87,40),(73,'MightyMouse',1,87,40),(74,'MightyMouse',1,88,40),(75,'jj',1,91,6),(76,'memphissoul',1,94,21),(77,'jj',1,102,6),(78,'Mew',1,150,49),(79,'Taxi',1,156,55),(80,'John',1,155,52),(81,'blueshoes',1,124,57),(82,'blueshoes',1,124,57),(83,'blueshoes',1,126,57),(84,'blueshoes',1,127,57),(85,'blueshoes',1,133,57),(86,'blueshoes',1,136,57),(87,'blueshoes',1,137,57),(88,'blueshoes',1,145,57),(89,'blueshoes',1,146,57),(90,'Taxi',1,175,55),(91,'Taxi',1,174,55),(92,'blueshoes',1,174,57),(93,'blueshoes',1,175,57),(94,'Lor',1,186,50),(95,'Taxi',1,186,55),(96,'Nicole',1,186,51),(97,'Teddy',1,186,54),(98,'Nicole',1,186,51),(99,'blueshoes',1,186,57),(100,'Taxi',1,190,55),(101,'blueshoes',1,190,57),(102,'Taxi',-1,189,55),(103,'Taxi',-1,187,55),(104,'Taxi',1,186,55),(105,'Taxi',1,186,55),(106,'Taxi',1,184,55),(107,'Taxi',1,186,55),(108,'Taxi',1,186,55),(109,'Taxi',1,186,55),(110,'Taxi',1,186,55),(111,'Taxi',1,193,55),(112,'Taxi',-1,192,55),(113,'Taxi',-1,192,55),(114,'Taxi',-1,192,55),(115,'Taxi',-1,192,55),(116,'John',1,186,52),(117,'John',1,195,52),(118,'blueshoes',1,200,57),(119,'John',1,206,52),(120,'Teddy',1,206,54),(121,'Teddy',1,208,54),(122,'Teddy',1,208,54),(123,'blueshoes',1,206,57),(124,'blueshoes',1,208,57),(125,'blueshoes',1,211,57),(126,'L',1,217,44),(127,'John',1,213,52),(128,'blueshoes',1,212,57),(129,'Ok',1,109,68),(130,'ZeeS',1,282,82),(131,'ZeeS',1,282,82),(132,'ZeeS',-1,282,82),(133,'ZeeS',-1,282,82);
/*!40000 ALTER TABLE `forum_vote` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `waiting_room_waitroom`
--
DROP TABLE IF EXISTS `waiting_room_waitroom`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `waiting_room_waitroom` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`title` varchar(255) NOT NULL,
`numwait` int(10) unsigned NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `waiting_room_waitroom`
--
LOCK TABLES `waiting_room_waitroom` WRITE;
/*!40000 ALTER TABLE `waiting_room_waitroom` DISABLE KEYS */;
/*!40000 ALTER TABLE `waiting_room_waitroom` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `waiting_room_waituser`
--
DROP TABLE IF EXISTS `waiting_room_waituser`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `waiting_room_waituser` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`is_active` int(11) NOT NULL,
`starttime` datetime NOT NULL,
`endtime` datetime DEFAULT NULL,
`user_id` int(11) NOT NULL,
`wait_room_id` int(11) NOT NULL,
PRIMARY KEY (`id`),
KEY `waiting_room_waituser_user_id_dd515abb_fk_auth_user_id` (`user_id`),
KEY `waiting_room_w_wait_room_id_85b0af2a_fk_waiting_room_waitroom_id` (`wait_room_id`),
KEY `waiting_room_waituser_2d5396d9` (`starttime`),
KEY `waiting_room_waituser_87068544` (`endtime`),
CONSTRAINT `waiting_room_waituser_user_id_dd515abb_fk_auth_user_id` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`),
CONSTRAINT `waiting_room_w_wait_room_id_85b0af2a_fk_waiting_room_waitroom_id` FOREIGN KEY (`wait_room_id`) REFERENCES `waiting_room_waitroom` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `waiting_room_waituser`
--
LOCK TABLES `waiting_room_waituser` WRITE;
/*!40000 ALTER TABLE `waiting_room_waituser` DISABLE KEYS */;
/*!40000 ALTER TABLE `waiting_room_waituser` 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-11-11 17:55:05