-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdevelopment.sql
488 lines (488 loc) · 57.2 KB
/
development.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
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
PRAGMA foreign_keys=OFF;
BEGIN TRANSACTION;
CREATE TABLE IF NOT EXISTS "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY);
INSERT INTO schema_migrations VALUES('20190911142243');
INSERT INTO schema_migrations VALUES('20190913213836');
INSERT INTO schema_migrations VALUES('20190913220110');
INSERT INTO schema_migrations VALUES('20190919151620');
INSERT INTO schema_migrations VALUES('20190919152541');
INSERT INTO schema_migrations VALUES('20190920223059');
INSERT INTO schema_migrations VALUES('20190923005239');
INSERT INTO schema_migrations VALUES('20190923144300');
INSERT INTO schema_migrations VALUES('20190925180708');
INSERT INTO schema_migrations VALUES('20190927184642');
INSERT INTO schema_migrations VALUES('20190927201532');
INSERT INTO schema_migrations VALUES('20190928004746');
INSERT INTO schema_migrations VALUES('20190928120942');
INSERT INTO schema_migrations VALUES('20191003165830');
INSERT INTO schema_migrations VALUES('20191004192535');
INSERT INTO schema_migrations VALUES('20191006123737');
INSERT INTO schema_migrations VALUES('20191006145533');
INSERT INTO schema_migrations VALUES('20191012010130');
INSERT INTO schema_migrations VALUES('20191012010410');
INSERT INTO schema_migrations VALUES('20191012125934');
INSERT INTO schema_migrations VALUES('20191013201604');
INSERT INTO schema_migrations VALUES('20191014144910');
CREATE TABLE IF NOT EXISTS "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL);
INSERT INTO ar_internal_metadata VALUES('environment','development','2019-09-28 14:50:40.552956','2019-09-28 14:50:40.552956');
CREATE TABLE IF NOT EXISTS "answers" ("id" integer NOT NULL PRIMARY KEY, "answer" varchar DEFAULT NULL, "created_at" integer NOT NULL, "updated_at" datetime(6) NOT NULL, "question_id" varchar DEFAULT 'f', "correct_answer" integer, "quiz_id" integer);
INSERT INTO answers VALUES(1,'chaos',1570932035,'2019-10-13 02:00:35.848491','1',0,1);
INSERT INTO answers VALUES(2,'establish',1570932035,'2019-10-13 02:00:35.848491','1',1,1);
INSERT INTO answers VALUES(3,'bush',1570932035,'2019-10-13 02:00:35.848491','1',0,1);
INSERT INTO answers VALUES(4,'fraud',1570932035,'2019-10-13 02:00:35.848491','1',0,1);
INSERT INTO answers VALUES(5,'chest',1570932035,'2019-10-13 19:11:56.526766','2',0,1);
INSERT INTO answers VALUES(6,'undress',1570932035,'2019-10-13 19:32:45.214387','2',0,1);
INSERT INTO answers VALUES(7,'entitlement',1570932035,'2019-10-13 19:32:57.544118','2',0,1);
INSERT INTO answers VALUES(8,'rocket',1570932035,'2019-10-13 19:32:57.566276','2',1,1);
INSERT INTO answers VALUES(9,'Canada',1570932035,'2019-10-13 19:46:21.796660','3',1,1);
INSERT INTO answers VALUES(10,'hunting',1570932035,'2019-10-13 02:00:35.848491','3',0,1);
INSERT INTO answers VALUES(11,'refuse',1570932035,'2019-10-13 02:00:35.848491','3',0,1);
INSERT INTO answers VALUES(12,'tribute',1570932035,'2019-10-13 19:46:21.809685','3',0,1);
INSERT INTO answers VALUES(13,'satisfied',1570932035,'2019-10-13 19:33:29.766127','4',1,1);
INSERT INTO answers VALUES(14,'executive',1570932035,'2019-10-13 02:00:35.848491','4',0,1);
INSERT INTO answers VALUES(15,'dance',1570932035,'2019-10-13 19:33:29.775540','4',0,1);
INSERT INTO answers VALUES(16,'adopt',1570932035,'2019-10-13 02:00:35.848491','4',0,1);
INSERT INTO answers VALUES(17,'Robert Peary',1570973637,'2019-10-13 13:33:57.601134','5',0,5);
INSERT INTO answers VALUES(18,'Edmund Hillary',1570973637,'2019-10-13 13:33:57.606411','5',1,5);
INSERT INTO answers VALUES(19,'Richard Francis Burton',1570973637,'2019-10-13 13:33:57.611991','5',0,5);
INSERT INTO answers VALUES(20,'William Clark',1570973637,'2019-10-13 13:33:57.619089','5',0,5);
INSERT INTO answers VALUES(21,'Walter Raleigh',1570973637,'2019-10-13 13:33:57.634762','6',0,5);
INSERT INTO answers VALUES(22,'Henry Hudson',1570973637,'2019-10-13 13:33:57.639959','6',0,5);
INSERT INTO answers VALUES(23,'John Smith',1570973637,'2019-10-13 13:33:57.646502','6',0,5);
INSERT INTO answers VALUES(24,'Francis Drake',1570973637,'2019-10-13 13:33:57.652896','6',1,5);
INSERT INTO answers VALUES(25,'Bartolomeu Dias',1570973637,'2019-10-13 13:33:57.667525','7',0,5);
INSERT INTO answers VALUES(26,'Vasco da Gama',1570973637,'2019-10-13 13:33:57.672822','7',0,5);
INSERT INTO answers VALUES(27,'Marco Polo',1570973637,'2019-10-13 13:33:57.679112','7',0,5);
INSERT INTO answers VALUES(28,'Christopher Columbus',1570973637,'2019-10-13 13:33:57.685625','7',1,5);
INSERT INTO answers VALUES(29,'Alexander Mackenzie',1570973637,'2019-10-13 13:33:57.699327','8',0,5);
INSERT INTO answers VALUES(30,'Robert Falcon Scott',1570973637,'2019-10-13 13:33:57.705371','8',1,5);
INSERT INTO answers VALUES(31,'Robert Peary',1570973637,'2019-10-13 13:33:57.710890','8',0,5);
INSERT INTO answers VALUES(32,'Edmund Hillary',1570973637,'2019-10-13 13:33:57.716542','8',0,5);
INSERT INTO answers VALUES(33,'Henry Morton Stanley',1570973637,'2019-10-13 13:33:57.729482','9',1,5);
INSERT INTO answers VALUES(34,'William Clark',1570973637,'2019-10-13 13:33:57.735029','9',0,5);
INSERT INTO answers VALUES(35,'Robert Peary',1570973637,'2019-10-13 13:33:57.740638','9',0,5);
INSERT INTO answers VALUES(36,'Daniel Boone',1570973637,'2019-10-13 13:33:57.746075','9',0,5);
INSERT INTO answers VALUES(37,'Ferdinand Magellan',1570973637,'2019-10-13 13:33:57.759455','10',0,5);
INSERT INTO answers VALUES(38,'Francisco Pizarro',1570973637,'2019-10-13 13:33:57.764734','10',1,5);
INSERT INTO answers VALUES(39,'Hernando Cortes ',1570973637,'2019-10-13 13:33:57.770125','10',0,5);
INSERT INTO answers VALUES(40,'Bartolomeu Dias ',1570973637,'2019-10-13 13:33:57.775659','10',0,5);
INSERT INTO answers VALUES(41,'Tekakwitha',1570973637,'2019-10-13 13:33:57.788288','11',0,5);
INSERT INTO answers VALUES(42,'Sacagawea',1570973637,'2019-10-13 13:33:57.793630','11',1,5);
INSERT INTO answers VALUES(43,'Pocahontas',1570973637,'2019-10-13 13:33:57.799464','11',0,5);
INSERT INTO answers VALUES(44,'Alliquippa',1570973637,'2019-10-13 13:33:57.806337','11',0,5);
INSERT INTO answers VALUES(45,'Amerigo Vespucci',1570973637,'2019-10-13 13:33:57.822625','12',0,5);
INSERT INTO answers VALUES(46,'Marco Polo ',1570973637,'2019-10-13 13:33:57.829944','12',0,5);
INSERT INTO answers VALUES(47,'Christopher Columbus',1570973637,'2019-10-13 13:33:57.837291','12',0,5);
INSERT INTO answers VALUES(48,'John Cabot',1570973637,'2019-10-13 13:33:57.843307','12',1,5);
INSERT INTO answers VALUES(49,'Jacob Roggeveen',1570973637,'2019-10-13 13:33:57.855907','13',0,5);
INSERT INTO answers VALUES(50,'Willem Schouten',1570973637,'2019-10-13 13:33:57.861563','13',0,5);
INSERT INTO answers VALUES(51,'Abel Tasman',1570973637,'2019-10-13 13:33:57.867227','13',1,5);
INSERT INTO answers VALUES(52,'Willem de Vlamingh',1570973637,'2019-10-13 13:33:57.873016','13',0,5);
INSERT INTO answers VALUES(53,'George Bass',1570973637,'2019-10-13 13:33:57.885674','14',0,5);
INSERT INTO answers VALUES(54,'Robert Peary',1570973637,'2019-10-13 13:33:57.891046','14',1,5);
INSERT INTO answers VALUES(55,'Robert Falcon Scott',1570973637,'2019-10-13 13:33:57.896794','14',0,5);
INSERT INTO answers VALUES(56,'Edmund Hillary',1570973637,'2019-10-13 13:33:57.903025','14',0,5);
INSERT INTO answers VALUES(57,'Jacques Marquette',1570974236,'2019-10-13 13:43:56.120854','15',0,6);
INSERT INTO answers VALUES(58,'Samuel de Champlain',1570974236,'2019-10-13 13:43:56.126097','15',0,6);
INSERT INTO answers VALUES(59,'Henri Mouhot',1570974236,'2019-10-13 13:43:56.131033','15',1,6);
INSERT INTO answers VALUES(60,'Jacques Cartier',1570974236,'2019-10-13 13:43:56.138217','15',0,6);
INSERT INTO answers VALUES(61,'George Bass',1570974236,'2019-10-13 13:43:56.150241','16',1,6);
INSERT INTO answers VALUES(62,'Thomas Cavendish',1570974236,'2019-10-13 13:43:56.156961','16',0,6);
INSERT INTO answers VALUES(63,'Richard Francis Burton',1570974236,'2019-10-13 13:43:56.161689','16',0,6);
INSERT INTO answers VALUES(64,'Simon Fraser',1570974236,'2019-10-13 13:43:56.167801','16',0,6);
INSERT INTO answers VALUES(65,'Juan Rodriguez Cabrillo',1570974236,'2019-10-13 13:43:56.181138','17',1,6);
INSERT INTO answers VALUES(66,'Pedro Alvares Cabral',1570974236,'2019-10-13 13:43:56.187769','17',0,6);
INSERT INTO answers VALUES(67,'Panfilo de Narvaez',1570974236,'2019-10-13 13:43:56.192878','17',0,6);
INSERT INTO answers VALUES(68,'Juan de Onate',1570974236,'2019-10-13 13:43:56.198220','17',0,6);
INSERT INTO answers VALUES(69,'Richard Grenville',1570974236,'2019-10-13 13:43:56.212067','18',0,6);
INSERT INTO answers VALUES(70,'Alexander Mackenzie',1570974236,'2019-10-13 13:43:56.218590','18',0,6);
INSERT INTO answers VALUES(71,'George Vancouver',1570974236,'2019-10-13 13:43:56.224952','18',0,6);
INSERT INTO answers VALUES(72,'Martin Frobisher',1570974236,'2019-10-13 13:43:56.230384','18',1,6);
INSERT INTO answers VALUES(73,'Juan Rodriguez Cabrillo ',1570974236,'2019-10-13 13:43:56.243832','19',0,6);
INSERT INTO answers VALUES(74,'Vasco Nunez de Balbo',1570974236,'2019-10-13 13:43:56.248987','19',0,6);
INSERT INTO answers VALUES(75,'Gaspar Corte Real',1570974236,'2019-10-13 13:43:56.254494','19',1,6);
INSERT INTO answers VALUES(76,'Pedro Alvares Cabral ',1570974236,'2019-10-13 13:43:56.259897','19',0,6);
INSERT INTO answers VALUES(77,'Henri Mouhot ',1570974236,'2019-10-13 13:43:56.272385','20',0,6);
INSERT INTO answers VALUES(78,'Cabeza de Vaca',1570974236,'2019-10-13 13:43:56.278125','20',0,6);
INSERT INTO answers VALUES(79,'Reinhold Messner',1570974236,'2019-10-13 13:43:56.283697','20',1,6);
INSERT INTO answers VALUES(80,'Giovanni da Verrazzano',1570974236,'2019-10-13 13:43:56.289343','20',0,6);
INSERT INTO answers VALUES(81,'Willem Janszoon',1570974236,'2019-10-13 13:43:56.302262','21',1,6);
INSERT INTO answers VALUES(82,'Willem Schouten',1570974236,'2019-10-13 13:43:56.307813','21',0,6);
INSERT INTO answers VALUES(83,'Maarten Gerritsz Vries',1570974236,'2019-10-13 13:43:56.313226','21',0,6);
INSERT INTO answers VALUES(84,'Willem Barentsz',1570974236,'2019-10-13 13:43:56.318268','21',0,6);
INSERT INTO answers VALUES(85,'Jacques Marquette',1570974236,'2019-10-13 13:43:56.332668','22',0,6);
INSERT INTO answers VALUES(86,'Jacques Cartier',1570974236,'2019-10-13 13:43:56.339333','22',0,6);
INSERT INTO answers VALUES(87,'Henri Mouhot',1570974236,'2019-10-13 13:43:56.346230','22',0,6);
INSERT INTO answers VALUES(88,'Samuel de Champlain',1570974236,'2019-10-13 13:43:56.353004','22',1,6);
INSERT INTO answers VALUES(89,'Estenvanico',1570974236,'2019-10-13 13:43:56.368349','23',0,6);
INSERT INTO answers VALUES(90,'Panfilo de Narvaez',1570974236,'2019-10-13 13:43:56.375150','23',0,6);
INSERT INTO answers VALUES(91,'Wang Dayuan ',1570974236,'2019-10-13 13:43:56.401293','23',0,6);
INSERT INTO answers VALUES(92,'Ibn Battuta',1570974236,'2019-10-13 13:43:56.409042','23',1,6);
INSERT INTO answers VALUES(93,'Maarten Gerritsz Vries',1570974236,'2019-10-13 13:43:56.422801','24',0,6);
INSERT INTO answers VALUES(94,'Willem Barentsz',1570974236,'2019-10-13 13:43:56.428872','24',1,6);
INSERT INTO answers VALUES(95,'Willem Janszoon',1570974236,'2019-10-13 13:43:56.436386','24',0,6);
INSERT INTO answers VALUES(96,'Willem Schouten',1570974236,'2019-10-13 13:43:56.443583','24',0,6);
INSERT INTO answers VALUES(97,'1957',1570974584,'2019-10-13 13:49:44.810132','25',1,7);
INSERT INTO answers VALUES(98,'1959',1570974584,'2019-10-13 13:49:44.815383','25',0,7);
INSERT INTO answers VALUES(99,'1953',1570974584,'2019-10-13 13:49:44.823051','25',0,7);
INSERT INTO answers VALUES(100,'1951',1570974584,'2019-10-13 13:49:44.828223','25',0,7);
INSERT INTO answers VALUES(101,'1952',1570974584,'2019-10-13 13:49:44.842938','26',0,7);
INSERT INTO answers VALUES(102,'1950',1570974584,'2019-10-13 13:49:44.848868','26',0,7);
INSERT INTO answers VALUES(103,'1958',1570974584,'2019-10-13 13:49:44.855796','26',0,7);
INSERT INTO answers VALUES(104,'1956',1570974584,'2019-10-13 13:49:44.860974','26',1,7);
INSERT INTO answers VALUES(105,'1957',1570974584,'2019-10-13 13:49:44.875198','27',0,7);
INSERT INTO answers VALUES(106,'1959',1570974584,'2019-10-13 13:49:44.880897','27',0,7);
INSERT INTO answers VALUES(107,'1953',1570974584,'2019-10-13 13:49:44.887546','27',1,7);
INSERT INTO answers VALUES(108,'1955',1570974584,'2019-10-13 13:49:44.894082','27',0,7);
INSERT INTO answers VALUES(109,'1954',1570974584,'2019-10-13 13:49:44.908700','28',1,7);
INSERT INTO answers VALUES(110,'1952',1570974584,'2019-10-13 13:49:44.914610','28',0,7);
INSERT INTO answers VALUES(111,'1956',1570974584,'2019-10-13 13:49:44.921215','28',0,7);
INSERT INTO answers VALUES(112,'1958',1570974584,'2019-10-13 13:49:44.926456','28',0,7);
INSERT INTO answers VALUES(113,'1954',1570974584,'2019-10-13 13:49:44.940034','29',0,7);
INSERT INTO answers VALUES(114,'1952',1570974584,'2019-10-13 13:49:44.945504','29',0,7);
INSERT INTO answers VALUES(115,'1950',1570974584,'2019-10-13 13:49:44.951394','29',0,7);
INSERT INTO answers VALUES(116,'1958',1570974584,'2019-10-13 13:49:44.957419','29',1,7);
INSERT INTO answers VALUES(117,'1957',1570974584,'2019-10-13 13:49:44.969508','30',0,7);
INSERT INTO answers VALUES(118,'1959',1570974584,'2019-10-13 13:49:44.975245','30',0,7);
INSERT INTO answers VALUES(119,'1953',1570974584,'2019-10-13 13:49:44.980816','30',0,7);
INSERT INTO answers VALUES(120,'1955',1570974585,'2019-10-13 13:49:45.005852','30',1,7);
INSERT INTO answers VALUES(121,'1951',1570974585,'2019-10-13 13:49:45.021473','31',0,7);
INSERT INTO answers VALUES(122,'1955',1570974585,'2019-10-13 13:49:45.030186','31',0,7);
INSERT INTO answers VALUES(123,'1957',1570974585,'2019-10-13 13:49:45.038193','31',0,7);
INSERT INTO answers VALUES(124,'1953',1570974585,'2019-10-13 13:49:45.045366','31',1,7);
INSERT INTO answers VALUES(125,'1950',1570974585,'2019-10-13 13:49:45.061205','32',0,7);
INSERT INTO answers VALUES(126,'1956',1570974585,'2019-10-13 13:49:45.066522','32',0,7);
INSERT INTO answers VALUES(127,'1954',1570974585,'2019-10-13 13:49:45.072516','32',1,7);
INSERT INTO answers VALUES(128,'1952',1570974585,'2019-10-13 13:49:45.078054','32',0,7);
INSERT INTO answers VALUES(129,'1958',1570974585,'2019-10-13 13:49:45.091535','33',1,7);
INSERT INTO answers VALUES(130,'1956',1570974585,'2019-10-13 13:49:45.097133','33',0,7);
INSERT INTO answers VALUES(131,'1954',1570974585,'2019-10-13 13:49:45.102755','33',0,7);
INSERT INTO answers VALUES(132,'1952',1570974585,'2019-10-13 13:49:45.108371','33',0,7);
INSERT INTO answers VALUES(133,'1952',1570974585,'2019-10-13 13:49:45.121435','34',1,7);
INSERT INTO answers VALUES(134,'1950',1570974585,'2019-10-13 13:49:45.128509','34',0,7);
INSERT INTO answers VALUES(135,'1954',1570974585,'2019-10-13 13:49:45.135617','34',0,7);
INSERT INTO answers VALUES(136,'1956',1570974585,'2019-10-13 13:49:45.142841','34',0,7);
INSERT INTO answers VALUES(137,'1968',1570974885,'2019-10-13 13:54:45.255978','35',0,8);
INSERT INTO answers VALUES(138,'1964',1570974885,'2019-10-13 13:54:45.261399','35',0,8);
INSERT INTO answers VALUES(139,'1966',1570974885,'2019-10-13 13:54:45.269266','35',0,8);
INSERT INTO answers VALUES(140,'1962',1570974885,'2019-10-13 13:54:45.274617','35',1,8);
INSERT INTO answers VALUES(141,'1968',1570974885,'2019-10-13 13:54:45.289536','36',0,8);
INSERT INTO answers VALUES(142,'1964',1570974885,'2019-10-13 13:54:45.294541','36',1,8);
INSERT INTO answers VALUES(143,'1962',1570974885,'2019-10-13 13:54:45.301180','36',0,8);
INSERT INTO answers VALUES(144,'1960',1570974885,'2019-10-13 13:54:45.306465','36',0,8);
INSERT INTO answers VALUES(145,'1968',1570974885,'2019-10-13 13:54:45.320536','37',0,8);
INSERT INTO answers VALUES(146,'1962',1570974885,'2019-10-13 13:54:45.344857','37',1,8);
INSERT INTO answers VALUES(147,'1960',1570974885,'2019-10-13 13:54:45.351825','37',0,8);
INSERT INTO answers VALUES(148,'1966',1570974885,'2019-10-13 13:54:45.357508','37',0,8);
INSERT INTO answers VALUES(149,'1968',1570974885,'2019-10-13 13:54:45.372438','38',1,8);
INSERT INTO answers VALUES(150,'1964',1570974885,'2019-10-13 13:54:45.377809','38',0,8);
INSERT INTO answers VALUES(151,'1962',1570974885,'2019-10-13 13:54:45.383380','38',0,8);
INSERT INTO answers VALUES(152,'1960',1570974885,'2019-10-13 13:54:45.388537','38',0,8);
INSERT INTO answers VALUES(153,'1963',1570974885,'2019-10-13 13:54:45.401748','39',0,8);
INSERT INTO answers VALUES(154,'1969',1570974885,'2019-10-13 13:54:45.407193','39',1,8);
INSERT INTO answers VALUES(155,'1967',1570974885,'2019-10-13 13:54:45.412622','39',0,8);
INSERT INTO answers VALUES(156,'1965',1570974885,'2019-10-13 13:54:45.418524','39',0,8);
INSERT INTO answers VALUES(157,'1963',1570974885,'2019-10-13 13:54:45.430957','40',0,8);
INSERT INTO answers VALUES(158,'1967',1570974885,'2019-10-13 13:54:45.436356','40',0,8);
INSERT INTO answers VALUES(159,'1969',1570974885,'2019-10-13 13:54:45.441462','40',0,8);
INSERT INTO answers VALUES(160,'1965',1570974885,'2019-10-13 13:54:45.446490','40',1,8);
INSERT INTO answers VALUES(161,'1962',1570974885,'2019-10-13 13:54:45.458708','41',0,8);
INSERT INTO answers VALUES(162,'1966',1570974885,'2019-10-13 13:54:45.464974','41',0,8);
INSERT INTO answers VALUES(163,'1968',1570974885,'2019-10-13 13:54:45.471823','41',0,8);
INSERT INTO answers VALUES(164,'1960',1570974885,'2019-10-13 13:54:45.478830','41',1,8);
INSERT INTO answers VALUES(165,'1965',1570974885,'2019-10-13 13:54:45.495598','42',0,8);
INSERT INTO answers VALUES(166,'1963',1570974885,'2019-10-13 13:54:45.502886','42',0,8);
INSERT INTO answers VALUES(167,'1961',1570974885,'2019-10-13 13:54:45.507963','42',0,8);
INSERT INTO answers VALUES(168,'1967',1570974885,'2019-10-13 13:54:45.513560','42',1,8);
INSERT INTO answers VALUES(169,'1967',1570974885,'2019-10-13 13:54:45.525622','43',1,8);
INSERT INTO answers VALUES(170,'1969',1570974885,'2019-10-13 13:54:45.531017','43',0,8);
INSERT INTO answers VALUES(171,'1963',1570974885,'2019-10-13 13:54:45.536456','43',0,8);
INSERT INTO answers VALUES(172,'1961',1570974885,'2019-10-13 13:54:45.542829','43',0,8);
INSERT INTO answers VALUES(173,'1960',1570974885,'2019-10-13 13:54:45.554917','44',1,8);
INSERT INTO answers VALUES(174,'1964',1570974885,'2019-10-13 13:54:45.560535','44',0,8);
INSERT INTO answers VALUES(175,'1966',1570974885,'2019-10-13 13:54:45.566121','44',0,8);
INSERT INTO answers VALUES(176,'1968',1570974885,'2019-10-13 13:54:45.572979','44',0,8);
INSERT INTO answers VALUES(177,'ColdFusion',1570975239,'2019-10-13 14:00:39.755481','45',1,9);
INSERT INTO answers VALUES(178,'ASP',1570975239,'2019-10-13 14:00:39.762300','45',0,9);
INSERT INTO answers VALUES(179,'Delphi',1570975239,'2019-10-13 14:00:39.769053','45',0,9);
INSERT INTO answers VALUES(180,'Python',1570975239,'2019-10-13 14:00:39.774376','45',0,9);
INSERT INTO answers VALUES(181,'LISP',1570975239,'2019-10-13 14:00:39.807869','46',1,9);
INSERT INTO answers VALUES(182,'Prolog',1570975239,'2019-10-13 14:00:39.816004','46',0,9);
INSERT INTO answers VALUES(183,'COBOL',1570975239,'2019-10-13 14:00:39.821674','46',0,9);
INSERT INTO answers VALUES(184,'Miranda',1570975239,'2019-10-13 14:00:39.827572','46',0,9);
INSERT INTO answers VALUES(185,'PostScript',1570975239,'2019-10-13 14:00:39.841708','47',0,9);
INSERT INTO answers VALUES(186,'MaxScript',1570975239,'2019-10-13 14:00:39.848689','47',0,9);
INSERT INTO answers VALUES(187,'JavaScript',1570975239,'2019-10-13 14:00:39.853918','47',1,9);
INSERT INTO answers VALUES(188,'ActionScript',1570975239,'2019-10-13 14:00:39.859405','47',0,9);
INSERT INTO answers VALUES(189,'Delphi',1570975239,'2019-10-13 14:00:39.873536','48',0,9);
INSERT INTO answers VALUES(190,'Ajax',1570975239,'2019-10-13 14:00:39.879299','48',1,9);
INSERT INTO answers VALUES(191,'J++',1570975239,'2019-10-13 14:00:39.885096','48',0,9);
INSERT INTO answers VALUES(192,'ActionScript',1570975239,'2019-10-13 14:00:39.890567','48',0,9);
INSERT INTO answers VALUES(193,'Python',1570975239,'2019-10-13 14:00:39.904179','49',0,9);
INSERT INTO answers VALUES(194,'PHP',1570975239,'2019-10-13 14:00:39.909857','49',0,9);
INSERT INTO answers VALUES(195,'Pascal',1570975239,'2019-10-13 14:00:39.915217','49',1,9);
INSERT INTO answers VALUES(196,'Perl',1570975239,'2019-10-13 14:00:39.920930','49',0,9);
INSERT INTO answers VALUES(197,'MATLAB',1570975239,'2019-10-13 14:00:39.933980','50',1,9);
INSERT INTO answers VALUES(198,'VBA',1570975239,'2019-10-13 14:00:39.939475','50',0,9);
INSERT INTO answers VALUES(199,'COBOL',1570975239,'2019-10-13 14:00:39.944978','50',0,9);
INSERT INTO answers VALUES(200,'SQL',1570975239,'2019-10-13 14:00:39.950341','50',0,9);
INSERT INTO answers VALUES(201,'ASP',1570975239,'2019-10-13 14:00:39.962957','51',0,9);
INSERT INTO answers VALUES(202,'Perl',1570975239,'2019-10-13 14:00:39.970443','51',1,9);
INSERT INTO answers VALUES(203,'Java',1570975239,'2019-10-13 14:00:39.977522','51',0,9);
INSERT INTO answers VALUES(204,'PHP',1570975239,'2019-10-13 14:00:39.984279','51',0,9);
INSERT INTO answers VALUES(205,'ActionScript',1570975240,'2019-10-13 14:00:40.000815','52',1,9);
INSERT INTO answers VALUES(206,'JavaScript',1570975240,'2019-10-13 14:00:40.006037','52',0,9);
INSERT INTO answers VALUES(207,'LiveScript',1570975240,'2019-10-13 14:00:40.011491','52',0,9);
INSERT INTO answers VALUES(208,'PostScript',1570975240,'2019-10-13 14:00:40.017442','52',0,9);
INSERT INTO answers VALUES(209,'Prolog',1570975240,'2019-10-13 14:00:40.029792','53',0,9);
INSERT INTO answers VALUES(210,'COBOL',1570975240,'2019-10-13 14:00:40.035410','53',1,9);
INSERT INTO answers VALUES(211,'Lingo',1570975240,'2019-10-13 14:00:40.040780','53',0,9);
INSERT INTO answers VALUES(212,'LISP',1570975240,'2019-10-13 14:00:40.046383','53',0,9);
INSERT INTO answers VALUES(213,'Ruby',1570975240,'2019-10-13 14:00:40.059159','54',0,9);
INSERT INTO answers VALUES(214,'ActionScript',1570975240,'2019-10-13 14:00:40.065138','54',0,9);
INSERT INTO answers VALUES(215,'VBA',1570975240,'2019-10-13 14:00:40.072557','54',0,9);
INSERT INTO answers VALUES(216,'Lingo',1570975240,'2019-10-13 14:00:40.079457','54',1,9);
INSERT INTO answers VALUES(217,'Vint Cerf',1570975770,'2019-10-13 14:09:30.951461','55',1,10);
INSERT INTO answers VALUES(218,'Bjarne Stroustrup',1570975770,'2019-10-13 14:09:30.957199','55',0,10);
INSERT INTO answers VALUES(219,'Ramus Lerdorf',1570975770,'2019-10-13 14:09:30.983654','55',0,10);
INSERT INTO answers VALUES(220,'Sabeer Bhatia',1570975770,'2019-10-13 14:09:30.992682','55',0,10);
INSERT INTO answers VALUES(221,'Doug Englebart',1570975771,'2019-10-13 14:09:31.008399','56',1,10);
INSERT INTO answers VALUES(222,'Tim Berners-Lee',1570975771,'2019-10-13 14:09:31.016376','56',0,10);
INSERT INTO answers VALUES(223,'Ada Byron Lovelace',1570975771,'2019-10-13 14:09:31.023389','56',0,10);
INSERT INTO answers VALUES(224,'Jerry Yang',1570975771,'2019-10-13 14:09:31.032062','56',0,10);
INSERT INTO answers VALUES(225,'Charles Goldfarb',1570975771,'2019-10-13 14:09:31.049373','57',0,10);
INSERT INTO answers VALUES(226,'Marc Andreessen',1570975771,'2019-10-13 14:09:31.056229','57',0,10);
INSERT INTO answers VALUES(227,'Robert Kahn',1570975771,'2019-10-13 14:09:31.063842','57',1,10);
INSERT INTO answers VALUES(228,'James Gosling',1570975771,'2019-10-13 14:09:31.072588','57',0,10);
INSERT INTO answers VALUES(229,'Steve Case',1570975771,'2019-10-13 14:09:31.105633','58',1,10);
INSERT INTO answers VALUES(230,'Jeff Bezos ',1570975771,'2019-10-13 14:09:31.117285','58',0,10);
INSERT INTO answers VALUES(231,'Larry Ellison',1570975771,'2019-10-13 14:09:31.128408','58',0,10);
INSERT INTO answers VALUES(232,'Jerry Jang',1570975771,'2019-10-13 14:09:31.139796','58',0,10);
INSERT INTO answers VALUES(233,'George Boole',1570975771,'2019-10-13 14:09:31.164563','59',0,10);
INSERT INTO answers VALUES(234,'Charles Babbage',1570975771,'2019-10-13 14:09:31.170384','59',0,10);
INSERT INTO answers VALUES(235,'Alan Turing',1570975771,'2019-10-13 14:09:31.175710','59',1,10);
INSERT INTO answers VALUES(236,'Jeff Bezos',1570975771,'2019-10-13 14:09:31.181889','59',0,10);
INSERT INTO answers VALUES(237,'Charles Babbage',1570975771,'2019-10-13 14:09:31.197566','60',0,10);
INSERT INTO answers VALUES(238,'Niklaus Wirth',1570975771,'2019-10-13 14:09:31.204915','60',0,10);
INSERT INTO answers VALUES(239,'George Boole',1570975771,'2019-10-13 14:09:31.211478','60',1,10);
INSERT INTO answers VALUES(240,'Alan Turing',1570975771,'2019-10-13 14:09:31.218903','60',0,10);
INSERT INTO answers VALUES(241,'Konrad Zuse',1570975771,'2019-10-13 14:09:31.233437','61',0,10);
INSERT INTO answers VALUES(242,'Alan Turing',1570975771,'2019-10-13 14:09:31.240155','61',0,10);
INSERT INTO answers VALUES(243,'George Boole',1570975771,'2019-10-13 14:09:31.246200','61',0,10);
INSERT INTO answers VALUES(244,'Ada Byron Lovelace',1570975771,'2019-10-13 14:09:31.252086','61',1,10);
INSERT INTO answers VALUES(245,'George Boole',1570975771,'2019-10-13 14:09:31.266850','62',0,10);
INSERT INTO answers VALUES(246,'Konrad Zuse',1570975771,'2019-10-13 14:09:31.272911','62',0,10);
INSERT INTO answers VALUES(247,'Charles Babbage',1570975771,'2019-10-13 14:09:31.279386','62',1,10);
INSERT INTO answers VALUES(248,'Alan Turing',1570975771,'2019-10-13 14:09:31.286622','62',0,10);
INSERT INTO answers VALUES(249,'Ken Thompson',1570975771,'2019-10-13 14:09:31.305226','63',0,10);
INSERT INTO answers VALUES(250,'Phil Zimmermann',1570975771,'2019-10-13 14:09:31.312406','63',1,10);
INSERT INTO answers VALUES(251,'Tim Berners-Lee',1570975771,'2019-10-13 14:09:31.319995','63',0,10);
INSERT INTO answers VALUES(252,'Marc Andreessen',1570975771,'2019-10-13 14:09:31.325949','63',0,10);
INSERT INTO answers VALUES(253,'David Filo',1570975771,'2019-10-13 14:09:31.358744','64',0,10);
INSERT INTO answers VALUES(254,'Larry Ellison',1570975771,'2019-10-13 14:09:31.365196','64',1,10);
INSERT INTO answers VALUES(255,'Dennis Ritchie ',1570975771,'2019-10-13 14:09:31.371943','64',0,10);
INSERT INTO answers VALUES(256,'James Gosling',1570975771,'2019-10-13 14:09:31.377782','64',0,10);
INSERT INTO answers VALUES(257,'WIKI',1570976096,'2019-10-13 14:14:56.863880','65',0,11);
INSERT INTO answers VALUES(258,'WORD',1570976096,'2019-10-13 14:14:56.870272','65',0,11);
INSERT INTO answers VALUES(259,'HTTP',1570976096,'2019-10-13 14:14:56.875767','65',0,11);
INSERT INTO answers VALUES(260,'SPAM',1570976096,'2019-10-13 14:14:56.883428','65',1,11);
INSERT INTO answers VALUES(261,'Byte',1570976096,'2019-10-13 14:14:56.896628','66',0,11);
INSERT INTO answers VALUES(262,'Icon',1570976096,'2019-10-13 14:14:56.903393','66',0,11);
INSERT INTO answers VALUES(263,'Font',1570976096,'2019-10-13 14:14:56.908626','66',1,11);
INSERT INTO answers VALUES(264,'Beta',1570976096,'2019-10-13 14:14:56.915193','66',0,11);
INSERT INTO answers VALUES(265,'UNIX',1570976096,'2019-10-13 14:14:56.927876','67',0,11);
INSERT INTO answers VALUES(266,'VOIP',1570976096,'2019-10-13 14:14:56.934751','67',0,11);
INSERT INTO answers VALUES(267,'BIOS',1570976096,'2019-10-13 14:14:56.940486','67',1,11);
INSERT INTO answers VALUES(268,'WLAN',1570976096,'2019-10-13 14:14:56.946868','67',0,11);
INSERT INTO answers VALUES(269,'BAUD',1570976096,'2019-10-13 14:14:56.960048','68',0,11);
INSERT INTO answers VALUES(270,'HTTP',1570976096,'2019-10-13 14:14:56.966593','68',1,11);
INSERT INTO answers VALUES(271,'BIOS',1570976096,'2019-10-13 14:14:56.972414','68',0,11);
INSERT INTO answers VALUES(272,'HDMI',1570976096,'2019-10-13 14:14:56.981315','68',0,11);
INSERT INTO answers VALUES(273,'BIOS',1570976096,'2019-10-13 14:14:56.997905','69',0,11);
INSERT INTO answers VALUES(274,'HTML',1570976097,'2019-10-13 14:14:57.023910','69',0,11);
INSERT INTO answers VALUES(275,'MIDI',1570976097,'2019-10-13 14:14:57.030115','69',0,11);
INSERT INTO answers VALUES(276,'WORD',1570976097,'2019-10-13 14:14:57.035479','69',1,11);
INSERT INTO answers VALUES(277,'Chip',1570976097,'2019-10-13 14:14:57.048873','70',1,11);
INSERT INTO answers VALUES(278,'Boot',1570976097,'2019-10-13 14:14:57.054373','70',0,11);
INSERT INTO answers VALUES(279,'Icon',1570976097,'2019-10-13 14:14:57.060224','70',0,11);
INSERT INTO answers VALUES(280,'Font',1570976097,'2019-10-13 14:14:57.065630','70',0,11);
INSERT INTO answers VALUES(281,'PING',1570976097,'2019-10-13 14:14:57.080584','71',0,11);
INSERT INTO answers VALUES(282,'SVGA',1570976097,'2019-10-13 14:14:57.087462','71',0,11);
INSERT INTO answers VALUES(283,'WIKI',1570976097,'2019-10-13 14:14:57.094784','71',1,11);
INSERT INTO answers VALUES(284,'WORD',1570976097,'2019-10-13 14:14:57.102343','71',0,11);
INSERT INTO answers VALUES(285,'UNIX',1570976097,'2019-10-13 14:14:57.115487','72',0,11);
INSERT INTO answers VALUES(286,'WIFI',1570976097,'2019-10-13 14:14:57.120633','72',1,11);
INSERT INTO answers VALUES(287,'VOIP',1570976097,'2019-10-13 14:14:57.126238','72',0,11);
INSERT INTO answers VALUES(288,'SPAM',1570976097,'2019-10-13 14:14:57.131958','72',0,11);
INSERT INTO answers VALUES(289,'VOIP',1570976097,'2019-10-13 14:14:57.144238','73',0,11);
INSERT INTO answers VALUES(290,'SVGA',1570976097,'2019-10-13 14:14:57.150099','73',0,11);
INSERT INTO answers VALUES(291,'BAUD',1570976097,'2019-10-13 14:14:57.155438','73',1,11);
INSERT INTO answers VALUES(292,'SPAM',1570976097,'2019-10-13 14:14:57.161290','73',0,11);
INSERT INTO answers VALUES(293,'Beta',1570976097,'2019-10-13 14:14:57.175930','74',0,11);
INSERT INTO answers VALUES(294,'GREP',1570976097,'2019-10-13 14:14:57.183130','74',1,11);
INSERT INTO answers VALUES(295,'PORT',1570976097,'2019-10-13 14:14:57.190189','74',0,11);
INSERT INTO answers VALUES(296,'BAUD',1570976097,'2019-10-13 14:14:57.197438','74',0,11);
INSERT INTO answers VALUES(297,'System file',1570976548,'2019-10-13 14:22:28.892043','75',0,12);
INSERT INTO answers VALUES(298,'Animation/movie file',1570976548,'2019-10-13 14:22:28.897876','75',0,12);
INSERT INTO answers VALUES(299,'MS Encarta document',1570976548,'2019-10-13 14:22:28.903559','75',0,12);
INSERT INTO answers VALUES(300,'Image file',1570976548,'2019-10-13 14:22:28.910674','75',1,12);
INSERT INTO answers VALUES(301,'MS Office document',1570976548,'2019-10-13 14:22:28.924431','76',1,12);
INSERT INTO answers VALUES(302,'Image file',1570976548,'2019-10-13 14:22:28.930115','76',0,12);
INSERT INTO answers VALUES(303,'Animation/movie file',1570976548,'2019-10-13 14:22:28.935216','76',0,12);
INSERT INTO answers VALUES(304,'Hypertext related file',1570976548,'2019-10-13 14:22:28.941524','76',0,12);
INSERT INTO answers VALUES(305,'WordPerfect Document file',1570976548,'2019-10-13 14:22:28.954578','77',0,12);
INSERT INTO answers VALUES(306,'Internet location',1570976548,'2019-10-13 14:22:28.961282','77',0,12);
INSERT INTO answers VALUES(307,'System file',1570976548,'2019-10-13 14:22:28.966266','77',1,12);
INSERT INTO answers VALUES(308,'Hypertext related file',1570976548,'2019-10-13 14:22:28.973258','77',0,12);
INSERT INTO answers VALUES(309,'Image file',1570976548,'2019-10-13 14:22:28.985508','78',0,12);
INSERT INTO answers VALUES(310,'Compressed Archive file',1570976548,'2019-10-13 14:22:28.992659','78',0,12);
INSERT INTO answers VALUES(311,'Internet location',1570976548,'2019-10-13 14:22:28.998338','78',0,12);
INSERT INTO answers VALUES(312,'MS Office document',1570976549,'2019-10-13 14:22:29.003778','78',1,12);
INSERT INTO answers VALUES(313,'WordPerfect Document file',1570976549,'2019-10-13 14:22:29.018430','79',0,12);
INSERT INTO answers VALUES(314,'Adobe Acrobat file',1570976549,'2019-10-13 14:22:29.024788','79',0,12);
INSERT INTO answers VALUES(315,'Hypertext related file',1570976549,'2019-10-13 14:22:29.030356','79',0,12);
INSERT INTO answers VALUES(316,'Animation/movie file',1570976549,'2019-10-13 14:22:29.036111','79',1,12);
INSERT INTO answers VALUES(317,'MS Office document',1570976549,'2019-10-13 14:22:29.048620','80',0,12);
INSERT INTO answers VALUES(318,'Animation/movie file',1570976549,'2019-10-13 14:22:29.054045','80',0,12);
INSERT INTO answers VALUES(319,'Programming/scripting related file',1570976549,'2019-10-13 14:22:29.059646','80',0,12);
INSERT INTO answers VALUES(320,'Image file',1570976549,'2019-10-13 14:22:29.064694','80',1,12);
INSERT INTO answers VALUES(321,'Image file',1570976549,'2019-10-13 14:22:29.077281','81',0,12);
INSERT INTO answers VALUES(322,'Animation/movie file',1570976549,'2019-10-13 14:22:29.083588','81',0,12);
INSERT INTO answers VALUES(323,'Password list',1570976549,'2019-10-13 14:22:29.089901','81',0,12);
INSERT INTO answers VALUES(324,'Adobe Acrobat file',1570976549,'2019-10-13 14:22:29.096439','81',1,12);
INSERT INTO answers VALUES(325,'WordPerfect Document file',1570976549,'2019-10-13 14:22:29.113086','82',0,12);
INSERT INTO answers VALUES(326,'Programming/scripting related file',1570976549,'2019-10-13 14:22:29.120183','82',0,12);
INSERT INTO answers VALUES(327,'Audio file',1570976549,'2019-10-13 14:22:29.127030','82',1,12);
INSERT INTO answers VALUES(328,'System file',1570976549,'2019-10-13 14:22:29.134574','82',0,12);
INSERT INTO answers VALUES(329,'Compressed Archive file',1570976549,'2019-10-13 14:22:29.157223','83',0,12);
INSERT INTO answers VALUES(330,'Audio file',1570976549,'2019-10-13 14:22:29.164677','83',0,12);
INSERT INTO answers VALUES(331,'Backup file',1570976549,'2019-10-13 14:22:29.171216','83',0,12);
INSERT INTO answers VALUES(332,'System file',1570976549,'2019-10-13 14:22:29.177680','83',1,12);
INSERT INTO answers VALUES(333,'Adobe Acrobat file',1570976549,'2019-10-13 14:22:29.191759','84',0,12);
INSERT INTO answers VALUES(334,'MS Office document',1570976549,'2019-10-13 14:22:29.198238','84',0,12);
INSERT INTO answers VALUES(335,'Image file',1570976549,'2019-10-13 14:22:29.206092','84',1,12);
INSERT INTO answers VALUES(336,'Compressed Archive file',1570976549,'2019-10-13 14:22:29.212898','84',0,12);
CREATE TABLE IF NOT EXISTS "questions" ("id" integer NOT NULL PRIMARY KEY, "quiz_id" integer NOT NULL, "created_at" integer DEFAULT 1569682240 NOT NULL, "updated_at" integer DEFAULT 1569682240 NOT NULL, "question" varchar DEFAULT NULL);
INSERT INTO questions VALUES(3,1,1570932035,1570932035,'The beaver is the national emblem of which country?');
INSERT INTO questions VALUES(4,1,1570932035,1570932035,'In which movie did Humphrey Bogart play Charlie Allnut?');
INSERT INTO questions VALUES(5,5,1569682240,1569682240,'Which explorer is described here? New Zealand mountaineer (1919-2008) who, with his guide Tenzing Norgay, became the first successful person to climb Mount Everest');
INSERT INTO questions VALUES(6,5,1569682240,1569682240,'Which explorer is described here? English sea captain (~1540-1596) who carried out the second circumnavigation of the world in his flagship Golden Hind');
INSERT INTO questions VALUES(7,5,1569682240,1569682240,'Which explorer is described here? Genovese explorer (~1450-1506) who is often credited for discovering America when he landed in the Bahamas in 1492');
INSERT INTO questions VALUES(8,5,1569682240,1569682240,'Which explorer is described here? English explorer (1868-1912) who died on an expedition to the South Pole, just after hearing that another explorer reached it first');
INSERT INTO questions VALUES(9,5,1569682240,1569682240,'Which explorer is described here? Welsh explorer (1841-1904) famous for exploring central Africa and his search for David Livingstone');
INSERT INTO questions VALUES(10,5,1569682240,1569682240,'Which explorer is described here? Spanish conquistador (1471-1541) who founded Lima and conquered the Inca Empire');
INSERT INTO questions VALUES(11,5,1569682240,1569682240,'Which explorer is described here? Native American woman (~1788-1812) who famously went along with the Lewis and Clark Expedition as an interpreter and guide');
INSERT INTO questions VALUES(12,5,1569682240,1569682240,'Which explorer is described here? Italian explorer (~1450-1499) who, commissioned by Henry VII, is regarded as one of the first Europeans to encounter the mainland of North America');
INSERT INTO questions VALUES(13,5,1569682240,1569682240,'Which explorer is described here? Dutch explorer (1603-1659) known for discovering Van Diemen''s Land, New Zealand and large parts of Australia');
INSERT INTO questions VALUES(14,5,1569682240,1569682240,'Which explorer is described here? American explorer (1856-1920) who claimed to have reached the geographic North Pole in 1909, but probably failed and came within 5 miles of it');
INSERT INTO questions VALUES(15,6,1569682240,1569682240,'Which explorer is described here? French naturalist (1826-1861), most famous for his writings about Angkor (Wat) and other parts of Indochina');
INSERT INTO questions VALUES(16,6,1569682240,1569682240,'Which explorer is described here? British explorer (1771-1803) who explored parts of Australia. The strait that seperates Tasmania from mainland Australia is named after him');
INSERT INTO questions VALUES(17,6,1569682240,1569682240,'Which explorer is described here? Portuguese explorer (~1500-1543) noted for being the first European explorer to navigate the coast of present day California');
INSERT INTO questions VALUES(18,6,1569682240,1569682240,'Which explorer is described here? English explorer (~1535-1594) who made three voyages to northeastern Canada and carried over 1000 tons of gold home, only to find it was worthless iron pyrite');
INSERT INTO questions VALUES(19,6,1569682240,1569682240,'Which explorer is described here? Portuguese explorer (~1450-1501) who sailed to Greenland and possibly Canada. Was lost at sea and his brother Miguel died attempting to find him');
INSERT INTO questions VALUES(20,6,1569682240,1569682240,'Which explorer is described here? Italian adventurer (1944-) known for the first solo ascent of Mount Everest without supplemental oxygen and the first climber to ascend all 14 mountains over 8000 meters');
INSERT INTO questions VALUES(21,6,1569682240,1569682240,'Which explorer is described here? Dutch navigator (1570-1630) who is remembered as the first European to have seen and made landfall at the coast of Australia');
INSERT INTO questions VALUES(22,6,1569682240,1569682240,'Which explorer is described here? French explorer (~1567-1635), nicknamed ''The Father of New France'', famous for founding New France and Quebec City');
INSERT INTO questions VALUES(23,6,1569682240,1569682240,'Which explorer is described here? Moroccan explorer (~1304-1369) known for his journeys to West Africa, Southern and Eastern Europe and Asia and the account of his journeys called the Rihla');
INSERT INTO questions VALUES(24,6,1569682240,1569682240,'Which explorer is described here? Dutch explorer (1550-1597) who died at Novaya Zemlya while searching for the Northeast passage to the Pacific Ocean and China');
INSERT INTO questions VALUES(25,7,1569682240,1569682240,'In which year did all these events happen? Ghana becomes independent from the UK, the International Geophysical Year begins, the Soviet Union launches Sputnik 2 with the first animal (dog Laika) to orbit the Earth and the Little Rock Crisis happens.');
INSERT INTO questions VALUES(26,7,1569682240,1569682240,'In which year did all these events happen? The Winter Olympic Games are in Cortina d''Ampezzo (Italy), tv soap As the World Turns debuts, boxing champion Rocky Marciano retires without losing a professional boxing match and Gamal Abdel Nasser becomes president of Egypt');
INSERT INTO questions VALUES(27,7,1569682240,1569682240,'In which year did all these events happen? The Korean War ends, a North Sea flood hits the Netherlands and the UK, Joseph Stalin dies, Dag Hammarskjold becomes United Nations Secretary General, the coronation of Queen Elizabeth II occurs and Albert Schweitzer wins the Nobel Peace prize');
INSERT INTO questions VALUES(28,7,1569682240,1569682240,'In which year did all these events happen? Alfredo Stroessner seizes power in Paraguay, the Union of European Football Associations (UEFA) is formed and the Algerian War of Independence begins');
INSERT INTO questions VALUES(29,7,1569682240,1569682240,'In which year did all these events happen? Egypt and Syria unite to form the United Arab Republic, the Atomium in Brussels is constructed, the first Cod War (UK-Iceland) happens, the John Birch Society is founded and British children''s tv show Blue Peter debuts');
INSERT INTO questions VALUES(30,7,1569682240,1569682240,'In which year did all these events happen? Rock Around the Clock (Bill Haley and His Comets) hits #1 in the US and UK and brings rock and roll into mainstream culture around the world and Cardiff is declared as the capital of Wales');
INSERT INTO questions VALUES(31,7,1569682240,1569682240,'In which year did all these events happen? Dwight D. Eisenhower becomes US President, Greece/Turkey/Yugoslavia sign the Balkan Pact, Hillary and Norgay become the first men to reach the summit of Mount Everest and John F.Kennedy marries Jacqueline Lee Bouvier');
INSERT INTO questions VALUES(32,7,1569682240,1569682240,'In which year did all these events happen? Marilyn Monroe marries Joe DiMaggio, the Battle of Dien Bien Phu happens in Vietnam, Alan Turing commits suicide and the FIFA World Cup is held in Switzerland');
INSERT INTO questions VALUES(33,7,1569682240,1569682240,'In which year did all these events happen? The European Economic Community is establised on Jan 1st, NASA is created, nuclear-powered submarine USS Nautilus becomes the first vessel to cross the North Pole under water and Guinea declares itself independent from France');
INSERT INTO questions VALUES(34,7,1569682240,1569682240,'In which year did all these events happen? King George VI (UK) dies, Greece and Turkey join the NATO, the Great Smog affects London and Agatha Christie''s play The Mousetrap opens in London');
INSERT INTO questions VALUES(35,8,1569682240,1569682240,'In which year did all these events happen? The Organization of American States suspends Cuba''s membership, the FIFA World Cup is held in Chile, Algeria becomes independent from France, Nelson Mandela is arrested in South Africa, Dr.No premieres in UK and Spiegel scandal in Germany');
INSERT INTO questions VALUES(36,8,1569682240,1569682240,'In which year did all these events happen? Cassius Clay beats Sonny Liston and becomes boxing heavyweight champion, Beatles on Ed Sullivan Show and start British Invasion in America, Northern Rhodesia becomes the independent Republic of Zambia and Malta becomes independent from the UK');
INSERT INTO questions VALUES(37,8,1569682240,1569682240,'In which year did all these events happen? Cuban Missile Crisis happens, John Glenn is 1st American to orbit the Earth, Rwanda and Burundi gain independence from Belgium, Marilyn Monroe dies from overdose, Beatles release 1st single ''Love Me Do'' and Sino-Indian War/border disputes');
INSERT INTO questions VALUES(38,8,1569682240,1569682240,'In which year did all these events happen? Tet Offensive in Vietnam, Mauritius becomes independent from the UK, Beatles create Apple Records, Intel Corporation is founded and Tommie Smith and John Carlos do a black power salute at the Summer Olympic Games in Mexico City');
INSERT INTO questions VALUES(39,8,1569682240,1569682240,'In which year did all these events happen? Jan Palach sets himself on fire, Arafat is PLO leader, Yoko and John marry and have Bed-Ins, Pompidou is French president, Football War (Honduras-El Salvador), Woodstock festival, Monty Python''s Flying Circus and Sesame Street debuts');
INSERT INTO questions VALUES(40,8,1569682240,1569682240,'In which year did all these events happen? Canada adopts new flag with a maple leaf, The Gambia becomes independent from the UK, the Maldives receive full independence from the UK, the Gateway Arch is completed in St. Louis and soap opera Days of Our Lives makes its debut');
INSERT INTO questions VALUES(41,8,1569682240,1569682240,'In which year did all these events happen? Sharpeville massacre in South Africa, Brazil moves capital to new city Brasilia, European Free Trade Association is established, A.Korda photo of Che Guevara, Coronation Street debuts, Nixon/Kennedy tv debate and the OPEC is established');
INSERT INTO questions VALUES(42,8,1569682240,1569682240,'In which year did all these events happen? The Six-Day War (Arab-Israeli war) happens, G.Papadopoulos seizes power in Greece, Beatles release Sgt. Pepper''s album, Biafra (eastern Nigeria) claims independence and Christiaan Barnard (Cape Town) carries out the first heart transplant');
INSERT INTO questions VALUES(43,8,1569682240,1569682240,'In which year did all these events happen? Sandie Shaw (UK) wins Eurovision, Summer of Love happens, Our World is 1st live/international/satellite tv production, Nguyen Van Thieu becomes President of South Vietnam, 12th Street riots occur in Detroit and Che Guevara is killed in Bolivia');
INSERT INTO questions VALUES(44,8,1569682240,1569682240,'In which year did all these events happen? Winter Olympics in Squaw Valley (California), U2-plane pilot Gary Powers is shot down and captured, Eichmann is arrested by Israeli agents, Khrushchev pounds his shoe at UN, The Flintstones debuts and the Summer Olympics are held in Rome');
INSERT INTO questions VALUES(45,9,1569682240,1569682240,'Which computer (programming) language (or script) is described here? Programming language and web application development platform invented in 1995 and purchased by Adobe in 2006. It was originally designed to connect simple HTML pages to a database');
INSERT INTO questions VALUES(46,9,1569682240,1569682240,'Which computer (programming) language (or script) is described here? One of the oldest high-level programming languages in widespread use today. It was designed by John McCarthy in 1958 and quickly became a favored programming language for artificial intelligence');
INSERT INTO questions VALUES(47,9,1569682240,1569682240,'Which computer (programming) language (or script) is described here? A popular scripting language for computers, often run in web browsers to create or alter dynamic content. It was developed by Brendan Eich for Netscape in 1995.');
INSERT INTO questions VALUES(48,9,1569682240,1569682240,'Which computer (programming) language (or script) is described here? Not a programming language, but a popular group of interrelated client-side web development techniques to exchange data without full webpage reloads.');
INSERT INTO questions VALUES(49,9,1569682240,1569682240,'Which computer (programming) language (or script) is described here? Influential programming language, published in 1970 by Niklaus Wirth as a small and efficient language intended to encourage good programming practices using structured programming and data structuring.');
INSERT INTO questions VALUES(50,9,1569682240,1569682240,'Which computer (programming) language (or script) is described here? Multi-paradigm numerical computing environment and fourth-generation programming language since the late 70s, primarily intended for numerical computing.');
INSERT INTO questions VALUES(51,9,1569682240,1569682240,'Which computer (programming) language (or script) is described here? Popular high-level, general-purpose, interpreted, dynamic programming language created by Larry Wall in 1987. It is often used in CGI and text processing (e.g. parsing).');
INSERT INTO questions VALUES(52,9,1569682240,1569682240,'Which computer (programming) language (or script) is described here? Computer scripting language originally developed by Macromedia Inc., now primarily used in Adobe Flash Player');
INSERT INTO questions VALUES(53,9,1569682240,1569682240,'Which computer (programming) language (or script) is described here? Compiled computer programming language created in 1959 and primarily used in business, finance, and administrative systems');
INSERT INTO questions VALUES(54,9,1569682240,1569682240,'Which computer (programming) language (or script) is described here? Scripting and object-oriented programming language developed by John H. Thompson for use in Adobe Director');
INSERT INTO questions VALUES(55,10,1569682240,1569682240,'Who co-invented the TCP/IP Internet protocol with Robert Kahn in 1973');
INSERT INTO questions VALUES(56,10,1569682240,1569682240,'Who invented the computer mouse');
INSERT INTO questions VALUES(57,10,1569682240,1569682240,'Who co-invented the TCP/IP Internet protocol with Vint Cerf in 1973');
INSERT INTO questions VALUES(58,10,1569682240,1569682240,'Who is chairman, CEO and founder of America Online');
INSERT INTO questions VALUES(59,10,1569682240,1569682240,'Who is largely responsible for breaking the German Enigma codes, created a test that provided a foundation for artificial intelligence');
INSERT INTO questions VALUES(60,10,1569682240,1569682240,'Who is the mathematician that helped establish modern symbolic logic, especially by his algebra of logic, a two-valued system');
INSERT INTO questions VALUES(61,10,1569682240,1569682240,'Who is considered to be the world''s first programmer (1843). A software language was named in this person''s honor');
INSERT INTO questions VALUES(62,10,1569682240,1569682240,'Who developed the Difference Engine and Analytical Engine, two punched-card controlled general purpose calculators');
INSERT INTO questions VALUES(63,10,1569682240,1569682240,'Who created Pretty Good Privacy (PGP)');
INSERT INTO questions VALUES(64,10,1569682240,1569682240,'Who is co-founder and CEO of Oracle Corp');
INSERT INTO questions VALUES(65,11,1569682240,1569682240,'What computer term is described here? Undesired electronic messages, often advertisement related');
INSERT INTO questions VALUES(66,11,1569682240,1569682240,'What computer term is described here? Typeface used on computers like Times New Roman and Arial');
INSERT INTO questions VALUES(67,11,1569682240,1569682240,'What computer term is described here? Set of computer instructions in firmware which controls the hardware initialization during the booting process');
INSERT INTO questions VALUES(68,11,1569682240,1569682240,'What computer term is described here? Protocol for distributed, collaborative, hypermedia information systems like the World Wide Web');
INSERT INTO questions VALUES(69,11,1569682240,1569682240,'What computer term is described here? Well-known program developed by Microsoft for creating, editing and formatting of text and other features');
INSERT INTO questions VALUES(70,11,1569682240,1569682240,'What computer term is described here? Set of electronic circuits on one small flat piece of semiconductor material');
INSERT INTO questions VALUES(71,11,1569682240,1569682240,'What computer term is described here? Type of website where users collaboratively modify content and structure directly from the web browser');
INSERT INTO questions VALUES(72,11,1569682240,1569682240,'What computer term is described here? Technology for wireless local networks, e.g. to connect a tablet to the Internet');
INSERT INTO questions VALUES(73,11,1569682240,1569682240,'What computer term is described here? Unit of transmission speed used in telecommunications and electronics');
INSERT INTO questions VALUES(74,11,1569682240,1569682240,'What computer term is described here? Command-line program that searches plain-text data sets for a matching sequence of characters');
INSERT INTO questions VALUES(75,12,1569682240,1569682240,'This extension refers usually to what kind of file? .JPG');
INSERT INTO questions VALUES(76,12,1569682240,1569682240,'This extension refers usually to what kind of file? .MDB');
INSERT INTO questions VALUES(77,12,1569682240,1569682240,'This extension refers usually to what kind of file? .EXE');
INSERT INTO questions VALUES(78,12,1569682240,1569682240,'This extension refers usually to what kind of file? .XLS');
INSERT INTO questions VALUES(79,12,1569682240,1569682240,'This extension refers usually to what kind of file? .AVI');
INSERT INTO questions VALUES(80,12,1569682240,1569682240,'This extension refers usually to what kind of file? .TIF');
INSERT INTO questions VALUES(81,12,1569682240,1569682240,'This extension refers usually to what kind of file? .PDF');
INSERT INTO questions VALUES(82,12,1569682240,1569682240,'This extension refers usually to what kind of file? .MP3');
INSERT INTO questions VALUES(83,12,1569682240,1569682240,'This extension refers usually to what kind of file? .BAT');
INSERT INTO questions VALUES(84,12,1569682240,1569682240,'This extension refers usually to what kind of file? .PSD');
CREATE TABLE IF NOT EXISTS "quizzes" ("id" integer NOT NULL PRIMARY KEY, "name" varchar DEFAULT NULL, "category" varchar DEFAULT NULL, "created_at" integer DEFAULT 1569682240 NOT NULL, "updated_at" integer DEFAULT 1569682240 NOT NULL, "description" varchar DEFAULT NULL);
INSERT INTO quizzes VALUES(1,'First Sample Quiz','Sample1',1570932035,1570932506,'This the first quiz testing your knowledge of random questions');
INSERT INTO quizzes VALUES(3,'Third Sample Quiz','Sample3',1570932035,1570932035,'To Quiz or not to quiz, that is the question...');
INSERT INTO quizzes VALUES(4,'Fourth Sample Quiz','Sample4',1570932035,1570932035,'Trivial Game are a great way to learn various random facts with no real life application');
INSERT INTO quizzes VALUES(5,'Famous Explorers I','General History',1569682240,1569682240,'Do you know which explorers are described here?');
INSERT INTO quizzes VALUES(6,'Famous Explorers II','General History',1569682240,1569682240,'Can you tell which explorers are described here?');
INSERT INTO quizzes VALUES(7,'Events And Years 1950-1959','General History',1569682240,1570974910,'Can you tell the years of the 1950s when these events occurred?');
INSERT INTO quizzes VALUES(8,'Events And Years 1960-1969','General History',1569682240,1569682240,'Do you know in which years of the 1960s these events happened?');
INSERT INTO quizzes VALUES(9,'Programming Languages Quiz','General Computer',1569682240,1570977418,'Can you tell which programming, scripting or other computer languages are described here?');
INSERT INTO quizzes VALUES(10,'Famous Computer Persons','General Computer',1569682240,1570977461,'Do you really know all the famous persons that obtained their fame by doing of having done something with computers? Do you know who Steve Case is? Or why are David Filo & Jerry Yang famous? And do names like Doug Englebart, Tim Berners-Lee and Shawn Fanning ring a bell?');
INSERT INTO quizzes VALUES(11,'Four Letter Computer Terms','General Computer',1569682240,1569682240,'Which four letter computer terms, like Boot, Wiki and WIFI, are described here?');
INSERT INTO quizzes VALUES(12,'File Extensions I','General Computer',1569682240,1570977466,'Computers have files and files have extensions (well quite often). Can you tell what kind of document or file you''re dealing with when looking at its extension? Can you tell the difference between a hypertext and an audio file, just by looking at its extension?');
CREATE TABLE IF NOT EXISTS "sessions" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "session_id" varchar NOT NULL, "data" text, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL);
INSERT INTO sessions VALUES(12,'1141784a6ac4910c2707ba5343339f3a','{"value":{"_csrf_token":"cSWamj08nfrmjbGClBIzQlkpINt5HVQtGcRD/DP2IL4=","user_id":1,"username":"testing1"}}','2019-10-08 19:11:49.915622','2019-10-08 19:19:03.917907');
INSERT INTO sessions VALUES(13,'20364ed36c1da325a715f31ce9fd3b67','{"value":{"_csrf_token":"gIsJdDsZxR8Cyekz2tE/GTJZ0SQiuC73Pg2eTiSYCx4=","user_id":false,"username":false,"quiz_id":"5"}}','2019-10-09 13:50:54.367599','2019-10-14 00:57:52.692163');
CREATE TABLE IF NOT EXISTS "users" ("id" integer NOT NULL PRIMARY KEY, "username" varchar DEFAULT '' NOT NULL, "email" varchar DEFAULT '' NOT NULL, "password" varchar DEFAULT '' NOT NULL, "fullName" varchar DEFAULT NULL, "bio" text DEFAULT NULL, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL, "auth_token" varchar DEFAULT NULL, "password_reset_token" varchar DEFAULT NULL, "password_reset_sent_at" datetime DEFAULT NULL);
INSERT INTO users VALUES(1,'testing1','[email protected]','$2a$12$HAmJWTcGXB49F/5Zh9nt6u1NMUlvb5H/wZw0VzQbx/945wgjHwbWO','Shehan Atukorala','Shehan Atukorala','2019-10-03 17:30:57.095461','2019-10-03 17:30:57.095461',NULL,NULL,NULL);
INSERT INTO users VALUES(2,'admin','[email protected]','$2a$12$lrEjlgT3U53bI5Ug1.b8kOE.S5FK7BZi7xYtaEoASEWRAkGplS4MW','Admin Admin','Admin','2019-10-13 02:00:35.849559','2019-10-13 02:00:35.849559',NULL,NULL,NULL);
CREATE TABLE IF NOT EXISTS "scores" ("id" integer NOT NULL PRIMARY KEY, "quiz_id" integer DEFAULT NULL, "score" integer DEFAULT NULL, "user_id" integer DEFAULT NULL, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL);
INSERT INTO scores VALUES(980190962,1,80,2,'2019-10-13 02:00:35.850625','2019-10-13 13:35:08.387209');
INSERT INTO scores VALUES(980190963,5,50,1,'2019-10-13 20:05:27.444107','2019-10-13 20:05:27.444107');
INSERT INTO scores VALUES(980190964,5,50,1,'2019-10-13 20:33:54.916306','2019-10-13 20:33:54.916306');
INSERT INTO scores VALUES(980190965,5,50,1,'2019-10-13 20:33:56.218373','2019-10-13 20:33:56.218373');
INSERT INTO scores VALUES(980190966,5,50,1,'2019-10-13 20:34:01.136827','2019-10-13 20:34:01.136827');
INSERT INTO scores VALUES(980190967,5,50,1,'2019-10-13 20:34:02.503270','2019-10-13 20:34:02.503270');
INSERT INTO scores VALUES(980190968,5,60,1,'2019-10-13 20:34:12.254030','2019-10-13 20:34:12.254030');
INSERT INTO scores VALUES(980190969,5,60,1,'2019-10-13 20:34:14.286304','2019-10-13 20:34:14.286304');
INSERT INTO scores VALUES(980190970,5,50,1,'2019-10-13 20:34:19.591913','2019-10-13 20:34:19.591913');
INSERT INTO scores VALUES(980190971,5,50,1,'2019-10-13 20:34:21.047739','2019-10-13 20:34:21.047739');
CREATE TABLE IF NOT EXISTS "quiz_categories" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "category" varchar, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL);
INSERT INTO quiz_categories VALUES(1,'Sample1','2019-10-14 16:52:52','2019-10-14 16:52:52');
INSERT INTO quiz_categories VALUES(2,'Sample3','2019-10-14 16:53:12','2019-10-14 16:53:12');
INSERT INTO quiz_categories VALUES(3,'Sample4','2019-10-14 16:53:20','2019-10-14 16:53:20');
INSERT INTO quiz_categories VALUES(4,'General History','2019-10-14 16:53:41','2019-10-14 16:53:41');
INSERT INTO quiz_categories VALUES(5,'General Computer','2019-10-14 16:53:58','2019-10-14 16:53:58');
DELETE FROM sqlite_sequence;
INSERT INTO sqlite_sequence VALUES('sessions',13);
INSERT INTO sqlite_sequence VALUES('quiz_categories',5);
CREATE UNIQUE INDEX "index_sessions_on_session_id" ON "sessions" ("session_id");
CREATE INDEX "index_sessions_on_updated_at" ON "sessions" ("updated_at");
COMMIT;