forked from fresearchgroup/Collaboration-System
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcollaboration.sql
More file actions
1663 lines (1448 loc) · 357 KB
/
collaboration.sql
File metadata and controls
1663 lines (1448 loc) · 357 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
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
-- MySQL dump 10.13 Distrib 5.7.21, for Linux (x86_64)
--
-- Host: localhost Database: collaboration
-- ------------------------------------------------------
-- Server version 5.7.21-0ubuntu0.16.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 `BasicArticle_articles`
--
DROP TABLE IF EXISTS `BasicArticle_articles`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `BasicArticle_articles` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`title` varchar(100) NOT NULL,
`body` text CHARACTER SET utf8,
`created_at` datetime(6) NOT NULL,
`created_by_id` int(11) DEFAULT NULL,
`views` int(10) unsigned NOT NULL,
`state_id` int(11) DEFAULT NULL,
`image` varchar(100) DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `BasicArticle_articles_created_by_id_8b76d84d_fk_auth_user_id` (`created_by_id`),
KEY `BasicArticle_articles_state_id_1a38551e_fk_workflow_states_id` (`state_id`),
CONSTRAINT `BasicArticle_articles_created_by_id_8b76d84d_fk_auth_user_id` FOREIGN KEY (`created_by_id`) REFERENCES `auth_user` (`id`),
CONSTRAINT `BasicArticle_articles_state_id_1a38551e_fk_workflow_states_id` FOREIGN KEY (`state_id`) REFERENCES `workflow_states` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `BasicArticle_articles`
--
LOCK TABLES `BasicArticle_articles` WRITE;
/*!40000 ALTER TABLE `BasicArticle_articles` DISABLE KEYS */;
INSERT INTO `BasicArticle_articles` VALUES (1,'Writeup','<h3><strong>Inappropriate Content Handling</strong></h3><p>To implement this, I would take the text of the article when the user tries to publish it and feed it to a machine learning model. The model would be trained on an existing database in the backend which would probably give a confidence score on how appropriate the content is. Two cases might arise: one, where the model predicts the article to be inappropriate, but the user insists it to be appropriate, the user will submit it for a review by a moderator; and second, where the model predicted the article was appropriate, but it wasn’t. In the second case, there would be a button to report such articles. If a sufficient number of users reported the article, then it will be reviewed by a moderator. In case, the moderator decides the article to be indeed inappropriate, the article will be removed, and the model will be tuned accordingly.</p><h3><strong>Recommendation System</strong></h3><p>The recommendation system will suggest users new articles depending on which articles he/she has liked or viewed previously. Communities will be suggested in a similar way. The suggestions could appear on his dashboard, or maybe on the homepage. If the user is new, the most popular articles or communities could be suggested.</p><h3><strong>Event Logs</strong></h3><p>In case, recommendation system uses users view history to suggest new articles or communities, the event logs will be generated when a user views a community or an article. These event logs will be used to create a view history for every user which will help in training the recommendation system.</p>','2018-02-07 08:48:26.999587',7,18,2,''),(2,'Write Up','<p><strong>Work to be done</strong></p><p>Try to make communication between DSpace and Django using REST calls. </p><p>Make the contents of all types that is published in Django to be available and search-able through DSpace through metadata.</p><p>For this we have to export the publish content from the Django to DSpace.</p><p>Expecting that all the meta-data required for publishing the content must be available in Django.</p><p>? Whether the publishing of content should be done immediately or scheduled.</p>','2018-02-07 10:27:13.430726',8,7,4,''),(4,'Writeup','<p>Following tasks need to be implemented for notification:</p><p>1.) When a user is added to a group then all current users should get a notification for the same.</p><p>2.) When an article gets modified then all owners of the article should get notified.</p><p> </p><p> </p><p> </p><p> </p><p> </p><p> </p><p> </p><p> </p>','2018-02-07 11:04:52.276589',12,1,1,'article/f212cfeb-1b79-4150-83d8-89497cd8402c.jpg'),(5,'Phase 0 - Work Description and Agenda','<h4>Description</h4><p>The following is the description of the work to be done to create dynamic and customizable workflow of any content in Collaborative community project.</p><p>Work-flow of any content refers to the change of states that any content go through during its life cycle.</p><p>For example,</p><ul><li>Any article from the moment of its creation, belongs to \'draft\' state</li><li>Only from \'draft\' state can an article be made \'publishable\' by authors.</li><li>Similarly, only after an article is made \'publishable\' it can be published (moved to \'published\' state).</li><li>An article can be deleted only from \'draft\' state. Hence, once an article is made \'publishable\' or \'published\', it cannot be deleted. Also, no article can be recovered after deleting.</li></ul><p>Thus any article or other content type can follow certain predefined sequences of states. More clearly, a particular state can be reached only from one of its possible previous states and can lead to one of its possible next states.</p><p> </p><h4>Requirement</h4><p>The requirement is to make this work-flow dynamic and customizable. This means, user should get the privilege to add, edit or remove any state in any position in a work-flow. An extending requirement is to save a particular work-flow as a template for repeated future use.</p><p>Steps for implementing this feature:</p><ol><li>Understand the current code written for this feature.</li><li>Study about different work-flow models available.</li><li>Choose the work-flow model which would best fit the requirements.</li><li>Test the model in a dummy application.</li><li>Incorporate the model with collaborative community.</li></ol><h4> </h4><h4>Testing</h4><p>Once the feature is implemented, proper testing will be done to check if all requirements have been satisfied.</p><p> </p>','2018-02-07 11:05:06.805778',9,3,4,''),(6,'Writeup - Reputation System','<p>A reputation system should automatically assign a rank to every new user and have a system to promote them based on their contributions. A user will have different reputation for each community. The admin of a community should be able to promote or demote a user on will. The admin should also be able to set criteria for automatic promotion of a user. We will need some predefined set of ranks (Beginner, Novice etc) and a model for how much points should be given for each contribution. (5 pts for Article etc) </p>','2018-02-07 11:07:48.356115',13,4,4,'article/43b819e9-e4d4-4383-840f-f4bb64201b80.jpg'),(7,'Writeup - Database Porting','<p>Currently, the system uses mysql for all purposes. The aim is to store all data related to Forums and comments in MongoDB. This will vastly reduce the load on the mysql server. </p>','2018-02-07 11:11:51.518806',13,5,4,''),(8,'Chat feature','<p>This feature will allow different community members to chat with each other privately.</p><p>To implement this feature there are various django chat packages available(https://djangopackages.org/grids/g/chat/).</p>','2018-02-07 11:12:52.829858',11,1,1,''),(9,'Minali: Real-time Collaborative Text Editor','<p><strong>Task: To implement a real-time collaborative editor. Following are some open-source real-time collaborative text-editors.</strong></p><p><strong>1) Firepad: </strong>Firepad is an open-source, collaborative code and text editor. It is designed to be embedded inside larger web applications. Firepad allows synchronous document (with CodeMirror) and code (via ACE) co-editing. The formatting features are almost the same as those of Etherpad, except that it allows you to insert images into the plaintext documents. We can easily embed it into any web app using the available JavaScript files.</p><p><i>Project Page: http://www.firepad.io/</i></p><p><i>Source Code: https://github.com/firebase/firepad</i></p><p><strong>2) Etherpad:</strong> Etherpad is a web-based document editor that enables you to collaborate on documents, leave comments, and interact with others using an integrated chat. It provides simple text formatting features like font type, size, color and style, and text alignment. We can import an existing document into Etherpad and export the current \"pad\" as a HTML, markdown, or plaintext file, print it, or embed as an iframe into an HTML webpage. Written in JavaScript, Etherpad is easily customizable, so we can use one of publicly available instances or set up your own.</p><p><i> Project Page: http://etherpad.org/ </i></p><p><i>Source Code: https://github.com/ether/etherpad-lite</i></p><p><strong>3) OnlyOffice:</strong> OnlyOffice is a multifunctional online office suite that features text, spreadsheet, and presentation editors working within a browser. It includes features similar to MS Office desktop editors, but also lets you to co-edit and comment on documents in real time. You can install it standalone and integrate with any application through API or together with OnlyOffice\'s collaborative system that offers additional possibilities for document management. </p><p><i>Project Page: http://onlyoffice.org/ </i></p><p><i>Source Code: https://github.com/ONLYOFFICE/DocumentServer</i></p><p><strong>Following will be the milestones of my work</strong>-</p><p><strong>Milestone1:</strong> Try out all the above editors to understand the features that each one of them offers and make a comprehensive list of each feature in every editor. Milestone2: Choose the best editor after milestone1 and integrate it with collaborative communities project.</p><p><strong>Milestone2:</strong> Choose the best editor after milestone1 and integrate it with collaborative communities project.</p>','2018-02-07 11:14:49.346119',10,3,2,''),(10,'Task: To implement a real-time collaborative editor','<p>Following are some open-source real-time collaborative text-editors.</p><p><strong>1) Firepad:</strong> Firepad is an open-source, collaborative code and text editor. It is designed to be embedded inside larger web applications. Firepad allows synchronous document (with CodeMirror) and code (via ACE) co-editing. The formatting features are almost the same as those of Etherpad, except that it allows you to insert images into the plaintext documents. We can easily embed it into any web app using the available JavaScript files. </p><p><i>Project Page: http://www.firepad.io/ </i></p><p><i>Source Code: https://github.com/firebase/firepad</i></p><p><strong>2) Etherpad:</strong> Etherpad is a web-based document editor that enables you to collaborate on documents, leave comments, and interact with others using an integrated chat. It provides simple text formatting features like font type, size, color and style, and text alignment. We can import an existing document into Etherpad and export the current \"pad\" as a HTML, markdown, or plaintext file, print it, or embed as an iframe into an HTML webpage. Written in JavaScript, Etherpad is easily customizable, so we can use one of publicly available instances or set up your own. </p><p><i>Project Page: http://etherpad.org/ </i></p><p><i>Source Code: https://github.com/ether/etherpad-lite</i></p><p><strong>3) OnlyOffice:</strong> OnlyOffice is a multifunctional online office suite that features text, spreadsheet, and presentation editors working within a browser. It includes features similar to MS Office desktop editors, but also lets you to co-edit and comment on documents in real time. You can install it standalone and integrate with any application through API or together with OnlyOffice\'s collaborative system that offers additional possibilities for document management. </p><p><i>Project Page: http://onlyoffice.org/ </i></p><p><i>Source Code: https://github.com/ONLYOFFICE/DocumentServer</i></p><p><strong>Following are the milestones for me to focus</strong></p><p><strong>Milestone1:</strong> Try out all the above editors to understand the features that each one of them offers and make a comprehensive list of each feature in every editor. Milestone2: Choose the best editor after milestone1 and integrate it with collaborative communities project.</p><p><strong>Milestone2:</strong> Choose the best editor after milestone1 and integrate it with collaborative communities project.</p>','2018-02-07 11:28:45.838753',10,2,4,'');
/*!40000 ALTER TABLE `BasicArticle_articles` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `BasicArticle_articleviewlogs`
--
DROP TABLE IF EXISTS `BasicArticle_articleviewlogs`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `BasicArticle_articleviewlogs` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`ip` varchar(40) NOT NULL,
`session` varchar(40) NOT NULL,
`created` datetime(6) NOT NULL,
`article_id` int(11) NOT NULL,
PRIMARY KEY (`id`),
KEY `BasicArticle_article_article_id_164e59b4_fk_BasicArti` (`article_id`),
CONSTRAINT `BasicArticle_article_article_id_164e59b4_fk_BasicArti` FOREIGN KEY (`article_id`) REFERENCES `BasicArticle_articles` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=46 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `BasicArticle_articleviewlogs`
--
LOCK TABLES `BasicArticle_articleviewlogs` WRITE;
/*!40000 ALTER TABLE `BasicArticle_articleviewlogs` DISABLE KEYS */;
INSERT INTO `BasicArticle_articleviewlogs` VALUES (1,'b\'\'','dbrmkgwoin7zscjsflvqu2dhovh1sz73','2018-02-07 08:48:42.639035',1),(2,'b\'\'','uf03dfq5wz1pjj9vshybvicdrjmkc14t','2018-02-07 09:31:11.663653',1),(3,'b\'\'','prjuy5l1lrpihikel6x067wgwdpmeafr','2018-02-07 10:27:29.063325',2),(4,'b\'\'','p6n024s9kmcbebg6a3zgt41flnsr5v04','2018-02-07 10:51:22.653696',1),(5,'b\'\'','lbfjhn36efz8obc9nmtvg9g678i96uzu','2018-02-07 10:57:46.203241',1),(7,'b\'\'','p6n024s9kmcbebg6a3zgt41flnsr5v04','2018-02-07 11:04:36.735403',4),(8,'b\'\'','qzw228asc2k8j506qce8mcpuml701bk1','2018-02-07 11:04:51.255458',5),(9,'b\'\'','lbfjhn36efz8obc9nmtvg9g678i96uzu','2018-02-07 11:07:32.807009',6),(10,'b\'\'','lbfjhn36efz8obc9nmtvg9g678i96uzu','2018-02-07 11:12:07.146692',7),(11,'b\'\'','u8vncp85y3t2s6qi02b36skq0mqvlilr','2018-02-07 11:12:37.278601',8),(12,'b\'\'','v3bq6yt1jcv3aov97tkkf0ff04lvbhax','2018-02-07 11:15:04.976322',9),(13,'b\'\'','buu09sst2zyqzx7oq1hm78wl01hmf21p','2018-02-07 11:15:53.330421',7),(14,'b\'\'','buu09sst2zyqzx7oq1hm78wl01hmf21p','2018-02-07 11:17:43.031697',1),(15,'b\'\'','v3bq6yt1jcv3aov97tkkf0ff04lvbhax','2018-02-07 11:29:01.471241',10),(16,'b\'\'','v3bq6yt1jcv3aov97tkkf0ff04lvbhax','2018-02-07 11:31:34.887768',1),(17,'b\'\'','9o0w37v4yn3l7upm7o004uvipnz3kejm','2018-02-07 11:34:04.920399',1),(18,'b\'\'','qzw228asc2k8j506qce8mcpuml701bk1','2018-02-07 11:38:57.002953',1),(19,'b\'\'','gevnh6hddna7cu0x0yq37zpfhjoaef8e','2018-02-07 11:39:19.295265',2),(20,'b\'\'','pn8932pl2d6yi7fy6ocrxlu9t5i94xq0','2018-02-07 11:40:50.840189',1),(21,'b\'\'','cqts2a1uwh3mz95a1bmbvnnjxokpzeyr','2018-02-07 11:42:06.072743',1),(22,'b\'\'','lulty8odpyxtklq6malxo8zigm5p96qg','2018-02-07 11:54:16.014073',10),(23,'b\'\'','lulty8odpyxtklq6malxo8zigm5p96qg','2018-02-07 11:56:06.538341',1),(24,'b\'\'','lulty8odpyxtklq6malxo8zigm5p96qg','2018-02-07 11:56:34.435962',5),(25,'b\'\'','8tl0liloju6ue4m23em3j4fpy6q8qo4f','2018-02-07 12:18:12.354349',7),(26,'b\'\'','8tl0liloju6ue4m23em3j4fpy6q8qo4f','2018-02-07 12:18:48.547673',6),(27,'b\'\'','m6zookgxb1b233uc5fpbze8frsfpzq4y','2018-02-07 12:18:55.183710',6),(28,'b\'\'','lulty8odpyxtklq6malxo8zigm5p96qg','2018-02-07 12:37:31.270585',2),(29,'b\'\'','p3436mklf8og6ofik49r0ig9sb15tbz1','2018-02-07 12:55:49.185899',1),(30,'b\'\'','2llmujsnqvastd7ul583rork03wsumqd','2018-02-07 13:15:32.284484',1),(31,'b\'\'','4dyyz93nikl1gyr1v4txrxzgmugnvopk','2018-02-07 13:31:50.022184',1),(32,'b\'\'','fx0guenwd14y2o9q7pschyh6qoxixjg7','2018-02-07 13:54:07.624325',1),(33,'b\'\'','fx0guenwd14y2o9q7pschyh6qoxixjg7','2018-02-07 13:55:36.711341',2),(34,'b\'\'','fx0guenwd14y2o9q7pschyh6qoxixjg7','2018-02-07 13:55:58.525430',7),(35,'b\'\'','3n1pbuv1x5g0jhjgccrd7b4fka1q2gu0','2018-02-07 14:09:32.459131',9),(36,'b\'\'','4dyyz93nikl1gyr1v4txrxzgmugnvopk','2018-02-07 14:15:21.565729',9),(37,'b\'\'','3n1pbuv1x5g0jhjgccrd7b4fka1q2gu0','2018-02-07 14:59:33.881715',1),(38,'b\'\'','9r5vghs3lsihbo6f8lamqcbopyzymisc','2018-02-07 15:09:28.488274',2),(39,'b\'\'','9rq4crklgx57dya9uopf2ebi871jeuwx','2018-02-07 15:10:29.622388',2),(40,'b\'\'','euvju682tswuq1x037xhoxyzc208wf28','2018-02-07 15:10:44.868694',2),(41,'b\'\'','kga48tq0yatg899etuz633m3lijrsaix','2018-02-08 05:46:44.820181',5),(42,'b\'\'','j6mf1gsgf594lw4kgsssoa7lvm118107','2018-02-08 07:14:23.546502',7),(43,'b\'\'','j6mf1gsgf594lw4kgsssoa7lvm118107','2018-02-08 07:15:56.775252',1),(44,'b\'\'','j6mf1gsgf594lw4kgsssoa7lvm118107','2018-02-08 07:19:38.328847',6),(45,'b\'\'','ladjmvp4jwa2zd7f6vjsdwhddwo03g5m','2018-02-08 08:02:59.222368',1);
/*!40000 ALTER TABLE `BasicArticle_articleviewlogs` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `Community_community`
--
DROP TABLE IF EXISTS `Community_community`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `Community_community` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(100) NOT NULL,
`desc` longtext NOT NULL,
`category` varchar(100) NOT NULL,
`created_at` datetime(6) DEFAULT NULL,
`tag_line` varchar(500) DEFAULT NULL,
`image` varchar(100) DEFAULT NULL,
`forum_link` varchar(100) DEFAULT NULL,
`created_by_id` int(11) DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `Community_community_created_by_id_1080464d_fk_auth_user_id` (`created_by_id`),
CONSTRAINT `Community_community_created_by_id_1080464d_fk_auth_user_id` FOREIGN KEY (`created_by_id`) REFERENCES `auth_user` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=43 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `Community_community`
--
LOCK TABLES `Community_community` WRITE;
/*!40000 ALTER TABLE `Community_community` DISABLE KEYS */;
INSERT INTO `Community_community` VALUES (1,'All India Council for Technical Education','Technical education in India contributes a major share to the overall education system and plays a vital role in the social and economic development of our nation. AICTE aims at promoting quality in education. It oversees regulations and maintenance of norms and standards. For more information about AICTE visit : https://www.aicte-india.org/\r\n','educational','2018-01-29 14:55:26.167242','All India Council for Technical Education ','community/bbe61565-6e28-471b-9182-53fb6b822b69.jpg','all-india-council-for-technical-education-2',3),(2,'Ancient Civilizations of India ','India\'s civilizations date back as old as 4000 years. The Indus Valley Civilisation (IVC) or The Harappan Civilisation, was a Bronze Age civilization (3300–1300 BCE; mature period 2600–1900 BCE). This was followed by The Vedic period or Vedic age (c. 1500 – c. 600 BCE).','historical','2018-01-29 14:55:36.642396','Ancient Civilizations of India ','community/b4d718a7-55c7-4241-9525-c0e1487d2f35.jpg','ancient-civilizations-of-india-3',3),(3,'Ancient Languages','The literary tradition of Ancient India goes back more than 3000 years, and during this period was dominated by Sanskrit, first in its Vedic and later in its classical form. By the time Panini’s Grammar had standardised Sanskrit (about 5th century BC), language had developed another branch besides Sanskrit—the language of the masses, Prakrit or Middle Indo-Aryan (though these terms came into use much later).The emergence of the modern Indo-Aryan languages dates from the period after 1000 A.D when already the division of regional languages was assuming the shape at it has today. The main group of Indo-Aryan languages stretches across north and central India. The literary development of these languages took place at various times.An important new feature in the modern languages, as opposed to the earlier Middle Indo-Aryan, was the extensive introduction of Sanskrit loanwords. After the eighteenth century, under the impact of British rule and European contact as well as the introduction of printing, the range of subjects for literature widened and was modernized. Literary output increased. The processes initiated at that time have continued till the present day.The Dravidian languages are Tamil, Telugu, Kannada and Malayalam, of which Tamil was the earliest to be developed for literary purposes.','historical','2018-01-29 14:55:53.765413','Ancient Languages','community/4f7084f2-3523-48e9-a3af-e85806c38cb8.jpg','ancient-languages-4',3),(4,'Archaeological Survey of India ','The Archaeological Survey of India (ASI), under the Ministry of Culture, is the premier organization for the archaeological researches and protection of the cultural heritage of the nation. Maintenance of ancient monuments and archaeological sites and remains of national importance is the prime concern of the ASI. Besides it regulate all archaeological activities in the country as per the provisions of the Ancient Monuments and Archaeological Sites and Remains Act, 1958. It also regulates Antiquities and Art Treasure Act, 1972. ','historical','2018-01-29 14:56:06.542730','Archaeological Survey of India ','community/371a4980-e8af-4da5-88bf-9f17969ddaae.jpg','archaeological-survey-of-india-5',3),(5,'Ayurveda ','Ayurveda is an ancient system of life and also the oldest surviving medical system in the world. Dating back almost 5000 years, it is also considered to be an ancient science of healing that enhances longevity. It has evolved from the quest to have a happy life, through a deep understanding of creation and its maintenance, perceived and conceived by the rishis or seers of ancient India. Ayurveda emphasizes upon life in general with bit more emphasis on human life.','educational','2018-01-29 14:56:14.866984','Ayurveda ','community/5b54fb7d-462d-4075-bfce-1b43ce16d00b.jpg','ayurveda-6',3),(6,'Balabharati Books for Standard I to VIII','Balabharati was established in Pune by the Government of Maharashtra on 27 January 1967 as per the recommendations of the Kothari Commission. This is in view to improve the quality of textbooks for Stds. I to VIII. The other intention was to make textbooks available at a reasonable price. Balbharati institute is an autonomous body registered under the Public Trusts Act 1950 and the Societies Registration Act, 1860.\r\n','educational','2018-01-29 14:56:32.845822','Balabharati Books Standard I to VIII','community/4d2c3565-a37f-4687-bdf9-bffdb940f79d.jpg','balabharati-books-for-standard-i-to-viii-7',3),(7,'Bird Sanctuaries of India ','India plays host to a sizeable population of birds and the best places to sight these amazing creatures are the various bird sanctuaries situated in almost all the states in the country. About 1200 species of birds are found in India (including migratory birds) making it a paradise for birdwatchers and ornithologists. Today, there are 59 bird sanctuaries in India.','educational','2018-01-29 14:56:36.707935','Bird Sanctuaries of India ','community/de81d176-db76-4dbe-b9e4-f29183fef0a7.jpg','bird-sanctuaries-of-india-8',3),(8,' Buddhist and Tibetan Art','Ministry of Culture has been doing repairs, restoration and renovation of ancient Buddhist and Tibetan monasteries of historical and cultural importance. It also provides financial assistance to students, teachers and scholars for the Preservation and Development of Buddhist/Tibetan Culture & Art. So far 390 projects have been supported by Union Ministry of Culture. ','educational','2018-01-29 14:56:39.714982',' Buddhist and Tibetan Art','community/a38f8eb8-8c10-433a-b1f7-48187b79169b.jpg','buddhist-and-tibetan-art-9',3),(9,'Central Board of Secondary Education','CBSE is a board of education for public and private schools in India. It conducts the final examinations for Class 10 and Class 12 every year in the month of March. It also conducts Joint Engineering Entrance (JEE) Exam, National Eligibility cum Entrance Test (NEET), Central Teacher Eligibility Test (twice a year), UGC’s National Eligibility Test (twice a year) and the entrance test for Jawahar Navodaya Vidyalayas.','educational','2018-01-29 14:56:43.975511','Central Board of Secondary Education','community/86a6c5bf-8008-45d0-ab91-bb3d807af33e.png','central-board-of-secondary-education-10',3),(10,' Cartography','The cartography of India begins with early charts for navigation and constructional plans for buildings. Indian traditions influenced Tibetan and Islamic traditions, and in turn, were influenced by the British cartographers who solidified modern concepts into India\'s map making.','educational','2018-01-29 14:56:47.426366',' Cartography','community/b8f512b9-fb91-41b4-bee8-01af4d3412ff.jpg','cartography-11',3),(11,'Archaeology ','The word \"Archaeology\" comes from the Greek word \"archaia\" meaning ancient things and \"logos\" meaning theory or science. Archaeology is defined as the study of the human activity through the recovery and analysis of the material remains left behind by the humans which include artifacts, architecture, biofacts and cultural landscapes. A person studying archaeology is termed as an \"Archaeologist\". Unlike history, which relies on the written records to interpret the data, archaeology helps to interpret the data even of the prehistoric societies where there is lack of written evidence. ','educational','2018-01-29 14:56:51.366122',' Dig to find the answers','community/333fa482-5b43-4220-877a-2cefccbbb89e.jpg','archaeology-12',3),(12,'Excavation Sites','India has many excavation sites where agencies like the Archaeological Survey of India, State Departments of Archaeology, Universities and other research organizations have conducted archaeological excavations. Various Branches and Circles of the ASI carry out archaeological excavations in different parts of the country.','educational','2018-01-29 14:56:54.502993','Excavation Sites','community/0c99b4e4-3732-4756-a23c-edc1f2591117.jpg','excavation-sites-13',3),(13,'Festivals ','India is a land of festivals, where people from different religions coexist harmoniously. The wide variety of festivals celebrated in India is a true manifestation of its rich culture and traditions.Among these festivals, some are religious; some are based on seasons while some are of national importance. All the festivals are celebrated with great enthusiasm in a colorful atmosphere.Diwali, Dussehra, Raksha Bandhan, Id-ul-Fitr, Id-ul-Zuha, Christmas, Mahavir Jayanti, Gurunanak Jayanti, Ganesh Chaturhi etc. are the religious festivals of India. Holi, Baisakhi, Basant Panchami, Bihu, Pongal, Onam etc. are seasonal or harvest festivals.Our national festivals- the Independence Day, The Republic day and the Gandhi Jayanti these festivals are celebrated by all communities through out the country.','educational','2018-01-29 14:56:57.462094','Festivals ','community/13287fef-962a-49ef-a01d-3b3f3f33ac43.jpg','festivals-14',3),(14,'Film and Television Institute of India','The Film and Television Institute of India (FTII) is an autonomous institute under the Ministry of Information and Broadcasting of the Government of India and aided by the Central Government of India. It is situated on the premises of the erstwhile Prabhat Film Company in Pune. Since its inception in 1960, FTII has become India\'s premier film and television institute, with its alumni becoming technicians, actors and directors in the film and television industry.','educational','2018-01-29 14:57:03.190084','Film and Television Institute of India','community/acade20d-7626-4cbd-bb80-3a8becf10298.jpg','film-and-television-institute-of-india-15',3),(15,'Films Division of India','Films Division of India (FDI) commonly referred as Films Division is a film production house belonging to the Ministry of Information and Broadcasting, Government of India, primarily to \"produce documentaries and news magazines for publicity of Government programmes\" and cinematic record of Indian history.FDI is divided into four wings, namely, Production, Distribution, International Documentary and Short Film Festival.\r\n','historical','2018-01-29 14:57:07.414147','Films Division of India','community/2c5c9d38-09ee-481b-814a-e9acd8ef42bf.jpg','films-division-of-india-16',3),(17,'Forts and Palaces ','The grand forts and palaces of India clearly depict the glory of India\'s majestic past.. A few notable forts are the Red fort, Agra, Junagarh fort, Bikaner. The whole of India is dotted with forts and palaces of historic significance. The palaces in India are known to be marvels in architecture. They have been home to various dynasties. Some of the famous palaces in India are the City Palace, Jaipur. Maharaja Palace, Mysore.','historical','2018-01-29 14:57:57.147653','Forts and Palaces ','community/c4292112-1572-49b5-ae39-f614e6bde29e.jpg','forts-and-palaces-18',3),(18,'Free and Open Source Software for Education','FOSSEE (Free and Open Source Software for Education) aims to promote the use of free and open source software in education. It creates FOSS educational content in the form of books, spoken tutorials, CDs/DVDs which is accessed by millions of learners across India. It also conduct workshops, conferences and seminars on FOSS. There are various alternatives available to proprietary softwares which may be expensive. For more information visit : http://fossee.in/','educational','2018-01-29 14:58:04.702427','Free and Open Source Software for Education','community/78d88b84-7d65-4856-a143-ce0a609932d0.jpg','free-and-open-source-software-for-education-19',3),(19,'Indian Classical Dance ','India has a very rich culture of dance and music, Traditional, classical, folk and Tribal dances style. These Incredible traditional dances of India are originated during the ancient times and considered the mother art of classical dances. The Classical Dances of India includes Bharatanatyam, the oldest form of the classical dance in the country and one of the Most Popular Classical Dance in India and ancient in Natya Shastra.Other classical dances of India are Kathak, Kuchipudi, Kathakali, Manipuri, Odissi, Sattriya and Mohiniattam.','informational','2018-01-29 14:58:15.558931','Dancing in a classical style','community/1f200f41-cfc7-4276-923c-de0d9d811ee4.jpg','indian-classical-dance-20',3),(20,'Indian Astrology ','Indian Astrology also known as Vedic Astrology is an ancient science based on the knowledge gained by ancient Indian sages and saints on planetary influences. It has it\'s roots steeped into the Vedas which date back to 1500 BC. In Sanskrit the Indian Astrology is termed as Jyotish which means light. There are two chart styles in Jyotish - North Indian and South Indian. India astrology follows the Panchang which is a spiritual and scientific calendar. It provides listing of festivals, weather predictions, weather predictions, epidemic, and personal fortune.','informational','2018-01-29 14:58:19.939906','Look in to the future','community/5776b399-f590-4e58-b7f3-6eb9f93a951d.jpeg','indian-astrology-21',3),(21,'Indian Pottery ','The origin of Indian pottery goes back to the Indus Valley civilization.Some of the pottery being created on wheels and some were handmade.The pots were favoured for water transportation and storage, grain storage along with cooking pots and storage for oil, beer, milk, and curd.Over time distinctive styles emerged in the different states of India.The bulk of Indian pottery is characterized by three main styles, black pottery, blue pottery and terracotta as well as the unglazed being divided into paper thin, scraffito and highly polished. In some parts of India, the potters maintain a high status due to being involved in the production of deities for religious ceremonies, terracotta being the common medium.','informational','2018-01-29 14:58:37.508211','A distinct art form','community/869e6194-ea0a-4553-8177-7898ece2cebf.jpg','indian-pottery-22',3),(22,'Indian Classical Dances ','India has a very rich culture of dance and music, Traditional, classical, folk and Tribal dances style. These Incredible traditional dances of India are originated during the ancient times and considered the mother art of classical dances. The Classical Dances of India includes Bharatanatyam, the oldest form of the classical dance in the country and one of the Most Popular Classical Dance in India and ancient in Natya Shastra.Other classical dances of India are Kathak, Kuchipudi, Kathakali, Manipuri, Odissi, Sattriya and Mohiniattam','informational','2018-01-29 14:58:52.120920','Indian Classical Dances ','','indian-classical-dances-23',3),(23,'Indian Cuisines ','A wide variety of regional and traditional cuisines are native to the Indian subcontinent. Religion and culture also play an important role in defining the Indian cuisine. Welcome to a vibrant and intensely colorful world of the Indian recipe. The aim of this forum to preserve, document, promote and disseminate information related to Indian Cuisine. There are millions of recipes cooked in kitchens across India. And we know very few. Indian cuisine has always influenced other cuisine from around the world such as that of Europe, the Middle East, the British Isles, parts of Africa and other adjoining regions.','informational','2018-01-29 14:59:04.262634','Discovering the eating habits','community/776b82bf-a3dc-44a0-bb6e-df37aae52eb0.jpg','indian-cuisines-24',3),(24,'Indian Puppetry ','Indian Puppetry which is popularly known as kathputli is an ancient performance which involves story telling through playing the puppets. The puppeteers went from place to place to entertain the people by performing the mythological stories, historical romances and so on. The puppets show the influence of paintings, sculpture, costumes and arts of the region to which they belong.The puppetry in India was originated around 4000 years ago. There is evidence of puppetry in Indus valley civilization.The four types of puppetry in India are String, Shadow, Glove and Rod puppetry','historical','2018-01-29 15:01:39.027763','Indian Puppetry ','community/0ff09cc0-7c16-4b29-8bf7-c88ee44f98b8.jpg','indian-puppetry-25',3),(26,'Folk and Tribal Dances ','Indian Folk Dance – a wonder, a pleasure and a timeless treasure.Dance is a unique way of communication using your body, eyes, expressions, etc. We can broadly classify the dances of India into three categories, viz. classical dances of India, folk dances of India and tribal dances of India. Classical dances are more religious and spiritual in nature, whereas folk dances are more celebration oriented.India has a huge number of Folk Dances that, in their own unique styles, reflect the ways the people they originate from live, think and express themselves.Their vibrant movements, music, lyrics, costumes and colours depict the stories of the lands they come from. These Folk Dances are spontaneous expressions of emotions by the simple people of a land.Folk Dances are also considered a part of our history and their tales can often reveal a lot about the periods these dances have developed through. Few famous folk and tribal dances are Bhangra and Giddha from Punjab, Garba and Dandiya from Gujarat, Ghoomar from Rajasthan, Theyyam from Kerala.','informational','2018-01-29 15:04:30.004262','Folk and Tribal Dances ','community/8ecfc567-a152-42eb-a041-4bb2b419ad53.jpg','folk-and-tribal-dances-27',3),(27,'Intellectual Property of India ','The \"Copyright Act, 1957\" (as amended by the Copyright Amendment Act 2012) governs the subject of copyright law in India. A trademark is a recognizable sign, design, or expression which identifies products or services of a particular source from those of others. The trademark owner can be an individual, business organization, or any legal entity. A trademark may be located on a package, a label, a voucher, or on the product itself.\r\n','Historical','2018-01-29 15:04:56.782928','Intellectual Property of India ','community/1b001e9b-f1af-4e82-b410-ab051a2f5da8.png','intellectual-property-of-india-28',3),(28,'Monuments','There are at present more than 3650 ancient monuments and archaeological sites and remains of national importance. These monuments belong to different periods, ranging from the prehistoric period to the colonial period and are located in different geographical settings. They include temples, mosques, tombs, churches, cemeteries, forts, palaces, step-wells, rock-cut caves, and secular architecture as well as ancient mounds and sites which represent the remains of ancient habitation. These monuments and sites are maintained and preserved through various Circles of the ASI spread all over the country.\r\n','Historical','2018-01-29 15:05:01.983990','Monuments','community/ed2bd8bd-e10e-4686-be8b-4bd6c31eb964.jpg','monuments-29',3),(29,'Museums ','The Archaeological Survey of India (ASI), under the Ministry of Culture, is the premier organization for the archaeological researches and protection of the cultural heritage of the nation. The concept of museums in India may be traced back to the historic times, in which references to the Chitrasala (picture gallery) do occur. However, in India, the museum movement post-dates the similar developments that occurred in Europe.','informational','2018-01-29 15:05:03.895625','Museums ','community/d5283ee4-0e08-4ed2-9fd6-0e834c0adc4e.jpg','museums-30',3),(30,'National Gallery of Modern Art in Delhi ','The NGMA is the premier institution of its kind in India. It is run and administered as a subordinate office to the Department of Culture, Government of India. The NGMA has two branches one at Mumbai and the other at Bangaluru. The gallery is a repository of the cultural ethos of the country and showcases the changing art forms through the passage of the last hundred and fifty years starting from about 1857 in the field of Visual and Plastic arts.','Informational','2018-01-29 15:05:06.281948','National Gallery of Modern Art in Delhi ','community/571428e9-e153-4caf-ada9-5e63ebf8b5e0.jpg','national-gallery-of-modern-art-in-delhi-31',3),(31,'Numismatics ','Numismatics relates to the study of coins, currency, tokens, and other related objects and the scholars who study numismatics are termed as \"Numismatists\". Coins generally have a tendency to provide useful information not only about the date of a particular dynasty, but also it helps to interpret data about the trade, economy, social organization, and religious beliefs of a particular civilization. Ancient coins were majorly categorized according to the metal used for making the coins. Silver, Copper, and Gold were the metals that were earlier used for making coins in India. The earliest coins made in India were the \"Punch marked coins\" made of silver and produced from the 6th century B.C. till the 2nd-1st century B.C. Gold coins were introduced in India by Wima Kadphises, a Kushana ruler, during the 1st century A.D. Three different kinds of techniques were developed for making coins viz., punching, casting, and die-striking techniques. However, in modern times, machine struck coins are produced using alloys of different metals. Founded in the year 1910 at Allahabad, the Numismatic Society of India is the premier numismatic society in India. It was formed with an objective of promoting the knowledge and regulating the study of numismatics in India.','Historical','2018-01-29 15:05:16.860558','Let the coin speak to you','community/22df7d04-bb3b-4060-8722-4d8f3eb19663.jpg','numismatics-32',3),(32,'National Archives of India ','The National Archives of India (NAI) is the custodian of the records of enduring value of the Government of India. Established on 11 March, 1891 at Calcutta (Kolkata) as the Imperial Record Department, it is the biggest archival repository in South Asia. It has a vast corpus of records viz., public records, private papers, oriental records, cartographic records and microfilms, which constitute an invaluable source of information for scholars-administrators and users of archives.','informational','2018-01-29 15:05:21.651183','National Archives of India ','community/e273f1bf-0126-4520-ab38-a9a5c497c729.jpg','national-archives-of-india-33',3),(33,'National Council for Educational Research and Training','NCERT online service offers easy access to the NCERT textbooks. The service covers textbooks of all subjects published by NCERT for classes I to XII in Hindi, English and Urdu. While copies of these textbooks may be downloaded and used as textbooks or for reference, republication is strictly prohibited. In order to discourage piracy, the online textbooks carry a watermark on all pages declaring the copyright of NCERT. The text books can be downloaded from : http://ncert.nic.in/textbook/textbook.htm','Educational','2018-01-29 15:05:27.268330','National Council for Educational Research and Training','community/3347aa0a-7fad-488a-bfda-9e4dcf6fb237.jpg','national-council-for-educational-research-and-training-34',3),(34,'Pilgrimage And Religious Sites ','A pilgrimage is a long journey or search of great moral significance. Sometimes, it is a journey to a sacred place or shrine of importance.Pilgrimage is an important aspect of Hinduism. Popular pilgrimage places are rivers, but temples, mountains, and other sacred sites in India are also destinations for pilgrimages.\r\n','Informational','2018-01-29 15:05:58.988275','Pilgrimage And Religious Sites ','community/dc544915-be03-483d-abe1-f3d950aa7f4a.jpg','pilgrimage-and-religious-sites-35',3),(35,'Sahitya Academy ','Sahitya Akademi is the central institution for literary dialogue, publication and promotion in the country and the only institution that undertakes literary activities in 24 Indian languages, including English.Every year the Akademi holds at least 50 seminars at regional, national and international levels along with the workshops and literary gatherings-about 300 in number per year, under various heads like Meet the Author, Samvad, Kavisandhi, Kathasandhi, Loka: The Many Voices, People and Books, Through My Window, Mulakat, Asmita, Antaral, Avishkar, Nari Chetna, Yuva Sahiti, Bal Sahiti, Purvottari and Literary Forum meetings.','Educational','2018-01-29 15:06:03.542249','Sahitya Academy ','community/bf4b6215-5a47-4e46-bd66-9b4adca8a293.jpg','sahitya-academy-36',3),(36,'Sculptures ','India has great tradition of monumental sculpture in stone which dates back to 270 to 232 BCE. The sculptures can be found in temples, pillars, palaces and various monuments. Stone sculptures may be defined as the sculptures made out of varied kinds of stones, mostly carved to provide an artistic shape to the object. Stones such as soapstone, limestone, sanstone, basalt, granite and other forms of stones are used for making the sculptures. On the other hand, \"Terracotta\" sculptures refers to the sculptures made of baked clay. Terracotta sculptures are made from a coarse, porous clay noted for its versatility, cheapness, and durability. Terracotta is also used for making vessels, water and waste water pipes, roofing tiles, bricks, and surface embellishment in building construction.','Historical','2018-01-29 15:06:04.809314','Sculptures ','community/7a333eeb-1a89-4e29-97cc-86ae593b6f8f.jpg','sculptures-37',3),(37,'Theatre of India ','The earliest form of Indian theatre was the Sanskrit theatre which originated in 2nd century BC. During Islamic rule of the medieval period, theatre was discouraged or forbidden entirely.Later, in an attempt to re-assert indigenous values and ideas, village theatre was encouraged, developing in a large number of regional languages from the 15th to the 19th centuries.Modern Indian theatre developed during the period of colonial rule under the British Empire, from the mid-19th century until the mid-20th. The study of Indian Theatre includes - origin of theatres, notable people and their contribution, various forms of theatre, notable awards and festivals.','Informational','2018-01-29 15:06:07.103368','Theatre of India ','community/a8acea6c-15e9-428e-8272-e75e3e4a312e.jpg','theatre-of-india-38',3),(38,'Traditional Folk Songs ','The folk music primarily is related to the festivals, religious traditions, folk stories and simple life of the people.Through out India the folk music has minor lingual differences but invokes the same feelings.The folk songs of Maharashtra are Bhavageete , Lavani, Powada, Bhajan, Kirtan, Bharud etc. Pandavani is a folk singing style of musical narration of tales from ancient epic Mahabharata with musical accompaniment and Bhima as hero. This form of folk theatre is popular in the Indian state of Chhattisgarh and in the neighbouring tribal areas of Orissa and Andhra Pradesh. Rajasthani folk music includes women’s Panihari songs, which lyrically describe chores, especially centred around water and wells, both of which are an integral part of Rajasthan’s desert culture.','Informational','2018-01-29 15:06:22.136248','Traditional Folk Songs ','community/0cdfe66d-d2fb-4263-a655-8fe6f328dd7d.png','traditional-folk-songs-39',3),(39,'Traditional Indian Sports ','India has a vast and unique culture, so every state has its own traditional sports to follow. India is the land of traditional sports like Kushti (The Indian Wrestling), Kho-kho, Kabaddi, Vallamkali, Jallikattu and many more. India is also known for its diversified culture and traditions. One of the traditional sports in India is Mallakhamb, it is one of the very difficult sports in India.','Informational','2018-01-29 15:06:26.466240','Playing it better','community/09cf7778-7210-4796-b0f0-09ae9d41fde5.jpg','traditional-indian-sports-40',3),(40,'Vedic Mathematics ','Vedic Mathematics is a system of mathematics which was discovered by Indian mathematician Jagadguru Shri Bharathi Krishna Tirthaji in the period between A.D. 1911 and 1918 and published his findings in a Vedic Mathematics book by Tirthaji Maharaj. Vedic Mathematics can definitely solve mathematical numerical calculations in faster way. Some Vedic Math Scholars mention that Using Vedic Maths tricks you can do calculations 10-15 times faster than our usual methods. Vedic Mathematics is a collection of Techniques/Sutras to solve mathematical arithmetics in easy and faster way. It consists of 16 Sutras (Formulae) and 13 sub-sutras (Sub Formulae) which can be used for problems involved in arithmetic, algebra, geometry, calculus, conics.','Educational','2018-01-29 15:06:27.861594','Vedic Mathematics ','community/3284c167-8db2-455d-b40c-5e2e03b842c5.png','vedic-mathematics-41',3),(41,'Wildlife Sanctuaries of India ','India is the land of the majestic tiger, humungous elephant, beautiful peacock, and gigantic rhinoceros. It has more than 490 wildlife sanctuaries and 99 national parks.','Informational','2018-01-29 15:06:29.440186','Wildlife Sanctuaries of India ','community/b75ef5cb-d6a9-40dc-8c4a-cb483f953657.jpg','wildlife-sanctuaries-of-india-42',3),(42,'Fundamental Research Group','The primary focus of this group is on wide range of cutting-edge solutions to various up-coming technological problems in integration, content synchronization, performance benchmarking, hard-core issues in small-powered devices, effective utilization of small-computing devices in education, energy-efficient solutions for low-powered devices, and other relevant areas. Apart from these, it also focuses on inter-disciplinary research and development in education and teaching pedagogy.','research','2018-02-06 12:28:02.894111','Innovation starts here','','fundamental-research-group-43',3);
/*!40000 ALTER TABLE `Community_community` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `Community_communityarticles`
--
DROP TABLE IF EXISTS `Community_communityarticles`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `Community_communityarticles` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`article_id` int(11) NOT NULL,
`community_id` int(11) NOT NULL,
`user_id` int(11) NOT NULL,
PRIMARY KEY (`id`),
KEY `Community_communitya_article_id_c9af3fed_fk_BasicArti` (`article_id`),
KEY `Community_communitya_community_id_39b5841f_fk_Community` (`community_id`),
KEY `Community_communityarticles_user_id_04d18793_fk_auth_user_id` (`user_id`),
CONSTRAINT `Community_communitya_article_id_c9af3fed_fk_BasicArti` FOREIGN KEY (`article_id`) REFERENCES `BasicArticle_articles` (`id`),
CONSTRAINT `Community_communitya_community_id_39b5841f_fk_Community` FOREIGN KEY (`community_id`) REFERENCES `Community_community` (`id`),
CONSTRAINT `Community_communityarticles_user_id_04d18793_fk_auth_user_id` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `Community_communityarticles`
--
LOCK TABLES `Community_communityarticles` WRITE;
/*!40000 ALTER TABLE `Community_communityarticles` DISABLE KEYS */;
INSERT INTO `Community_communityarticles` VALUES (1,9,42,10);
/*!40000 ALTER TABLE `Community_communityarticles` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `Community_communitygroups`
--
DROP TABLE IF EXISTS `Community_communitygroups`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `Community_communitygroups` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`community_id` int(11) DEFAULT NULL,
`group_id` int(11) DEFAULT NULL,
`user_id` int(11) DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `Community_communityg_community_id_3e76934c_fk_Community` (`community_id`),
KEY `Community_communitygroups_group_id_a2ce7b35_fk_Group_group_id` (`group_id`),
KEY `Community_communitygroups_user_id_eaead89d_fk_auth_user_id` (`user_id`),
CONSTRAINT `Community_communityg_community_id_3e76934c_fk_Community` FOREIGN KEY (`community_id`) REFERENCES `Community_community` (`id`),
CONSTRAINT `Community_communitygroups_group_id_a2ce7b35_fk_Group_group_id` FOREIGN KEY (`group_id`) REFERENCES `Group_group` (`id`),
CONSTRAINT `Community_communitygroups_user_id_eaead89d_fk_auth_user_id` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `Community_communitygroups`
--
LOCK TABLES `Community_communitygroups` WRITE;
/*!40000 ALTER TABLE `Community_communitygroups` DISABLE KEYS */;
INSERT INTO `Community_communitygroups` VALUES (1,42,1,7),(2,42,2,8),(3,42,3,9),(4,42,4,11),(5,42,5,12),(6,42,6,13),(7,42,7,13),(8,42,8,10);
/*!40000 ALTER TABLE `Community_communitygroups` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `Community_communitymembership`
--
DROP TABLE IF EXISTS `Community_communitymembership`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `Community_communitymembership` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`community_id` int(11) NOT NULL,
`role_id` int(11) DEFAULT NULL,
`user_id` int(11) NOT NULL,
PRIMARY KEY (`id`),
KEY `Community_communitym_community_id_8a39991d_fk_Community` (`community_id`),
KEY `Community_communitymembership_role_id_9c581fd0_fk_auth_group_id` (`role_id`),
KEY `Community_communitymembership_user_id_5dd1c26b_fk_auth_user_id` (`user_id`),
CONSTRAINT `Community_communitym_community_id_8a39991d_fk_Community` FOREIGN KEY (`community_id`) REFERENCES `Community_community` (`id`),
CONSTRAINT `Community_communitymembership_role_id_9c581fd0_fk_auth_group_id` FOREIGN KEY (`role_id`) REFERENCES `auth_group` (`id`),
CONSTRAINT `Community_communitymembership_user_id_5dd1c26b_fk_auth_user_id` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=57 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `Community_communitymembership`
--
LOCK TABLES `Community_communitymembership` WRITE;
/*!40000 ALTER TABLE `Community_communitymembership` DISABLE KEYS */;
INSERT INTO `Community_communitymembership` VALUES (1,1,3,3),(2,2,3,3),(3,3,3,3),(4,4,3,3),(5,5,3,3),(6,6,3,3),(7,7,3,3),(8,8,3,3),(9,9,3,3),(10,10,3,3),(11,11,3,3),(12,12,3,3),(13,13,3,3),(14,14,3,3),(15,15,3,3),(17,17,3,3),(18,18,3,3),(19,19,3,3),(20,20,3,3),(21,21,3,3),(22,22,3,3),(23,23,3,3),(24,24,3,3),(26,26,3,3),(27,27,3,3),(28,28,3,3),(29,29,3,3),(30,30,3,3),(31,31,3,3),(32,32,3,3),(33,33,3,3),(34,34,3,3),(35,35,3,3),(36,36,3,3),(37,37,3,3),(38,38,3,3),(39,39,3,3),(40,40,3,3),(41,41,3,3),(42,8,1,1),(43,10,1,1),(44,5,1,5),(45,8,1,2),(46,42,3,3),(47,42,1,6),(48,42,1,7),(49,42,1,8),(50,42,1,9),(51,42,1,11),(52,42,1,12),(53,42,1,13),(54,42,1,14),(55,42,1,10),(56,42,1,5);
/*!40000 ALTER TABLE `Community_communitymembership` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `Community_requestcommunitycreation`
--
DROP TABLE IF EXISTS `Community_requestcommunitycreation`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `Community_requestcommunitycreation` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(100) DEFAULT NULL,
`desc` longtext NOT NULL,
`category` varchar(100) NOT NULL,
`tag_line` varchar(500) DEFAULT NULL,
`purpose` longtext NOT NULL,
`email` varchar(100) DEFAULT NULL,
`requestedby_id` int(11) DEFAULT NULL,
`status` varchar(100) DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `Community_requestcommunitycreation_requestedby_id_b3e83124` (`requestedby_id`),
CONSTRAINT `Community_requestcom_requestedby_id_b3e83124_fk_auth_user` FOREIGN KEY (`requestedby_id`) REFERENCES `auth_user` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=47 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `Community_requestcommunitycreation`
--
LOCK TABLES `Community_requestcommunitycreation` WRITE;
/*!40000 ALTER TABLE `Community_requestcommunitycreation` DISABLE KEYS */;
INSERT INTO `Community_requestcommunitycreation` VALUES (1,'languages ','Description ','kk','about state languages','ggg','kirtisharma1may@gmail.com',4,'rejected'),(2,' All India Council for Technical Education AICTE','Technical education in India contributes a major share to the overall education system and plays a vital role in the social and economic development of our nation. AICTE aims at promoting quality in education. It oversees regulations and maintenance of norms and standards. For more information about AICTE visit : https://www.aicte-india.org/','Technical education','All India Council for Technical Education AICTE','Quality of our education ','rajkamlesh3693@gmail.com',3,'rejected'),(3,'All India Council for Technical Education','Technical education in India contributes a major share to the overall education system and plays a vital role in the social and economic development of our nation. AICTE aims at promoting quality in education. It oversees regulations and maintenance of norms and standards. For more information about AICTE visit : https://www.aicte-india.org/\r\n','educational','All India Council for Technical Education ','To provide Technical education information','rajkamlesh3693@gmail.com',3,'approved'),(4,'Ancient Civilizations of India ','India\'s civilizations date back as old as 4000 years. The Indus Valley Civilisation (IVC) or The Harappan Civilisation, was a Bronze Age civilization (3300–1300 BCE; mature period 2600–1900 BCE). This was followed by The Vedic period or Vedic age (c. 1500 – c. 600 BCE).','historical','Ancient Civilizations of India ','request for create this community','rajkamlesh3693@gmail.com',3,'approved'),(5,'Ancient Languages','The literary tradition of Ancient India goes back more than 3000 years, and during this period was dominated by Sanskrit, first in its Vedic and later in its classical form. By the time Panini’s Grammar had standardised Sanskrit (about 5th century BC), language had developed another branch besides Sanskrit—the language of the masses, Prakrit or Middle Indo-Aryan (though these terms came into use much later).The emergence of the modern Indo-Aryan languages dates from the period after 1000 A.D when already the division of regional languages was assuming the shape at it has today. The main group of Indo-Aryan languages stretches across north and central India. The literary development of these languages took place at various times.An important new feature in the modern languages, as opposed to the earlier Middle Indo-Aryan, was the extensive introduction of Sanskrit loanwords. After the eighteenth century, under the impact of British rule and European contact as well as the introduction of printing, the range of subjects for literature widened and was modernized. Literary output increased. The processes initiated at that time have continued till the present day.The Dravidian languages are Tamil, Telugu, Kannada and Malayalam, of which Tamil was the earliest to be developed for literary purposes.','historical','Ancient Languages','to create this community','rajkamlesh3693@gmail.com',3,'approved'),(6,'Archaeological Survey of India ','The Archaeological Survey of India (ASI), under the Ministry of Culture, is the premier organization for the archaeological researches and protection of the cultural heritage of the nation. Maintenance of ancient monuments and archaeological sites and remains of national importance is the prime concern of the ASI. Besides it regulate all archaeological activities in the country as per the provisions of the Ancient Monuments and Archaeological Sites and Remains Act, 1958. It also regulates Antiquities and Art Treasure Act, 1972. ','historical','Archaeological Survey of India ','to create this community','rajkamlesh3693@gmail.com',3,'approved'),(7,'All India Council for Technical Education AICTE','Technical education in India contributes a major share to the overall education system and plays a vital role in the social and economic development of our nation. AICTE aims at promoting quality in education. It oversees regulations and maintenance of norms and standards. For more information about AICTE visit : https://www.aicte-india.org/','Technical education','All India Council for Technical Education AICTE','improvement of technical education','rajkamlesh3693@gmail.com',3,'rejected'),(8,'Archaeology ','The word \"Archaeology\" comes from the Greek word \"archaia\" meaning ancient things and \"logos\" meaning theory or science. Archaeology is defined as the study of the human activity through the recovery and analysis of the material remains left behind by the humans which include artifacts, architecture, biofacts and cultural landscapes. A person studying archaeology is termed as an \"Archaeologist\". Unlike history, which relies on the written records to interpret the data, archaeology helps to interpret the data even of the prehistoric societies where there is lack of written evidence. ','educational',' Dig to find the answers','to create this community','rajkamlesh3693@gmail.com',3,'approved'),(9,'Ayurveda ','Ayurveda is an ancient system of life and also the oldest surviving medical system in the world. Dating back almost 5000 years, it is also considered to be an ancient science of healing that enhances longevity. It has evolved from the quest to have a happy life, through a deep understanding of creation and its maintenance, perceived and conceived by the rishis or seers of ancient India. Ayurveda emphasizes upon life in general with bit more emphasis on human life.','educational','Ayurveda ','to create this community','rajkamlesh3693@gmail.com',3,'approved'),(10,'Balabharati Books for Standard I to VIII','Balabharati was established in Pune by the Government of Maharashtra on 27 January 1967 as per the recommendations of the Kothari Commission. This is in view to improve the quality of textbooks for Stds. I to VIII. The other intention was to make textbooks available at a reasonable price. Balbharati institute is an autonomous body registered under the Public Trusts Act 1950 and the Societies Registration Act, 1860.\r\n','educational','Balabharati Books Standard I to VIII','to create this community','rajkamlesh3693@gmail.com',3,'approved'),(11,'Bird Sanctuaries of India ','India plays host to a sizeable population of birds and the best places to sight these amazing creatures are the various bird sanctuaries situated in almost all the states in the country. About 1200 species of birds are found in India (including migratory birds) making it a paradise for birdwatchers and ornithologists. Today, there are 59 bird sanctuaries in India.','educational','Bird Sanctuaries of India ','to create this community','rajkamlesh3693@gmail.com',3,'approved'),(12,' Buddhist and Tibetan Art','Ministry of Culture has been doing repairs, restoration and renovation of ancient Buddhist and Tibetan monasteries of historical and cultural importance. It also provides financial assistance to students, teachers and scholars for the Preservation and Development of Buddhist/Tibetan Culture & Art. So far 390 projects have been supported by Union Ministry of Culture. ','educational',' Buddhist and Tibetan Art','to create this community','rajkamlesh3693@gmail.com',3,'approved'),(13,' Cartography','The cartography of India begins with early charts for navigation and constructional plans for buildings. Indian traditions influenced Tibetan and Islamic traditions, and in turn, were influenced by the British cartographers who solidified modern concepts into India\'s map making.','educational',' Cartography','to create this community','rajkamlesh3693@gmail.com',3,'approved'),(14,'Central Board of Secondary Education','CBSE is a board of education for public and private schools in India. It conducts the final examinations for Class 10 and Class 12 every year in the month of March. It also conducts Joint Engineering Entrance (JEE) Exam, National Eligibility cum Entrance Test (NEET), Central Teacher Eligibility Test (twice a year), UGC’s National Eligibility Test (twice a year) and the entrance test for Jawahar Navodaya Vidyalayas.','educational','Central Board of Secondary Education','to create Central Board of Secondary Education community','rajkamlesh3693@gmail.com',3,'approved'),(15,'Excavation Sites','India has many excavation sites where agencies like the Archaeological Survey of India, State Departments of Archaeology, Universities and other research organizations have conducted archaeological excavations. Various Branches and Circles of the ASI carry out archaeological excavations in different parts of the country.','educational','Excavation Sites','to create a community','rajkamlesh3693@gmail.com',3,'approved'),(16,'Festivals ','India is a land of festivals, where people from different religions coexist harmoniously. The wide variety of festivals celebrated in India is a true manifestation of its rich culture and traditions.Among these festivals, some are religious; some are based on seasons while some are of national importance. All the festivals are celebrated with great enthusiasm in a colorful atmosphere.Diwali, Dussehra, Raksha Bandhan, Id-ul-Fitr, Id-ul-Zuha, Christmas, Mahavir Jayanti, Gurunanak Jayanti, Ganesh Chaturhi etc. are the religious festivals of India. Holi, Baisakhi, Basant Panchami, Bihu, Pongal, Onam etc. are seasonal or harvest festivals.Our national festivals- the Independence Day, The Republic day and the Gandhi Jayanti these festivals are celebrated by all communities through out the country.','educational','Festivals ','to create a community','rajkamlesh3693@gmail.com',3,'approved'),(17,'Film and Television Institute of India','The Film and Television Institute of India (FTII) is an autonomous institute under the Ministry of Information and Broadcasting of the Government of India and aided by the Central Government of India. It is situated on the premises of the erstwhile Prabhat Film Company in Pune. Since its inception in 1960, FTII has become India\'s premier film and television institute, with its alumni becoming technicians, actors and directors in the film and television industry.','educational','Film and Television Institute of India','to create a community film and television of india','rajkamlesh3693@gmail.com',3,'approved'),(18,'Films Division of India','Films Division of India (FDI) commonly referred as Films Division is a film production house belonging to the Ministry of Information and Broadcasting, Government of India, primarily to \"produce documentaries and news magazines for publicity of Government programmes\" and cinematic record of Indian history.FDI is divided into four wings, namely, Production, Distribution, International Documentary and Short Film Festival.\r\n','historical','Films Division of India','for create community','rajkamlesh3693@gmail.com',3,'approved'),(19,'Folk and Tribal Dance ','Indian Folk Dance – a wonder, a pleasure and a timeless treasure.Dance is a unique way of communication using your body, eyes, expressions, etc. We can broadly classify the dances of India into three categories, viz. classical dances of India, folk dances of India and tribal dances of India. Classical dances are more religious and spiritual in nature, whereas folk dances are more celebration oriented.India has a huge number of Folk Dances that, in their own unique styles, reflect the ways the people they originate from live, think and express themselves.Their vibrant movements, music, lyrics, costumes and colours depict the stories of the lands they come from. These Folk Dances are spontaneous expressions of emotions by the simple people of a land.Folk Dances are also considered a part of our history and their tales can often reveal a lot about the periods these dances have developed through. Few famous folk and tribal dances are Bhangra and Giddha from Punjab, Garba and Dandiya from Gujarat, Ghoomar from Rajasthan, Theyyam from Kerala.','informational','Preserving the age old dance practices','to create a community','rajkamlesh3693@gmail.com',3,'approved'),(20,'Folk and Tribal Dances ','Indian Folk Dance – a wonder, a pleasure and a timeless treasure.Dance is a unique way of communication using your body, eyes, expressions, etc. We can broadly classify the dances of India into three categories, viz. classical dances of India, folk dances of India and tribal dances of India. Classical dances are more religious and spiritual in nature, whereas folk dances are more celebration oriented.India has a huge number of Folk Dances that, in their own unique styles, reflect the ways the people they originate from live, think and express themselves.Their vibrant movements, music, lyrics, costumes and colours depict the stories of the lands they come from. These Folk Dances are spontaneous expressions of emotions by the simple people of a land.Folk Dances are also considered a part of our history and their tales can often reveal a lot about the periods these dances have developed through. Few famous folk and tribal dances are Bhangra and Giddha from Punjab, Garba and Dandiya from Gujarat, Ghoomar from Rajasthan, Theyyam from Kerala.','informational','Folk and Tribal Dances ','to create this community','rajkamlesh3693@gmail.com',3,'approved'),(21,'Forts and Palaces ','The grand forts and palaces of India clearly depict the glory of India\'s majestic past.. A few notable forts are the Red fort, Agra, Junagarh fort, Bikaner. The whole of India is dotted with forts and palaces of historic significance. The palaces in India are known to be marvels in architecture. They have been home to various dynasties. Some of the famous palaces in India are the City Palace, Jaipur. Maharaja Palace, Mysore.','historical','Forts and Palaces ','to create this community','rajkamlesh3693@gmail.com',3,'approved'),(22,'Free and Open Source Software for Education','FOSSEE (Free and Open Source Software for Education) aims to promote the use of free and open source software in education. It creates FOSS educational content in the form of books, spoken tutorials, CDs/DVDs which is accessed by millions of learners across India. It also conduct workshops, conferences and seminars on FOSS. There are various alternatives available to proprietary softwares which may be expensive. For more information visit : http://fossee.in/','educational','Free and Open Source Software for Education','to create this community','rajkamlesh3693@gmail.com',3,'approved'),(23,'Indian Astrology ','Indian Astrology also known as Vedic Astrology is an ancient science based on the knowledge gained by ancient Indian sages and saints on planetary influences. It has it\'s roots steeped into the Vedas which date back to 1500 BC. In Sanskrit the Indian Astrology is termed as Jyotish which means light. There are two chart styles in Jyotish - North Indian and South Indian. India astrology follows the Panchang which is a spiritual and scientific calendar. It provides listing of festivals, weather predictions, weather predictions, epidemic, and personal fortune.','informational','Look in to the future','to create this community','rajkamlesh3693@gmail.com',3,'approved'),(24,'Indian Classical Dance ','India has a very rich culture of dance and music, Traditional, classical, folk and Tribal dances style. These Incredible traditional dances of India are originated during the ancient times and considered the mother art of classical dances. The Classical Dances of India includes Bharatanatyam, the oldest form of the classical dance in the country and one of the Most Popular Classical Dance in India and ancient in Natya Shastra.Other classical dances of India are Kathak, Kuchipudi, Kathakali, Manipuri, Odissi, Sattriya and Mohiniattam.','informational','Dancing in a classical style','to create community','rajkamlesh3693@gmail.com',3,'approved'),(25,'Indian Cuisines ','A wide variety of regional and traditional cuisines are native to the Indian subcontinent. Religion and culture also play an important role in defining the Indian cuisine. Welcome to a vibrant and intensely colorful world of the Indian recipe. The aim of this forum to preserve, document, promote and disseminate information related to Indian Cuisine. There are millions of recipes cooked in kitchens across India. And we know very few. Indian cuisine has always influenced other cuisine from around the world such as that of Europe, the Middle East, the British Isles, parts of Africa and other adjoining regions.','informational','Discovering the eating habits','to create this community','rajkamlesh3693@gmail.com',3,'approved'),(26,'Indian Pottery ','The origin of Indian pottery goes back to the Indus Valley civilization.Some of the pottery being created on wheels and some were handmade.The pots were favoured for water transportation and storage, grain storage along with cooking pots and storage for oil, beer, milk, and curd.Over time distinctive styles emerged in the different states of India.The bulk of Indian pottery is characterized by three main styles, black pottery, blue pottery and terracotta as well as the unglazed being divided into paper thin, scraffito and highly polished. In some parts of India, the potters maintain a high status due to being involved in the production of deities for religious ceremonies, terracotta being the common medium.','informational','A distinct art form','to create this community','rajkamlesh3693@gmail.com',3,'approved'),(27,'Indian Pottery ','The origin of Indian pottery goes back to the Indus Valley civilization.Some of the pottery being created on wheels and some were handmade.The pots were favored for water transportation and storage, grain storage along with cooking pots and storage for oil, beer, milk, and curd.Over time distinctive styles emerged in the different states of India.The bulk of Indian pottery is characterized by three main styles, black pottery, blue pottery and terracotta as well as the unglazed being divided into paper thin, scrafito and highly polished. In some parts of India the potters maintain a high status due to being involved in the production of deities for religious ceremonies, terracotta being the common medium. ','informational','Indian Pottery ','to create this community','rajkamlesh3693@gmail.com',3,'approved'),(28,'Indian Classical Dances ','India has a very rich culture of dance and music, Traditional, classical, folk and Tribal dances style. These Incredible traditional dances of India are originated during the ancient times and considered the mother art of classical dances. The Classical Dances of India includes Bharatanatyam, the oldest form of the classical dance in the country and one of the Most Popular Classical Dance in India and ancient in Natya Shastra.Other classical dances of India are Kathak, Kuchipudi, Kathakali, Manipuri, Odissi, Sattriya and Mohiniattam','informational','Indian Classical Dances ','to create this community','rajkamlesh3693@gmail.com',3,'approved'),(29,'Indian Puppetry ','Indian Puppetry which is popularly known as kathputli is an ancient performance which involves story telling through playing the puppets. The puppeteers went from place to place to entertain the people by performing the mythological stories, historical romances and so on. The puppets show the influence of paintings, sculpture, costumes and arts of the region to which they belong.The puppetry in India was originated around 4000 years ago. There is evidence of puppetry in Indus valley civilization.The four types of puppetry in India are String, Shadow, Glove and Rod puppetry','historical','Indian Puppetry ','to create this community','rajkamlesh3693@gmail.com',3,'approved'),(30,'Intellectual Property of India ','The \"Copyright Act, 1957\" (as amended by the Copyright Amendment Act 2012) governs the subject of copyright law in India. A trademark is a recognizable sign, design, or expression which identifies products or services of a particular source from those of others. The trademark owner can be an individual, business organization, or any legal entity. A trademark may be located on a package, a label, a voucher, or on the product itself.\r\n','Historical','Intellectual Property of India ','To create this community','rajkamlesh3693@gmail.com',3,'approved'),(31,'Monuments','There are at present more than 3650 ancient monuments and archaeological sites and remains of national importance. These monuments belong to different periods, ranging from the prehistoric period to the colonial period and are located in different geographical settings. They include temples, mosques, tombs, churches, cemeteries, forts, palaces, step-wells, rock-cut caves, and secular architecture as well as ancient mounds and sites which represent the remains of ancient habitation. These monuments and sites are maintained and preserved through various Circles of the ASI spread all over the country.\r\n','Historical','Monuments','To create this community','rajkamlesh3693@gmail.com',3,'approved'),(32,'Museums ','The Archaeological Survey of India (ASI), under the Ministry of Culture, is the premier organization for the archaeological researches and protection of the cultural heritage of the nation. The concept of museums in India may be traced back to the historic times, in which references to the Chitrasala (picture gallery) do occur. However, in India, the museum movement post-dates the similar developments that occurred in Europe.','informational','Museums ','to create this community','rajkamlesh3693@gmail.com',3,'approved'),(33,'National Gallery of Modern Art in Delhi ','The NGMA is the premier institution of its kind in India. It is run and administered as a subordinate office to the Department of Culture, Government of India. The NGMA has two branches one at Mumbai and the other at Bangaluru. The gallery is a repository of the cultural ethos of the country and showcases the changing art forms through the passage of the last hundred and fifty years starting from about 1857 in the field of Visual and Plastic arts.','Informational','National Gallery of Modern Art in Delhi ','To create this community','rajkamlesh3693@gmail.com',3,'approved'),(34,'Numismatics ','Numismatics relates to the study of coins, currency, tokens, and other related objects and the scholars who study numismatics are termed as \"Numismatists\". Coins generally have a tendency to provide useful information not only about the date of a particular dynasty, but also it helps to interpret data about the trade, economy, social organization, and religious beliefs of a particular civilization. Ancient coins were majorly categorized according to the metal used for making the coins. Silver, Copper, and Gold were the metals that were earlier used for making coins in India. The earliest coins made in India were the \"Punch marked coins\" made of silver and produced from the 6th century B.C. till the 2nd-1st century B.C. Gold coins were introduced in India by Wima Kadphises, a Kushana ruler, during the 1st century A.D. Three different kinds of techniques were developed for making coins viz., punching, casting, and die-striking techniques. However, in modern times, machine struck coins are produced using alloys of different metals. Founded in the year 1910 at Allahabad, the Numismatic Society of India is the premier numismatic society in India. It was formed with an objective of promoting the knowledge and regulating the study of numismatics in India.','Historical','Let the coin speak to you','To create this community','rajkamlesh3693@gmail.com',3,'approved'),(35,'National Archives of India ','The National Archives of India (NAI) is the custodian of the records of enduring value of the Government of India. Established on 11 March, 1891 at Calcutta (Kolkata) as the Imperial Record Department, it is the biggest archival repository in South Asia. It has a vast corpus of records viz., public records, private papers, oriental records, cartographic records and microfilms, which constitute an invaluable source of information for scholars-administrators and users of archives.','informational','National Archives of India ','To create this community','rajkamlesh3693@gmail.com',3,'approved'),(36,'National Council for Educational Research and Training','NCERT online service offers easy access to the NCERT textbooks. The service covers textbooks of all subjects published by NCERT for classes I to XII in Hindi, English and Urdu. While copies of these textbooks may be downloaded and used as textbooks or for reference, republication is strictly prohibited. In order to discourage piracy, the online textbooks carry a watermark on all pages declaring the copyright of NCERT. The text books can be downloaded from : http://ncert.nic.in/textbook/textbook.htm','Educational','National Council for Educational Research and Training','to create this community','rajkamlesh3693@gmail.com',3,'approved'),(37,'Numismatics ','Numismatics relates to the study of coins, currency, tokens, and other related objects and the scholars who study numismatics are termed as \"Numismatists\". Coins generally have a tendency to provide useful information not only about the date of a particular dynasty, but also it helps to interpret data about the trade, economy, social organization, and religious beliefs of a particular civilization. Ancient coins were majorly categorized according to the metal used for making the coins. Silver, Copper, and Gold were the metals that were earlier used for making coins in India. The earliest coins made in India were the \"Punch marked coins\" made of silver and produced from the 6th century B.C. till the 2nd-1st century B.C. Gold coins were introduced in India by Wima Kadphises, a Kushana ruler, during the 1st century A.D. Three different kinds of techniques were developed for making coins viz., punching, casting, and die-striking techniques. However, in modern times, machine struck coins are produced using alloys of different metals. Founded in the year 1910 at Allahabad, the Numismatic Society of India is the premier numismatic society in India. It was formed with an objective of promoting the knowledge and regulating the study of numismatics in India.','historical','Let the coin speak to you','to create this community','rajkamlesh3693@gmail.com',3,'rejected'),(38,'Pilgrimage And Religious Sites ','A pilgrimage is a long journey or search of great moral significance. Sometimes, it is a journey to a sacred place or shrine of importance.Pilgrimage is an important aspect of Hinduism. Popular pilgrimage places are rivers, but temples, mountains, and other sacred sites in India are also destinations for pilgrimages.\r\n','Informational','Pilgrimage And Religious Sites ','To create this community','rajkamlesh3693@gmail.com',3,'approved'),(39,'Sahitya Academy ','Sahitya Akademi is the central institution for literary dialogue, publication and promotion in the country and the only institution that undertakes literary activities in 24 Indian languages, including English.Every year the Akademi holds at least 50 seminars at regional, national and international levels along with the workshops and literary gatherings-about 300 in number per year, under various heads like Meet the Author, Samvad, Kavisandhi, Kathasandhi, Loka: The Many Voices, People and Books, Through My Window, Mulakat, Asmita, Antaral, Avishkar, Nari Chetna, Yuva Sahiti, Bal Sahiti, Purvottari and Literary Forum meetings.','Educational','Sahitya Academy ','To create this community','rajkamlesh3693@gmail.com',3,'approved'),(40,'Sculptures ','India has great tradition of monumental sculpture in stone which dates back to 270 to 232 BCE. The sculptures can be found in temples, pillars, palaces and various monuments. Stone sculptures may be defined as the sculptures made out of varied kinds of stones, mostly carved to provide an artistic shape to the object. Stones such as soapstone, limestone, sanstone, basalt, granite and other forms of stones are used for making the sculptures. On the other hand, \"Terracotta\" sculptures refers to the sculptures made of baked clay. Terracotta sculptures are made from a coarse, porous clay noted for its versatility, cheapness, and durability. Terracotta is also used for making vessels, water and waste water pipes, roofing tiles, bricks, and surface embellishment in building construction.','Historical','Sculptures ','To create this community','rajkamlesh3693@gmail.com',3,'approved'),(41,'Theatre of India ','The earliest form of Indian theatre was the Sanskrit theatre which originated in 2nd century BC. During Islamic rule of the medieval period, theatre was discouraged or forbidden entirely.Later, in an attempt to re-assert indigenous values and ideas, village theatre was encouraged, developing in a large number of regional languages from the 15th to the 19th centuries.Modern Indian theatre developed during the period of colonial rule under the British Empire, from the mid-19th century until the mid-20th. The study of Indian Theatre includes - origin of theatres, notable people and their contribution, various forms of theatre, notable awards and festivals.','Informational','Theatre of India ','To create this community','rajkamlesh3693@gmail.com',3,'approved'),(42,'Traditional Folk Songs ','The folk music primarily is related to the festivals, religious traditions, folk stories and simple life of the people.Through out India the folk music has minor lingual differences but invokes the same feelings.The folk songs of Maharashtra are Bhavageete , Lavani, Powada, Bhajan, Kirtan, Bharud etc. Pandavani is a folk singing style of musical narration of tales from ancient epic Mahabharata with musical accompaniment and Bhima as hero. This form of folk theatre is popular in the Indian state of Chhattisgarh and in the neighbouring tribal areas of Orissa and Andhra Pradesh. Rajasthani folk music includes women’s Panihari songs, which lyrically describe chores, especially centred around water and wells, both of which are an integral part of Rajasthan’s desert culture.','Informational','Traditional Folk Songs ','To create this community','rajkamlesh3693@gmail.com',3,'approved'),(43,'Traditional Indian Sports ','India has a vast and unique culture, so every state has its own traditional sports to follow. India is the land of traditional sports like Kushti (The Indian Wrestling), Kho-kho, Kabaddi, Vallamkali, Jallikattu and many more. India is also known for its diversified culture and traditions. One of the traditional sports in India is Mallakhamb, it is one of the very difficult sports in India.','Informational','Playing it better','To create this community','rajkamlesh3693@gmail.com',3,'approved'),(44,'Vedic Mathematics ','Vedic Mathematics is a system of mathematics which was discovered by Indian mathematician Jagadguru Shri Bharathi Krishna Tirthaji in the period between A.D. 1911 and 1918 and published his findings in a Vedic Mathematics book by Tirthaji Maharaj. Vedic Mathematics can definitely solve mathematical numerical calculations in faster way. Some Vedic Math Scholars mention that Using Vedic Maths tricks you can do calculations 10-15 times faster than our usual methods. Vedic Mathematics is a collection of Techniques/Sutras to solve mathematical arithmetics in easy and faster way. It consists of 16 Sutras (Formulae) and 13 sub-sutras (Sub Formulae) which can be used for problems involved in arithmetic, algebra, geometry, calculus, conics.','Educational','Vedic Mathematics ','To create this community','rajkamlesh3693@gmail.com',3,'approved'),(45,'Wildlife Sanctuaries of India ','India is the land of the majestic tiger, humungous elephant, beautiful peacock, and gigantic rhinoceros. It has more than 490 wildlife sanctuaries and 99 national parks.','Informational','Wildlife Sanctuaries of India ','To create this community','rajkamlesh3693@gmail.com',3,'approved'),(46,'Fundamental Research Group','The primary focus of this group is on wide range of cutting-edge solutions to various up-coming technological problems in integration, content synchronization, performance benchmarking, hard-core issues in small-powered devices, effective utilization of small-computing devices in education, energy-efficient solutions for low-powered devices, and other relevant areas. Apart from these, it also focuses on inter-disciplinary research and development in education and teaching pedagogy.','research','Innovation starts here','request for creating a research community','fresearch@mail.com',3,'approved');
/*!40000 ALTER TABLE `Community_requestcommunitycreation` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `Group_group`
--
DROP TABLE IF EXISTS `Group_group`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `Group_group` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(100) NOT NULL,
`desc` longtext NOT NULL,
`visibility` tinyint(1) NOT NULL,
`created_at` datetime(6) DEFAULT NULL,
`image` varchar(100) DEFAULT NULL,
`created_by_id` int(11) DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `Group_group_created_by_id_b1ee0c6d_fk_auth_user_id` (`created_by_id`),
CONSTRAINT `Group_group_created_by_id_b1ee0c6d_fk_auth_user_id` FOREIGN KEY (`created_by_id`) REFERENCES `auth_user` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `Group_group`
--
LOCK TABLES `Group_group` WRITE;
/*!40000 ALTER TABLE `Group_group` DISABLE KEYS */;
INSERT INTO `Group_group` VALUES (1,'Inappropriate Content Handling, Event Logs, and Recommendation System','',1,'2018-02-07 08:45:37.131233','',7),(2,'Dspace','',1,'2018-02-07 10:22:57.882452','group/f7feca79-2760-44ec-b422-b734f828cae6.png',8),(3,'Dynamic Workflow','This group is concerned about Dynamic Workflow feature of the project Collaborative Community. This group contains all documentations regarding this feature which may include requirement specification and other important notes and updates.',1,'2018-02-07 10:28:11.947313','',9),(4,'Chat','',1,'2018-02-07 10:33:54.581574','',11),(5,'Notification','',1,'2018-02-07 10:55:32.291143','',12),(6,'Databases Porting','',1,'2018-02-07 10:56:49.588331','',13),(7,'Reputation System','',1,'2018-02-07 10:57:17.636996','',13),(8,'Real-Time Collaborative Text Editor','Real-Time Collaborative Text Editor',1,'2018-02-07 11:26:00.109894','',10);
/*!40000 ALTER TABLE `Group_group` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `Group_grouparticles`
--
DROP TABLE IF EXISTS `Group_grouparticles`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `Group_grouparticles` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`article_id` int(11) NOT NULL,
`group_id` int(11) DEFAULT NULL,
`user_id` int(11) NOT NULL,
PRIMARY KEY (`id`),
KEY `Group_grouparticles_article_id_eac38398_fk_BasicArti` (`article_id`),
KEY `Group_grouparticles_user_id_12983c5c_fk_auth_user_id` (`user_id`),
KEY `Group_grouparticles_group_id_84ee212d_fk_Group_group_id` (`group_id`),
CONSTRAINT `Group_grouparticles_article_id_eac38398_fk_BasicArti` FOREIGN KEY (`article_id`) REFERENCES `BasicArticle_articles` (`id`),
CONSTRAINT `Group_grouparticles_group_id_84ee212d_fk_Group_group_id` FOREIGN KEY (`group_id`) REFERENCES `Group_group` (`id`),
CONSTRAINT `Group_grouparticles_user_id_12983c5c_fk_auth_user_id` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `Group_grouparticles`
--
LOCK TABLES `Group_grouparticles` WRITE;
/*!40000 ALTER TABLE `Group_grouparticles` DISABLE KEYS */;
INSERT INTO `Group_grouparticles` VALUES (1,1,1,7),(2,2,2,8),(4,4,5,12),(5,5,3,9),(6,6,7,13),(7,7,6,13),(8,8,4,11),(9,10,8,10);
/*!40000 ALTER TABLE `Group_grouparticles` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `Group_groupmembership`
--
DROP TABLE IF EXISTS `Group_groupmembership`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `Group_groupmembership` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`group_id` int(11) NOT NULL,
`role_id` int(11) DEFAULT NULL,
`user_id` int(11) NOT NULL,
PRIMARY KEY (`id`),
KEY `Group_groupmembership_group_id_adce78b5_fk_Group_group_id` (`group_id`),
KEY `Group_groupmembership_user_id_e4f5757f_fk_auth_user_id` (`user_id`),
KEY `Group_groupmembership_role_id_bb865ffb_fk_auth_group_id` (`role_id`),
CONSTRAINT `Group_groupmembership_group_id_adce78b5_fk_Group_group_id` FOREIGN KEY (`group_id`) REFERENCES `Group_group` (`id`),
CONSTRAINT `Group_groupmembership_role_id_bb865ffb_fk_auth_group_id` FOREIGN KEY (`role_id`) REFERENCES `auth_group` (`id`),
CONSTRAINT `Group_groupmembership_user_id_e4f5757f_fk_auth_user_id` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=25 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `Group_groupmembership`
--
LOCK TABLES `Group_groupmembership` WRITE;
/*!40000 ALTER TABLE `Group_groupmembership` DISABLE KEYS */;
INSERT INTO `Group_groupmembership` VALUES (1,1,4,7),(2,1,1,6),(3,2,4,8),(4,3,4,9),(5,2,1,11),(6,4,4,11),(7,4,1,6),(8,2,1,6),(9,3,1,6),(10,5,4,12),(11,6,4,13),(12,5,1,6),(13,6,1,6),(14,7,4,13),(15,1,1,13),(16,7,1,6),(17,1,1,14),(18,6,1,14),(19,7,1,14),(20,8,4,10),(21,8,1,6),(22,7,1,3),(23,2,1,3),(24,3,1,5);
/*!40000 ALTER TABLE `Group_groupmembership` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `UserRolesPermission_profileimage`
--
DROP TABLE IF EXISTS `UserRolesPermission_profileimage`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `UserRolesPermission_profileimage` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`photo` varchar(100) NOT NULL,
`user_id` int(11) NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `user_id` (`user_id`),
CONSTRAINT `UserRolesPermission__user_id_2e95d164_fk_auth_user` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `UserRolesPermission_profileimage`
--
LOCK TABLES `UserRolesPermission_profileimage` WRITE;
/*!40000 ALTER TABLE `UserRolesPermission_profileimage` DISABLE KEYS */;
INSERT INTO `UserRolesPermission_profileimage` VALUES (1,'profile/fall-autumn-red-season_ZJPluxj.jpg',2),(2,'profile/profile_8K4uZfM.png',1),(3,'profile/druplicon-small.png',3),(4,'profile/index.jpeg',5),(5,'profile/cbc69696-f68b-4175-8152-0a5e28aa8fff.png',6);
/*!40000 ALTER TABLE `UserRolesPermission_profileimage` ENABLE KEYS */;
UNLOCK TABLES;
--
-- 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 AUTO_INCREMENT=5 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 */;
INSERT INTO `auth_group` VALUES (1,'author'),(3,'community_admin'),(4,'group_admin'),(2,'publisher');
/*!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_permission_id_0cd325b0_uniq` (`group_id`,`permission_id`),
KEY `auth_group_permissio_permission_id_84c5c92e_fk_auth_perm` (`permission_id`),
CONSTRAINT `auth_group_permissio_permission_id_84c5c92e_fk_auth_perm` FOREIGN KEY (`permission_id`) REFERENCES `auth_permission` (`id`),
CONSTRAINT `auth_group_permissions_group_id_b120cbf9_fk_auth_group_id` FOREIGN KEY (`group_id`) REFERENCES `auth_group` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=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_codename_01ab375a_uniq` (`content_type_id`,`codename`),
CONSTRAINT `auth_permission_content_type_id_2f476e4b_fk_django_co` FOREIGN KEY (`content_type_id`) REFERENCES `django_content_type` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=149 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 site',7,'add_site'),(20,'Can change site',7,'change_site'),(21,'Can delete site',7,'delete_site'),(22,'Can add comment',8,'add_xtdcomment'),(23,'Can change comment',8,'change_xtdcomment'),(24,'Can delete comment',8,'delete_xtdcomment'),(25,'Can moderate comments',8,'can_moderate'),(26,'Can add black listed domain',9,'add_blacklisteddomain'),(27,'Can change black listed domain',9,'change_blacklisteddomain'),(28,'Can delete black listed domain',9,'delete_blacklisteddomain'),(29,'Can add comment flag',10,'add_commentflag'),(30,'Can change comment flag',10,'change_commentflag'),(31,'Can delete comment flag',10,'delete_commentflag'),(32,'Can add comment',11,'add_comment'),(33,'Can change comment',11,'change_comment'),(34,'Can delete comment',11,'delete_comment'),(35,'Can moderate comments',11,'can_moderate'),(36,'Can add request community creation',12,'add_requestcommunitycreation'),(37,'Can change request community creation',12,'change_requestcommunitycreation'),(38,'Can delete request community creation',12,'delete_requestcommunitycreation'),(39,'Can add community articles',13,'add_communityarticles'),(40,'Can change community articles',13,'change_communityarticles'),(41,'Can delete community articles',13,'delete_communityarticles'),(42,'Can add community groups',14,'add_communitygroups'),(43,'Can change community groups',14,'change_communitygroups'),(44,'Can delete community groups',14,'delete_communitygroups'),(45,'Can add community',15,'add_community'),(46,'Can change community',15,'change_community'),(47,'Can delete community',15,'delete_community'),(48,'Can add community membership',16,'add_communitymembership'),(49,'Can change community membership',16,'change_communitymembership'),(50,'Can delete community membership',16,'delete_communitymembership'),(51,'Can add profile image',17,'add_profileimage'),(52,'Can change profile image',17,'change_profileimage'),(53,'Can delete profile image',17,'delete_profileimage'),(54,'Can add article view logs',18,'add_articleviewlogs'),(55,'Can change article view logs',18,'change_articleviewlogs'),(56,'Can delete article view logs',18,'delete_articleviewlogs'),(57,'Can add articles',19,'add_articles'),(58,'Can change articles',19,'change_articles'),(59,'Can delete articles',19,'delete_articles'),(60,'Can add group membership',20,'add_groupmembership'),(61,'Can change group membership',20,'change_groupmembership'),(62,'Can delete group membership',20,'delete_groupmembership'),(63,'Can add group articles',21,'add_grouparticles'),(64,'Can change group articles',21,'change_grouparticles'),(65,'Can delete group articles',21,'delete_grouparticles'),(66,'Can add group',22,'add_group'),(67,'Can change group',22,'change_group'),(68,'Can delete group',22,'delete_group'),(69,'Can add revision',23,'add_revision'),(70,'Can change revision',23,'change_revision'),(71,'Can delete revision',23,'delete_revision'),(72,'Can add version',24,'add_version'),(73,'Can change version',24,'change_version'),(74,'Can delete version',24,'delete_version'),(75,'Can add Token',25,'add_token'),(76,'Can change Token',25,'change_token'),(77,'Can delete Token',25,'delete_token'),(78,'Can add states',26,'add_states'),(79,'Can change states',26,'change_states'),(80,'Can delete states',26,'delete_states'),(81,'Can add transitions',27,'add_transitions'),(82,'Can change transitions',27,'change_transitions'),(83,'Can delete transitions',27,'delete_transitions'),(84,'Can add nonce',28,'add_nonce'),(85,'Can change nonce',28,'change_nonce'),(86,'Can delete nonce',28,'delete_nonce'),(87,'Can add partial',29,'add_partial'),(88,'Can change partial',29,'change_partial'),(89,'Can delete partial',29,'delete_partial'),(90,'Can add association',30,'add_association'),(91,'Can change association',30,'change_association'),(92,'Can delete association',30,'delete_association'),(93,'Can add user social auth',31,'add_usersocialauth'),(94,'Can change user social auth',31,'change_usersocialauth'),(95,'Can delete user social auth',31,'delete_usersocialauth'),(96,'Can add code',32,'add_code'),(97,'Can change code',32,'change_code'),(98,'Can delete code',32,'delete_code'),(99,'Can add feedback',33,'add_feedback'),(100,'Can change feedback',33,'change_feedback'),(101,'Can delete feedback',33,'delete_feedback'),(102,'Can add faq',34,'add_faq'),(103,'Can change faq',34,'change_faq'),(104,'Can delete faq',34,'delete_faq'),(105,'Can add Forum',35,'add_forum'),(106,'Can change Forum',35,'change_forum'),(107,'Can delete Forum',35,'delete_forum'),(108,'Can add Topic',36,'add_topic'),(109,'Can change Topic',36,'change_topic'),(110,'Can delete Topic',36,'delete_topic'),(111,'Can add Post',37,'add_post'),(112,'Can change Post',37,'change_post'),(113,'Can delete Post',37,'delete_post'),(114,'Can add Attachment',38,'add_attachment'),(115,'Can change Attachment',38,'change_attachment'),(116,'Can delete Attachment',38,'delete_attachment'),(117,'Can add Topic poll option',39,'add_topicpolloption'),(118,'Can change Topic poll option',39,'change_topicpolloption'),(119,'Can delete Topic poll option',39,'delete_topicpolloption'),(120,'Can add Topic poll vote',40,'add_topicpollvote'),(121,'Can change Topic poll vote',40,'change_topicpollvote'),(122,'Can delete Topic poll vote',40,'delete_topicpollvote'),(123,'Can add Topic poll',41,'add_topicpoll'),(124,'Can change Topic poll',41,'change_topicpoll'),(125,'Can delete Topic poll',41,'delete_topicpoll'),(126,'Can add Topic track',42,'add_topicreadtrack'),(127,'Can change Topic track',42,'change_topicreadtrack'),(128,'Can delete Topic track',42,'delete_topicreadtrack'),(129,'Can add Forum track',43,'add_forumreadtrack'),(130,'Can change Forum track',43,'change_forumreadtrack'),(131,'Can delete Forum track',43,'delete_forumreadtrack'),(132,'Can add Forum profile',44,'add_forumprofile'),(133,'Can change Forum profile',44,'change_forumprofile'),(134,'Can delete Forum profile',44,'delete_forumprofile'),(135,'Can add Forum permission',45,'add_forumpermission'),(136,'Can change Forum permission',45,'change_forumpermission'),(137,'Can delete Forum permission',45,'delete_forumpermission'),(138,'Can add Group forum permission',46,'add_groupforumpermission'),(139,'Can change Group forum permission',46,'change_groupforumpermission'),(140,'Can delete Group forum permission',46,'delete_groupforumpermission'),(141,'Can add User forum permission',47,'add_userforumpermission'),(142,'Can change User forum permission',47,'change_userforumpermission'),(143,'Can delete User forum permission',47,'delete_userforumpermission'),(144,'',4,'create_article'),(145,'',4,'edit_article'),(146,'Can add faq category',48,'add_faqcategory'),(147,'Can change faq category',48,'change_faqcategory'),(148,'Can delete faq category',48,'delete_faqcategory');
/*!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(6) DEFAULT NULL,
`is_superuser` tinyint(1) NOT NULL,
`username` varchar(150) 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(6) NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `username` (`username`)
) ENGINE=InnoDB AUTO_INCREMENT=16 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$36000$k5Un2419y2KO$4wcwf/AJ8y18y8OHHY10EmuR3ULPIoSRaDC7rDrQ9cI=','2018-02-08 08:59:55.429757',1,'frg','','','frg@mail.com',1,1,'2018-01-26 09:56:10.398735'),(2,'pbkdf2_sha256$36000$v2O6rJeefUgb$D5+UFVbSTdTmQFMTaeTOWQ+5ZYpFqQywCu5jBrZkees=','2018-02-08 08:25:14.392896',0,'nags','','','nags@cse.iitb.ac.in',0,1,'2018-01-26 14:47:05.085622'),(3,'pbkdf2_sha256$36000$k0j4LnCNxe2X$6msKjAos5ZxlAqIRbxai2GwArNXTGqrD4T041t41t5s=','2018-02-08 06:54:28.791295',0,'fresearchgroup','','','fresearch@mail.com',0,1,'2018-01-29 11:29:01.000000'),(4,'pbkdf2_sha256$36000$QIC47CBQa4Lv$WkLnZwAMP4UYju84TmYFXJf0XqaDv5bYde7Ef9bV5Vo=','2018-01-29 11:44:02.374488',0,'kirtiCs1234','','','kirtisharma1may@gmail.com',0,1,'2018-01-29 11:44:02.311947'),(5,'pbkdf2_sha256$36000$pnDf3h4Yr39u$5ytPe/mZMJdWiAAPAJDrRRYjjUh4ExHTRj6GzbnCP4Y=','2018-02-08 05:42:43.480491',0,'anjalysuresh','','','anjalysuresh@cse.iitb.ac.in',0,1,'2018-02-01 06:37:03.693155'),(6,'pbkdf2_sha256$36000$QDgM9NpxWedw$csNPhbzXCoa45tIscNQbhVP2bJG+s0iiuW3Q7P339yM=','2018-02-07 15:10:39.626507',0,'firuza','','','firuza@cse.iitb.ac.in',0,1,'2018-02-06 07:47:10.757638'),(7,'pbkdf2_sha256$36000$O7i6qCQ1dVPo$z6g0/5y9k/vOaATInEqFVCKugDy6TtiqphyTBMHoIWo=','2018-02-07 12:55:09.433231',0,'rohitrp','','','rohitrp@cse.iitb.ac.in',0,1,'2018-02-07 08:24:13.215816'),(8,'pbkdf2_sha256$36000$hMTsjpeYNZcS$YO7uUWQes6i6CzLt3A7CkSuwd7bCyZxD4LjjlZjwCk0=','2018-02-07 11:36:54.417314',0,'kapilagg','','','eraggarwalkapil@gmail.com',0,1,'2018-02-07 10:18:47.424873'),(9,'pbkdf2_sha256$36000$Fou20S0Gd5Iy$LiRpdEzkImxAHFOs6Swp8SVOfIkMXI3wwHf8EsI0L7I=','2018-02-07 10:23:24.367526',0,'urmisaha','','','urmisaha.88@gmail.com',0,1,'2018-02-07 10:23:23.744290'),(10,'pbkdf2_sha256$36000$uB8H2fGjFE21$jvGQ1bOuIsSA2QVQPT3mpJyCMAcDCbgNJYWSwUDXTqY=','2018-02-07 11:12:55.759418',0,'Minali','','','minaliupreti24@gmail.com',0,1,'2018-02-07 10:27:24.564676'),(11,'pbkdf2_sha256$36000$YUeVM4QvtqEe$RKCurpcc8DxqMTcXzdv46kwmMka4tUTPmXPWoq8p+BU=','2018-02-07 10:47:04.459976',0,'jatain.nivia@gmail.com','Nivia','Jatain','jatain.nivia@gmail.com',0,1,'2018-02-07 10:31:16.074533'),(12,'pbkdf2_sha256$36000$plU9sFe5JDIt$v09qbpDZRhfw3oanxb6KCSQYoJfFJaZ3Pf2hxcIp02w=','2018-02-07 10:46:46.333476',0,'Neo007','','','himanshus096@gmail.com',0,1,'2018-02-07 10:46:45.832071'),(13,'pbkdf2_sha256$36000$e0jJhPTwMzY4$K5WRVGEI5mpMjkc7x6VMr7+JMLjQqUgXZO6U+hqE2So=','2018-02-07 12:17:42.761316',0,'nithins','','','nithins@mail.com',0,1,'2018-02-07 10:54:36.472450'),(14,'pbkdf2_sha256$36000$MKbAYXCkuJyr$U51h39D5nolq3aRYHWqgPfqEyzgWM+KvtUhHBfA0g5Q=','2018-02-08 08:02:12.090228',0,'abhijeet09','','','abhijeet09@mail.com',0,1,'2018-02-07 11:12:59.176903'),(15,'pbkdf2_sha256$36000$qGNxah17K4sF$z/xrCq72S4quO1F+yc+hf1i4kGkdEyBVLNzAl5KpGKg=','2018-02-08 09:01:25.664048',0,'vishal','','','vishal@cse.iitb.ac.in',0,1,'2018-02-08 09:01:25.095810');
/*!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_group_id_94350c0c_uniq` (`user_id`,`group_id`),
KEY `auth_user_groups_group_id_97559544_fk_auth_group_id` (`group_id`),
CONSTRAINT `auth_user_groups_group_id_97559544_fk_auth_group_id` FOREIGN KEY (`group_id`) REFERENCES `auth_group` (`id`),
CONSTRAINT `auth_user_groups_user_id_6a12ed8b_fk_auth_user_id` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=15 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 */;
INSERT INTO `auth_user_groups` VALUES (1,2,1),(2,3,1),(3,4,1),(4,5,1),(5,6,1),(6,7,1),(7,8,1),(8,9,1),(9,10,1),(10,11,1),(11,12,1),(12,13,1),(13,14,1),(14,15,1);
/*!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_permission_id_14a6b632_uniq` (`user_id`,`permission_id`),
KEY `auth_user_user_permi_permission_id_1fbb5f2c_fk_auth_perm` (`permission_id`),
CONSTRAINT `auth_user_user_permi_permission_id_1fbb5f2c_fk_auth_perm` FOREIGN KEY (`permission_id`) REFERENCES `auth_permission` (`id`),
CONSTRAINT `auth_user_user_permissions_user_id_a95ead1b_fk_auth_user_id` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=29 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 */;
INSERT INTO `auth_user_user_permissions` VALUES (1,2,144),(2,2,145),(3,3,144),(4,3,145),(5,4,144),(6,4,145),(7,5,144),(8,5,145),(9,6,144),(10,6,145),(11,7,144),(12,7,145),(13,8,144),(14,8,145),(15,9,144),(16,9,145),(17,10,144),(18,10,145),(19,11,144),(20,11,145),(21,12,144),(22,12,145),(23,13,144),(24,13,145),(25,14,144),(26,14,145),(27,15,144),(28,15,145);
/*!40000 ALTER TABLE `auth_user_user_permissions` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `authtoken_token`
--
DROP TABLE IF EXISTS `authtoken_token`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `authtoken_token` (
`key` varchar(40) NOT NULL,
`created` datetime(6) NOT NULL,
`user_id` int(11) NOT NULL,
PRIMARY KEY (`key`),
UNIQUE KEY `user_id` (`user_id`),
CONSTRAINT `authtoken_token_user_id_35299eff_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 `authtoken_token`
--
LOCK TABLES `authtoken_token` WRITE;
/*!40000 ALTER TABLE `authtoken_token` DISABLE KEYS */;
/*!40000 ALTER TABLE `authtoken_token` 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(6) 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_log_content_type_id_c4bce8eb_fk_django_co` (`content_type_id`),
KEY `django_admin_log_user_id_c564eba6_fk_auth_user_id` (`user_id`),
CONSTRAINT `django_admin_log_content_type_id_c4bce8eb_fk_django_co` FOREIGN KEY (`content_type_id`) REFERENCES `django_content_type` (`id`),
CONSTRAINT `django_admin_log_user_id_c564eba6_fk_auth_user_id` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=55 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 */;
INSERT INTO `django_admin_log` VALUES (1,'2018-01-29 11:04:19.358897','1','Collaboration System',1,'[{\"added\": {}}]',35,1),(2,'2018-01-29 14:50:45.425947','3','fresearchgroup',2,'[{\"changed\": {\"fields\": [\"username\", \"email\"]}}]',4,1),(3,'2018-01-29 15:02:46.281159','25','Indian Pottery ',3,'',15,1),(4,'2018-01-29 15:04:42.071566','16','Folk and Tribal Dance ',3,'',15,1),(5,'2018-01-31 06:41:13.375110','34','Faq object',1,'[{\"added\": {}}]',34,1),(6,'2018-01-31 06:41:26.493593','34','Faq object',3,'',34,1),(7,'2018-01-31 08:31:06.788351','33','Faq object',2,'[{\"changed\": {\"fields\": [\"question\"]}}]',34,1),(8,'2018-01-31 08:38:59.594069','35','Faq object',3,'',34,1),(9,'2018-01-31 08:39:37.929295','36','Faq object',3,'',34,1),(10,'2018-01-31 08:40:31.164619','33','Faq object',2,'[{\"changed\": {\"fields\": [\"category\"]}}]',34,1),(11,'2018-01-31 08:40:53.246228','33','Faq object',2,'[{\"changed\": {\"fields\": [\"category\"]}}]',34,1),(12,'2018-01-31 08:47:29.148970','33','Faq object',2,'[{\"changed\": {\"fields\": [\"category\"]}}]',34,1),(13,'2018-01-31 08:47:44.355030','33','Faq object',2,'[{\"changed\": {\"fields\": [\"category\"]}}]',34,1),(14,'2018-01-31 09:00:38.688147','7','firuza',1,'[{\"added\": {}}]',48,1),(15,'2018-01-31 09:00:51.855974','7','firuza',3,'',48,1),(16,'2018-02-01 15:00:52.647894','1','Faq object',2,'[{\"changed\": {\"fields\": [\"answer\"]}}]',34,1),(17,'2018-02-01 15:02:13.244478','7','Faq object',2,'[{\"changed\": {\"fields\": [\"answer\"]}}]',34,1),(18,'2018-02-01 15:02:26.014333','7','Faq object',2,'[{\"changed\": {\"fields\": [\"category\", \"flow\"]}}]',34,1),(19,'2018-02-01 15:04:52.713237','8','Faq object',2,'[{\"changed\": {\"fields\": [\"category\", \"answer\"]}}]',34,1),(20,'2018-02-01 15:05:30.468061','8','Faq object',2,'[{\"changed\": {\"fields\": [\"flow\"]}}]',34,1),(21,'2018-02-01 15:14:57.343949','28','Faq object',3,'',34,1),(22,'2018-02-01 15:15:37.147881','27','Faq object',2,'[{\"changed\": {\"fields\": [\"answer\"]}}]',34,1),(23,'2018-02-01 15:16:37.766790','27','Faq object',2,'[{\"changed\": {\"fields\": [\"flow\"]}}]',34,1),(24,'2018-02-01 15:25:03.049965','40','Faq object',2,'[{\"changed\": {\"fields\": [\"flow\"]}}]',34,1),(25,'2018-02-01 15:30:25.609481','37','Faq object',2,'[{\"changed\": {\"fields\": [\"question\", \"answer\"]}}]',34,1),(26,'2018-02-01 15:30:48.908962','37','Faq object',2,'[{\"changed\": {\"fields\": [\"answer\"]}}]',34,1),(27,'2018-02-01 15:31:56.771425','37','Faq object',2,'[{\"changed\": {\"fields\": [\"answer\"]}}]',34,1),(28,'2018-02-01 15:32:11.323217','37','Faq object',2,'[{\"changed\": {\"fields\": [\"answer\"]}}]',34,1),(29,'2018-02-01 15:39:11.651524','13','Faq object',2,'[{\"changed\": {\"fields\": [\"question\", \"answer\"]}}]',34,1),(30,'2018-02-01 15:40:15.672948','14','Faq object',2,'[{\"changed\": {\"fields\": [\"answer\"]}}]',34,1),(31,'2018-02-01 15:41:46.884330','15','Faq object',2,'[{\"changed\": {\"fields\": [\"answer\"]}}]',34,1),(32,'2018-02-01 15:42:05.420048','15','Faq object',2,'[{\"changed\": {\"fields\": [\"answer\"]}}]',34,1),(33,'2018-02-01 15:41:59.074537','15','Faq object',2,'[{\"changed\": {\"fields\": [\"answer\"]}}]',34,1),(34,'2018-02-01 15:45:46.337590','16','Faq object',2,'[{\"changed\": {\"fields\": [\"question\", \"answer\"]}}]',34,1),(35,'2018-02-01 15:46:23.491327','16','Faq object',2,'[{\"changed\": {\"fields\": [\"answer\"]}}]',34,1),(36,'2018-02-01 15:46:52.955891','16','Faq object',2,'[{\"changed\": {\"fields\": [\"answer\"]}}]',34,1),(37,'2018-02-01 15:47:42.529060','16','Faq object',2,'[{\"changed\": {\"fields\": [\"question\"]}}]',34,1),(38,'2018-02-01 15:52:12.790262','17','Faq object',2,'[{\"changed\": {\"fields\": [\"question\", \"answer\"]}}]',34,1),(39,'2018-02-01 15:54:53.845591','18','Faq object',2,'[{\"changed\": {\"fields\": [\"question\", \"answer\"]}}]',34,1),(40,'2018-02-01 15:57:00.706674','19','Faq object',2,'[{\"changed\": {\"fields\": [\"question\", \"answer\"]}}]',34,1),(41,'2018-02-01 15:57:29.846561','19','Faq object',2,'[]',34,1),(42,'2018-02-01 15:59:33.948394','41','Faq object',1,'[{\"added\": {}}]',34,1),(43,'2018-02-01 16:00:01.957384','41','Faq object',2,'[]',34,1),(44,'2018-02-01 16:01:14.598793','42','Faq object',1,'[{\"added\": {}}]',34,1),(45,'2018-02-01 16:21:42.713956','21','Faq object',2,'[{\"changed\": {\"fields\": [\"question\", \"answer\"]}}]',34,1),(46,'2018-02-01 16:22:25.511554','22','Faq object',2,'[{\"changed\": {\"fields\": [\"answer\"]}}]',34,1),(47,'2018-02-01 16:23:33.610526','21','Faq object',2,'[{\"changed\": {\"fields\": [\"answer\"]}}]',34,1),(48,'2018-02-01 16:25:52.904564','43','Faq object',1,'[{\"added\": {}}]',34,1),(49,'2018-02-01 16:31:13.481665','23','Faq object',2,'[{\"changed\": {\"fields\": [\"answer\"]}}]',34,1),(50,'2018-02-01 16:32:52.961778','24','Faq object',2,'[{\"changed\": {\"fields\": [\"question\", \"answer\"]}}]',34,1),(51,'2018-02-01 16:33:41.415372','25','Faq object',2,'[{\"changed\": {\"fields\": [\"answer\"]}}]',34,1),(52,'2018-02-07 15:08:38.771227','1','10.129.26.119',2,'[{\"changed\": {\"fields\": [\"domain\", \"name\"]}}]',7,1),(53,'2018-02-07 15:10:19.939192','2','10.129.26.148',1,'[{\"added\": {}}]',7,1),(54,'2018-02-07 15:10:11.125570','3','10.129.26.188',1,'[{\"added\": {}}]',7,1);
/*!40000 ALTER TABLE `django_admin_log` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `django_comment_flags`
--
DROP TABLE IF EXISTS `django_comment_flags`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `django_comment_flags` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`flag` varchar(30) NOT NULL,
`flag_date` datetime(6) NOT NULL,
`comment_id` int(11) NOT NULL,
`user_id` int(11) NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `django_comment_flags_user_id_comment_id_flag_537f77a7_uniq` (`user_id`,`comment_id`,`flag`),
KEY `django_comment_flags_comment_id_d8054933_fk_django_comments_id` (`comment_id`),
KEY `django_comment_flags_flag_8b141fcb` (`flag`),
CONSTRAINT `django_comment_flags_comment_id_d8054933_fk_django_comments_id` FOREIGN KEY (`comment_id`) REFERENCES `django_comments` (`id`),
CONSTRAINT `django_comment_flags_user_id_f3f81f0a_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 `django_comment_flags`
--
LOCK TABLES `django_comment_flags` WRITE;
/*!40000 ALTER TABLE `django_comment_flags` DISABLE KEYS */;
/*!40000 ALTER TABLE `django_comment_flags` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `django_comments`
--
DROP TABLE IF EXISTS `django_comments`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `django_comments` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`object_pk` longtext NOT NULL,
`user_name` varchar(50) NOT NULL,
`user_email` varchar(254) NOT NULL,
`user_url` varchar(200) NOT NULL,
`comment` longtext NOT NULL,
`submit_date` datetime(6) NOT NULL,
`ip_address` char(39) DEFAULT NULL,
`is_public` tinyint(1) NOT NULL,
`is_removed` tinyint(1) NOT NULL,
`content_type_id` int(11) NOT NULL,
`site_id` int(11) NOT NULL,
`user_id` int(11) DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `django_comments_content_type_id_c4afe962_fk_django_co` (`content_type_id`),
KEY `django_comments_site_id_9dcf666e_fk_django_site_id` (`site_id`),
KEY `django_comments_user_id_a0a440a1_fk_auth_user_id` (`user_id`),
KEY `django_comments_submit_date_514ed2d9` (`submit_date`),
CONSTRAINT `django_comments_content_type_id_c4afe962_fk_django_co` FOREIGN KEY (`content_type_id`) REFERENCES `django_content_type` (`id`),
CONSTRAINT `django_comments_site_id_9dcf666e_fk_django_site_id` FOREIGN KEY (`site_id`) REFERENCES `django_site` (`id`),
CONSTRAINT `django_comments_user_id_a0a440a1_fk_auth_user_id` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=15 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `django_comments`
--
LOCK TABLES `django_comments` WRITE;
/*!40000 ALTER TABLE `django_comments` DISABLE KEYS */;
INSERT INTO `django_comments` VALUES (1,'1','rohitrp','rohitrp@cse.iitb.ac.in','','.','2018-02-07 08:51:27.430571','b\'\'',1,0,21,1,7),(2,'1','Minali','minaliupreti24@gmail.com','','Work to be done by Minali','2018-02-07 11:18:25.042442','b\'\'',1,0,13,1,10),(3,'1','Minali','minaliupreti24@gmail.com','','Work to be done by Minali','2018-02-07 11:18:44.413246','b\'\'',1,0,13,1,10),(4,'1','Minali','minaliupreti24@gmail.com','','Work to be done by Minali','2018-02-07 11:19:04.895285','b\'\'',1,0,13,1,10),(5,'5','urmisaha','urmisaha.88@gmail.com','','This is the phase-0 requirement. Likely to modify in due course.','2018-02-07 11:22:50.502888','b\'\'',1,0,21,1,9),(6,'5','urmisaha','urmisaha.88@gmail.com','','This is the phase-0 requirement. Likely to modify in due course.','2018-02-07 11:23:17.505559','b\'\'',1,0,21,1,9),(7,'5','urmisaha','urmisaha.88@gmail.com','','This is the phase-0 requirement. Likely to modify in due course.','2018-02-07 11:23:14.275925','b\'\'',1,0,21,1,9),(8,'5','urmisaha','urmisaha.88@gmail.com','','test','2018-02-07 11:24:12.357986','b\'\'',1,0,21,1,9),(9,'1','firuza','firuza@cse.iitb.ac.in','','Test comment','2018-02-07 11:34:06.836498','b\'\'',1,0,21,1,6),(10,'1','fresearchgroup','fresearch@mail.com','','test','2018-02-07 11:43:09.855923','b\'\'',1,0,21,1,3),(11,'1','fresearchgroup','fresearch@mail.com','','test','2018-02-07 11:42:56.229256','b\'\'',1,0,21,1,3),(12,'1','fresearchgroup','fresearch@mail.com','','test','2018-02-07 11:43:03.202050','b\'\'',1,0,21,1,3),(13,'2','firuza','firuza@cse.iitb.ac.in','','new comment','2018-02-07 15:09:17.743529','b\'\'',1,0,21,1,6),(14,'2','firuza','firuza@cse.iitb.ac.in','','another comment','2018-02-07 15:10:34.360185','b\'\'',1,0,21,1,6);
/*!40000 ALTER TABLE `django_comments` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `django_comments_xtd_blacklisteddomain`
--
DROP TABLE IF EXISTS `django_comments_xtd_blacklisteddomain`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `django_comments_xtd_blacklisteddomain` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`domain` varchar(200) NOT NULL,
PRIMARY KEY (`id`),
KEY `django_comments_xtd_blacklisteddomain_domain_43b81328` (`domain`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `django_comments_xtd_blacklisteddomain`
--
LOCK TABLES `django_comments_xtd_blacklisteddomain` WRITE;
/*!40000 ALTER TABLE `django_comments_xtd_blacklisteddomain` DISABLE KEYS */;
/*!40000 ALTER TABLE `django_comments_xtd_blacklisteddomain` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `django_comments_xtd_xtdcomment`
--
DROP TABLE IF EXISTS `django_comments_xtd_xtdcomment`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `django_comments_xtd_xtdcomment` (
`comment_ptr_id` int(11) NOT NULL,
`thread_id` int(11) NOT NULL,
`parent_id` int(11) NOT NULL,
`level` smallint(6) NOT NULL,
`order` int(11) NOT NULL,
`followup` tinyint(1) NOT NULL,
PRIMARY KEY (`comment_ptr_id`),
KEY `django_comments_xtd_xtdcomment_thread_id_e192a27a` (`thread_id`),
KEY `django_comments_xtd_xtdcomment_order_36db562d` (`order`),
CONSTRAINT `django_comments_xtd__comment_ptr_id_01d47130_fk_django_co` FOREIGN KEY (`comment_ptr_id`) REFERENCES `django_comments` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `django_comments_xtd_xtdcomment`
--
LOCK TABLES `django_comments_xtd_xtdcomment` WRITE;
/*!40000 ALTER TABLE `django_comments_xtd_xtdcomment` DISABLE KEYS */;
INSERT INTO `django_comments_xtd_xtdcomment` VALUES (1,1,1,0,1,1),(2,2,2,0,1,1),(3,3,3,0,1,1),(4,4,4,0,1,1),(5,5,5,0,1,0),(6,6,6,0,1,0),(7,7,7,0,1,0),(8,8,8,0,1,0),(9,9,9,0,1,0),(10,10,10,0,1,0),(11,11,11,0,1,0),(12,12,12,0,1,0),(13,13,13,0,1,0),(14,14,14,0,1,0);
/*!40000 ALTER TABLE `django_comments_xtd_xtdcomment` 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_model_76bd3d3b_uniq` (`app_label`,`model`)
) ENGINE=InnoDB AUTO_INCREMENT=49 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'),(25,'authtoken','token'),(19,'BasicArticle','articles'),(18,'BasicArticle','articleviewlogs'),(15,'Community','community'),(13,'Community','communityarticles'),(14,'Community','communitygroups'),(16,'Community','communitymembership'),(12,'Community','requestcommunitycreation'),(5,'contenttypes','contenttype'),(11,'django_comments','comment'),(10,'django_comments','commentflag'),(9,'django_comments_xtd','blacklisteddomain'),(8,'django_comments_xtd','xtdcomment'),(35,'forum','forum'),(38,'forum_attachments','attachment'),(37,'forum_conversation','post'),(36,'forum_conversation','topic'),(44,'forum_member','forumprofile'),(45,'forum_permission','forumpermission'),(46,'forum_permission','groupforumpermission'),(47,'forum_permission','userforumpermission'),(41,'forum_polls','topicpoll'),(39,'forum_polls','topicpolloption'),(40,'forum_polls','topicpollvote'),(43,'forum_tracking','forumreadtrack'),(42,'forum_tracking','topicreadtrack'),(22,'Group','group'),(21,'Group','grouparticles'),(20,'Group','groupmembership'),(23,'reversion','revision'),(24,'reversion','version'),(6,'sessions','session'),(7,'sites','site'),(30,'social_django','association'),(32,'social_django','code'),(28,'social_django','nonce'),(29,'social_django','partial'),(31,'social_django','usersocialauth'),(17,'UserRolesPermission','profileimage'),(34,'webcontent','faq'),(48,'webcontent','faqcategory'),(33,'webcontent','feedback'),(26,'workflow','states'),(27,'workflow','transitions');
/*!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(6) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=142 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,'workflow','0001_initial','2018-01-26 09:41:46.317156'),(2,'contenttypes','0001_initial','2018-01-26 09:41:46.344916'),(3,'auth','0001_initial','2018-01-26 09:41:46.669180'),(4,'BasicArticle','0001_initial','2018-01-26 09:41:46.686056'),(5,'BasicArticle','0002_articles_created_by','2018-01-26 09:41:46.741876'),(6,'BasicArticle','0003_remove_articles_created_by','2018-01-26 09:41:46.773009'),(7,'BasicArticle','0004_articles_state','2018-01-26 09:41:46.817302'),(8,'BasicArticle','0005_remove_articles_state','2018-01-26 09:41:46.846195'),(9,'BasicArticle','0006_articles_created_by','2018-01-26 09:41:46.893899'),(10,'BasicArticle','0007_articles_views','2018-01-26 09:41:46.977917'),(11,'BasicArticle','0008_articleviewlogs','2018-01-26 09:41:47.022149'),(12,'BasicArticle','0009_articles_state','2018-01-26 09:41:47.076296'),(13,'BasicArticle','0010_articles_image','2018-01-26 09:41:47.109322'),(14,'BasicArticle','0011_auto_20180118_0858','2018-01-26 09:41:47.126291'),(15,'BasicArticle','0012_auto_20180123_0846','2018-01-26 09:41:47.161954'),(16,'contenttypes','0002_remove_content_type_name','2018-01-26 09:41:47.241944'),(17,'auth','0002_alter_permission_name_max_length','2018-01-26 09:41:47.254064'),(18,'auth','0003_alter_user_email_max_length','2018-01-26 09:41:47.271664'),(19,'auth','0004_alter_user_username_opts','2018-01-26 09:41:47.286666'),(20,'auth','0005_alter_user_last_login_null','2018-01-26 09:41:47.316387'),(21,'auth','0006_require_contenttypes_0002','2018-01-26 09:41:47.318460'),(22,'auth','0007_alter_validators_add_error_messages','2018-01-26 09:41:47.336072'),(23,'auth','0008_alter_user_username_max_length','2018-01-26 09:41:47.357993'),(24,'Community','0001_initial','2018-01-26 09:41:47.826663'),(25,'Group','0001_initial','2018-01-26 09:41:47.904937'),(26,'Group','0002_auto_20171122_1432','2018-01-26 09:41:47.989873'),(27,'Community','0002_auto_20171120_1202','2018-01-26 09:41:48.047205'),(28,'Community','0003_communitygroups','2018-01-26 09:41:48.162197'),(29,'Community','0004_suggestcommunity','2018-01-26 09:41:48.179340'),(30,'Community','0005_auto_20180102_0842','2018-01-26 09:41:48.202579'),(31,'Community','0006_auto_20180102_0902','2018-01-26 09:41:48.235444'),(32,'Community','0007_requestcommunitycreation_user','2018-01-26 09:41:48.258258'),(33,'Community','0008_auto_20180102_0951','2018-01-26 09:41:48.323978'),(34,'Community','0009_auto_20180102_1007','2018-01-26 09:41:48.399704'),(35,'Community','0010_requestcommunitycreation_status','2018-01-26 09:41:48.423026'),(36,'Community','0011_auto_20180102_1027','2018-01-26 09:41:48.496847'),(37,'Community','0012_community_image','2018-01-26 09:41:48.521253'),(38,'Community','0013_remove_community_image','2018-01-26 09:41:48.542963'),(39,'Community','0014_community_image','2018-01-26 09:41:48.564613'),(40,'Community','0015_auto_20180125_1103','2018-01-26 09:41:48.605002'),(41,'Community','0016_auto_20180125_1147','2018-01-26 09:41:48.645907'),(42,'Community','0017_community_forum_link','2018-01-26 09:41:48.668391'),(43,'Group','0003_groupmembership','2018-01-26 09:41:48.757395'),(44,'Group','0004_auto_20171123_1614','2018-01-26 09:41:48.826418'),(45,'Group','0005_groupmembership_group_admin','2018-01-26 09:41:48.862520'),(46,'Group','0006_grouparticles','2018-01-26 09:41:48.967172'),(47,'Group','0007_auto_20171129_1330','2018-01-26 09:41:49.042983'),(48,'Group','0008_remove_groupmembership_group_admin','2018-01-26 09:41:49.084401'),(49,'Group','0009_group_created_at','2018-01-26 09:41:49.112766'),(50,'Group','0010_group_image','2018-01-26 09:41:49.141142'),(51,'UserRolesPermission','0001_initial','2018-01-26 09:41:49.205405'),(52,'UserRolesPermission','0002_auto_20180102_1430','2018-01-26 09:41:49.258041'),(53,'UserRolesPermission','0003_profile','2018-01-26 09:41:49.320955'),(54,'UserRolesPermission','0004_auto_20180116_0947','2018-01-26 09:41:49.436977'),(55,'admin','0001_initial','2018-01-26 09:41:49.522900'),(56,'admin','0002_logentry_remove_auto_add','2018-01-26 09:41:49.555045'),(57,'authtoken','0001_initial','2018-01-26 09:41:49.619492'),(58,'authtoken','0002_auto_20160226_1747','2018-01-26 09:41:49.822160'),(59,'sites','0001_initial','2018-01-26 09:41:49.841219'),(60,'django_comments','0001_initial','2018-01-26 09:41:50.106103'),(61,'django_comments','0002_update_user_email_field_length','2018-01-26 09:41:50.138583'),(62,'django_comments','0003_add_submit_date_index','2018-01-26 09:41:50.174195'),(63,'django_comments_xtd','0001_initial','2018-01-26 09:41:50.268226'),(64,'django_comments_xtd','0002_blacklisteddomain','2018-01-26 09:41:50.294580'),(65,'django_comments_xtd','0003_auto_20170220_1333','2018-01-26 09:41:50.310780'),(66,'django_comments_xtd','0004_auto_20170221_1510','2018-01-26 09:41:50.326492'),(67,'django_comments_xtd','0005_auto_20170920_1247','2018-01-26 09:41:50.342648'),(68,'forum','0001_initial','2018-01-26 09:41:50.466423'),(69,'forum_conversation','0001_initial','2018-01-26 09:41:51.006631'),(70,'forum_conversation','0002_post_anonymous_key','2018-01-26 09:41:51.062518'),(71,'forum_conversation','0003_auto_20160228_2051','2018-01-26 09:41:51.094680'),(72,'forum_conversation','0004_auto_20160427_0502','2018-01-26 09:41:51.190747'),(73,'forum_conversation','0005_auto_20160607_0455','2018-01-26 09:41:51.268422'),(74,'forum_conversation','0006_post_enable_signature','2018-01-26 09:41:51.332588'),(75,'forum_conversation','0007_auto_20160903_0450','2018-01-26 09:41:51.523826'),(76,'forum_conversation','0008_auto_20160903_0512','2018-01-26 09:41:51.574020'),(77,'forum_conversation','0009_auto_20160925_2126','2018-01-26 09:41:51.607223'),(78,'forum_conversation','0010_auto_20170120_0224','2018-01-26 09:41:51.782167'),(79,'forum','0002_auto_20150725_0512','2018-01-26 09:41:51.795580'),(80,'forum','0003_remove_forum_is_active','2018-01-26 09:41:51.837757'),(81,'forum','0004_auto_20170504_2108','2018-01-26 09:41:51.938668'),(82,'forum','0005_auto_20170504_2113','2018-01-26 09:41:51.985791'),(83,'forum','0006_auto_20170523_2036','2018-01-26 09:41:52.082247'),(84,'forum','0007_auto_20170523_2140','2018-01-26 09:41:52.126211'),(85,'forum','0008_forum_last_post','2018-01-26 09:41:52.242331'),(86,'forum','0009_auto_20170928_2327','2018-01-26 09:41:52.287680'),(87,'forum_attachments','0001_initial','2018-01-26 09:41:52.365300'),(88,'forum_member','0001_initial','2018-01-26 09:41:52.447521'),(89,'forum_member','0002_auto_20160225_0515','2018-01-26 09:41:52.476958'),(90,'forum_member','0003_auto_20160227_2122','2018-01-26 09:41:52.506021'),(91,'forum_permission','0001_initial','2018-01-26 09:41:52.985316'),(92,'forum_permission','0002_auto_20160607_0500','2018-01-26 09:41:53.134155'),(93,'forum_permission','0003_remove_forumpermission_name','2018-01-26 09:41:53.166495'),(94,'forum_polls','0001_initial','2018-01-26 09:41:53.436669'),(95,'forum_polls','0002_auto_20151105_0029','2018-01-26 09:41:53.689492'),(96,'forum_tracking','0001_initial','2018-01-26 09:41:53.992957'),(97,'forum_tracking','0002_auto_20160607_0502','2018-01-26 09:41:54.095408'),(98,'reversion','0001_initial','2018-01-26 09:41:54.333607'),(99,'reversion','0002_auto_20141216_1509','2018-01-26 09:41:54.336722'),(100,'reversion','0003_auto_20160601_1600','2018-01-26 09:41:54.338659'),(101,'reversion','0004_auto_20160611_1202','2018-01-26 09:41:54.341114'),(102,'sessions','0001_initial','2018-01-26 09:41:54.366054'),(103,'sites','0002_alter_domain_unique','2018-01-26 09:41:54.401211'),(104,'default','0001_initial','2018-01-26 09:41:54.642124'),(105,'social_auth','0001_initial','2018-01-26 09:41:54.645557'),(106,'default','0002_add_related_name','2018-01-26 09:41:54.717893'),(107,'social_auth','0002_add_related_name','2018-01-26 09:41:54.721024'),(108,'default','0003_alter_email_max_length','2018-01-26 09:41:54.739503'),(109,'social_auth','0003_alter_email_max_length','2018-01-26 09:41:54.742220'),(110,'default','0004_auto_20160423_0400','2018-01-26 09:41:54.777611'),(111,'social_auth','0004_auto_20160423_0400','2018-01-26 09:41:54.781034'),(112,'social_auth','0005_auto_20160727_2333','2018-01-26 09:41:54.798170'),(113,'social_django','0006_partial','2018-01-26 09:41:54.825695'),(114,'social_django','0007_code_timestamp','2018-01-26 09:41:54.865661'),(115,'social_django','0008_partial_timestamp','2018-01-26 09:41:54.901555'),(116,'webcontent','0001_initial','2018-01-26 09:41:54.942822'),(117,'webcontent','0002_auto_20180124_1328','2018-01-26 09:41:55.057620'),(118,'webcontent','0003_auto_20180124_1452','2018-01-26 09:41:55.119056'),(119,'webcontent','0004_delete_faq','2018-01-26 09:41:55.131120'),(120,'webcontent','0005_faq','2018-01-26 09:41:55.152180'),(121,'workflow','0002_transitions_role','2018-01-26 09:41:55.254854'),(122,'workflow','0003_auto_20180108_1348','2018-01-26 09:41:55.667084'),(123,'workflow','0004_auto_20180108_1504','2018-01-26 09:41:55.817580'),(124,'social_django','0005_auto_20160727_2333','2018-01-26 09:41:55.823021'),(125,'social_django','0003_alter_email_max_length','2018-01-26 09:41:55.825903'),(126,'social_django','0002_add_related_name','2018-01-26 09:41:55.828614'),(127,'social_django','0001_initial','2018-01-26 09:41:55.830624'),(128,'reversion','0001_squashed_0004_auto_20160611_1202','2018-01-26 09:41:55.833185'),(129,'social_django','0004_auto_20160423_0400','2018-01-26 09:41:55.835796'),(130,'webcontent','0006_faqcategory','2018-01-29 10:41:08.427329'),(131,'webcontent','0007_remove_faq_category','2018-01-29 10:41:08.500033'),(132,'webcontent','0008_faq_category','2018-01-29 10:41:08.557486'),(133,'webcontent','0009_faq_order','2018-01-29 10:41:08.597990'),(134,'webcontent','0010_remove_faq_order','2018-01-29 10:41:08.632055'),(135,'webcontent','0011_faq_order','2018-01-29 10:41:08.662877'),(136,'webcontent','0012_auto_20180125_1628','2018-01-29 10:41:08.701690'),(137,'webcontent','0013_auto_20180125_1634','2018-01-29 10:41:08.739153'),(138,'webcontent','0014_auto_20180125_1636','2018-01-29 10:41:08.755197'),(139,'webcontent','0015_auto_20180125_1643','2018-01-29 10:41:08.791693'),(140,'Community','0018_community_created_by','2018-01-29 13:54:13.502261'),(141,'Group','0011_group_created_by','2018-01-29 13:54:13.614949');
/*!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(6) NOT NULL,
PRIMARY KEY (`session_key`),
KEY `django_session_expire_date_a5c62663` (`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 ('0acg874nu01vl5c08edgnltoypvaxl2t','ZjUzOWY1ZDRkYTdhNWI4NjE2Yzg3NThhZTU2YmRiODczYzFhMDFjOTp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiOGRhM2RkYTAyYjQ5NGNiNTgyOGRkZTQxMWI0MGI0MTcifQ==','2018-02-01 10:25:17.724469'),('0axjpohm19ld23o4hctlvycjtept49rx','ZTEwZTZjN2RjMzBkZjJlZTZjYTBhYWQwN2FkYTgwNjhhMjI3MTFiNjp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiZGFiMmVhNGRiNDUzNDljYmEzYTdhYjQ1NjZjZDdlNzkifQ==','2018-02-13 12:45:51.669646'),('0d26e04wq5bqkeemzpavw4438edu6jeq','M2RhOGVhNjRmYTVjMjIyMDE2MGM2Mzc3NDY4NjIzOTQ0MmI1OWRmODp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiNGIxOGM3ZTZiNTYwNDZjZTg2YjYzNWUzZDkxMmVmZDMifQ==','2018-02-13 14:20:32.428376'),('0hud5oqbfctybpmnw5xxxko2yyqewjm2','YmRlODEyNmI0MjQ0Y2UzMDU3MWZlNmE5NTMzZWNkYTdjMTJjN2YxMzp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiMGQ3ZThjMzk1MDkxNDUyMmI1MjIyYTU5YWZjMTU1M2EifQ==','2018-02-06 15:05:47.994212'),('0packoshlgx27ehbejo5y6ts2dxj04d5','N2E2OGNkZWM5OGIwYTNhODI0YzQzMTYwNDI2ZGY3MDA0ZTFmMzczNDp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiOGQxNTc1MzhmMzY4NGQyNjgwN2I3NmI0YzY5MmVhZmUifQ==','2018-02-02 05:46:52.942799'),('0syj77szk80ddxdvu3vzjf03knhp7crt','ZTUwOTBlYjU5ZWU2YjBhN2Q0ZjY5MDAyOGEyOGMyOGM2ZTkyODhiZjp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiMzU2NzUwNzMyNTM2NDg3MDhlMzA4MzBhYmVlNTVkY2UifQ==','2018-02-02 07:35:36.660952'),('141rqn2nfo6aqd4rlf5k4diblq821kv7','OTQ5MjZhYmFhNzg3YjQxZDVkYWE4OTJjMjU0YjYyMWRhMDhiNWE0YTp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiMWRmMzFlODBlZDA0NGI5N2I1OTU0OTExNzc4YjcwYzQifQ==','2018-02-05 07:45:25.728382'),('1h1xzni3j6rlc710gh8zwgsqfm2rs91h','OGMzMTliOGMwM2YxNWIxYmM5YWU4OTNlYmNiN2Q4MDYyYjEwZWI0Mzp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiNzU2NTg1MTM4Mjk1NDFlYjk0MDYxYzRmYzc3NjQ0MGMifQ==','2018-02-14 09:56:40.144576'),('1j0o46qhn5i6i4r7fd8kg64yc39hjv3w','MGYxZDBlYzQ0NWFlMjVhNTIxYTAxZDkzNGYxMmE1MGM2M2E0YTM3MDp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiMjU0NTk0MWMzNjY2NGU4NWEzNDQ2YWQyMzBmYzA1OGUifQ==','2018-02-07 08:11:15.669003'),('1kueoedc1inzo6y3pqxguly98mdb58ti','MmRlNGNhNWMxY2VmMDUzOGY1MmE4NjgxNjM0ZTBkMTQ4N2FjYTQ1Mjp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiNWQ5ZTk2YjViZDVkNDA3ZmJlNGMzZjcxODUyYjUxMTgifQ==','2018-02-12 12:14:55.847654'),('1kxh456ujkd8h5zstfs1g5b14bj7m15s','ZTMzYTUzZDZkNWY1ZDljZTAwYjdiNmU0ZmZkZjZlYzIxZmNlYmJiODp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiZTU4ZWNhZWY5YTNjNGIxYmIxYWU3Njg4NTc4ZmQ0ZGUifQ==','2018-02-03 08:17:18.776560'),('22xe3q1wnzq6r57brbgnj9i5elyywhcz','NWE4MTRhNTA2MWM5ZDAyNWI5YzlkNWQ5NzVmNjk3M2Y2YThhZTY5Yzp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiM2Q5MTg2NjNhYmM2NDVmM2FiZmYyNDBhNjE3YTYwZTgifQ==','2018-02-14 11:52:20.897598'),('25sjb19ksrho936ly745wbg25slivzjw','ZjM5OWE4NGI1M2ZlZjMyMzM4YTk1NTU4OWVmMmVhNTM5Y2Y1MDY3YTp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiYjViMTg0ZGIwMjJmNDQzNTg0YWYwMzQwYzI4YmZkNDAifQ==','2018-02-13 04:41:40.150773'),('26r9tp70lnsd31ob6ossonqj0g9gipfe','ODkwYzMzY2RlMTNhNDhkZThjNTYyMjZjNDg3ZDU5ZTJkNzY4YmRhYzp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiYTEyMTcxMjMzN2I5NDlkZjk4ZjAwYjNjZWE0ZDViYTcifQ==','2018-02-01 12:39:36.353515'),('2adj1kqcfesyeckwaonliyfrsgqmgv2h','ZjNjZWQxOTQzNTk3YWRhYjE4MzI0MzZiNzU0NWZiZmRmODUxOWEzMzp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiN2MwZGUwNmQ4NjYwNDljNTk3ZmExOWRlMjEyODM0NjIifQ==','2018-02-15 07:41:02.713603'),('2ba056edhm2m9cbguku7o0ax9rp0v6wv','NDI5MThjMmZkNDBkM2ZmN2FmN2YzYjc4YTAzZGRiOTk3NjAzNDNjMzp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiYWMwNDk5YzA1YWYyNDU1NjgyYzRhY2ZlYjQ4YzdhYmEifQ==','2018-02-07 11:56:46.784833'),('2fdfl9a192zre2tolzgf27sqpyo8w5o0','NjBjYTJjNzA4NzM4YzA5YmIxNjI3MjM4YTMyMDRhZmI3YTgzYzFjMjp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiZTQ4NmQzNWM2NGUxNGRjZGI0Nzg2NDc4ZGU2N2Q4NDEifQ==','2018-02-05 13:33:41.491254'),('2hsc2bbwtwm2zzm8cp12vgyh09y63wpx','M2UzNmNkMDFiYWQwMmM2YTIyZjJmZmFjM2VmNzZiY2E5YWMyNTkwZTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiZDIwYzkxNWNhMzIxM2VmNmJmOTIyNDVkNmViZjIwNDNiMzkzZmQwNiIsIl9hdXRoX3VzZXJfaWQiOiIzIiwiX2Fub255bW91c19mb3J1bV9rZXkiOiJkNjA3MWIzMTljZjk0YzdiOGIyZDhhMTE0M2QwZDk2MiJ9','2018-02-05 09:58:20.616072'),('2iaotat5jn7pcc1zmecxxh1wrn8h1ryw','NzNhOTQwYTRhNzZhNDdkOGI3NTI1MDM5ZTU4MjhjYzgxNDVlNmU4ZDp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiOGUyMjllMDIzYjZhNDRmYWEyZmZiNGJmZGI1M2NhNzkifQ==','2018-02-07 10:53:48.715045'),('2q31sz4z3a79ifsnphxywp5v4dx2yx12','YjUxN2NjMGQxNzgxOThhN2NhYTFhNmRlNjRjMGQxOGQwZDBlN2I1YTp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiYTQ3ZGRlNWNiOGQxNGQyMGI4NWVhMzA5NTllZmNlMDYiLCJfYXV0aF91c2VyX2lkIjoiMSIsIl9hdXRoX3VzZXJfaGFzaCI6ImJmNGVhMzA0MGY3NTQ1MjAwYzYxMWRmN2I0Y2JjMjI3NjVlNjI3Y2QiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9','2018-02-02 06:38:26.014773'),('2thjs0iwm3n6hl7qc0v5c61mwumoyyx5','OGRjYWE5NTkyN2Y3OGEzYjYwMzQzMWFkNzQzY2Q2OWUxMTI2YzkwZTp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiZDU5ZWI4M2Q0OWY0NDlkOWE0ZjlkOTM0MWQ2N2YwNjMifQ==','2018-02-07 11:39:21.724756'),('2tuquwlfdyvijpplw60l5aa6hq7dz4kd','Y2Y0MzFmY2QzOTViZGEwMjczNDM4NmVlNDQ5YjY5NzVmZTlmMTE1ZDp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiNmNiMjI0ZTQ4M2JkNDk5YWI0M2EzNGEwOGU2Nzg2NjgifQ==','2018-02-01 13:57:59.493359'),('2xbc8bo4xctsqpnu2g6z0cvg9v07g770','YWY2ZmFlOGRhN2FkMDMwOWI2MDc4NmU4MjQyNzNkNGNlODhiZGUwYTp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiOGZiYzMxZWE5MjcwNDk5NThmNGYxNGRjMTA2YWJlMTEifQ==','2018-02-02 06:00:47.861102'),('2ym5uoc7vrdi4gykijzhq85ycx3vfv84','NTgxOTFiMzY2YTgwNTg1MGNiYmRiYjFkNjk2MWY4ZmViM2IwMDM2ZTp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiZWI2YmQ1MGQ4MWQ4NDQ5ODlmMmEzYzkwNTIyNjNiZTAifQ==','2018-02-03 08:07:16.133734'),('2yvcbw7w397jiwbgpvy4julvqqwrim12','Yjc0ZmIzZjBmYWIyNzI3ODRjNTMwYzA0MjgyODQwNWUzNGM3NjBhNTp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiZDI3OTA3MWY0ZTllNGRjMDk3MjVlNjFmOWQwM2U3MTMifQ==','2018-02-05 11:15:07.720039'),('2zsx20h9cw54xklm1i1gpqg3u4ajvem7','MzlmMDc5ZWQ0OTIwYmFlNDliMmI1MTIzOGY3NTQzZDQ3MmQ1OTdlZDp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiOTIwYmJlNjEwNTJjNDVhY2FhZjRhYTgxYTIwYmU2ZmMifQ==','2018-02-12 12:14:59.675479'),('32h9bm8zb9w394lo6gx9jetlyus1h9ty','ZjZjNGE5NWUxZDQzM2E0MjE0MzQ1MjY4ZjY1YjA1NjBlYzc2YWNjNjp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiYWVhZGI2ZTYxYjE5NGI1ZThiYmQ4NDc4MWY4ZDY2YTIifQ==','2018-02-05 07:46:43.330385'),('33udaathotqbolms2xmwpc6cz62c9ge5','NDIzOTVkOThiNjNjMWNlNmMyMjNmMDgxN2ZjZmYyOWIwZmJmNmQ4ZTp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiNWMzMjJhZDY0OTIxNDVmNThiMjUxYWZjYTRjOWQ0YTgifQ==','2018-02-14 06:25:50.804386'),('341bumcva0m1lz1gpzpg3dn8qr28ar4o','ZGJkMzVhMTJmNTRiZDE4ZDk3MTVmZWQ4Yjg0YTIxNmJlNzEyNjQxYTp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiZDMzZDYyZTgwNmZmNGYxNGI3ZjM0MDBlYmMzMTA5NzYifQ==','2018-02-02 11:13:03.935043'),('38y5lh49m535w76rxng23hx5w6xiz1az','M2FiN2M3N2U4Yjg1MDFjMjIzODQ4YjRkYmU3YTM3YTI3YzBhMmM4Mzp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiODgxMTY4NDBkZmE0NDQyNDk2ODYwYWIyNzFmZDgxY2UifQ==','2018-02-01 19:16:07.890944'),('3e31p0z3iqu1fmb578r5i0uimjbzamqo','M2I3MWEwODZkNTg1NTBkMzZmYjM4Mzg0NjZhYTNlZWY4ZjAzMjk4Nzp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiMzQ1OTRlZWIyN2NhNGRmM2FlYWE0ZmU4Y2MxMzFhNmUifQ==','2018-02-12 11:32:58.391101'),('3ixxhlzfacp462ygci7yoyk986g1tx5q','OTFhMTUwZjhiNjlkZDJlODBjMmYyYWM4MzFlZTljZjA1NWFkNjIzNjp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiMzY1ZDMyZDQ3NWFlNGYyMjgxNGZlYzhhYjUzMzc2ZGUifQ==','2018-02-12 12:34:55.893483'),('3n1pbuv1x5g0jhjgccrd7b4fka1q2gu0','MmU0YWM5NWQ3NzE5NGU0MGQ5NzExNTQxNDJiZWUwNWRiOTQyNjM1Yzp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiOTY5YjU5ZGI2NWI3NDRlNGE4ODczZjBjODVkZTZiZmQiLCJfYXV0aF91c2VyX2hhc2giOiJkMjBjOTE1Y2EzMjEzZWY2YmY5MjI0NWQ2ZWJmMjA0M2IzOTNmZDA2IiwiX2F1dGhfdXNlcl9pZCI6IjMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9','2018-02-07 15:30:33.480037'),('3nj0ap2jeatlosk45af5qjtq38imz1ax','MmMxMmEzYjI2MWRkNGYwMmY2ODAwN2I2NmVhY2JiZWNlODc4MDUyYzp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiZGU0NDdkNjdhZDk1NDM1NjkxOGQ5MDFhZDg0NjZjZDMiLCJfYXV0aF91c2VyX2lkIjoiMyIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiYmUwMWYxMGVmNGM0NTkxZGQzOTdlY2RkYjE3NDMzNDUwZWQxOWE0MyJ9','2018-02-12 12:41:15.617153'),('3pxeacr51ru1fni4l8mgo9z4u79o9ej6','ZDcwOGE0ZTc0MWMyMzJkMmVhOWMxOWI5MjhiOTYyZGZhMDliNGJmMTp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiM2Y0MGVkZWU1ZTU0NGVhMWJhOTg5MTk4ZGIzMWM0YTMifQ==','2018-02-02 14:17:55.223897'),('3qqm6ak5h5kts78b7y0lo6n8iv3hedft','OGRkMmVlNjlkNjc4MDYwYjIzMzIwMzE2NDJjYjUxODM3Zjc4MGUzOTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEiLCJfYXV0aF91c2VyX2hhc2giOiJiZjRlYTMwNDBmNzU0NTIwMGM2MTFkZjdiNGNiYzIyNzY1ZTYyN2NkIiwiX2Fub255bW91c19mb3J1bV9rZXkiOiI0MTQzNGE3YTRjMDI0ZDFiOWE3NDBiZmUzNzUxMGFjNCJ9','2018-02-02 06:38:28.718285'),('3r0wcwj5e73zqhr9lumz1sr6gdjr29zi','YTk0NTQzZGQ1NzNiNWJjYTE3OTJhMmZhZTI5MjFkMDRjN2M1ODg5Mzp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiMjljNWQxYTkzNzc5NDZhZTk4YTBjN2YyMmEyZDIyZDUifQ==','2018-02-14 10:47:13.241813'),('3sv9hd6lefm74q2fr1cntz340r3v3ouj','ZTNkOGY4YzlkMzM4MjE0NjE5MmI3MTE5MzYwNGYyYmNmZGRkNDdmZjp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiZDlhNmMwZmY0YzJlNDY1Zjk1NjdlNDM1NGY3NDQzODgifQ==','2018-02-02 11:39:11.071975'),('3ty3dv7gw24ydos7bpvfqsvk046q85b4','YmE3NzRlMjYxN2QyYzlkMTMzYjYzZjA1NmJmN2Q3NTlkYTkxZGI2NDp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiNGRiNjI1ZGIwYTFhNGNjOTk0Mzc2ZDQ0NzFjZDc1NDEifQ==','2018-02-04 18:25:35.232242'),('3xtvc5fd1824yiem079hdcj5j035634r','OTZiOGYxNTVhZDBmMGNkNDdmOWNkNWUxYTg5Y2YxODVlMTEyNjI5MDp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiYmZlNzY5OWRlMzk3NGJkNWI1OTliYjhmZDQwNjE4NjIifQ==','2018-02-12 12:19:56.232795'),('47lx9voeotth1avpcy985ezlu10novig','ZjNjODBkMmVlMzI5ODkyZTAzOGEzZDM4MzllYzBkYTZmNzlkMmQwMjp7Il9hdXRoX3VzZXJfaGFzaCI6ImQyMGM5MTVjYTMyMTNlZjZiZjkyMjQ1ZDZlYmYyMDQzYjM5M2ZkMDYiLCJfYXV0aF91c2VyX2lkIjoiMyIsIl9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiOTM2MjA3NGFiZWU0NDQxYmE4ZDA4NjMxYzEyOGFhZTgiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9','2018-02-05 07:43:58.010428'),('48ostuzqv15ze7wdfm9h1kcemcbz57zz','YWM0MGU0M2Y2NGQ2YjY2OTBjZThkMjViNmMzZjE1MjA0YWIyMDgzMTp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiZDliOWE5ZTU5ZWVmNDQ4ZmIzOTNiMjEzZTJjYjc2YWMifQ==','2018-02-05 06:48:39.805201'),('4dyyz93nikl1gyr1v4txrxzgmugnvopk','NzJmOGIzOTFhMjBhZDZhNGVjYjM5NWQ1NDU5NjRlNDUwMmZlMTliYjp7Il9hdXRoX3VzZXJfaGFzaCI6ImQyMGM5MTVjYTMyMTNlZjZiZjkyMjQ1ZDZlYmYyMDQzYjM5M2ZkMDYiLCJfYXV0aF91c2VyX2lkIjoiMyIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2Fub255bW91c19mb3J1bV9rZXkiOiIxNTI5ZDc4NjliNmU0N2U2OGU3N2RhZDAzYzZkYWQ1NyJ9','2018-02-07 14:45:38.204966'),('4j8ob4ljoja5rwvdr9mwy8n6fjwjvmol','YWU1MDdiMmYxMzQwMjYxZDc2ZGNhYTJmYzE1N2M3OTQ3YWFjZDY3MTp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiMThhY2U0YTY3MjMyNDhjY2JjYTc3ZGI3MTU3NTNiZDgifQ==','2018-02-14 10:42:13.245565'),('4kknd65o8bpmat3jdkf0er3c87e19gn4','OGJjY2E0NGY3ZGQ3MTc4ZTI5ODhlZmRiNmI4NjIzMzI4MmFkZWRhODp7Il9hdXRoX3VzZXJfaGFzaCI6ImJmNGVhMzA0MGY3NTQ1MjAwYzYxMWRmN2I0Y2JjMjI3NjVlNjI3Y2QiLCJfYW5vbnltb3VzX2ZvcnVtX2tleSI6IjUwMjI3NWFmOGQ5ZTQ2NTM5OTcwNWYyYWU0NTVmMWZjIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2lkIjoiMSJ9','2018-02-01 09:51:01.451011'),('4xx08slnv43h72bbcft1pe4clwiy6u8f','Zjc4MTk0ZDJiYzgxODYwMDlmMTU5ODI1N2VjNGQ1NDllZmIwNjBmNTp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiNWFhNDEwYzNmYmVlNDAwZjg3OTE4ZjBlMDU2YzcxMWIifQ==','2018-02-06 13:35:48.106169'),('53gdr8wdq1qjghe3dvooxiyog9e9gedb','YTM2ODQ2NDQ2MGE3MTJkN2QyYjI3ODA2NzgyNDYzZmZlYTJhYjljYjp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiY2IyNDVlMTllZGQ1NDNlMjgzYjJlNzkzMzNiODY3NDcifQ==','2018-02-14 05:55:47.237917'),('5awpsu21jxk4b0fqrp2a1mvzndqqm7uc','ZDRiYmYzMThhNDlhZjc4MWY4ODljYmIwMWM3MzUyYjRjYWY0NGQ2OTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYW5vbnltb3VzX2ZvcnVtX2tleSI6ImE0NWM1YTQ5NmU4ZjRjNDU5YzM2MjNjNTAxNGU2OWYxIiwiX2F1dGhfdXNlcl9oYXNoIjoiYmY0ZWEzMDQwZjc1NDUyMDBjNjExZGY3YjRjYmMyMjc2NWU2MjdjZCJ9','2018-02-01 12:39:14.020725'),('5gdvpxrtrswkqk22qi4fj5ynap4832dc','ZWIyYzlmMmUyYzkxNDlmMjQ3NjkyOWU0MDNhMTU3YjYzZjk5OWM4Nzp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiODQzNmJiZTliODc3NDYwN2EyY2IyOWM5ZjZkMzYyNTUiLCJfYXV0aF91c2VyX2lkIjoiMyIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiYmUwMWYxMGVmNGM0NTkxZGQzOTdlY2RkYjE3NDMzNDUwZWQxOWE0MyJ9','2018-02-12 13:28:15.400841'),('5onopgzvq3ry1jkjmcete34mr70rfy87','NDJlYjI0NTIzZTg3ZWYzNjM3ZDc0MWJlYTU2YjZmM2U4MTA3NDc0Mjp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiMjdhYTBhNDA1YTcwNDM4Mjk2MTQyYmEyOGU3ZWY1NzkifQ==','2018-02-12 11:29:55.853680'),('5uln33aqspxt0zqgkowgq2deyj4exmp7','ZDg0N2ZiZDdmNTg1ZTZmOTE4NzE5M2RkMjQyNjI4MDVmYzA0NGU4Mzp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiNmE0MGFhOWMyYTNiNGE4YWI0YTdmYTc3MGIwNzU3MGIifQ==','2018-02-06 18:28:49.072166'),('5vq87zc2nmpajyqnnavvhtly5icq4630','YTg3OWJhMGIxMmFhMTUyYWJlNDg4OTgzZjJjN2JjZmY2ZThlMDMwNzp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiMzdiYTJjZGMxODExNGE4ZDhiNjc1NWMxMDlkYjEyYjkifQ==','2018-02-07 05:50:43.252604'),('6134ks1ube54fq5hdxqui7cqg4ojnnyj','Yzg0ODY3NGIxOWMwN2IzN2IxMDRiZGU2NThiMTEyYTU3YmUzNGNiZDp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiMGFhMzE1NmNmOWU0NDI0YThiMzBiOTZkMzEzZTVlNGQifQ==','2018-02-06 17:35:03.197584'),('61gtn9wy7wnujle6l67lk00qumcm4sts','NmQ4MTVhNGNkOWVjNmY2Yjk2MmViOWQ0MTM4M2U5ZDFlZTIxMzA2Yzp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiZjBlNThkODIwNDVmNGFkODgzYzhhMjBlNjIwZWQwNjEifQ==','2018-02-05 10:31:22.891421'),('65kwrl24a3m7c6c4ybl8pma2ykhil137','OTQ4MjY1YzE0M2JjZDU5MWQ4NmZiNmFmNTg2NTg4MjYxNTk2ZWQ0Nzp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiOWJhOWNkMzFkYTBlNGZmNTkwMjI5YmRkZDY5ZDMwMjkifQ==','2018-02-01 12:14:37.039562'),('6cpen88lwcie57pba8n032nyeeh5wk5o','NGFlNWMyNWEyMjJjNDY2N2IyYjEyZTkwZWVhOGUwNDg0NmU5OWM5NTp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiYWNjNDFkYmRjMzU2NDY2ZjliNWJmMmVkYTEwMjA2NDUifQ==','2018-02-07 11:29:21.936589'),('6dhaz25y6xaa6y5p9jc0ax5zbuipw16g','ODk2YWM0YmIwMmUzZTk3MDEzNjA5NDgzZjExYzY0NTk5MDYwZDhiMzp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiMjkwNjBlZTdiYTdkNDk5OGIyNjAyZGUxNzg0ZTcxMzEifQ==','2018-02-05 06:05:24.281496'),('6e5ir8wgah4xjdyi4lar7fyjw0qkqc2p','ZWIyMDkzZmE0ZDc3Y2RjZDUxY2FlYTg1MDcyNTJiYTg4MGY5MTMwYzp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2Fub255bW91c19mb3J1bV9rZXkiOiIzYzc5YjUyMzUxY2M0ZTVhYTJmMTY3NjE0MjQ4YWNhNSIsIl9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9oYXNoIjoiYmY0ZWEzMDQwZjc1NDUyMDBjNjExZGY3YjRjYmMyMjc2NWU2MjdjZCJ9','2018-02-02 06:38:52.032772'),('6gip185rhjrtrotpfxjgdfk6b020tpup','YjAyZTUxNTIwM2NiMGQyY2M5OGZkYTI3MDBjNTU2MmI0NzY4YzQ2Njp7Il9hdXRoX3VzZXJfaWQiOiIxMCIsIl9hdXRoX3VzZXJfaGFzaCI6IjU2YzRiNmM1OGYwM2E3OTRjZjA1MzA0ZDBkM2Q2ZWNlNWU4YzkxMDEiLCJfYW5vbnltb3VzX2ZvcnVtX2tleSI6ImY5NTkzMDdhYThlZDRhMDc5Nzc1YjEwZTc1YTc4YTBlIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQifQ==','2018-02-07 10:57:09.957030'),('6i912bwywema4vja7x892iecdads1l4f','MTM5MTU4MDg0NjA0NGI5MTBjOGZhY2MzNWY2ZjQwOGY5YTcwY2JmNDp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiMDI1M2M3MDk5NTg5NGZiNzhiZjY4M2NkZWZlZGQyYWMifQ==','2018-02-02 08:10:32.304370'),('6m1p7y2o4x11xssv8iw5bpt2z8y67fgb','ZTdkMTNjNmUzZjA1MzkwMDcyN2NjYzVjZmFkMDkwMGRmZjZhYTRjYTp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiNjAzOThjNjE2NTA3NGZmNmE3N2Y5YTUyNWJmYjBlMWMifQ==','2018-02-14 08:17:01.265770'),('6y1osnsz947dwwzdbi826srctfmghazu','M2I1Njk0YjMzYTZhY2E3ZTQyOTcyOTc5OGFkYWNhNWFjYzVhNWQzZDp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiMzU2MGJiOGNhZTNmNDU1ODgxMDA4Njc3YjUxZjQwYjIifQ==','2018-02-02 12:13:09.947880'),('6zipn47p98rmkmuqzouffn95kzhd7cnb','YjU1MTJjZjAxY2Y1MTdjNDVjOWUyMzA4YWVlYmY2N2FmMTczZjY4NTp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiZjk3MTFkNzFlOTk4NDdjZGI5OTU1MjViNWEzOGM5ZDEifQ==','2018-02-02 11:02:56.811390'),('76ewsz5demkcqotn4jstptnqnno7849h','MTkxMWVlYzUyYzFlM2JkNGY1YWVlOWQ4MmVkMGViY2E2Y2M0NjViODp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiNTE0YjVjYzRiYTEwNGQ4MjllMDUyODE5NDI2YzUzOTIifQ==','2018-02-01 11:09:25.473899'),('76q4yheqwfnpyf8rl1v5bb9h2zb85ydd','NDkzNGY4YmZmOWY0ZTM2ODZkMjU1MWM1YjAzYjlkNDhjNjhlNjkwMTp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiMmM3NjliMGQyZjdlNGE2ZjgyMjViZDQzYTNkODg4ZTkifQ==','2018-02-06 05:45:30.862116'),('7btmh15cjc1yv9a1ing5vv7h7tgzm24s','M2I4ZTFlMGEwYjJkNzM2MGJlY2NkNTVlOWYxZDA5ZWE0YTRmZWEzNzp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiZTU2MWMyYWQzMTMyNDRlMDg2YjZlMTE2ZTA3NTExMDIifQ==','2018-02-02 11:02:53.663517'),('7ce19ts0tbn7zjr23435g8z972b2ffl7','YWYzNTBlZGUxZDBjZmU0MDlmM2EyZmMzMGM0ODU5ZDE5ZThjZDFkMzp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiODdkZTQ0ZDU5ZmNkNDdiMWI2YWU3YTA5MmFhMWE3ZDIifQ==','2018-02-09 13:58:41.683873'),('7jcktrybmqtzmmkiuzyada12dgmtxgbs','NjYwYzllZmNmZTE4MTBiN2NhNDE4NTI3MWJlOThiOTRmZTk5NGViOTp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiZmI5M2JmMDM0ZWJjNGNjOGJkM2E0MzY5OGIyMWFkNGMifQ==','2018-02-01 19:13:37.441510'),('7nxmq6uiggthwvyrsdtl8zqafhe4ltfp','OWNhOGZmZjYxYzRhNzQ2MjIxNzE0NTkxYmY3YTA3NTBiMjg4NWQwYjp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiMWYyYWU1MTExNzY3NGE4ZWEzMjViODU2MjRjYTVjMDMifQ==','2018-02-04 16:21:01.806648'),('7venim1pt3ujs2r2n7wa8ut4ihwb03mr','ZDJhY2U1Nzk4MzFmNDE4YTUxZDIxMmQ2YWRmZGZjZTUzNjkxYjA2ZTp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiZjhiMjJmNDgxNGE1NDA1ZDhjYjExNTIwZmY5NDY3ZTEifQ==','2018-02-03 06:32:16.263881'),('81k5kuex4jslbwlpxwq7o5njcrhnxxzq','ODc2Y2NhODFjNzgyOGE1NjZlMmQzMDAwYmUwOTJlZTBjZjQ0YTA5OTp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiMmQwNTllYTE0NGZiNDA2YWIyMmYwMjQ3NmJkYzRlOGIifQ==','2018-02-05 06:22:10.157565'),('837amb578kr11qzmu1gjk4s3ckkh3naz','Y2QwNDI4YzVkZGYyYzVkYzM5MmI4NzljMjhkNzA3MjFmNDJlOGQzMTp7Il9hdXRoX3VzZXJfaWQiOiI2IiwiX2F1dGhfdXNlcl9oYXNoIjoiYzhiNTNkZGU0YjZjYzA5MWIwZTliZjM0MTY1Y2JhNGJhYzc3ZjdkYiIsIl9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiMjM3NjExY2UzNGNmNDc5NjkxODQ5OGVmN2RiYjE0MmQiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9','2018-02-07 09:21:04.086517'),('87jvmg2964preabgbqljrge7axipxtf8','ZWYwY2NlOWNkZDdiNGI2Nzc5MGZhZGVlOGU4ZGViOGM2YmU4NWMxNTp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiMjY3MjI3N2I5OTdjNGUxOTg1MzA4ZWVkOGRhMGQ1MDEifQ==','2018-02-14 06:39:21.791459'),('894md099gjs4lob8lmozteh207uhpi3a','MGJjMjQxYWJlODcwNTYxOGQ4MzVmZTQ0OWVmMmZlODdhODRjZTYwYjp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiMmE4ZjJkNjNhNmM2NDQ3ZWIxN2JlNGFjNzU1MWU4N2QifQ==','2018-02-12 13:49:43.968518'),('8d1qp3syigafldkq45esvukcst8bex61','MjQwMGY0ZjU0OTQzY2E0MDA2NmM0MDhlZDRiMzAwYWU4ZTM5YTczODp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiNTRhNmU2NjE4NTI1NDBiZmI5OTRhMmI0NjQzYjdhMzcifQ==','2018-02-07 12:09:04.317645'),('8dgkxltz4q0ihs3d9m5oo0dtyw19n93c','OWUyNzczYjlmNWE2NmEyMTk1ODEzN2ExOGNlMzExNzRmYzIwNjhiMTp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiZGNhYWJmMzIwMjIwNDAyZDlhMTFmMjFjOTE3YzhkZDcifQ==','2018-02-05 06:17:26.942980'),('8i755b954wxv5ouke8n763g6qtumbyhc','YjM2ODhhY2JiYjEyYTZhMzhkMmQwMmUwMzlmZDM5ZmNhZDk4Zjc1MTp7Il9hdXRoX3VzZXJfaGFzaCI6ImJmNGVhMzA0MGY3NTQ1MjAwYzYxMWRmN2I0Y2JjMjI3NjVlNjI3Y2QiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxIiwiX2Fub255bW91c19mb3J1bV9rZXkiOiJhZTk0ZWVmYWQ1ZWY0ZjFhOTM5OTIyZjczZTkxODY1OSJ9','2018-02-01 10:32:55.372374'),('8kw0iwvwbx2pdgw0xh5rk403i1kruwtt','NzEwMmI5YWM2ZGY1MWFlMmI3ZTM1MDc3MTI5M2M0NzNkNmVjY2ZlZTp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiMjdmNDE1M2Q5NzNmNDQzNDk3NTkzMWMyNmIzYjYwYjkiLCJfYXV0aF91c2VyX2hhc2giOiJkZDFjYjFlNWIwYTU5ZTQ2MDk1ZmQ5NGNkOWI1ZWQzMDY4YzllMzg1IiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2lkIjoiNCJ9','2018-02-12 11:44:02.377485'),('8lf0xuxfavgcy9vasdktyfzj56muxn9p','MTExYzNlYWI0NWI4Y2FjYTM1OTFmNmIzZTJkZjk1MmUwYzMwYWYwODp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiZTM3ODJlYTE1ZTg0NDNmODhmNzZlNTdiZjM1ZGE2MmUifQ==','2018-02-12 13:43:17.808849'),('8t54ttu0dz0qd298y483xr18ptbk5f5d','MWFmODFkNzYzMWU5OGM5ZWRhYjkxMGZmOTlkOWFjMDQ0YzI1NTU5Yjp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiMGE2MTM3Y2RmZDljNGM1M2FiZjVkZjQzNWZlMmRjMmUifQ==','2018-02-14 10:50:32.310770'),('8tl0liloju6ue4m23em3j4fpy6q8qo4f','NTZjODE1NzNlNWI0NGJjM2Y4ODNiM2JmZmM3ZDM5YWZjODJlY2YzNjp7Il9hdXRoX3VzZXJfaWQiOiIxMyIsIl9hdXRoX3VzZXJfaGFzaCI6IjA4NjhkY2RjMWEyNTdkOTA2MzY4Mjc2Zjk2OGJiM2U1NWQxMGEyNWQiLCJfYW5vbnltb3VzX2ZvcnVtX2tleSI6IjgxYzY0YmRiYjMxYTRjYWE5YzI3ZGNlZmE3NDQ2ZTQ2IiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQifQ==','2018-02-07 12:51:07.149238'),('900w1d090nittl8kydrggxij5ofz41xa','M2JlYzkwOTk3Njk0ZjdkYzJiNWMzNWUzMmZhNGJkMDMzZjI5MGJiYjp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiMWNiMjYzNjEzMTFhNDg0ZmIxMzIxN2Y4OGIwZGFiMDEifQ==','2018-02-02 10:23:29.204276'),('94be85skqi6zbt0j6toqno6uhixj0s1t','NjA0MDRkMWMzMWY1YzU4MGI4MjQ1NGRkYjk1YWIzNDFmNzUzYjJmZDp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiZTYwYWZjNmIxZDE3NDhhOGIwZjEyYWI4NmJlOGY3MmQifQ==','2018-02-02 07:16:06.954698'),('9537wsuv1u9hhhtxr9pdx4coavfdqhwq','OTdmZTY2MGJiMGU1MDhhNGIxZmIzNWZhMjZjNDZlOWVmMmNjYThiYjp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiMmJiNTUzOGJkZjIyNGRlZGE0NjNhNTJmMWFlZTViODgifQ==','2018-02-14 09:57:29.404005'),('98dal756h64l6dp79w66ira342d2n5fo','ZDMwYmJhMjc0MzhmMmFlOGJiYmVmZGRmMWFhYzU1MzJjMGY5MzY4Zjp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiMmY2NDc5NDkwMmRlNDljZGI4ZjRiMGEwZjVhNjQwZjEifQ==','2018-02-12 13:33:17.801734'),('9beorjst1dz2q7nd0qogdvmceht4gcgx','ZDExYWYyZGY5ZDExZWUyNDFhNWFkZDU0OGI2ZTI1NWExYjU2NGM5Yjp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9oYXNoIjoiYmY0ZWEzMDQwZjc1NDUyMDBjNjExZGY3YjRjYmMyMjc2NWU2MjdjZCIsIl9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiYmVjOTllOWI5MWQ2NDljYmFjODQ3YzdmY2M3OWExMGMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9','2018-02-06 13:31:22.247055'),('9h5evsfmqt3439037he9xm7r2uf2mmsk','YTc2MGRiMzY2YmIxZWU3NjlkMDZjOTQwOTEyMzE2NjY2OWY4NmE0ZTp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiYWUxZGQ2YzJmNDZkNDFjMjg5YjY4MDkzYmU3NjZhMmIifQ==','2018-02-07 11:39:04.034832'),('9imbyen2qlkg33yuu6687ipoyofa3fmf','ZmE2YjcyNjhjYWY5M2Y5NGQ2M2I2MGYwNDJjMzYzMTkzNDhhY2I2YTp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiYjkxM2NhNjIwZmMzNDY0OTg5ZDYwMGIxNzYyMWM4NDcifQ==','2018-02-07 07:40:10.080728'),('9o0w37v4yn3l7upm7o004uvipnz3kejm','ODBmM2I0MDk4ZWRkNWNmOWExNmU1ZmY2NjYyZTgwMzkwZTYyOTA2Njp7Il9hdXRoX3VzZXJfaWQiOiI2IiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYW5vbnltb3VzX2ZvcnVtX2tleSI6IjliN2YxMjZkZDljNzQ2Njc5YTUyMWQzNGJiNGRiN2FmIiwiX2F1dGhfdXNlcl9oYXNoIjoiYzhiNTNkZGU0YjZjYzA5MWIwZTliZjM0MTY1Y2JhNGJhYzc3ZjdkYiJ9','2018-02-07 12:05:40.960355'),('9oc247g62jrjtscn4ammrj0cwbfwjarj','YTU4MDhjMzI1YTgwOTdiY2VmOGU0NTA4ZGYzZjhkZWE5MTcxNDQyYjp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiOGY3ZTY3NzNmZDFlNDdjZGE0M2ZjNWY1ZTcwMWQ0MjkifQ==','2018-02-06 15:51:45.653580'),('9rss0ym4knuto9ijfnqnmrara182z2oi','ZjFkNTE3YmY1ZDFhODA2MzU1OWE0NmIzYTk1N2JiZDc4MzFiYTdiZjp7Il9hdXRoX3VzZXJfaGFzaCI6ImJmNGVhMzA0MGY3NTQ1MjAwYzYxMWRmN2I0Y2JjMjI3NjVlNjI3Y2QiLCJfYXV0aF91c2VyX2lkIjoiMSIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2Fub255bW91c19mb3J1bV9rZXkiOiJiY2FiN2M0YWYzN2E0ZWQzOGQ3NTAwYzY2YjdkNTU2NiJ9','2018-02-01 09:50:33.928681'),('a1r3887bcyyphig0bg02yi7t7fn6zfon','ZWZlMzEzZmIzYzBhMjEwMmU5ODBkZTQ1MzRlYzQwM2NlYTVjYTJjZDp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiYzNlNDVjNjIwYWNjNDUwNWJlYmRkMDNlYWZiNzA1N2IifQ==','2018-02-14 10:31:57.629868'),('ad7dlrbmbcbfa1uhtrdb7hg6y2sq63kp','MzE4YjdkYTVkNzRhYTE0OTA2NDI5ZTU1YjY0M2M4Mjk1ZGM2ZWM0Mjp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiNTk4ZDMwNjY4YmNkNDVjMDhhYTQwMWM3YTExYWNmODkifQ==','2018-02-12 11:33:01.981778'),('aj89ewtxzgh3ho15nzmmmsa7jcdi2762','YTBjZmQ3MjNjNWMyNTAyZGM5OGNjY2VhYzZiYzU3NmZhMzU2ZDViODp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiNTc3M2UwOWY3MDE3NDJmNDg4ZGYyYjQ3NTNhMjEyYTkifQ==','2018-02-01 09:51:08.752429'),('akeqxao9t038vmsov5nlrd9oeimlcdef','NGQ1OWI3NDRmNTE4MzM4NDI4MDRkZWI1NzU2NmM5OWVmYTFjNGFmYzp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiMzVhZjkyOGEwOTdjNDBmMjk2Nzg1ZTY0YTM3OWRlMDAifQ==','2018-02-02 11:07:49.048700'),('amj84xuwhrvmmyj4hyosohn8lcgenfqi','MTAzZjgwNWRjMGY5ZmZjZGEzOWUwZDA3YzNmZGZjNTBmMjRhZTZiMDp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiOTQ2MzlkMzY3YWZkNDI3YmJhNDE4YTljMTE2MWJhYTAifQ==','2018-02-02 08:05:47.939156'),('args2y3h4gvqe7pzvnicxa39duhriwot','Y2ZmODc2NGI5ZWQ4ZTVhMDFhNGMwZjRhZWE5Yjc2NDUzYjdiYWU1OTp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiYjFmNmNiNjdmZGQyNDk3NzlhMjgxMmQzYTI4MWViNGQifQ==','2018-02-08 06:59:18.241215'),('b1wz7nf6k8ebent9ny55cgfxhadak6a0','MmJkMDYzYWMyMjk3YmUwODQ0MjQxMGM4ZjkyMWY0YzEyNDQzOTNlMjp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiNWRiN2Y4MzVhMTA1NGFiOGJiOGIxNmJhYzFlMDFhNGIifQ==','2018-02-07 15:11:06.391690'),('b2wth0w451gjokyi8pnio60nwdbyf6r0','NjUzMzllOGM0OGFiNGJmODY4NDljNjNiN2MyYjYyMDNkYjJlNjkyNTp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiZDNiYWZhMGY2NDNjNDg0ZmI1YzMyMTZmOTVjNzE0YjkifQ==','2018-02-14 06:25:38.780666'),('b4kjowypbzuyhtuvwjyouciwq1xvpph6','NjgyMjg2NTIwZTg2NzJjYjU4NzAzNzU5YzE4ZTM4YzViOGM0N2Q3ZDp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiNTE1ZmE5MTJmMTYzNDFmYWEwOTliZmNkZDRjZmQ5MWEifQ==','2018-02-08 08:03:27.725974'),('b5zw1fw38esjezzdls5uh6gt0jhrpjir','NzMxZDBmNDc0N2ExNzVhYTAzYmRlYmE1YWU1N2FhYmQ2OGIyYzU4NTp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiMmM0ZmMwNzY1YjFhNDU4MjlhYTdiMDQxZDczNTY0ZmUifQ==','2018-02-05 19:00:18.147215'),('ba1rx3jhw1o3o6ca0mretinq95sbtayv','ZTRmOTk2MGU0OTlmOTY2MWNiNjc2OWY0OGNlMTkwNTUyMTJhOGVlOTp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiMTE0YWFjZjE1NTIyNGFmYzk1YjMxZjJmM2JhOTMxZjkifQ==','2018-02-14 09:55:58.171418'),('bcnk0rre5lrzxcocb645rdg1vc6w5k5h','NTkyNzkyOWIyNmNjMzhmOTNlYTk5ZjI4YmNmY2YxMTA5MzE5ZGI3Njp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiYjBlN2EwMTI1NGY3NDEyYWFlYjk3Nzg1ZWEzNWQ2OTYifQ==','2018-02-13 05:07:51.822915'),('bl04lk8oumnj0mlqx7b0ke67aqt24b4w','MzZiYTY0MzA5NDY3MGIxMWE1YjhiMWI4MzlmNGIzNTE2MDQyZmQyNDp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiMjBjYTgzZmU5OWYzNGNiOGE0YjY2NTM4NWU3YTg1MjYifQ==','2018-02-07 10:57:16.625086'),('bmh2zqdtnbbaxpbcyk9j8c9s00codtsl','YzU1N2MzYWUwMTc0ZWU4Mzg3MzMzMDFlMmQ3NzMzMGRmMmQ0NjYxMjp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiNDcxMjBjNTI0MDQ4NGYwYjliNmE0ZDljZTEyMzA0ZGMifQ==','2018-02-12 05:47:52.669873'),('bohhpy3ut27djfnjtudxjgwrvfyyvslq','NzQxM2YwMTllZmVhZTJmY2Y3N2E2NzBiNGUzNjQ1ZmZjMTY5NzliODp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiOTNlMjdjMzAyOTk5NDgzYWExOGYxZDUxNjllNzhjZjUifQ==','2018-02-02 06:58:30.196880'),('bp9rskbhnar3l9l32bwjv5nxsn0oxe37','NmNhODU3ZGQyYTllMjMyMDU0MWI0ZTVhZmU3MDc0NzMxMDk5Y2ZmMjp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiZjg3Y2UzYmFiY2EzNDQxNjk3NDBhNmFkMWJiMWVlNWQifQ==','2018-02-07 07:16:03.080504'),('bpp6iruisru2logrnv96ffk20uovomme','MDdhNzlkNTBlNTYxMjRiNTljOTRhZDQ2MWI4NTA5NTY3OGJjNDg4Yzp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiMTY4ZWI1ODBlZGViNDY3MmI3ZmMyNDNlYzFlN2Q4NTEifQ==','2018-02-06 15:16:03.576393'),('bqw379xyl2crjtae2gxdyrjbq4qelpou','YzNjM2RmNWE4Zjg2YTBjODYxMmFhNDhlZDgyZDkxYzc2MjQ4OWM2MTp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiN2ZhNjY3M2NkZGJiNGMzMjlkMjRhNThmYmM0ZGZiMGUifQ==','2018-02-15 08:47:01.959564'),('btet4cpfhty536v3l5gff4jb17g6w6y4','YWRhNGJjZGU1NTQ5MDFiODYyYmYzYzU4Y2E0YTI5ODA0Yzc0NTQwZjp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiYTNmOGMxN2RjZmEwNGFmZGFhNWEwNDZjZmNiNDBkMTkifQ==','2018-02-07 10:21:45.384881'),('bup0emuxz04ljvrj4e3yvporzgrx5cit','NGE5Y2IwODljYjZhOGRmZjgwZmViOTM0NDRmNzRkMzJhNjE0MzdiZjp7Il9hdXRoX3VzZXJfaWQiOiIxMyIsIl9hdXRoX3VzZXJfaGFzaCI6IjA4NjhkY2RjMWEyNTdkOTA2MzY4Mjc2Zjk2OGJiM2U1NWQxMGEyNWQiLCJfYW5vbnltb3VzX2ZvcnVtX2tleSI6IjNhYzQ0ZWU3NGVhMDRiZDc5OTBiYmY1NWQ1ZWZkMjBiIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQifQ==','2018-02-07 12:47:27.299204'),('buu09sst2zyqzx7oq1hm78wl01hmf21p','YTAyZDk1NDIxNTYxMWJkYjE3OTE4ZTgwMDBhOWFiNGM3MmU3NDkwNzp7Il9hdXRoX3VzZXJfaWQiOiIxMyIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2Fub255bW91c19mb3J1bV9rZXkiOiIxNGQwMjFmN2RlYTY0YzYyYjA0ZmVhMzE3Y2Y5ZTVmNyIsIl9hdXRoX3VzZXJfaGFzaCI6IjA4NjhkY2RjMWEyNTdkOTA2MzY4Mjc2Zjk2OGJiM2U1NWQxMGEyNWQifQ==','2018-02-07 11:48:12.116270'),('bxde9x2aydpz7hjtnqb6grukrng8pncj','OTdkMjFjOTE3Mjc1YjNiYjYyOWJkODMzNDMwMzQ1OTdjNjNkNjY2OTp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiNzBjYmM3YmY0Y2MyNGZmZWJlMTVlZTg1ZjYwNzI3YzAifQ==','2018-02-08 06:16:51.779259'),('byb1149vtsx4yb3l8fn220xc1yv8u651','NDEzYmE5MGQ3OTA3Y2RlYTQ5ODZkZGNkMGJhMDY1YjVhNDEwOWZhZjp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiMDQzMzIzYmI3ZDNlNDc3ZmI2NTk4ZTI3MTI5ZDcyNjcifQ==','2018-02-03 14:25:00.321838'),('c4gnqziegi8fplke9sqslaq1x1ct7kax','OTQ2YTMyZGY2OGI0Zjk2ZjczNTFmMjdmMWUxMDA2MGMwNTBkNjM3ZDp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiMjk0NWVkYjRjYTE0NDM0NjlmOTY1MWUwNmQzYjVhZmMifQ==','2018-02-04 16:20:55.522055'),('cebw4p6nz8o179c5yafbywi6u1tl9rze','MmU3ODUzMzk1MTllMTY2MjlhOGQ1YWViOTU0Njc4YWNmMjMwYmM4Mjp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiMzFjMmExZmQ3M2ZjNGEwZDhmZmI3YjZkMWMxNTE5NDkifQ==','2018-02-12 12:15:34.780834'),('cjf0gxftt2bqd0o0gnby275w8asr40zf','NzFjYmViMDM5YzFkNzRhYjhkNGJiOWM0NDE1NTc4YjM3NDY1MTc0Yzp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiN2M3YjUyZDExZDFiNGM3Yzg4ZmFhMmZkNzFjNzdiOTcifQ==','2018-02-14 09:47:05.134999'),('cn03xv8mxnfszi8qwq96sogbejsdl682','Y2Y4MzAxYjM4N2M4YmY2MWUxYTc4Y2ExMjVkMTk0ZDc4MDNiMTM5NTp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiZTE4NDM0MTIyOWEyNGRkYWI1ODlmNzFjZDIwMDMxMWYifQ==','2018-02-09 16:28:17.574494'),('cokwt598vihrwltarf9hdfsmsovtl9r8','YzE5YWU0OWQ3NzM3NmQ4ZjFhYjhlOTUzODUzNmU0OWE2MzdlZmUzZDp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiNGJhYjNiNDA3ODgyNGI2MWFkZGU5ODhjMGEyYjBhYzUifQ==','2018-02-07 06:54:04.068254'),('cqts2a1uwh3mz95a1bmbvnnjxokpzeyr','YTY2NjYxZDlkZmI2YzlmZWUxYTExNmQ2NTgwMTMyY2M3Njc1OTc4MTp7Il9hdXRoX3VzZXJfaWQiOiIzIiwiX2F1dGhfdXNlcl9oYXNoIjoiZDIwYzkxNWNhMzIxM2VmNmJmOTIyNDVkNmViZjIwNDNiMzkzZmQwNiIsIl9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiMTZiMDcwNTRmNmJjNGRiZGJhYmZiMGYwN2M5Y2IyMjkiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9','2018-02-07 12:19:39.228449'),('crgbe4hafv1an587ui6kr87e3nlxfdr0','Njk0MmViNjkzMmZkZDZjYjIxZDVhZTI3OTU4NTFkNzI3MDQ2ZTEyODp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiNGYxNzkyODUwNDljNDI0YmFhYzFmMGRjZmFiMWU3NGEifQ==','2018-02-08 05:41:26.371889'),('crhoe3pmnhbuxkwjy3kuqn54hakymdl1','ZWIyODhkODQ0M2RiNjRjMzYwNzM0OTdjOGI3NWI2MWJmOThlYjMwNDp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiMzgwOGVmMTEyMzNiNDE1NDhiZTM1OTEyM2ViZWQ0NWQifQ==','2018-02-07 11:43:48.408499'),('ct29i1zlt1nzxrhi39077y2s649zfrry','MjgxOWM3Y2I5MjE2YWY4MmQzMWNiYTViNDcyNjQxMDEyZmUxMTBjZTp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiMDAxYTAwNzY3NDBkNDMxM2IzNjJkZWIwYTI5NmVmZDAifQ==','2018-02-01 15:26:48.390434'),('cv4sumnly4s0qhrjd5qjqlv1d67c0984','ZjY0NmZhY2U3NTY0YzNiNjBiNTZlOWYzMmE0ZjQyYWZmNzI2MmQ2OTp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiZmFjZmFiYmU4YWQ2NDBlMGIxM2RkN2I4OGZlODE4NmEifQ==','2018-02-09 16:28:24.888151'),('cvmqjjgjz299xrd3qhrj2of52a8ucvbn','NDBlMzY1MzZiYjE4OGM3Mjg2ZTE4OWMzMjNjZDMyMjU0OWZmNzQ4ODp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiODVhYjgxODBiYzJhNDE2NmEyMzA4MzBmMzU3NGRhNjAifQ==','2018-02-02 14:23:56.496456'),('d0xeeip311lgilx6qqy1pb4thbpf7elt','N2RkMGNiOGU1NjUyNmFiYTFiNzk2NThjZWQ1MjZhZDc1YzZlZGJkMzp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiNDEzN2RlZjc1NmZhNDMwNDhhNzFjZGQ1NzFmYzY4YzMifQ==','2018-02-02 09:53:51.118821'),('d4fql9pml944uouf72gjupknttvkzmbt','NTMyZTIwZmMxMjk3N2M2NDUwNjE5MzUzOGQwNjBmMzBlZDZhYjEzZjp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiMzFhZDFiZmQ5ZDEyNDA4NmIzMzdiODJkNzUwMTdkZjYifQ==','2018-02-07 13:35:54.363676'),('d4lvjgzjg1en6odbxpdxbdr1c7eqcqbd','NDJlNGJkNWYxMmEwOWMwNDEwNTkyMWNjMmRlNzlkNTZiMmNkNWZhMTp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiYzI0ODYwZWQ0NjU5NDgwYjhlODhjYzU0YTMzOGY4MmEifQ==','2018-02-14 08:22:13.413348'),('d573w4x10gqywsl5gdmjw1lohrmqndip','NzMwYWM4MWM2ODg3Nzg2NWRkYzg3MDRjMGUxZGU0NjNlMjgyNmM0MTp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiZTdiZmEzMjM1NGNkNDAzMGI3MGJiZDUyMTdhZWI1OGYifQ==','2018-02-06 14:10:48.056785'),('d9v29pz0fma6rhg8ex5bl5x1zbgskhxx','YTkyMTQ2NGU4ZTk5Nzg2YjQ5MjA0Mzk3MjUzMjEwYTY2YzY3MzJjNTp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiZDc2OGYyYjk3ODMzNDVhYjg4OGZiZDBjYTZlNWM2NTMifQ==','2018-02-06 18:14:04.663535'),('dbpx7oizfuhyfiqhp6seqvufe1rb9prd','M2Y4MTZkMDYwMzY3OWJmNThjZWUzMWJhNTg4ZDBhYjE2MjhiN2ZkNTp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiZmM1Y2E1N2U3ZTE3NGY4MTk2NzBhOGNmZWZlODUzN2QifQ==','2018-02-07 11:52:02.388772'),('dbrmkgwoin7zscjsflvqu2dhovh1sz73','ZmQxNmZjMDRkYWI1MGQwN2U2Y2NlYTZhYjAyNWZlZmY0OGYxODBmYTp7Il9hdXRoX3VzZXJfaWQiOiI3IiwiX2F1dGhfdXNlcl9oYXNoIjoiZWU0MDk2OTk3MzBlZGU3Yjc5ODYwZWY4MTM0YmEzNWZhMjdhMjIzMSIsIl9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiMDA2YWNhNGRkM2RiNGFiMTljOTljNjI0NTk0NGU2OWYiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9','2018-02-07 09:32:02.562954'),('dcjh8qk2c80qtb6fa41je0si3w2gq5a5','N2U3ZWM0OWE2ZDM2YjI1YjhkODc3MGJkYzQyOTIwZDUzOTVjNGJiNzp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiOWI5YTM2NzM2YmI4NDdhYjkyNjUwZTZkZTE1MDM1ZTQifQ==','2018-02-07 11:24:37.290033'),('deakd8i68rovsjrfxtdgh78f23enn1qn','ODE0ZjFiNTE4NDgwMjE5NmRkYjU4ZThiZDAxNTA2NjQ4MzBmZWEzNjp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiYjU5NmViYTVhYjgwNDhmZWFiZjQ3MTM0OGQ2ZTIzODkifQ==','2018-02-08 06:12:07.426927'),('dh956q2bhb0xdeesueb3o1rpc2ksngc6','YzQ4ZjBjNGY1NzI2MWYzM2JlNDFmMjQyZjJjNzE0NzZlMTQ5OWRmNTp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiZWYxZWE5NGE2YTBjNGQxOWExMmZlM2U3OGJmNzU0YzcifQ==','2018-02-05 11:21:19.614504'),('dht49izkjhjwpypvuljqxiflhn0pukmr','YTNhZThhZWZkMDk0NGJkMGVjMDUyMDg3OTExMWRmNWRiZTk4NDdhNjp7Il9hdXRoX3VzZXJfaWQiOiI2IiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYW5vbnltb3VzX2ZvcnVtX2tleSI6IjZiNDAyOGI5MzFkNjQ1OGNiMWFlYjU3YmY4NTMyOWQ5IiwiX2F1dGhfdXNlcl9oYXNoIjoiYzhiNTNkZGU0YjZjYzA5MWIwZTliZjM0MTY1Y2JhNGJhYzc3ZjdkYiJ9','2018-02-07 11:32:07.821765'),('dnaeb8o6660xjxczq5svva46272pwlrl','ZGVlMjhmNjMwMGY0MWQ1MjBkMDc0MzRhNmFkZTY0NjU2MmRmYjE4Yzp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiNGMzOWE5MWNhMzEyNDc5MmEyNmFjMWI0YzA1YzJhZjUifQ==','2018-02-01 12:05:49.765748'),('dq03bmy3iyank8qy2ajmo6xbind6wtlk','YWI5OTA0ODJkYjM1ZGRjYWM0ZWRlZWZmZTJmMzNlNmE2ZmM5YjVhZTp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiMmYyODQ1M2ZmYmQ4NGNmYmIyMDcxMDYzOWFmNjg2MDUifQ==','2018-02-02 07:38:26.672093'),('dq1cnl2lrkzcjvt5smx6wa5ktx3rtphv','Y2JhM2FjNjcyNzE1YzkwNjA5ZjQ4MWYwOWJkZDAyZmYyYTQ4YTQ3Nzp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiNDExMDViM2UyNjQwNDljN2E0MzQ5NzllMWJiYmFiYTgifQ==','2018-02-12 11:33:02.387199'),('dttpewx9ni1gu3hx5r2db5iyr34us503','ZTIwZTI2ZjU0ZTRlMjJiM2EyNmIzMzU0NTBlN2ZhNTFlMDg3OTgxYTp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiY2Q2ZDA3YjZjMjhiNGE3ZjhiMmU3YzMzMzRiMjQ1NDcifQ==','2018-02-02 07:16:19.188714'),('dv9m8wqovgl7w8emc6tu4b5rkkeysf4x','MzNjZDIyZjE1MzNlZjBhNjIyODg5MjRjYWI4Mjc0ZDYyN2U2MzVlMDp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiMjhjOGE3ZTlkNTI2NGMxZmJjMzcwMzI1YWVjMWUxNTkifQ==','2018-02-07 11:02:11.184672'),('dyrxfsnb9sh7ug4ieda2dbaadpebici3','MzIwOGQyNWYxMTc2NmI2ZWJkZTA2ODdkODkwZDE1ZWFiZjllNmI4MDp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiMTM2OTM4NDZjMDE0NDhjYThmMjA4ZTNkNDFhNmNmYjQifQ==','2018-02-02 13:17:28.307992'),('e2ljimbjete946785ehowf7lpl7v5yzo','ZjNmYzFjNzA0ZTM4ODU4ZWM3MmNiNGU5NDAzNzJmNDMxNDA1YzVmZTp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiOTUwNDhlNDY1ZTliNGZkMzk5OTJiYWUyNDQ4NTQ0YWYifQ==','2018-02-03 08:04:48.079199'),('e4lsjc5tfpdsri4zvkuynv7r58rodwm0','MmJkZTg4NjkzZTVjZjZkZmU2MDRiZmI2YzVkMmVjNWMyMjFhNzMxMzp7Il9hdXRoX3VzZXJfaGFzaCI6ImJmNGVhMzA0MGY3NTQ1MjAwYzYxMWRmN2I0Y2JjMjI3NjVlNjI3Y2QiLCJfYXV0aF91c2VyX2lkIjoiMSIsIl9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiMjEyZDdhMTk2OWI0NGZhM2I0ZDU0YmRjNmM0YTU2YjAiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9','2018-02-07 14:21:49.402666'),('e6gcoh7062hy4nayb7bxpouj4m7df6zz','NWM2MjE4MWI1NzU0OTRhMTMzYmMwMjZlYTU3ZDBjODYzM2I1NTMwNzp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiODYxNmE5MDFlNGY5NGE0Mzg3ZDQ3YzM4MDM3ZGNkM2EifQ==','2018-02-14 07:03:42.777526'),('eb0bnpwe538wtwr899h9uf5jtmrl0550','ZDY4MmYwOWUzOGM1YzA1NjU0ZjM3ZWNhMzlhZTJiZjk4MTI2YjVlZTp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiM2NlYzNmZDhhMTcxNGQzMjk5MmJhZDIzNTdkYzIxODYifQ==','2018-02-03 09:52:18.164329'),('ee1t480zvvv986dq1nw6erc8wojlhu3e','ZTg1YzBlZDRiYjAyODM5NWQzZjY2YjMyNWVjZDJiZGZhOGE1M2YwMTp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiZTNhN2UwN2E1ZjZjNDg4MGI5ZWZhZmU1MWNmNmM2MzEifQ==','2018-02-14 06:35:47.232165'),('ejnilv8iyh8iy8eiiyz1extqawu4z0li','NzI3NWU1NTU2Njc0MGM1NWQ3MTZlOGFhNzdjZjY3YTI3MDkwYjlhZjp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiMzg5ZDIwNTQ1NDNjNDY5M2FhNmZhMGE5MGM4MjI1M2EifQ==','2018-02-02 06:16:33.716148'),('ew2ajoxxb2kwjd4craiscemo0lhteydp','YjVmNWJjZDJhM2UzZjdkMzY3MzljNWMyNjU3MTgwYTVlNTljNjFhOTp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiY2JkZWQzZDc5NzI5NDhkOWJkNDgwZGZmNzZkMzc5MDkifQ==','2018-02-12 13:49:49.031732'),('ewcmz5bq96ldwdjdrge1qr3eb7ig4cfw','MWUyMTEyZGYzNjViMjcxZjQ3ZTg2MmFkMTFmMWI5ODM5ZjIxNGYwNTp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiNjdlMzJlZDAwYzViNGYxMTkwYWMzNTNlOGY5OTFmMWMifQ==','2018-02-07 06:32:25.686511'),('ezqhlxj8x9riimy0e3dyxglixns6rq3d','NGE2MTNlYzQ5ZTc0ZDI5YzNhMGJjNjZhMTY4ZmM3MWU2MDkyZDFjNjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiYmY0ZWEzMDQwZjc1NDUyMDBjNjExZGY3YjRjYmMyMjc2NWU2MjdjZCIsIl9hdXRoX3VzZXJfaWQiOiIxIn0=','2018-02-07 15:42:23.853102'),('eztb3f1ml56834of89abd6i3wt8q0om4','MWRjYjRlMGVlMjYxYTFjMWE2NzNkODczNjAxMzE4YmYwOGMzOTljMzp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiODcyNThmNTA4OWJiNGQxOGEwMTJmYTc3ZTBmMDU0OTcifQ==','2018-02-02 08:09:40.580355'),('f5ez2fcnjjj1wg71rv77qg8k8rtie7q9','NDI5ZTI1NTdkYzkzMDY4ZWQyZTY0ODA5YTM0ZGIxOGE5OWQ1M2ZiODp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiZjcwNzNlNjUwZTNkNDI5NWIyZjBkYTU2MDBiOWFhYjEifQ==','2018-02-14 11:51:42.920203'),('f611idpw5xzi5edag2ke4ftb25m2rvr9','OWU2OGVmZmEyY2Q2MDBmYjlmMGY3MWJjY2JjYzg4MDE4OTIxZmQzMDp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiOTg0OGY5ZjkzODgyNDk0M2FhYjE2NzhhMWViMmUwM2MifQ==','2018-02-05 07:53:38.197670'),('fakk0a02m65o0id13fnaqcbxehb0rzf8','NTcwYzIxZjY4N2FhNjljMTU3ODJmN2MwODUwMWRkZjk5MTFmNWQxOTp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiMTBhYmM4ZDhhYmQ3NDJkODkzZDhlZGQ1OTRiNTJiNGMifQ==','2018-02-08 08:24:23.850424'),('ffyc4o4x53m1e11m5v9r907koqlrkiyp','NTVkMDlmOTM0MWVkMmE5NzJjOTA2ODBkZWE5NzA0ODBkZjY0NWYwNjp7Il9hdXRoX3VzZXJfaWQiOiIzIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiJkMjBjOTE1Y2EzMjEzZWY2YmY5MjI0NWQ2ZWJmMjA0M2IzOTNmZDA2IiwiX2Fub255bW91c19mb3J1bV9rZXkiOiIwYjNmMDFkMDYwMGE0YjBlODk3ZWM4NDIxY2E4ZGNiYSJ9','2018-02-02 13:57:58.465454'),('fmsyqtmgxxrqw96b59w87f9ni6uq51p7','OTk4ZDM0ZDAxNmRhYmNmMzJiODhmNTYzMWQ1YTczZjc5NGM0YTE0ZDp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiNmFmNThlMjYxMjQxNGM0ZDhiNTE3ZmU2YzdhMDA2ZDEifQ==','2018-02-07 12:03:49.130935'),('ft3znvddoxs6gvduhv7wls16q9ngje63','MjA2MGQ1YzE4ZTU3MjFmMTdiMjlmNWM2NzcyMDZkMjJjNWE4ZTIzNzp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiYjRkNjcxYjQ3YjMwNDRiNTk0MDZmOTZiNGFjNWQ1OGIifQ==','2018-02-14 10:51:05.943728'),('fx0guenwd14y2o9q7pschyh6qoxixjg7','MWNmODc4YTJiYmRmYWNiMDFlY2NjZGFlNzJlYWQ5M2IyZTM0YTcyZTp7Il9hdXRoX3VzZXJfaGFzaCI6ImM4YjUzZGRlNGI2Y2MwOTFiMGU5YmYzNDE2NWNiYTRiYWM3N2Y3ZGIiLCJfYXV0aF91c2VyX2lkIjoiNiIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2Fub255bW91c19mb3J1bV9rZXkiOiIyNzU5ODQ3MjBiYjA0MGI0OWYyZDhmODZjZWZjMTQ3NSJ9','2018-02-07 14:32:21.475114'),('g0ej312kc41zfawrgprttcawf54lj9pu','ZTM1ZmRlMzYyMWM3ZTRjOGFlYWU0MWZmMmJiOTZiZGMwMDI5N2I3NTp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiZThkY2ExMjZjYmY3NDJlODliODA5MGEwNGYyZGQzZTUifQ==','2018-02-06 15:20:47.987358'),('g93pi3o4zkfuo2zpds0rjskm6wnjiwyl','NjM0ZGJiZTU2ZjM3NDg0ZjZjNDkxNDBhNjkyZmZmZWVkNWFjZGM0Zjp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiZDljYmE0MzhkMmRlNDI1ZmEyMGRlZGVhOGIwNmZhOGEifQ==','2018-02-07 11:06:21.875560'),('gevnh6hddna7cu0x0yq37zpfhjoaef8e','NTlmOTAzZDZiYTkzMzMwZmJlZDAyNTU3N2NmZTE2YzJlMDMzYWQ4Nzp7Il9hdXRoX3VzZXJfaWQiOiI4IiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYW5vbnltb3VzX2ZvcnVtX2tleSI6ImM2MDhjOGJiZTU4NDQyNjFiYWQ3NGIwMTQ5MzZmMzZmIiwiX2F1dGhfdXNlcl9oYXNoIjoiNDc4OWFkMjkzZjUzOWZiZjBjY2NmNmVlNTNkNTFmMzIxZjM4NjFiNiJ9','2018-02-07 12:10:14.834029'),('gfjq4aojnwhjchz98obxebk5rbloq8w8','MTRmNDc0MGI1MTc3YTQxOWNkNjNiMjI1YmQwYTYyMjYwZWY2ZDA0OTp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiMjNjNDk2ODdjNGUzNDNiOGJlNGRhNzMyMzQ5ODVlY2UifQ==','2018-02-13 05:07:54.792951'),('gkofoyy76x8d42apj8tunyyww12ld10r','YzQyODdjZGQzODdiNjJiMDIyY2ZiYTA3ZTBjZTUwYzNmMThiZTMzNTp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiZWI2Nzg0NTJkYjFmNGM0Mzg4ZmY3MjZlNGEyNjJjZmUifQ==','2018-02-14 06:30:31.634891'),('gtwdpmzr2sqs24d5qrk33lxe8gyzyzxb','MjQyZjI4ZmI3NjAwZThiZTEzZDE2ZTcwNTQ4OWMyMjE4OGRhOWM0NTp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiNWY3Y2NmOTFhMTYxNDRjNTliOGEyZjlhOGMwMjE0NzEifQ==','2018-02-08 08:03:15.773114'),('gy2ew0bxm8y3v6rx9gdlug4tk3aft6tg','YTFiN2YwYjhiZDM3NjQ2NzNmNWE3YTQyNjMwNDBjOGM0ZGFhYmFjOTp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiYThhNWM4MTZmN2UzNDYyYmJhMjE4MGNhNDc1N2MyZjUifQ==','2018-02-05 08:11:19.476536'),('gz8tf8m8hxnxggptwpp7szya1s4qd3pf','ZGMzYzg5MTIzMTI4ZTM1Y2E3NGJhNWM0Mzk5NTFjM2EyNjkyNzljODp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiODdkNjdlY2Q1ZGViNDRmYWEwZDQ2M2E5MzU4Nzg4ZTAifQ==','2018-02-01 12:30:03.344792'),('h2hn9bwme1o46ct6pxu86l7wfkbes98p','YmQyMjRjNGQyNGEyYTczMjRhNTE3Yzg3YzJjMTJkODE5OGM1NDMxMzp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiZDljYTIyNzE2ZjVjNGEwNjllZmY1OWFjMDY3OTY2ZTQifQ==','2018-02-15 05:29:37.653314'),('h4ms0szohtc63rsac3nvn2282hhy7vlg','YzhkYWQwNWU2OTE4Zjk1OWUwODE3N2MwZjVkMTYzZDUyNGQ4OGQ0NTp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiNDkyMzMwOTZjZTY5NDMwMjgzZWIxYzc1ZDI3ZDMyMGEifQ==','2018-02-07 12:15:23.159202'),('h74mh0pbvvlhp7ahqmufi5xov3chh5xe','NmQ4OTNkMWZiY2RhYjMxNzdhNjQxYzIyOTg0N2VkZWRmYTRjZWQyMzp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiMTY0MTMzN2ZkZjc5NDk1N2I3NmU4MjY1OGQ1ZjJhY2YiLCJfYXV0aF91c2VyX2lkIjoiMyIsIl9hdXRoX3VzZXJfaGFzaCI6ImQyMGM5MTVjYTMyMTNlZjZiZjkyMjQ1ZDZlYmYyMDQzYjM5M2ZkMDYiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9','2018-02-08 07:25:06.315080'),('hdi9qfqyen3gtgbh3tz74p0b5dwqa2ny','ZDU3NGUzODU4MTEzNzhmNDJlYzgxY2M2ZDAwYTlkZmNjMzA1N2MzNjp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiNmNlM2MzMGEwYmZhNGMzZGJjMTRjZmNjMGFiYzU5MmQifQ==','2018-02-02 10:09:30.138411'),('hm5hicpqgwupggyrlhtq8mwwcz71uhbm','ZjE2N2NhZDYyZjFkZjI0YzIxNWQwYWEzZTQ1NWIxMzg4NGRiMDNlNTp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiZmJhYWM2NWQ0YzE0NGFmMjg4NzAyMjZjZWVmOWE3ZDkifQ==','2018-02-06 15:11:03.581461'),('htweobe3y8s4ch2kjqczf7zjjtorunma','M2ZlMWE3NjkxMmJiZjg3NTRjM2I0NmMzMGJmZjU5NWI0MGM2MjAyMTp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiNTk3OGZiOGQ2ZGQ4NGU3ZTg5YjVmNDhmMzllZjg1ZGUifQ==','2018-02-01 12:39:34.774905'),('i0xttwndrdkvvxcsutcp91ntsjvg86e3','NjZmOTc5MzU3MmMyYzBmYmYyMmNlOTcxYWNiODdlYTk4Yzg5ZmU2Mjp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiYzI4NWM0ZWE1YjVlNDBjNmE3ZTI5MWI1ZjEwZTg3ZDIifQ==','2018-02-05 18:27:21.375856'),('i5ewti9zx1dsf7dcu0juc9sd8jkfl1km','NTE3M2NhNTQwNzk0ZWJmZWEzYzA2NzAwZjUxNDI2MjVjNzE0MzQxMTp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiNTQzNGY0ZjM1NDYzNDI1NGI3NjVkMTgxMDIzYjU3NjciLCJfYXV0aF91c2VyX2lkIjoiMSIsIl9hdXRoX3VzZXJfaGFzaCI6ImJmNGVhMzA0MGY3NTQ1MjAwYzYxMWRmN2I0Y2JjMjI3NjVlNjI3Y2QiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9','2018-02-01 12:47:24.364156'),('ic9fyzmjrebn31j84dxff9jarfjp2nde','NjRkNWI5NzliYTUxZmE4NjliNzIyOTI3MDM2YjlkMDJmZjMyMTAzMjp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiZWUzODNjYzBlYzM0NDYxOWE0MGE0MzE5NGFmZWY4ZWUifQ==','2018-02-14 10:37:13.255603'),('isf0rbq27ijbyc4nrkceqnddf6k131tk','OGZiMmE4YjcyMmEzMDZhMThkZGVkNjJkMTQwYTRjZjdlYTNmZTVkMTp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiYjk5YWE1MThkMWM3NGIyNDkzODk5ZDJjYzkxMzAyNjAifQ==','2018-02-13 12:45:48.056583'),('j2h2d9hhdii19pgvkszhp7ohq8h3cffq','ZjBhZjA1Y2JiZmU0ZWJhYTQ3Yzc2ZTNiNjBlN2M2Y2Y3YTM0OWQyMDp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiMmIyNjY1YWRlN2ZmNGNmMzgzMjcwNGM0YWRkYjRiMTgifQ==','2018-02-14 15:05:45.058387'),('j3tu7zdl92nqfwqefvxqkgthni0r0wcu','NGM1ZDQwZmM5MTI5NTQyZGU0OTlmNjY0Mjg0NTM4ZDhmZjhiNTJjYTp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiZjBiNmVjZTk0OWMzNGEwMWJiMmJmNzk1NGI0YmNjMjQifQ==','2018-02-15 06:31:36.746591'),('j6b79agzfdzz5iwf803954jlaqeirxzk','ZDEwZDhhNjNmNGZiMDBmNmI0Njc4MmRlNjY2Y2JhNWZjNGViNzRjNzp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiZmNjNDBjN2NhMTNlNDY1MGI4ZTkwNmM2MGIwZjFjNTAifQ==','2018-02-14 12:27:01.150614'),('j6mf1gsgf594lw4kgsssoa7lvm118107','MmIzN2EyZjU1N2ZlNjQyM2VlZDNjZWYyOGMzZjgxODdkNTMzNzM4ODp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiZTc4OTI2NDk1NzgwNDkzYjkzZWJjMTA4OGVlOTU2OGUiLCJfYXV0aF91c2VyX2lkIjoiMTQiLCJfYXV0aF91c2VyX2hhc2giOiJhMDRiNjRkNzUyYjMwYzMxZTc2ZjgzN2ZhZmFlMWQ1NDFjZTU4YTExIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQifQ==','2018-02-08 07:59:45.209780'),('j8i5pgfokrzq6w0g0xec0xqqk3r0dcft','MGE0ZTVhNGU3ZDMzMDEwYjgxYTBmNGQxYjY3YzkzZjU5NjU2MWJhMTp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiMGVhNGJlNmZlMThmNDFkOWFkN2E0ZDM2ZGExMzk4NmMifQ==','2018-02-07 06:15:54.892902'),('j991s0ffm1h9g0li60um0tuyh77aqot5','OTZiMmNiZDRjMGYxODA1ZTc4Y2E3M2MxNDk5ZDBhMTdhOGJhMTgxMTp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiZjdjNTFiYWMzYjA2NGUwNWI0OTAwYjkxN2NjOTNmNmQifQ==','2018-02-01 10:10:09.976599'),('jb5x3vkn2uenyh8jon3vpabrurkwly5w','YjA1NWVlZWYyYTg5YzExOTFiYjEyZDcxM2FjMDcxM2Q5ZWNjOTZhYzp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiYjI4NGI1ZjFiMTAxNDM5M2FhM2VjMmYwNmI3MDAwYWMifQ==','2018-02-07 10:29:34.086828'),('jbkwbbbstky4k04w854ohzvzcvyhzh8d','NjY3MWZiNmM5MzU1MGNhNTRkNjBjYmQ4ZTA2YzliZjM0OGU4OGE0Mzp7Il9hdXRoX3VzZXJfaGFzaCI6ImQyMGM5MTVjYTMyMTNlZjZiZjkyMjQ1ZDZlYmYyMDQzYjM5M2ZkMDYiLCJfYXV0aF91c2VyX2lkIjoiMyIsIl9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiNzFiNTc2MDg4MWRlNDdhZjk5ZTI5ZWM3MGM5MzdiNmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9','2018-02-06 13:34:59.519269'),('jfuz20bjfl1z5f2ub16ugh2q7ysb19rc','YTFhNTllYjVkZWY1MWYwYmJjNzU3N2MxMGJmMDFhYWUxMzM0ZTg2ZDp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiMmVjYjgxOTY1M2QwNGZkYmI3NjkyYWM4MjMxMTIxNzYifQ==','2018-02-13 19:55:57.019391'),('jhjtfnt7tb5hrhm8ivj1l8wbag2trep4','YmJkOWQ1ODM1MzRlNzgyMGRkNThhNmQ3OTFhNDYzZTRkMTU0MWMxMzp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiYzhjNGUzZDRhNDgyNDkwMmE0YzdiMGZhOGM1YzI2ZTEifQ==','2018-02-02 11:37:54.618129'),('jij6pv75zctofm80ibyftyd4diijjf2q','NWE4YmU4YTgwMTk0NjM1NWY2MmJiY2ZiMDYyZjU3NGYzNGViZjcxMzp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiYWNlYzhhNjdkNjE2NGIxY2JjMDNhZTNlOTZhMjM4MTIifQ==','2018-02-08 07:52:25.735111'),('jlll3lppzjztqfeogs0ygx1d40g7qom7','MzY3MjYzNzAxOWQzZmViZGNiZGQyN2YzNjE2ZTg3MDdmZWVjYjg4Yzp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiYjFlYzgzM2ZkM2RhNDZlZTlmMmYxZGNkNGUxN2U1NzUifQ==','2018-02-02 05:55:47.834713'),('jn01uqyofe7vj6v4gv6gker5qpd889da','YWUxMDlmMjI3MTE3MDdjYTg3ODYwMDhhNmY1MTU2ZTg5ZmU4NzFjZDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiYmY0ZWEzMDQwZjc1NDUyMDBjNjExZGY3YjRjYmMyMjc2NWU2MjdjZCIsIl9hdXRoX3VzZXJfaWQiOiIxIiwiX2Fub255bW91c19mb3J1bV9rZXkiOiJiNThhODMyMTFhODk0ZjI1YjJkMjFhMjU4MGQ2MTg2OSJ9','2018-02-02 06:39:33.873770'),('jy9aftw28mezy6hv264py5u5mthfw113','MWE4OTY1ZTEzYTZmNTJhYzYwYjNmNzM4MTQ5ZmMwNjc5NTI2YTY5NTp7Il9hdXRoX3VzZXJfaWQiOiIxMSIsIl9hdXRoX3VzZXJfaGFzaCI6IjNkOTZlMDQ0ZDQ4NTk5OGU4NWU4NDlkZjA0OTk4MGQ4OTFmZjY4YjEiLCJfYW5vbnltb3VzX2ZvcnVtX2tleSI6ImUzN2QzZDEzOGM2MzRmZjVhZjZlYTQ4ZmYxOGQzODM3IiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQifQ==','2018-02-07 11:03:39.057924'),('k6a6giu7tunaf8fyocne5bn6ovh2syac','NzQ4ZjhlM2FiYzVlZmQ0MDAzZjYyNDE2ODIwZmY1YjEwYTFkZGM0Yjp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiODY4MzYxMWFmYmRhNDdhNDk3NjYzMTBiM2U1YzZjYTAifQ==','2018-02-12 07:07:26.729328'),('k8qnljdx4ki0o61ze86no0iqi5fcsfea','YjI0YWI1NzkwNzc0ZTYyM2FiZGFkNTYwMDNmNjMxYmJiY2UxODU5OTp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiYWYzMzJkNGIxYjYyNDQwZWJhMDI4MWE0ODk2MjFiMzUifQ==','2018-02-06 08:21:14.305816'),('k9qrk7hil0obj7x9i2nkzl1hh7t8dcm8','MDdlODZkOWU1OWFlYjIwNzJhYjQwNmIyODAwYzE0MTBhMGYyNjI0MTp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiNmFlZDMxNzIyN2UyNDc4ZmI5OWUyODE0MjA1Yjc5M2MifQ==','2018-02-05 11:58:21.239618'),('kbe6k1v90t09upihmvun6e42hqauyhag','YWM3YWQzNjM4YmZiN2VmMGNkMTZmZTU3ZmFlNzdmM2U4MWU1NDM3OTp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiYzA2Yjg2OGJmNzczNDJmZWE3NTA2MTQ1YWNkODVkZGYifQ==','2018-02-01 14:00:02.574390'),('kf3ultleobgz9rkhntsxqe0kns1bhjx2','MDRlM2ZiNjdhMjIxNjEzNjU0MWM1ZGUwYjMxMDFkY2EyYjk5ZWVlMDp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiNDk2MmEwNDEwNjNmNDUxNTk4Y2U0NGNkMWNiZmEyYWYiLCJfYXV0aF91c2VyX2lkIjoiMSIsIl9hdXRoX3VzZXJfaGFzaCI6ImJmNGVhMzA0MGY3NTQ1MjAwYzYxMWRmN2I0Y2JjMjI3NjVlNjI3Y2QiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9','2018-02-02 06:37:51.019174'),('kga48tq0yatg899etuz633m3lijrsaix','NTkzZjI5MDVkZWFjNTQwZWYyYThlMWEzYWIzMDg0ZTE5YTFiYjdmZDp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiY2U3ZjE3NTk2MWQ3NDE3ZmIxMDM2NGRhNjUwOThjMWQiLCJfYXV0aF91c2VyX2lkIjoiNSIsIl9hdXRoX3VzZXJfaGFzaCI6ImFiZGQ3ODliZjliMmYyNmRlN2ZlZjA2MzFjZjJmMTAxMjQ0YmY2YjkiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9','2018-02-08 06:16:44.904534'),('khlsy97pfjmav56ba68vbmsi4tzc8w4i','ZDZhNjc2ODg3YzZjODU5MmM1ZGM1NDE0NjU1ODg2MjFlNjRjYzRlZDp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiMjE1MWUyOTU1NDE0NDI1MDkyMzE0OGU5OTc2Njk1YjQifQ==','2018-02-03 06:33:24.283166'),('kiwj59kgsfaj3asq1tmq5y1u2lv6vfhe','ZjczNzIwNzUwZGIxNTVhOWY2MjA0YTM2NzczZDYzMTk0MjE1YWE5NTp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiNjY4MTEwNjIxOGRhNDM4Y2EyODE3NTJlYjU2MDliMDAifQ==','2018-02-03 06:49:56.346382'),('kmbfrvae8z3gurd56huod5g5bhhk8pks','YWU0MmEzOWQwMzMzN2ZjMTVkNTE0Mjk4MWIwM2Y3ZjBmNzY4Mzg2ZDp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiMDE5NTM4MjNiNTc0NDVkMDhlODk5ZmRmYTk0NDZlZDAifQ==','2018-02-14 12:27:13.175999'),('kq6uji8h6q2di40ad4ect7hsd05v6gqq','ZTljYmY4Zjc0ZjcxYTg3MmI5NjgzZWU2OTQxODY5ZDJjMjJlZWUxMjp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiN2NiZDYyNWQ2YTc5NDA0YzgwYWZiNGQyMzY2NWVjM2UifQ==','2018-02-13 05:14:00.246908'),('kt1w8kiweh4eesehj1zjx7vnagffctye','ZWQyOWFiYzU4ODI0OTY1ZjI1ZjdhZmEyYmUyYjUzZjRlYTM1NzZmMjp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiMzJmYWMyNzcwODRhNDdlMmIzNzc0ZDQ0MTU0MzNkY2IifQ==','2018-02-03 10:20:05.639069'),('kv8i6nm8ec8ipww7o68yc5lxrykv3tlh','MTA0MWQ1NzdjZWFhODM1MDkxMDMwZjQzN2RlODAxN2IwNGNmM2ZjZTp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiZTYwY2M3NmI5YWU2NGJlY2EzN2EwODc3OTRjZGUxYmQifQ==','2018-02-07 06:13:56.933820'),('kxu4elmbxlxtrs7rz4zax3ebvt6lb4gz','YTVmZTU2Yjk0YjE0MWZhYmJjZTQ5YzhjODIyMmNjYzIzNzc5NTVhODp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiNDZlZWEwZmEzYmVjNDAzZmIxMjdjNzQ4YjM3ZGYxNGIifQ==','2018-02-05 11:55:22.911010'),('kyuslam7sltcu7deltqa8eb02hk12pb7','YWE0YmQwYzFhNDU0MGZiM2YzNDk5YjZiMmZmYzY0ZGM2ZWU3N2NmZDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2Fub255bW91c19mb3J1bV9rZXkiOiI4ODVlYjc4OTI4OGY0YjdjYWM3ODg3ZmI1OGVhNmUyMyIsIl9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9oYXNoIjoiYmY0ZWEzMDQwZjc1NDUyMDBjNjExZGY3YjRjYmMyMjc2NWU2MjdjZCJ9','2018-02-01 13:34:28.085567'),('kz9sav0ct3likpgutz20bo8imoer06nu','NmZiMTNmNWZmNmM3NmI3MDEyODJkODhmOGIwOTM5OGEwNzUwOGYyYjp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiMmFmODhkOWMzNWQ3NDQyNzlmNzRjM2JlZjIwMWJiYWQifQ==','2018-02-07 10:20:01.518174'),('ladjmvp4jwa2zd7f6vjsdwhddwo03g5m','YWJhNDU2MTM4YzhhMTVjNmFjNmNkOGEzODg5ZjBhNmNkYzc1MWU5MTp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiMTc3ZWJhZDMyODA2NGE5YWEyNWFiMDY0ZGQ4MzU0Y2MiLCJfYXV0aF91c2VyX2hhc2giOiJhMDRiNjRkNzUyYjMwYzMxZTc2ZjgzN2ZhZmFlMWQ1NDFjZTU4YTExIiwiX2F1dGhfdXNlcl9pZCI6IjE0IiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQifQ==','2018-02-08 08:33:21.686371'),('lh8cvvj5jjhucqnmq1yic4pruh3mcrt1','YTYwMmZkMDMwMWU2ZWExYjk0NGU3ZTBmZGRiNmIzMThiNTZjZGJiYTp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiZWJlYjk1ZjI1NDhjNDAzN2IxODY0MzY4OGM3ZmMyYzkifQ==','2018-02-01 11:50:39.594923'),('lhbn4rlddkhkf95y5uu9wfqtp1qukiek','ZTAxZmU2MTYzNzZhMjczYWZmNmZiNzVhMzE0Mzg5ZDFhYWZiMjgwNjp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiNWIxZWZlY2ZiNmEzNDc0Yzk0M2Y2NDNkODBiYzRmNTgifQ==','2018-02-07 12:02:02.388825'),('ls85umqs10f2omaxom9atrymxa7awdtu','ZjE0YjkzMTUzNzVjMjRmZDJhOGYxMzcwZmYyM2Q3YjkwMTNmMzEyYzp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiMjBjYTJiNDU3Y2ZhNDcwNGI4NTk5MTI1Mzk5NzBkNTkifQ==','2018-02-09 16:28:25.180394'),('m1v5ix75jb3qy49jn0b7n0hxrxh7jvzl','MTg3ZTdmMWUwMGMyYmY3Njg1MTAyNTk4NTBiOWI1Yzk1N2UwNDRjZDp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiNTI4ZDRiMjdlMmJlNDI1ZTkxYzZkOWE0YjI0NTY0MTUifQ==','2018-02-01 09:41:40.648181'),('m2onm8yuudqzp05bg3lzriqpii4nxdjk','YWRmMDlkZTNmYTZlZDM5NTE4NDFjZTU2NWY2M2JjNzYxYmMzMjg0OTp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiOGFmZWUxZTE5OGU0NDI1ZjlmODRjYjQzODViZmU4NWQifQ==','2018-02-07 11:21:14.436213'),('m34fhmpjk28iahedgbpn4bttmsioqc9j','MGViMThkNGNkYzVkMjYyYzYxYjMyNDIzNjFmNTY4MGZkZTY0OTU1NDp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiMzFjNmE0OTBiMTc3NDk1N2FkNDMyOTVkODU5ZTU3NmEifQ==','2018-02-01 10:08:59.124840'),('m5w7s99l3jsbtsz3d04h8gxqh2hlpp5m','NWZmNzU3YTliNjJiODFkNjM0OTYzOWU5N2E0MzEyYzZiMDRiOWFiNTp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiODkyNGQ0MTEwNzc5NDJjZDlhYzYzNzY3ZmJjZTM0YmQifQ==','2018-02-01 11:55:39.609043'),('m6zookgxb1b233uc5fpbze8frsfpzq4y','M2ZjMmEwNjE0YWMwNDAwYmQ4ZTUyYjYzNGVhYmFhYTlhMGViY2IzNjp7Il9hdXRoX3VzZXJfaGFzaCI6ImQyMGM5MTVjYTMyMTNlZjZiZjkyMjQ1ZDZlYmYyMDQzYjM5M2ZkMDYiLCJfYXV0aF91c2VyX2lkIjoiMyIsIl9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiNjUxOTM3Yzk4NjZhNDk5MTliM2M4OGE5YTlkNzYxZWYiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9','2018-02-07 12:57:59.969485'),('mby1n9gi3knsw2mz9jodjmiarscdgi6z','ZDgwOTNhOGEyOWZhMDA0YjBlZWExYWFhZGI4NjU5MjRjNGNlZWU5MDp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiN2M1OWRhZWI0Y2U4NGRjMjlhNTVmZWU0NWMyNzU2YWMifQ==','2018-02-01 12:07:00.437862'),('mi4vr59m6hkt9ov968kdr7m0zo6dw5yt','MjllZjE4MTllOGVlZjM2YWI5NDYzMDZhY2FlNTA0NTM3MTA5NjQxMDp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiN2NlNjgxMzI2N2QyNDFlN2FhZDJmNjhhZGIwZjI4ODIifQ==','2018-02-12 13:28:14.209691'),('mtg8v8aq42ubx4wstabh7atd9h3zucv1','NTdkNjRmNTdiYTdjYTFmMzlmNjE4ODE3NWRiMDc2OWEwMGRmODg1Zjp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiMGVmNjM5ZTNiMjQ4NGM2OWJkOGQwN2U2MTE5YTI2YWEifQ==','2018-02-07 11:42:02.435699'),('mujh44t3lh8x4dxv0r2i1kzbb1c1ijun','ZWUyYzI2MTU3Mzc4ZGI5YmY0Y2FhNzUwZmExMTUyMTRiYTU0NzBmZTp7Il9hdXRoX3VzZXJfaWQiOiIxNSIsIl9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiNGQ0OTBjZjY1MWQ5NDZjZGJhYmQ2M2ZhN2E0MDJiNmUiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaGFzaCI6ImQ3ZmI5MDgyODE5NDlhNjRhY2JhN2M1OGZhZmY2MGNkODc4MDljN2MifQ==','2018-02-08 09:31:30.600409'),('mx954l512b3h6sg9pha7tot610riux2x','MzhjYjA3ZDFlN2ZiYTBhZjAyNzc4N2UzZjdmMGRmYTQ3NDdlNTU2NDp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiZGFhMWQ1MGIxMDQ3NDcyOGE4OGM1NzNjY2VlYzQxNjcifQ==','2018-02-07 12:07:02.385298'),('myc8ko1wj5qaddvstj42tmccknhptq5f','MzRmNTkyYWE1Zjk5YTAwNGEwM2Q3ZWMwZDMxYzZhMGYwZGE4MzI5MDp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiYzg4YzBlZWI3Y2NlNGEyOWFiNGQxMTYxZDhhNTVlOGQifQ==','2018-02-03 09:54:01.615608'),('mz6zbv2i6s4gu5m27lkbaozs5n88hool','ZGExN2ZhZDFhMjQ0NWY4MWVkNGY2NzBlNWJiMDAzODAwZjg0N2FmNjp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiNGM1NGNhZDM5ZDhhNDU1NGIzNTgxOTI0NDkwYzdhY2IifQ==','2018-02-03 10:18:19.946580'),('n01tymyuyuvcy3k8uly3g269p1wxhdhe','YzkwOTc2NWE3MDQ5N2I5MzViYWZmZTkxZTZjYjdjOWUwMjRjMWNjODp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiODcyZWM1MmVlMGJmNDNlMGJiZGY5Y2ZlYzZhMzMwZjQifQ==','2018-02-07 11:32:45.587432'),('nhycmiaengzcdskmke0ufadrza3uvujp','ZjJjNDdmZDc1NzgzNDdlOTk3NWZiOTM5NjFkYTYxMjM3YjY0MmQ3Mjp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiZDU2MTUzNTYyMjdmNDhkNWE0NGJiYzRiMzVhNzczOGIifQ==','2018-02-07 07:12:16.582134'),('nqpmdpobd4hfutv0yvdbimhtvkiu6zeh','NTIyZWNhY2NjMWMyYzg4ZDQxOWM5ZmU3Y2ZlMjAwNmMwNWQ3ZDMzYTp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiZjg1OWE2ODUyZDE2NGY0Mjg3YWI1NGFjOTU1NzFmODIifQ==','2018-02-06 18:33:50.271159'),('nwz46nhv3wfg3d6pftq67mrqbq04ctu4','OWNhYmMxYjRjZGIwYjg2YTc3MDYxODJmZTdkMGM3MzcyNWFjNjhmZDp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiNTU5MDE2YTNhZjQ0NDVjNTkzZDA1ODgzZjI2YjExMTAifQ==','2018-02-14 06:49:31.383022'),('o12vk2j27bay3i1hkv02o5rs2som5eau','YjU3Nzc1ZjQ4ZjdmZTM1MmI2ZjYwN2Y1MjFlMTI0ZWFlMDI0ZGM2ZDp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiY2Y4ODYyODVmOGVkNDhmZGFiNzJhNWNlMTU4NGQ5NzkifQ==','2018-02-02 06:38:19.501214'),('o78y3g87m1tgryhfm23mbgfn2sfu4rev','MWM4ODAwNjhlOGFjODhkMGRiY2M4NGNhNGFhNmZkZTI0OWUzYzFmYTp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiYTliYjliMmVjODY0NGEwY2FjN2E0MGMxODg1ZmFkNmYifQ==','2018-02-02 13:24:12.638853'),('oanyb0d8zt65wjk7d9ncluioaq9ngbql','Y2UxY2M2NmJlMTU4N2FkZGE4Y2VmOTVlZmJjMzEzNmJlNDY1YTMyNzp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiOGUzM2NkOWQ3NGIxNGJkMmE0Y2VhYjk5NjE5MGI5MmUifQ==','2018-02-02 11:12:49.525254'),('oapj7x7b4rc3omrxenrhrbyrkghydvjd','ZWIyY2U2NmJhZTRkZjI0YmJhYTI1YmYxYjU4MjY2ZWZkMzMxMzU1Mzp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiMTc5Y2VmMGZkYjllNGJkMDk5MGMyMDRkNDVjNmYwNzAifQ==','2018-02-07 11:26:02.970666'),('ocktsrru6gjraxop6xhd5jdiythkpkh1','MWYxYTAzZjY3NDg4NjU4MDM4MjVmZjU2OTQ3OGNjZjE0OTBjOTMzNzp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiYWVmNjY4MDhmYWNlNDc4MGFlYzVhZWUxYWRjMzQ3NmMifQ==','2018-02-08 07:48:44.783194'),('ofe4ap3mr45o792epkgfovzui4waia0a','ZjdlYzdhZWM3ZTA5NTFhMDM0OTNiZDk4NWFlMDA2NjJjYjIwYmQyZDp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiN2EwMzkxMjhjYzkyNDY1OGJmZmY3YTU1NDdkNWNhZjMifQ==','2018-02-06 18:29:08.267155'),('oidx252xkp85hs4s9wnjcq8nwe5kun9o','ZDg2ZTM2YzU3NzNkMjdjZWYyYzkxZTU0Y2Y4ZjEzYzgxMDU3YmQzZjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiYzhiNTNkZGU0YjZjYzA5MWIwZTliZjM0MTY1Y2JhNGJhYzc3ZjdkYiIsIl9hdXRoX3VzZXJfaWQiOiI2IiwiX2Fub255bW91c19mb3J1bV9rZXkiOiI3ODUzZWMzYWNkMTk0NDU2YmRhMjkwZmY5ZjZlOGFjNSJ9','2018-02-06 13:22:45.333699'),('onki3j9ugejjvfca3k5u8ap4b7wsaao7','NTE5MjliYzgzZTZhNGM2YjY0MzgxYTYwNTBhNjM5NWU1ZTU0MTVjYjp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiMTM0Y2U1NGIyYWE1NGY2MjhiYzU0MTU4MjA4ZDgxZjMifQ==','2018-02-15 05:29:33.275217'),('oo9dk2zqkry8m59lta2cif53d50qrcn3','M2RmOTM4NWI4Mzg3YWQzNmI0MzlmZDJiYTE3ODdlNTExMzI4MjkyMTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiZDIwYzkxNWNhMzIxM2VmNmJmOTIyNDVkNmViZjIwNDNiMzkzZmQwNiIsIl9hdXRoX3VzZXJfaWQiOiIzIiwiX2Fub255bW91c19mb3J1bV9rZXkiOiI2NWFlNTEyNDFmMmU0NmJhYmRiZTk4ZjFkMWQxZjM0NSJ9','2018-02-05 10:47:24.505478'),('oqxwyzx2pnk9zyagkk6cp3l83zy3vpa4','OGU0MjU4OTkyYWNiODEzODUxZDdhMWUyMDIyYmQyNDY2MTY4YTA5Mzp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiODQ5YTA4ODQ5MzA0NDk3MzhiMGFmZjNlNjRiOTc5YmYiLCJfYXV0aF91c2VyX2lkIjoiNSIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiYWJkZDc4OWJmOWIyZjI2ZGU3ZmVmMDYzMWNmMmYxMDEyNDRiZjZiOSJ9','2018-02-02 05:56:08.496028'),('ovyeo35fje9zxatn8kkq9oqhc6xuj3i0','NDZkZWVhMGIxOWUzNDkwZWQ5YzcwMjMwZTgxMTQ1M2M2NGFiNTRkNDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2Fub255bW91c19mb3J1bV9rZXkiOiI1ZTJlOTEzYWI3ZDQ0ZTI5YjI2OTNlOTI2NDFiZmIwOCIsIl9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9oYXNoIjoiYmY0ZWEzMDQwZjc1NDUyMDBjNjExZGY3YjRjYmMyMjc2NWU2MjdjZCJ9','2018-02-01 17:03:57.151721'),('p3436mklf8og6ofik49r0ig9sb15tbz1','NzY2YjEzMDBkZTNmYjdmZjEzZGZkZDY1M2ZiODI2NzA1ZjEwMGJhYzp7Il9hdXRoX3VzZXJfaWQiOiI3IiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYW5vbnltb3VzX2ZvcnVtX2tleSI6ImNmYTkzMzJjZDI2MTQ1MzRiOTNkOWNiMTY1NmJmZWE1IiwiX2F1dGhfdXNlcl9oYXNoIjoiZWU0MDk2OTk3MzBlZGU3Yjc5ODYwZWY4MTM0YmEzNWZhMjdhMjIzMSJ9','2018-02-07 13:27:22.720216'),('p5ghbi61sfmr5b40sjxwwaedqo68gz8v','ZjQ2YzY0MjgxMDUxNWIzMzlkMTg2MjYzNjI5N2VjOTg5MTgzYmQyMjp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiNDhhZjcwZjM4MTI1NGQ1MjgwODQxNjViNDE1OWE5ODAifQ==','2018-02-07 12:03:21.518844'),('p6n024s9kmcbebg6a3zgt41flnsr5v04','MWUwNmE0NTM3MzFlZGU4MjZlMWNiMGMyMmFmZDZmOWJkMjA0ZWEyMjp7Il9hdXRoX3VzZXJfaWQiOiIxMiIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2Fub255bW91c19mb3J1bV9rZXkiOiIxNGYxMDdlZjI3NTM0ZjU1ODQ1OWE0MmI5MmIyZDBjZiIsIl9hdXRoX3VzZXJfaGFzaCI6ImY3NzdiYzMzNGY0OTQwMDA3NmU4ZTEyMWM1YzY2ODc2ZTdhYTA1NmIifQ==','2018-02-07 11:35:50.195066'),('p79vsf4jx0ywm5ut5b2m4kynbyr4tqvs','NWMxZDVmNDhmYzE2YWNjZDFhYTBjMDc4Yzc3NmRlOGY5OTQyNjIwZjp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiMGU1OTJkYjU0YTMwNDU4N2JhYjI4NjhiZTIxNjRmMDIifQ==','2018-02-13 15:20:47.763499'),('pcumz83xvy0wraud3zazdbx4u8o19w85','Y2VlZGU3Yjg4ZTE1MzUyMDkzYTY1Yzk3ZTYwNzU3ZjQ2N2Q2MzhjYzp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiMmIzYmU4MzI1MmRjNGRhOTg1N2UyMDZlZDkyOGMwMmIifQ==','2018-02-13 06:22:55.357907'),('pg2yvprv5csmjetc6kt9cnmlwcdh0y7b','N2NhN2FlOGY3NjdiYmZlZjAyNTE2OGViYTZlNTIzZWViMjc5ZGViYjp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiNmU3ZjE0MGViMWZjNGM0ZWJjZjFjM2RhMDE3NTMxNjEifQ==','2018-02-04 18:24:38.808334'),('ph6a0rq4rifjqo025v7p8n8gxwz075tj','MDZmYjMzYjgzOWFjYjMwNTg0MmZjOTMxMzNkMzYzNTJkMmM0NzYwNjp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiNTgyYmM0NjdmMWEyNDBhMDllNWMzOTYzNjJiNmMxMWEifQ==','2018-02-03 09:51:16.820783'),('pi3uwrms8g8i0qbnfb393oyc3a9jca8b','MzRmYzM3NDEyOTkwNWUwODEyOWFjN2UxMDI2MjQ1M2E1ZTRhYzg2Mzp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiMGM1MDgzNDcwODU0NGUwMzgxNjIwYWJiOGE2NGVlNGMifQ==','2018-02-01 13:40:03.276564'),('pn8932pl2d6yi7fy6ocrxlu9t5i94xq0','ZWY3MDRlZTAzYjg5MDU2Mzk2OTNhOWU0YzNkNGY0M2QwNDlmNGI3NTp7Il9hdXRoX3VzZXJfaWQiOiI3IiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYW5vbnltb3VzX2ZvcnVtX2tleSI6IjAyZjJiZTAzZjdhNDQ3YTNiM2UyMzQ2Y2JkMTlkNzY3IiwiX2F1dGhfdXNlcl9oYXNoIjoiZWU0MDk2OTk3MzBlZGU3Yjc5ODYwZWY4MTM0YmEzNWZhMjdhMjIzMSJ9','2018-02-07 12:11:22.551298'),('prjuy5l1lrpihikel6x067wgwdpmeafr','NmYzNjRmNDkwNzRkYjAzNzY4ZjgzZDZhM2I4ZmZiNWNhYjU5ODZiYjp7Il9hdXRoX3VzZXJfaWQiOiI4IiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYW5vbnltb3VzX2ZvcnVtX2tleSI6IjcxMDg5MDQ2ZTA5MTRmYzBhZWViMjJjNDY1M2NlMTI1IiwiX2F1dGhfdXNlcl9oYXNoIjoiNDc4OWFkMjkzZjUzOWZiZjBjY2NmNmVlNTNkNTFmMzIxZjM4NjFiNiJ9','2018-02-07 10:57:45.322026'),('q30lyt4tc4jcugsfi2lgk1wgmqm2grqe','YWY3Y2Q5MDIyZmM0NjY0ZGY5OGUyZWUwMmJmYmM2ODczMGY1YmRiMzp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiOWJjNjMwN2FkNDhiNDdlNDgxN2M5YTI0MDJmMTUxOTQiLCJfYXV0aF91c2VyX2lkIjoiMiIsIl9hdXRoX3VzZXJfaGFzaCI6IjcwNGY3N2IzMjQzNzAzY2JkYWYyZGQ3ZGNlYjg3ZWQ0NzM0MGRmYTYiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9','2018-02-06 09:31:35.557569'),('q772t7u7c2cawo54ia5wby1npr2ww48e','YTI3NGEyZjI1NzRmMGZlNDVkM2ZkZmE0ODZlN2RkOWE5Y2JlNzBhNTp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiYzBlZTcyZTMwNWU5NDYzMDg2N2Q2MTRiM2VmNjYyYWIifQ==','2018-02-14 08:17:13.280875'),('qn47fl3fjmn5vkwjy0yrq6pz84s47h0z','OTY2YTA0MDBlM2NlODA1OWYxZGFkNjQxZDY1MmYyNzhhODBjMTdlYjp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiYWIxODQ4N2JhNjcyNGZiYjg2OWQ1OTJjMGJkNzcwOGEifQ==','2018-02-01 09:49:03.650171'),('qp8vzdyb6x614t5d9nzybwg9j9jxp0zg','MWEyZjg2ZjYyOGRmM2VkOTY5Y2FiMzllYzkzMmUyNGNjNjUyNzJlZTp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiYzIxZGFhNjQ4MWVkNGFhNWFiMDBmMGQwMjJkMzc4OTkifQ==','2018-02-07 10:00:47.967741'),('qxqb0kvkc5nks5djr0kyh70lrqhz4i49','MTYwYjkwZmNlYjQ4MzRhMTllYTI1OGU2YjhhMzY5NzZhNDdjNzM4ODp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiYzYyNzM5NGEzMDVmNDU2OWJhYjZhNGI2ZWNlMDgzY2MifQ==','2018-02-14 05:42:52.681248'),('qzw228asc2k8j506qce8mcpuml701bk1','NGIwMjNlZTU2OWRkOGY1ODZhYzI1YWI2YmQ3MjkyZjI0N2NiNTFjZjp7Il9hdXRoX3VzZXJfaWQiOiI5IiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYW5vbnltb3VzX2ZvcnVtX2tleSI6IjVlYTYxOGI5ZDdhODQ5YTZhMThlMGVmYTkwMjQwOWM3IiwiX2F1dGhfdXNlcl9oYXNoIjoiZmUxOTk2ZDgyZGZiYTQ3M2NmOGMxZGFlMDU3YzRhNTQwZGYzYmM1MCJ9','2018-02-07 12:13:34.318077'),('r79f9marmfg6h7j9ei9i34yooc26xzwp','MjhkYWJlMmVhZmU2OTM3ZmMyZDM3ZGNiNWExZGEwOTJmYzBiYmUyODp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiZDYwMmYzYjJhZmUwNGJkNWFhYmExMjI3ODcyMTBmYWEifQ==','2018-02-14 06:07:34.960989'),('rgfdjfnz8yugq3mackf1pvg3e4gx9k7u','YjA5YTQyYzAwOTE5YzhjNDZhZTUzZmFkMzIxODZiYzgwM2ZkMzYxMTp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiODY5MjlkNjJjNTRmNDVhNzhmOTMxMTYwMGQ5YTBlOWIifQ==','2018-02-07 12:04:04.763244'),('rtizq4aa4p0thcr1b9iux0d5z7h0z9ye','MGZiNGI1MGI3MmU2ZDk2YmEzOTAyNjc4MzkyZDNjNDM5MDAwMGE4Yjp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiNDIxNDJkMDFiNTMwNDA0Mjg2MjE1Y2E1YjhiYWYyNTQifQ==','2018-02-14 06:44:21.766642'),('s0pvus8ojzwvcpwpwjer59fdt6ktihvq','OWMxMWEwODMyNjgzNzBhYTkwNmEwMDk2YTc4N2M5MDgzYjI3MWZlNTp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiOGE3YWQ3ZTAzMjYxNDQ2ODgzMjA0YjQzZDEwZmFkYWYifQ==','2018-02-02 07:20:47.880241'),('s6l19jlg1jfrqded4j88dsm1tua9egvg','ZmUzOGU1ZWIzNTM3ZWFiZjcyNWUxM2FiZDZjZWU0ZDUzODJmYTJjNTp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiZjU0YzFjYmUyNWQzNDBmNzg3ZGVkZTJlYTNmY2U0ODUifQ==','2018-02-01 12:05:44.376188'),('sam7egaz23hwnz9sxr6vxgzhqutjo67v','MjMzYjkxYjc0NTI0NmZlN2E2ZTlmYTU2ZDNjYzhiM2RkM2NmNGE4ZDp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiMGY2YjVlMGY4YTlmNGNkNTkwMGFkOTMwZTQxYTYzYTcifQ==','2018-02-08 05:58:08.982803'),('sdq109j8wtp4f8mtzl2v5vr73dicoejk','ZTNkZmU4NDI5OTVjNTA2ZTRkMjFjNDM4OGExMDQ4MDAxNDA3Njg3ZDp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiZDhkZDdmNTQ1NzFlNDY3ODk3MDM3NjFlY2ZiYTA0YjAifQ==','2018-02-02 06:39:41.668951'),('sh88ozdjgbyvpm5jwiqo4k6852235a5z','OTg0MmZiNzk5YjY0ODNiYTYzZGFkOTgyZTI5NTdjNzY0Nzk2ZDI3Mjp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiNzU3MmMyNTA0NjQzNDViOGFlN2M2NGNkMjRmN2I5ZTkifQ==','2018-02-07 12:11:18.636821'),('sjwezies73w10r4hd9oa2tnbs0xvj1jl','MzdkZTdiNTlkYjYzY2MwOTMyZDJhYTU1MGYzNzgyMmEzZDc0ZTJkMDp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiMzc5YzFmNWFhZGNjNDU5NzgwZjAwZTRmZmQ4Mzg4ZjkiLCJfYXV0aF91c2VyX2lkIjoiMyIsIl9hdXRoX3VzZXJfaGFzaCI6ImQyMGM5MTVjYTMyMTNlZjZiZjkyMjQ1ZDZlYmYyMDQzYjM5M2ZkMDYiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9','2018-02-02 10:23:22.394088'),('sk9isdf32xpleh5luitfu8rrhxv4zigm','NmUyMDE1ZTJkNWJkMGVmODc1Yjk3MTFlYjNjZDEyYjAwOWY0ZDY0ZDp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiODJkNzdlYzc3MDBkNGE1Yzg2MTJjMWU0YjRkMjhjMDIifQ==','2018-02-13 12:32:47.185996'),('skb5896ft5c64rsaqemqtpwm9k6xi9uq','NDBmNGNkNzkxYjlkNWE4M2ZiY2NkOGM5NjRiZGViOTU5Yzk1NjE0ODp7Il9hdXRoX3VzZXJfaGFzaCI6ImJmNGVhMzA0MGY3NTQ1MjAwYzYxMWRmN2I0Y2JjMjI3NjVlNjI3Y2QiLCJfYW5vbnltb3VzX2ZvcnVtX2tleSI6IjQzOTRlMGE5M2VmNzQxNzJhYWUxN2RlM2I3MjNhYzIzIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2lkIjoiMSJ9','2018-02-13 06:19:57.500318'),('smsxiq3cupatwk95hbhb87n2y8lnyy8t','YTI4NWYxZjVjZDk2MGZhZmYwOGEyZjRlMTdlYzhmZjVkZjI1NzE3Nzp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiNDA1MmEzZDMxZjc5NDYyZTgzM2FjMmY5ZmZhNmRhMWMifQ==','2018-02-14 06:50:47.459670'),('snu9lst8asykyjw9fmilguna9h7423d5','ZDAxOTY4OTljZjNkZmVmYmE1NGVkNmQ5NmY0OGRiYTllNDEzYzk0Njp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiMThiODM2ZmE2NTY5NDAxYzgzNjI5YjE3M2I4OWNjM2IifQ==','2018-02-14 15:05:37.864218'),('sqiu2cpsk2isjavgdgb0p9wvexg65bix','YTI1NzhlNmVjZjgwMzU0ZmU0ZGJkOWRhZGRjNzliYzQxZGNhZGM4MTp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiMzQyNTA3NzgyM2FhNDNmMTkwNmUyOTJjYWQ0M2MzNjUifQ==','2018-02-12 06:04:34.942034'),('svm7bkrggi6mmnuwsc64bghbl9uou15h','YzA0MDc2OGNlYjBiZTEzOTg2YjllYjEwMGYyMzUzNTUzMjZlY2VmYjp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiZjdiZGUyY2FkMWEzNDlkY2IyNmYwODIwY2I1YzQyMDIifQ==','2018-02-07 11:00:27.512691'),('t2za3z3r2n4sx60e3dglw4xthpoup47t','NjkxZjhlMGU0NGQ5ODYyZTVmOGNhZDAwZjNkOGZlNjJmZmY2OTBhMDp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiNGI5NzJiMzkzNTZhNDFiMThmMWM1MTdmNTI1YTRmMWQifQ==','2018-02-07 08:15:52.973819'),('t5u58zahl2df3w7l4d9qw3uaauuykknh','ZDA4N2EyOGI3NGEyZWFhYTUzNTVjYTBlYmFlYWYzNWM5NDlmOTJmMjp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiODY4ZjJmNjQ5MmE0NGZkMjkyODkwN2M2NjEwYTRjMzAifQ==','2018-02-14 06:32:31.907918'),('t77co2ij4du5j91pm5qjrij8f3qlq2b4','MmUwOGNhNTRmMjkwYjhkNjM3ZDQyODQ1MDk1NzVlNTRkNGEyZTU4ZTp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiZTAwMTc0ZDY4ZDQ2NDAzNWFkM2EyZTZhMTQ2YmYyZDgifQ==','2018-02-13 12:32:50.772072'),('tch83w5m99x3fb34v3bm6e4wjxdlcjae','NzdiMTQ4NGJkMjBkZDZkM2MxOTZjMjExYjM1NDkxMzU4MjdhMmYyZDp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiNDRiYTc2YzIxYjIzNDQyMWJhNWY4ZWQ2YzY3ZWRjYTIifQ==','2018-02-01 09:51:31.660431'),('tmclvfhpmk9haiqzb6zq4hkijwu4gnmh','MDc4ZTZkMjY4ZTg0M2M2ODlhOWIzZjAzNjY5NjdkMzgxNmE4NDQxNDp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiY2IwMTU0NjI2MDM5NDU2NmI5NjIxY2JmYjhhNmJlNjYifQ==','2018-02-07 15:16:06.374700'),('tmebmhbcd8nzl7r6nnte3994dv0rctz2','YWE1ZmFmZGJlMWU3ZTQzMDk0MDMyYzhlOTQ5OWM2MGQ4YmUzZWE0NDp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiOWZiNDhjMjAzZjM2NDM4YTlhY2I1N2Q0M2ExMTYxNjUifQ==','2018-02-07 11:46:46.801718'),('tsiymd1owykah77i0l621xs3t7z1guxd','YzAxYWI0MmZmNDZhMjk3MDE4MzU0NzAwMzkzYWEyNzZiNmQwZTNmNjp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiYWUxNTQ1MTg4MzIxNDczMTlmMjdhMDM2MDcxZDU0NDcifQ==','2018-02-06 15:35:34.130389'),('u1mlnxriu2b43htrek0if0623tupptn9','NjRjN2U0Njc0OGMyYWJlMmE5MjYzZmE5YzQxYTY0NDc2NTE5NmE4Mzp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiNjliMTc4MzgzMzlkNDcyY2I3NTQ4NTNkODNhODg4ZDQifQ==','2018-02-07 10:59:04.315925'),('u8vncp85y3t2s6qi02b36skq0mqvlilr','YTgxNDI4ZTQ2NjdkNmVmODNjNjUwMTdhOGNmMDIwYTZkNmVlN2Q0ZDp7Il9hdXRoX3VzZXJfaGFzaCI6IjNkOTZlMDQ0ZDQ4NTk5OGU4NWU4NDlkZjA0OTk4MGQ4OTFmZjY4YjEiLCJfYXV0aF91c2VyX2lkIjoiMTEiLCJfYW5vbnltb3VzX2ZvcnVtX2tleSI6IjllYmQ2YmZjZGIwYjQ2ZjM4NWU3ZjgxYTE3MDFkNmQzIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQifQ==','2018-02-07 11:49:56.890759'),('u9t29tpnpbam94mw2z2ers27a6pp0uba','NjNmYTU5MzJmNDIxMGU2MDUxMTk1NTg5YjMzNjMyYTBiM2NjMDZjNjp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiNTYyNjdkOTUyNmViNGU2OTliYWY1Nzc1ZTY1NTExOTkifQ==','2018-02-02 06:37:41.085539'),('uf03dfq5wz1pjj9vshybvicdrjmkc14t','ZTIwNzhmNDA1ZjQ3MzgyNmRiZmNiMDFmNjM1NzE5ZTM3NGEwNDU4Mzp7Il9hdXRoX3VzZXJfaWQiOiI2IiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYW5vbnltb3VzX2ZvcnVtX2tleSI6IjI1NTkyNmI1NDJiMTQ2M2U4ZDViYTM4YmE2MWZhZjdhIiwiX2F1dGhfdXNlcl9oYXNoIjoiYzhiNTNkZGU0YjZjYzA5MWIwZTliZjM0MTY1Y2JhNGJhYzc3ZjdkYiJ9','2018-02-07 10:06:17.913966'),('ulder5nj2ujp4okff8uvvb1nt3mtg5eb','MTVkZDUxOWU1NzU0ZjllYWViNmMxNzhmMjNjZjZhZmE2YjE3MDRjNzp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiYzE5MzZjOTc3NjhjNGMzOGIwYTQ1MzcxZTg5NTFmM2UifQ==','2018-02-14 06:37:50.156287'),('ux9kx6zrumwb1qm9csep3l9rplf3h9uq','MTJlNTQwYmRhMDNiZjBkMjQ4NmUxOTIyNGZhOTVlYTBlMzA2NDFkNDp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiZTk1NTFhMGJkMzVlNDBiNzg3NDBhYWQzZTQ4YTI4MmQifQ==','2018-02-02 11:22:45.147815'),('v6ti1m2w9h8nnqingqp7znd8t6avwaxs','NTJmMmUwMzdjZDg0NDM2ZWZlMmUwODZjYTliYjk0MDA1YWQzNzE4Mjp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiY2E2N2UyODUzN2RiNDk2NjhlNGUzNzQ3MDQ5MjMyMGEifQ==','2018-02-13 06:17:49.173911'),('v8lwvv9hv1dqfogm6n0bbdgwdlbs2dra','MDYwNzM1ZGY3OWE1ZTc2NTg4NzVmNzBlZTZjYzc1NjZlY2ViZGM0Njp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiYzgyN2Q2MzEyYWNmNDgwMzlmNjFkMzkwNGQyMTQwYTcifQ==','2018-02-15 05:58:33.113895'),('vh3ppc8l6tijlc56j4gw49hvlw8phkq3','MDQ4ZjkzYTNjNDBhM2I5MThhNWRlNjMwZWY2NGQwNTU3YzhiODk5Zjp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYW5vbnltb3VzX2ZvcnVtX2tleSI6IjFkMTcwYTM2NzRkNzQ2ZmI5MzJlYzZhM2Y5ZDA5YjMzIiwiX2F1dGhfdXNlcl9oYXNoIjoiYmY0ZWEzMDQwZjc1NDUyMDBjNjExZGY3YjRjYmMyMjc2NWU2MjdjZCJ9','2018-02-06 14:29:13.328520'),('vl1sbgj74k4nlcbsucvkwsu7t7vd9oh3','ZmUzNjRmZjM1MDY4MjBkN2QzOWVkMTUxNGRhZDVlN2RiZDc5OGJjMDp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiYjNhZWZlNjRjMWI4NDZlZThkZmRiNDllYmNhMWU4YzEifQ==','2018-02-07 11:59:04.912203'),('vmarcid8lcr9k3dhjn5k7m27mmu4bqno','NDMzNmU4ZmRiOTJjYTVkMWI4MjYzYzRkMmM2NTc0ZTQwMWUxNDI1MTp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiZWMwODUzNmI2NjUxNDEyNWFiOTI4ZWRmYTA1ZmExNDYifQ==','2018-02-07 10:56:46.826615'),('w1vsyjpnjkphna4zgrqlxm7pokjkyoux','ZTQ4ZGU2YjZmZmRiZjI2ODYwY2ZlNjAxYjJiZDEzNzhjYmQxYTE0Mjp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiOTM5MDhiOTg1YWIyNGViM2FjZDY1YjA4YWUzNTA1ZjQifQ==','2018-02-02 05:47:00.409507'),('w4yk1yefza3mtbs63p9g73gzgnlsf5s4','ZjkyZjM5MzBhZWUzZTcwODRjZWU0ZTI3ODJmZmRkYjJjZWI4YWVlZDp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiODg4YWE0MzU0YWZjNDQyOThkYmI2MzNlYmIyNDg4ZmMifQ==','2018-02-07 11:19:21.738159'),('w9ktoyvl7wrz5sf6goa77wqayys06842','MjI0ODdmOGQyNTJiODI3ZjNkY2ZmNDRmMTVhN2NjYTU4Y2NiMzY2MTp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiMzQ5NWIyMzc1NzBkNGJiYmEzYjE1MTVkYzMyYzk1NGYifQ==','2018-02-02 07:03:30.180784'),('whcz7z1nrb3fdydnptiwae0t7j4xdf2s','MmI1YTNiYTdiYTk0ZTBkODVkMjg2YjI5MTQ2ZDYwMGI3NjFiMmFiNzp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiNzM1ZTQyZTI5MjMyNGI2ZWI4MDM4NTMyNGY3MDBjYzMifQ==','2018-02-01 12:30:18.780379'),('wksw5poxt9cnows88i5jq24ijy6bkdin','NTU2MGQ4ZDlhMzk3MDhhN2Y2ZTJkYjU1MTYxMTIxNWZjYmU5ZDYyYTp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiN2I4MThkZTUzOWMzNDViZWI4OTliMTNjMTRhYTMyYTIifQ==','2018-02-12 13:50:26.385362'),('wmx610lpo9mdke8b2sghtuzcszoz17xt','Zjc5MTYwN2FlNWRmZDdhYjY4YjVjYWRmMTlkZmVmMGE0ODk5ZDMzZDp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiM2Q5MDdhZmVhMzc3NGRhN2E1NTk0MGYyYWQ4NGNjYjEifQ==','2018-02-13 14:36:02.902584'),('wt0f1b0dt9iwo1h3k3saaz6439mzln2l','ZjMzYmQ3ZjM2NTIyNDQ5MzEzOTNiOTA2MDQ4YTE3YjM4NjllMzNlYjp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiOGI1ODE0NmY2MTFhNDA2ZjlmOTQxMDFhZWRhY2NlOTUifQ==','2018-02-02 14:27:54.989046'),('wtrc8535cg9m42xbzvvinkp4oeyd71pm','ZWU1YmZiMDg0MGFiNmFkNTBlNTRmYmQ3ZDBkZTUxNTcyMTYzNDEwNTp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiZDFkNTBkZDE5NWQ1NDI1Mzk5NDhiY2NlYTczZTI5MTAifQ==','2018-02-02 11:57:01.955825'),('wwsytt8gax35yo2qvcu1ozv2m5tecoix','YzdhYTQwNjYxYzU5MGFjMDRiOWNkYTg0NDIzOThmZDY4NjA3ZmM5Nzp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiMzQxOGVlZWMzMTFlNGEwYmI0ZGIzYmYyNGU0NDdjMWMifQ==','2018-02-14 10:03:28.202514'),('wyekgl5y4fje1qke9hj1wla8jcw74icq','NzdlYjg1YTBhZTAxYzUyZDFlNzhlMTRhYWYwZDdlNjI0ZDY1Y2Q1NDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiZDIwYzkxNWNhMzIxM2VmNmJmOTIyNDVkNmViZjIwNDNiMzkzZmQwNiIsIl9hdXRoX3VzZXJfaWQiOiIzIiwiX2Fub255bW91c19mb3J1bV9rZXkiOiJjNDAxZGMwZDIzMTA0ZGViODMzMDE2MmViODMxZDYwNyJ9','2018-02-05 10:05:13.939321'),('wz6siudgnwo69ubilbf8tvnk82lmtw3m','Y2IyNDkzNjUzMmUwYjg4YWY0MGE3ODFmNDE0NWYyMGYxZjljOTk3ZDp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiMjlmZmU1ZDE0YWFmNDIyYjg3OWRkMDg1ODU1NWFmM2YifQ==','2018-02-03 09:17:21.446741'),('x3qs4snr6llrlathhi03dujwj98sxoyj','ZTFiMzdjOGY4NTlkNWUwZTlmMWUzODc4MmJkODhkNmIxZTMzNjAxMTp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiN2UwZjYzMDlmNTA1NDU5MDllZDFjZGRkZDA0NDY1ZDUifQ==','2018-02-05 08:37:49.338401'),('x9jzy7axjtho4653knj5fue865eiv6bp','NzhjYWFiY2VlMGI3YjZjYWRjZjAyMmQ1MzkxZDdmMjUwYTc5NzdiMzp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiYTZhZWY3YTU5OTdmNDZiOGI1MDdiYzRiODI4ZjM5MjEifQ==','2018-02-14 06:25:31.634655'),('xa5l0nlu6bxwqdirdz9xtw6xrtmnrowa','MTEyNWYwYjNhMzZhNDM1ZmM3MmY3ZmUwMWEzMzE5ZWE4YmY5YTYxMzp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiYmY0ZWEzMDQwZjc1NDUyMDBjNjExZGY3YjRjYmMyMjc2NWU2MjdjZCIsIl9hdXRoX3VzZXJfaWQiOiIxIiwiX2Fub255bW91c19mb3J1bV9rZXkiOiI3NGM0MDk3ZjI1YTk0YWVhYWI2MzYzMDRlNDQ4Yjg1ZSJ9','2018-02-02 10:56:11.068964'),('xm1jdd5xlo7w5zfjnohekj7cudetx0h4','N2VhZDUwODlkMmQ1ODE4NWNjNGJmZmQ1NGY3Yjg1YzM5MzJiMDk3YTp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiY2IzNTM3MjJmZjAzNGM5ZWIzYjc1Mzk5ZGI0ZDJlOGYiLCJfYXV0aF91c2VyX2lkIjoiMiIsIl9hdXRoX3VzZXJfaGFzaCI6IjcwNGY3N2IzMjQzNzAzY2JkYWYyZGQ3ZGNlYjg3ZWQ0NzM0MGRmYTYiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9','2018-02-08 08:54:56.804801'),('xwvkegpqhb127xpqmx1d2yymu5y7cslj','NWE1NThkYjA2NDM4ODFmMWIyNDUwODg0ZjQ4N2Q3ODM4MGE0MzdiNDp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiYjA4YzdjZTgxYTkxNDBmZjhjMWVjNGMxMjhlMDcyNTAifQ==','2018-02-01 11:54:08.868281'),('y36f2s25ua1ul1wipbpr8xiecxma1be2','NzQ0ODYxNWM1Yjc1MDIxN2IwZmU1ZjQyY2IxZmMxNWU5ODA5YWQ1ODp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiOThlMjI1YzhjNjU1NDZkZTk3YjljMDJmYzk4YmFhMmYiLCJfYXV0aF91c2VyX2lkIjoiNiIsIl9hdXRoX3VzZXJfaGFzaCI6IjA0NzVlMGEzODc4NzA3ZDBjYjZmNDZlNTRkZDNlNmU5YzNiMGYyNzkiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9','2018-02-06 08:31:53.244551'),('y445wuxu9ttwukpdpcq29mjp388i8f7n','MTg0NWYwMzhmZjJhM2IzYzcwMjE0MDJlMTYwNjY4MzE0MmNjM2ViZDp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiM2YyYjY0YzE0OTIxNDNmNWJmMTM0NjczOTlkZGJmM2EifQ==','2018-02-07 10:22:16.883885'),('y6d3sa4z4a8j4z7ghbphi0pk80fblijc','ODBjZWJjMzI0YjM5OTg1YzU3MDI1MGQxNjFkNDM3YTlmYmUyMzQ1Mjp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiOTk1NmY1MzViMmMzNGY0NmE1NDY5NWM4M2QyMDM4NWIifQ==','2018-02-14 12:57:12.147299'),('y6h9qsquho2o2bdkf8ijp3rxk8z0b8f9','MGZhZjgyNDllZDFkZDNmYWIzNWI1MjI4Y2MzMjg4OTQ1NmQ4ZTk0Zjp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiYjJkZjgyYjVkNjVhNDRkMzllOTZiODFhNTQ4NmFjOTMifQ==','2018-02-13 05:05:27.985161'),('yhlv96veiw4cu92p8xeypn949h01vz0n','ZTg3MTg1YjVjZmI4Y2UwMjM2ZjNjYWFkMWYxYzJiZTM0ODNlZGEyMDp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiZTI5OGIzMTZlZDQ2NDUwOWIyY2VhNTY3MjliZmE0NDcifQ==','2018-02-05 08:13:00.595010'),('yht8l942nnamwvzga4mpvsbl2omgo9af','ZjdjZGI4YzIyNzk0M2U4YzFlOTliMjE3OTYwNGUyZGNlMTUxZjhkNTp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiOTNhNjY5YmYxZTZiNGQxY2I0MzA1NDljMmZkZTM0ZGIifQ==','2018-02-07 14:40:54.846345'),('ytn59kfdujd2mv9b2kbffua6zpu6bpxa','YzM0ZjY3NjkzMWFjYzk3ZTY1NmZlOTE5NDFkMzQ0MjdhMjAxODFhYjp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiZGFmNmZhZDllZDUzNGQyN2E2YmU4NzAzODI1Mjc1OTQifQ==','2018-02-02 12:18:20.684968'),('za8x1jb79vewrgvhk7jh8dk652hbdtvx','NmIwMGY1Mjk4MGY1NDg1NDI0YmUxNzBlMjk3Y2Y2M2Y5OWFlMDAwNTp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiMjNkNGY1MWVkYzBlNDM1OGEwZDEyY2ZkNGU2NTk1Y2IifQ==','2018-02-08 06:29:54.862054'),('zcr6rbkdxh4wlt3sggo8ns5fas19iqlo','OTgxYWRmY2RlYTFkNmIxMWIxYTA1YTJiYzFmY2IwNmY1NTA5MTdiNzp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiYWM5MzA2MzkwMGQzNGRjZjg5ZTE3YWRmYzllMTY4MDgifQ==','2018-02-06 13:54:09.428447'),('zdksrobsuwdis4oqu3fiihi4ckj9c53a','ZWI3OWJlNmM5MTg3OTRiOWU0YWU2OGY2MWJhMGZlNTRmMDgxMThmNjp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiNTQ5ZDNhMGIzYjY3NDhkNjg0NWFkOTA5NDcyYTAwYjIifQ==','2018-02-02 14:22:54.605669'),('zj46cxhvhmtvmgx0od4hpfcpxm65rf6g','MDhiN2I1NzI0NTAwZjdmYzc2NGViNjU3NjZhM2JmOTdkMDQ4OTU2OTp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiMTRiMDFlNDZiNDU5NDUzM2IyZWY4NDRjMDUzZGI1YzYifQ==','2018-02-06 18:30:26.906911'),('zjkay9yj0ajd8ux88xjewtuy3ulms3a6','Y2EwNmQyZWFmMzQ1ZDMxNzdlNzg0NWFiOTk0MWJjMzIwYmFlOWUxZjp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiNzc4Nzc5MTQ1MjE4NDc1MzlmZGQ0NjA5ZTgwODZjZmIifQ==','2018-02-03 10:19:35.625021'),('zmulm3rn3a135cc2meck0auqa2hss7jq','OWNjOTdjYjc5ZTkxZWM3MWEyNWU1ODk4NzZkYzAzNjRiNGUzNjE3Nzp7Il9hbm9ueW1vdXNfZm9ydW1fa2V5IjoiYzM5ZTY2N2U0YWVkNDIyZjgwZjRjYTRjNWM1ZjYzODEifQ==','2018-02-02 08:43:55.921086'),('ztoy9unzraw9u6k8jh6x83ljmnd1jmqi','YWQ5YWU4MzM2YTNmOWMwNDFlOGZiNjRiNWZmMmU4NzhhZTQ4NjcwZDp7Il9hdXRoX3VzZXJfaWQiOiIxNCIsIl9hdXRoX3VzZXJfaGFzaCI6ImEwNGI2NGQ3NTJiMzBjMzFlNzZmODM3ZmFmYWUxZDU0MWNlNThhMTEiLCJfYW5vbnltb3VzX2ZvcnVtX2tleSI6IjllZjRjNzE2NGQyMjQ1Nzc4YTVmNWM2NTYzNjhjZDRhIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQifQ==','2018-02-07 11:50:53.183912');
/*!40000 ALTER TABLE `django_session` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `django_site`
--
DROP TABLE IF EXISTS `django_site`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `django_site` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`domain` varchar(100) NOT NULL,
`name` varchar(50) NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `django_site_domain_a2e37b91_uniq` (`domain`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `django_site`
--
LOCK TABLES `django_site` WRITE;
/*!40000 ALTER TABLE `django_site` DISABLE KEYS */;
INSERT INTO `django_site` VALUES (1,'10.129.26.119','10.129.26.119'),(2,'10.129.26.148','10.129.26.148'),(3,'10.129.26.188','10.129.26.188');
/*!40000 ALTER TABLE `django_site` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `forum_attachments_attachment`
--
DROP TABLE IF EXISTS `forum_attachments_attachment`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `forum_attachments_attachment` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`file` varchar(100) NOT NULL,
`comment` varchar(255) DEFAULT NULL,
`post_id` int(11) NOT NULL,
PRIMARY KEY (`id`),
KEY `forum_attachments_at_post_id_0476a843_fk_forum_con` (`post_id`),
CONSTRAINT `forum_attachments_at_post_id_0476a843_fk_forum_con` FOREIGN KEY (`post_id`) REFERENCES `forum_conversation_post` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `forum_attachments_attachment`
--
LOCK TABLES `forum_attachments_attachment` WRITE;
/*!40000 ALTER TABLE `forum_attachments_attachment` DISABLE KEYS */;
/*!40000 ALTER TABLE `forum_attachments_attachment` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `forum_conversation_post`
--
DROP TABLE IF EXISTS `forum_conversation_post`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `forum_conversation_post` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`created` datetime(6) NOT NULL,
`updated` datetime(6) NOT NULL,
`poster_ip` char(39) DEFAULT NULL,
`subject` varchar(255) NOT NULL,
`content` longtext NOT NULL,
`username` varchar(155) DEFAULT NULL,
`approved` tinyint(1) NOT NULL,
`update_reason` varchar(255) DEFAULT NULL,
`updates_count` int(10) unsigned NOT NULL,
`_content_rendered` longtext,
`poster_id` int(11) DEFAULT NULL,
`topic_id` int(11) NOT NULL,
`updated_by_id` int(11) DEFAULT NULL,
`anonymous_key` varchar(100) DEFAULT NULL,
`enable_signature` tinyint(1) NOT NULL,
PRIMARY KEY (`id`),
KEY `forum_conversation_post_poster_id_19c4e995_fk_auth_user_id` (`poster_id`),
KEY `forum_conversation_p_topic_id_f6aaa418_fk_forum_con` (`topic_id`),
KEY `forum_conversation_post_updated_by_id_86093355_fk_auth_user_id` (`updated_by_id`),
KEY `forum_conversation_post_approved_a1090910` (`approved`),
KEY `forum_conversation_post_enable_signature_b1ce8b55` (`enable_signature`),
CONSTRAINT `forum_conversation_p_topic_id_f6aaa418_fk_forum_con` FOREIGN KEY (`topic_id`) REFERENCES `forum_conversation_topic` (`id`),
CONSTRAINT `forum_conversation_post_poster_id_19c4e995_fk_auth_user_id` FOREIGN KEY (`poster_id`) REFERENCES `auth_user` (`id`),
CONSTRAINT `forum_conversation_post_updated_by_id_86093355_fk_auth_user_id` FOREIGN KEY (`updated_by_id`) REFERENCES `auth_user` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `forum_conversation_post`
--
LOCK TABLES `forum_conversation_post` WRITE;
/*!40000 ALTER TABLE `forum_conversation_post` DISABLE KEYS */;
INSERT INTO `forum_conversation_post` VALUES (1,'2018-02-06 14:35:40.895239','2018-02-06 14:35:40.895308','10.129.26.119','What should we implement next?','The list contains the modules or system that we need to build and integrate with collaborative community.\r\n\r\n1. Syncronize editing or Collaborative editor\r\n2. Content types - wiki, videos, etc\r\n3. Reputation system\r\n4. Inappropriate content handling\r\n5. Dspace integration\r\n6. Event logs\r\n7. Notification\r\n8. Dynamic workflow\r\n9. Multiple Database integration(mongodb)\r\n10. Recommendation System\r\n\r\nLets have a discussion on this..',NULL,1,NULL,0,'<p>The list contains the modules or system that we need to build and integrate with collaborative community.</p>\n\n<ol>\n<li>Syncronize editing or Collaborative editor</li>\n<li>Content types - wiki, videos, etc</li>\n<li>Reputation system</li>\n<li>Inappropriate content handling</li>\n<li>Dspace integration</li>\n<li>Event logs</li>\n<li>Notification</li>\n<li>Dynamic workflow</li>\n<li>Multiple Database integration(mongodb)</li>\n<li>Recommendation System</li>\n</ol>\n\n<p>Lets have a discussion on this..</p>',3,1,NULL,NULL,1),(2,'2018-02-06 14:39:47.987490','2018-02-06 14:39:47.987553','10.129.26.119','Re: What should we implement next?','We shall work on content types',NULL,1,NULL,0,'<p>We shall work on content types</p>',6,1,NULL,NULL,1);
/*!40000 ALTER TABLE `forum_conversation_post` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `forum_conversation_topic`
--
DROP TABLE IF EXISTS `forum_conversation_topic`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `forum_conversation_topic` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`created` datetime(6) NOT NULL,
`updated` datetime(6) NOT NULL,
`subject` varchar(255) NOT NULL,
`slug` varchar(255) NOT NULL,
`type` smallint(5) unsigned NOT NULL,
`status` int(10) unsigned NOT NULL,
`approved` tinyint(1) NOT NULL,
`posts_count` int(10) unsigned NOT NULL,
`views_count` int(10) unsigned NOT NULL,
`last_post_on` datetime(6) DEFAULT NULL,
`forum_id` int(11) NOT NULL,
`poster_id` int(11) DEFAULT NULL,
`first_post_id` int(11) DEFAULT NULL,
`last_post_id` int(11) DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `forum_conversation_topic_forum_id_e9cfe592_fk_forum_forum_id` (`forum_id`),
KEY `forum_conversation_topic_poster_id_0dd4fa07_fk_auth_user_id` (`poster_id`),
KEY `forum_conversation_topic_slug_c74ce2cc` (`slug`),
KEY `forum_conversation_topic_type_92971eb5` (`type`),
KEY `forum_conversation_topic_status_e78d0ae4` (`status`),
KEY `forum_conversation_topic_approved_ad3fcbf9` (`approved`),
KEY `forum_conversation_t_last_post_id_e14396a2_fk_forum_con` (`last_post_id`),
KEY `forum_conversation_t_first_post_id_ca473bd1_fk_forum_con` (`first_post_id`),
CONSTRAINT `forum_conversation_t_first_post_id_ca473bd1_fk_forum_con` FOREIGN KEY (`first_post_id`) REFERENCES `forum_conversation_post` (`id`),
CONSTRAINT `forum_conversation_t_last_post_id_e14396a2_fk_forum_con` FOREIGN KEY (`last_post_id`) REFERENCES `forum_conversation_post` (`id`),
CONSTRAINT `forum_conversation_topic_forum_id_e9cfe592_fk_forum_forum_id` FOREIGN KEY (`forum_id`) REFERENCES `forum_forum` (`id`),
CONSTRAINT `forum_conversation_topic_poster_id_0dd4fa07_fk_auth_user_id` FOREIGN KEY (`poster_id`) REFERENCES `auth_user` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `forum_conversation_topic`
--
LOCK TABLES `forum_conversation_topic` WRITE;
/*!40000 ALTER TABLE `forum_conversation_topic` DISABLE KEYS */;
INSERT INTO `forum_conversation_topic` VALUES (1,'2018-02-06 14:35:40.879511','2018-02-06 14:39:47.996771','What should we implement next?','what-should-we-implement-next',0,0,1,2,18,'2018-02-06 14:39:47.987490',43,3,1,2);
/*!40000 ALTER TABLE `forum_conversation_topic` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `forum_conversation_topic_subscribers`
--
DROP TABLE IF EXISTS `forum_conversation_topic_subscribers`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `forum_conversation_topic_subscribers` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`topic_id` int(11) NOT NULL,
`user_id` int(11) NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `forum_conversation_topic_topic_id_user_id_b2c961d5_uniq` (`topic_id`,`user_id`),
KEY `forum_conversation_t_user_id_7e386a79_fk_auth_user` (`user_id`),
CONSTRAINT `forum_conversation_t_topic_id_34ebca87_fk_forum_con` FOREIGN KEY (`topic_id`) REFERENCES `forum_conversation_topic` (`id`),
CONSTRAINT `forum_conversation_t_user_id_7e386a79_fk_auth_user` 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 `forum_conversation_topic_subscribers`
--
LOCK TABLES `forum_conversation_topic_subscribers` WRITE;
/*!40000 ALTER TABLE `forum_conversation_topic_subscribers` DISABLE KEYS */;
/*!40000 ALTER TABLE `forum_conversation_topic_subscribers` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `forum_forum`
--
DROP TABLE IF EXISTS `forum_forum`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `forum_forum` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`created` datetime(6) NOT NULL,
`updated` datetime(6) NOT NULL,
`name` varchar(100) NOT NULL,
`slug` varchar(255) NOT NULL,
`description` longtext,
`image` varchar(100) DEFAULT NULL,
`link` varchar(200) DEFAULT NULL,
`link_redirects` tinyint(1) NOT NULL,
`type` smallint(5) unsigned NOT NULL,
`link_redirects_count` int(10) unsigned NOT NULL,
`last_post_on` datetime(6) DEFAULT NULL,
`display_sub_forum_list` tinyint(1) NOT NULL,