-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathunisa.sql
1734 lines (1511 loc) · 544 KB
/
unisa.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
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.19, for Linux (x86_64)
--
-- Host: localhost Database: unisa
-- ------------------------------------------------------
-- Server version 5.7.19-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 `blob_file`
--
DROP TABLE IF EXISTS `blob_file`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `blob_file` (
`file_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`file_sha256` char(64) NOT NULL,
`context_id` int(10) unsigned DEFAULT NULL,
`file_name` varchar(2048) DEFAULT NULL,
`deleted` tinyint(1) DEFAULT NULL,
`contenttype` varchar(256) DEFAULT NULL,
`path` varchar(2048) DEFAULT NULL,
`content` longblob,
`json` text,
`created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`accessed_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY (`file_id`),
KEY `blob_indx_1` (`file_sha256`) USING HASH,
KEY `blob_ibfk_1` (`context_id`),
CONSTRAINT `blob_ibfk_1` FOREIGN KEY (`context_id`) REFERENCES `lti_context` (`context_id`) ON DELETE SET NULL ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `blob_file`
--
LOCK TABLES `blob_file` WRITE;
/*!40000 ALTER TABLE `blob_file` DISABLE KEYS */;
/*!40000 ALTER TABLE `blob_file` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `content`
--
DROP TABLE IF EXISTS `content`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `content` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`title` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`body` text COLLATE utf8mb4_unicode_ci,
`tags` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`creator_id` int(10) unsigned DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`description` text COLLATE utf8mb4_unicode_ci NOT NULL,
`cloned_id` int(10) unsigned DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `user_ibfk_1` (`creator_id`),
KEY `content_cloned_id_foreign` (`cloned_id`),
CONSTRAINT `content_cloned_id_foreign` FOREIGN KEY (`cloned_id`) REFERENCES `content` (`id`) ON DELETE SET NULL,
CONSTRAINT `user_ibfk_1` FOREIGN KEY (`creator_id`) REFERENCES `users` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=32 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `content`
--
LOCK TABLES `content` WRITE;
/*!40000 ALTER TABLE `content` DISABLE KEYS */;
INSERT INTO `content` VALUES (16,'Algebra','<p>Algebra (from Arabic "al-jabr" meaning "reunion of broken parts"[1]) is one of the broad parts of mathematics, together with number theory, geometry and analysis. In its most general form, algebra is the study of mathematical symbols and the rules for manipulating these symbols;[2] it is a unifying thread of almost all of mathematics.[3] As such, it includes everything from elementary equation solving to the study of abstractions such as groups, rings, and fields. The more basic parts of algebra are called elementary algebra; the more abstract parts are called abstract algebra or modern algebra. Elementary algebra is generally considered to be essential for any study of mathematics, science, or engineering, as well as such applications as medicine and economics. Abstract algebra is a major area in advanced mathematics, studied primarily by professional mathematicians.</p><p>Elementary algebra differs from arithmetic in the use of abstractions, such as using letters to stand for numbers that are either unknown or allowed to take on many values.[4] For example, in <span class=\"math-tex\">\\( x+2=5\\)</span> the letter <span class=\"math-tex\">\\(x\\)</span> is unknown, but the law of inverses can be used to discover its value: <span class=\"math-tex\">\\(x=3\\)</span>. In <span class=\"math-tex\">\\(E=mc^2\\)</span>, the letters <span class=\"math-tex\">\\(E\\)</span> and <span class=\"math-tex\">\\(m\\)</span> are variables, and the letter <span class=\"math-tex\">\\(c\\)</span> is a constant, the speed of light in a vacuum. Algebra gives methods for solving equations and expressing formulas that are much easier (for those who know how to use them) than the older method of writing everything out in words.</p><p>The word algebra is also used in certain specialized ways. A special kind of mathematical object in abstract algebra is called an "algebra", and the word is used, for example, in the phrases linear algebra and algebraic topology.</p><p>A mathematician who does research in algebra is called an algebraist.</p><p> </p>','maths,math,mathematics,number,numbers,algebra,variables,unknown',1,'2017-09-08 13:37:22','2017-09-19 09:16:17','Algebra (from Arabic \"al-jabr\" meaning \"reunion of broken parts\") is one of the broad parts of mathematics, together with number theory, geometry and analysis.',NULL),(17,'Evolution','<p>Evolution is change in the heritable characteristics of biological populations over successive generations. Evolutionary processes give rise to biodiversity at every level of biological organisation, including the levels of species, individual organisms, and molecules.</p><p>Repeated formation of new species (speciation), change within species (anagenesis), and loss of species (extinction) throughout the evolutionary history of life on Earth are demonstrated by shared sets of morphological and biochemical traits, including shared DNA sequences. These shared traits are more similar among species that share a more recent common ancestor, and can be used to reconstruct a biological "tree of life" based on evolutionary relationships (phylogenetics), using both existing species and fossils. The fossil record includes a progression from early biogenic graphite, to microbial mat fossils, to fossilised multicellular organisms. Existing patterns of biodiversity have been shaped both by speciation and by extinction.</p><p>In the mid-19th century, Charles Darwin formulated the scientific theory of evolution by natural selection, published in his book On the Origin of Species (1859). Evolution by natural selection is a process demonstrated by the observation that more offspring are produced than can possibly survive, along with three facts about populations:</p><ol><li>traits vary among individuals with respect to morphology, physiology, and behaviour (phenotypic variation),</li><li>different traits confer different rates of survival and reproduction (differential fitness), and</li><li>traits can be passed from generation to generation (heritability of fitness). Thus, in successive generations members of a population are replaced by progeny of parents better adapted to survive and reproduce in the biophysical environment in which natural selection takes place.</li></ol>','science,natural,animals,nature,evolution',1,'2017-09-08 13:41:15','2017-09-19 09:21:16','Evolution is change in the heritable characteristics of biological populations over successive generations.',NULL),(18,'LTI Test','<p><iframe allowfullscreen=\"\" frameborder=\"0\" height=\"315\" src=\"http://www.youtube.com/embed/W7qWa52k-nE\" width=\"560\"></iframe></p>','maths,math,mathematics,number,numbers',1,'2017-09-08 13:54:40','2017-09-08 13:54:40','Numrical Methods',NULL),(19,'Demonstration','<div class=\"appframe\"><iframe allowtransparency=\"true\" class=\"ckeditorframev2\" frameborder=\"0\" height=\"750\" scrolling=\"no\" src=\"/ajaxresponse/40\" type=\"text/html\" width=\"100%\"></iframe></div>\r\n<p> </p>','maths,math,mathematics,number,numbers,algebra,variables,unknown',1,'2017-09-12 08:47:34','2017-09-12 08:51:01','This is a cool demo content thing',NULL),(27,'Python','<h1>Introduction to Python</h1>\n<p>Python is a widely used high-level programming language for general-purpose programming, created by Guido van Rossum and first released in 1991. An interpreted language, Python has a design philosophy that emphasizes code readability (notably using whitespace indentation to delimit code blocks rather than curly brackets or keywords), and a syntax that allows programmers to express concepts in fewer lines of code than might be used in languages such as C++ or Java. The language provides constructs intended to enable writing clear programs on both a small and large scale.</p>\n<p>Python features a dynamic type system and automatic memory management and supports multiple programming paradigms, including object-oriented, imperative, functional programming, and procedural styles. It has a large and comprehensive standard library.</p>\n<p>Python interpreters are available for many operating systems, allowing Python code to run on a wide variety of systems. CPython, the reference implementation of Python, is open source software and has a community-based development model, as do nearly all of its variant implementations. CPython is managed by the non-profit Python Software Foundation.</p>','computer,technology,code',1,'2017-09-15 12:29:43','2017-09-18 13:56:32','Python is a widely used high-level programming language for general-purpose programming, created by Guido van Rossum and first released in 1991.',NULL),(28,'Test','<div class=\"appframe\"><iframe allowtransparency=\"true\" class=\"ckeditorframev2\" frameborder=\"0\" height=\"450\" scrolling=\"no\" src=\"/graphstore/init/1\" type=\"text/html\" width=\"100%\"></iframe></div>\r\n<p>Initial editor content.</p>','maths,graph',1,'2017-09-18 09:18:08','2017-09-18 09:18:08','Interactive Graph Test',NULL),(29,'Introduction to Java','<h1>Introduction to Java</h1>\n<p>Java is a general-purpose computer programming language that is concurrent, class-based, object-oriented, and specifically designed to have as few implementation dependencies as possible. It is intended to let application developers "write once, run anywhere" (WORA), meaning that compiled Java code can run on all platforms that support Java without the need for recompilation. Java applications are typically compiled to bytecode that can run on any Java virtual machine (JVM) regardless of computer architecture. As of 2016, Java is one of the most popular programming languages in use, particularly for client-server web applications, with a reported 9 million developers. Java was originally developed by James Gosling at Sun Microsystems (which has since been acquired by Oracle Corporation) and released in 1995 as a core component of Sun Microsystems' Java platform. The language derives much of its syntax from C and C++, but it has fewer low-level facilities than either of them.</p>','computer science,java,programming,code',1,'2017-09-18 09:43:26','2017-09-18 09:43:26','Java is a general-purpose computer programming language that is concurrent, class-based, object-oriented, and specifically designed to have as few implementation dependencies as possible.',NULL),(30,'Algebra','<p>Algebra (from Arabic "al-jabr" meaning "reunion of broken parts"[1]) is one of the broad parts of mathematics, together with number theory, geometry and analysis. In its most general form, algebra is the study of mathematical symbols and the rules for manipulating these symbols;[2] it is a unifying thread of almost all of mathematics.[3] As such, it includes everything from elementary equation solving to the study of abstractions such as groups, rings, and fields. The more basic parts of algebra are called elementary algebra; the more abstract parts are called abstract algebra or modern algebra. Elementary algebra is generally considered to be essential for any study of mathematics, science, or engineering, as well as such applications as medicine and economics. Abstract algebra is a major area in advanced mathematics, studied primarily by professional mathematicians.</p><p>Elementary algebra differs from arithmetic in the use of abstractions, such as using letters to stand for numbers that are either unknown or allowed to take on many values.[4] For example, in <span class=\"math-tex\">\\( x+2=5\\)</span> the letter <span class=\"math-tex\">\\(x\\)</span> is unknown, but the law of inverses can be used to discover its value: <span class=\"math-tex\">\\(x=3\\)</span>. In <span class=\"math-tex\">\\(E=mc^2\\)</span>, the letters <span class=\"math-tex\">\\(E\\)</span> and <span class=\"math-tex\">\\(m\\)</span> are variables, and the letter <span class=\"math-tex\">\\(c\\)</span> is a constant, the speed of light in a vacuum. Algebra gives methods for solving equations and expressing formulas that are much easier (for those who know how to use them) than the older method of writing everything out in words.</p><p>The word algebra is also used in certain specialized ways. A special kind of mathematical object in abstract algebra is called an "algebra", and the word is used, for example, in the phrases linear algebra and algebraic topology.</p><p>A mathematician who does research in algebra is called an algebraist.</p><p> </p>','maths,math,mathematics,number,numbers,algebra,variables,unknown',1,'2017-09-28 07:14:49','2017-09-28 08:00:52','Algebra (from Arabic \"al-jabr\" meaning \"reunion of broken parts\") is one of the broad parts of mathematics, together with number theory, geometry and analysis.',16),(31,'Pythonsssss','<h1>Introduction to Python</h1>\n<p>Python is a widely used high-level programming language for general-purpose programming, created by Guido van Rossum and first released in 1991. An interpreted language, Python has a design philosophy that emphasizes code readability (notably using whitespace indentation to delimit code blocks rather than curly brackets or keywords), and a syntax that allows programmers to express concepts in fewer lines of code than might be used in languages such as C++ or Java. The language provides constructs intended to enable writing clear programs on both a small and large scale.</p>\n<p>Python features a dynamic type system and automatic memory management and supports multiple programming paradigms, including object-oriented, imperative, functional programming, and procedural styles. It has a large and comprehensive standard library.</p>\n<p>Python interpreters are available for many operating systems, allowing Python code to run on a wide variety of systems. CPython, the reference implementation of Python, is open source software and has a community-based development model, as do nearly all of its variant implementations. CPython is managed by the non-profit Python Software Foundation.</p>','computer,technology,code',1,'2017-09-28 08:17:47','2017-09-28 08:28:54','Python is a widely used high-level programming language for general-purpose programming, created by Guido van Rossum and first released in 1991.',27);
/*!40000 ALTER TABLE `content` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `content_categories`
--
DROP TABLE IF EXISTS `content_categories`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `content_categories` (
`content_id` int(10) unsigned DEFAULT NULL,
`category_id` int(10) unsigned DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
KEY `content_ibfk_1` (`content_id`),
KEY `categories_ibfk_1` (`category_id`),
CONSTRAINT `categories_ibfk_1` FOREIGN KEY (`category_id`) REFERENCES `lk_content_categories` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
CONSTRAINT `content_ibfk_1` FOREIGN KEY (`content_id`) REFERENCES `content` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `content_categories`
--
LOCK TABLES `content_categories` WRITE;
/*!40000 ALTER TABLE `content_categories` DISABLE KEYS */;
INSERT INTO `content_categories` VALUES (16,6,'2017-09-08 13:37:22','2017-09-08 13:37:22'),(17,7,'2017-09-08 13:41:15','2017-09-08 13:41:15'),(17,8,'2017-09-08 13:44:34','2017-09-08 13:44:34'),(18,6,'2017-09-08 13:54:40','2017-09-08 13:54:40'),(19,6,'2017-09-12 08:47:34','2017-09-12 08:47:34'),(19,8,'2017-09-12 08:47:34','2017-09-12 08:47:34'),(27,10,'2017-09-15 12:29:43','2017-09-15 12:29:43'),(28,6,'2017-09-18 09:18:08','2017-09-18 09:18:08'),(28,10,'2017-09-18 09:18:08','2017-09-18 09:18:08'),(29,10,'2017-09-18 09:43:26','2017-09-18 09:43:26'),(30,6,'2017-09-28 07:14:49','2017-09-28 07:14:49'),(31,10,'2017-09-28 08:17:48','2017-09-28 08:17:48'),(31,6,'2017-09-28 08:17:55','2017-09-28 08:17:55'),(31,7,'2017-09-28 08:17:55','2017-09-28 08:17:55'),(31,8,'2017-09-28 08:17:55','2017-09-28 08:17:55');
/*!40000 ALTER TABLE `content_categories` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `course_metadata`
--
DROP TABLE IF EXISTS `course_metadata`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `course_metadata` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`course_id` int(10) unsigned NOT NULL,
`metadata_store_id` int(11) NOT NULL,
`value` varchar(150) COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `course_metadata_course_id_foreign` (`course_id`),
CONSTRAINT `course_metadata_course_id_foreign` FOREIGN KEY (`course_id`) REFERENCES `courses` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `course_metadata`
--
LOCK TABLES `course_metadata` WRITE;
/*!40000 ALTER TABLE `course_metadata` DISABLE KEYS */;
/*!40000 ALTER TABLE `course_metadata` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `course_users`
--
DROP TABLE IF EXISTS `course_users`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `course_users` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`course_id` int(10) unsigned NOT NULL,
`user_id` int(10) unsigned NOT NULL DEFAULT '27000000',
`email` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`opted_out` tinyint(4) NOT NULL DEFAULT '0',
`opted_out_date` blob,
`created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY (`id`),
KEY `course_users_ibfk_1` (`user_id`),
KEY `course_users_ibfk_2` (`course_id`),
CONSTRAINT `course_users_ibfk_1` FOREIGN KEY (`course_id`) REFERENCES `courses` (`id`),
CONSTRAINT `course_users_ibfk_2` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `course_users`
--
LOCK TABLES `course_users` WRITE;
/*!40000 ALTER TABLE `course_users` DISABLE KEYS */;
INSERT INTO `course_users` VALUES (1,14,1,'inst@ischool.edu',0,NULL,'2017-03-22 06:02:10','2017-03-22 06:02:10');
/*!40000 ALTER TABLE `course_users` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `courses`
--
DROP TABLE IF EXISTS `courses`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `courses` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`title` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`description` longtext COLLATE utf8mb4_unicode_ci,
`featured_image` longtext COLLATE utf8mb4_unicode_ci,
`tags` longtext COLLATE utf8mb4_unicode_ci,
`xml_file` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`creator_id` int(10) unsigned NOT NULL,
`created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY (`id`),
KEY `courses_ibfk_1` (`creator_id`),
CONSTRAINT `courses_ibfk_1` FOREIGN KEY (`creator_id`) REFERENCES `users` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=21 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `courses`
--
LOCK TABLES `courses` WRITE;
/*!40000 ALTER TABLE `courses` DISABLE KEYS */;
INSERT INTO `courses` VALUES (14,'FBN1502 Business Numerical Skills B','FBN1502 Business Numerical Skills B',NULL,'',NULL,1,'2017-04-18 13:00:55','2017-04-18 13:00:55'),(16,'FBN1501 - Business Numerical Skills A','FBN1501 - Business Numerical Skills A',NULL,'',NULL,1,'2017-04-19 11:59:07','2017-04-19 11:59:07'),(17,'uytuytutu','uytuytutu',NULL,'',NULL,1,'2017-05-01 10:51:10','2017-05-01 10:51:10'),(18,'FBN1503 Business Identity Skills','FBN1503 Business Identity Skills',NULL,'',NULL,1,'2017-05-02 05:50:53','2017-05-02 05:50:53'),(19,'CS10005',NULL,NULL,'',NULL,1,'2017-07-14 07:47:39','2017-07-14 07:47:39'),(20,'Build a Module Test','This a test module to make sure that the Content and Storyline Builder works',NULL,'',NULL,1,'2017-09-15 09:32:35','2017-09-15 09:32:35');
/*!40000 ALTER TABLE `courses` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `currencies`
--
DROP TABLE IF EXISTS `currencies`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `currencies` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`base_currency` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`currency_fx` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`exchange_rate` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `currencies_currency_fx_unique` (`currency_fx`)
) ENGINE=MyISAM AUTO_INCREMENT=13 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `currencies`
--
LOCK TABLES `currencies` WRITE;
/*!40000 ALTER TABLE `currencies` DISABLE KEYS */;
INSERT INTO `currencies` VALUES (12,'ZAR','KES','7.81498','2017-05-25 14:25:05','2017-05-25 14:25:05'),(11,'ZAR','EUR','0.069156','2017-05-25 14:25:05','2017-05-25 14:25:05'),(10,'ZAR','USD','0.077552','2017-05-25 14:25:05','2017-05-25 14:25:05'),(9,'ZAR','GBP','0.05984','2017-05-25 14:25:05','2017-05-25 14:25:05');
/*!40000 ALTER TABLE `currencies` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `discounts`
--
DROP TABLE IF EXISTS `discounts`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `discounts` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`order_id` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`order_dicount` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`discounted_amount` decimal(13,2) NOT NULL,
`balance_amount` decimal(13,2) NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `discounts_order_id_foreign` (`order_id`)
) ENGINE=MyISAM AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `discounts`
--
LOCK TABLES `discounts` WRITE;
/*!40000 ALTER TABLE `discounts` DISABLE KEYS */;
INSERT INTO `discounts` VALUES (1,'3','0.02',7338.25,359574.05,'2017-05-24 17:55:14','2017-05-24 17:55:14'),(2,'4','0.02',7337.62,359543.54,'2017-05-24 18:08:35','2017-05-24 18:08:35'),(3,'5','0.02',7337.62,359543.54,'2017-05-24 18:08:43','2017-05-24 18:08:43'),(4,'6','0.02',38.92,1907.11,'2017-05-24 18:09:00','2017-05-24 18:09:00');
/*!40000 ALTER TABLE `discounts` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `groups`
--
DROP TABLE IF EXISTS `groups`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `groups` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`slug` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `groups`
--
LOCK TABLES `groups` WRITE;
/*!40000 ALTER TABLE `groups` DISABLE KEYS */;
INSERT INTO `groups` VALUES (1,'Admin Groups','admin-groups','2017-04-08 18:10:58','2017-04-08 18:10:58');
/*!40000 ALTER TABLE `groups` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `jobs`
--
DROP TABLE IF EXISTS `jobs`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `jobs` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`queue` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`payload` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`attempts` tinyint(3) unsigned NOT NULL,
`reserved_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`available_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY (`id`),
KEY `jobs_queue_reserved_at_index` (`queue`,`reserved_at`)
) ENGINE=InnoDB AUTO_INCREMENT=257 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `jobs`
--
LOCK TABLES `jobs` WRITE;
/*!40000 ALTER TABLE `jobs` DISABLE KEYS */;
INSERT INTO `jobs` VALUES (256,'','{\"displayName\":\"App\\\\Jobs\\\\SendCourseNotificationEmail\",\"job\":\"Illuminate\\\\Queue\\\\CallQueuedHandler@call\",\"maxTries\":null,\"timeout\":null,\"data\":{\"commandName\":\"App\\\\Jobs\\\\SendCourseNotificationEmail\",\"command\":\"O:36:\\\"App\\\\Jobs\\\\SendCourseNotificationEmail\\\":6:{s:9:\\\"\\u0000*\\u0000course\\\";O:45:\\\"Illuminate\\\\Contracts\\\\Database\\\\ModelIdentifier\\\":2:{s:5:\\\"class\\\";s:17:\\\"App\\\\Models\\\\Course\\\";s:2:\\\"id\\\";i:4;}s:8:\\\"\\u0000*\\u0000email\\\";s:16:\\\"josh1@live.co.za\\\";s:6:\\\"\\u0000*\\u0000job\\\";N;s:10:\\\"connection\\\";N;s:5:\\\"queue\\\";N;s:5:\\\"delay\\\";N;}\"}}',255,'2017-03-13 11:29:25','2017-03-23 11:29:25','2017-03-13 11:29:25');
/*!40000 ALTER TABLE `jobs` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `key_request`
--
DROP TABLE IF EXISTS `key_request`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `key_request` (
`request_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`user_id` int(10) unsigned NOT NULL,
`title` varchar(512) NOT NULL,
`notes` text,
`admin` text,
`state` smallint(6) DEFAULT NULL,
`lti` tinyint(4) DEFAULT NULL,
`json` text,
`created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY (`request_id`),
KEY `key_request_fk_1` (`user_id`),
CONSTRAINT `key_request_fk_1` FOREIGN KEY (`user_id`) REFERENCES `lti_user` (`user_id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `key_request`
--
LOCK TABLES `key_request` WRITE;
/*!40000 ALTER TABLE `key_request` DISABLE KEYS */;
/*!40000 ALTER TABLE `key_request` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `lk_content_categories`
--
DROP TABLE IF EXISTS `lk_content_categories`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lk_content_categories` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`tags` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=12 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `lk_content_categories`
--
LOCK TABLES `lk_content_categories` WRITE;
/*!40000 ALTER TABLE `lk_content_categories` DISABLE KEYS */;
INSERT INTO `lk_content_categories` VALUES (6,'Maths','maths,math,mathematics,number,numbers,uno','2017-09-08 13:29:14','2017-09-13 13:45:41'),(7,'Biology','science,natural,animals,nature','2017-09-08 13:38:08','2017-09-08 13:38:08'),(8,'Science','science,natural','2017-09-08 13:38:16','2017-09-13 11:44:10'),(10,'Computer Science','computer,technology,code,programming','2017-09-13 11:48:45','2017-09-13 11:48:45'),(11,'Accounting','accounting,stuff,things,money,cash,rich,very rich','2017-09-13 11:53:42','2017-09-18 09:06:05');
/*!40000 ALTER TABLE `lk_content_categories` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `lms_plugins`
--
DROP TABLE IF EXISTS `lms_plugins`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lms_plugins` (
`plugin_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`plugin_path` varchar(255) NOT NULL,
`version` bigint(20) NOT NULL,
`title` varchar(2048) DEFAULT NULL,
`json` text,
`created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY (`plugin_id`),
UNIQUE KEY `plugin_path` (`plugin_path`)
) ENGINE=InnoDB AUTO_INCREMENT=14 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `lms_plugins`
--
LOCK TABLES `lms_plugins` WRITE;
/*!40000 ALTER TABLE `lms_plugins` DISABLE KEYS */;
INSERT INTO `lms_plugins` VALUES (1,'admin/lti/database.php',201701121623,NULL,NULL,'2017-01-19 09:16:12','2017-01-19 09:16:12'),(11,'admin/key/database.php',201701121623,NULL,NULL,'2017-01-19 09:16:12','2017-01-19 09:16:12'),(12,'admin/blob/database.php',201701121623,NULL,NULL,'2017-01-19 09:16:12','2017-01-19 09:16:12'),(13,'admin/mail/database.php',201701121623,NULL,NULL,'2017-01-19 09:16:12','2017-01-19 09:16:12');
/*!40000 ALTER TABLE `lms_plugins` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `lti_app_categories`
--
DROP TABLE IF EXISTS `lti_app_categories`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lti_app_categories` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`creator_id` int(10) unsigned NOT NULL,
`title` varchar(255) NOT NULL,
`description` varchar(255) NOT NULL,
`tags` varchar(255) NOT NULL,
`created_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
`updated_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `lti_app_categories`
--
LOCK TABLES `lti_app_categories` WRITE;
/*!40000 ALTER TABLE `lti_app_categories` DISABLE KEYS */;
INSERT INTO `lti_app_categories` VALUES (1,5,'Uncategorized','Uncategorized','uncategorized','2017-07-27 19:26:11','2017-07-27 19:26:11'),(4,1,'Category','LTIDomain','LTIDomain','2017-07-27 21:51:18','2017-07-27 21:51:18'),(5,1,'Collaboration','Collaboration','collaboration','2017-07-27 23:19:50','2017-07-27 23:19:50'),(6,1,'Community','Collaboration','','2017-07-27 23:20:25','2017-07-27 23:20:25'),(7,1,'Math','Math','','2017-07-27 23:20:35','2017-07-27 23:20:35'),(8,1,'Value Chains','Value Chains','value chains','2017-07-28 01:36:06','2017-07-28 01:36:06'),(9,1,'Open Access','Open Access','Open Access','2017-07-28 11:58:57','2017-07-28 11:58:57');
/*!40000 ALTER TABLE `lti_app_categories` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `lti_ck_domains`
--
DROP TABLE IF EXISTS `lti_ck_domains`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lti_ck_domains` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`launch_url` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`key` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`secret` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `lti_ck_domains`
--
LOCK TABLES `lti_ck_domains` WRITE;
/*!40000 ALTER TABLE `lti_ck_domains` DISABLE KEYS */;
INSERT INTO `lti_ck_domains` VALUES (1,'https://bltools.creighton.edu/lti/ltimaps/ltimaps/map.php ','12345','secret','2017-03-14 00:31:00','2017-03-14 00:31:00'),(2,'https://mirror.unisaonline.net/tao/ltiDeliveryProvider/DeliveryTool/launch/eyJkZWxpdmVyeSI6Imh0dHA6XC9cL3VuaXNhdGVzdDIuY2xvdWRhcHAubmV0XC90YW9cL3VuaXNhLnJkZiNpMTQ2NDYwODEyMjQzNzI4NjczIn0=','unisa','12345','2017-03-14 01:13:51','2017-03-14 01:13:51'),(3,'https://www.edu-apps.org/titanpad','','','2017-03-14 04:22:30','2017-03-14 04:22:30'),(4,'https://steamboat.youseeu.com/lti/955rf3/lti_connect.php','','','2017-03-14 04:52:38','2017-03-14 04:52:38');
/*!40000 ALTER TABLE `lti_ck_domains` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `lti_context`
--
DROP TABLE IF EXISTS `lti_context`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lti_context` (
`context_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`context_sha256` char(64) NOT NULL,
`context_key` varchar(255) NOT NULL,
`key_id` int(10) unsigned NOT NULL,
`title` text,
`json` text,
`settings` text,
`settings_url` text,
`entity_version` int(10) unsigned NOT NULL DEFAULT '0',
`created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY (`context_id`),
UNIQUE KEY `key_id` (`key_id`,`context_sha256`),
KEY `lti_context_ibfk_1` (`context_key`),
CONSTRAINT `lti_context_ibfk_1` FOREIGN KEY (`key_id`) REFERENCES `lti_key` (`key_id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=77 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `lti_context`
--
LOCK TABLES `lti_context` WRITE;
/*!40000 ALTER TABLE `lti_context` DISABLE KEYS */;
INSERT INTO `lti_context` VALUES (1,'48e34f46273af9216b28aa476263b28814de979e10d173c2873a7d655e980835','456434513',1,'Introduction to Programming',NULL,NULL,NULL,0,'2017-01-20 09:39:51','2017-01-20 09:39:51'),(3,'5f082ff8351e08d254cbbebf7927f37adffeee6681ecb3910b811c16129d90cc','bltiextensions',1,'TEDEd','{\"bltititle\":\"TEDEd\",\"bltidescription\":\"Search YouTube videos in the TEDEd Channel. A new icon will show up in your course rich editor letting you search the TEDEd channel and click to embed videos in your course material.\",\"bltilaunch_url\":\"https:\\/\\/www.edu-apps.org\\/lti_public_resources\\/?tool_id=youtube_ted_ed\",\"bltiextensions\":{\"@attributes\":{\"platform\":\"canvas.instructure.com\"},\"lticmproperty\":[\"www.edu-apps.org\",\"https:\\/\\/www.edu-apps.org\\/assets\\/lti_public_resources\\/ted_ed_icon.png\",\"anonymous\",\"600\",\"560\",\"TEDEd\",\"youtube_ted_ed\"],\"lticmoptions\":[{\"@attributes\":{\"name\":\"editor_button\"},\"lticmproperty\":\"true\"},{\"@attributes\":{\"name\":\"resource_selection\"},\"lticmproperty\":\"true\"}]}}','','',1,'2017-03-06 20:56:44','2017-03-06 20:56:44'),(8,'c702e001f8c0abede71e68fcb244bcb399b40acc0b90ab4f95bb850d9169716d','cartridge_icon',1,'College Board','{\"bltititle\":\"College Board\",\"bltidescription\":\"Links to SAT and AP practice tests\",\"bltiicon\":\"https:\\/\\/www.edu-apps.org\\/tools\\/college_board\\/icon.png\",\"bltilaunch_url\":\"https:\\/\\/www.edu-apps.org\\/tool_redirect?id=college_board\",\"bltiextensions\":{\"@attributes\":{\"platform\":\"canvas.instructure.com\"},\"lticmproperty\":[\"college_board\",\"anonymous\"],\"lticmoptions\":[{\"@attributes\":{\"name\":\"editor_button\"},\"lticmproperty\":[\"https:\\/\\/www.edu-apps.org\\/tool_redirect?id=college_board\",\"https:\\/\\/www.edu-apps.org\\/tools\\/college_board\\/icon.png\",\"College Board\",\"690\",\"530\",\"true\"]},{\"@attributes\":{\"name\":\"resource_selection\"},\"lticmproperty\":[\"https:\\/\\/www.edu-apps.org\\/tool_redirect?id=college_board\",\"https:\\/\\/www.edu-apps.org\\/tools\\/college_board\\/icon.png\",\"College Board\",\"690\",\"530\",\"true\"]}]},\"cartridge_bundle\":{\"@attributes\":{\"identifierref\":\"BLTI001_Bundle\"}},\"cartridge_icon\":{\"@attributes\":{\"identifierref\":\"BLTI001_Icon\"}}}','','',1,'2017-03-21 21:11:10','2017-03-21 21:11:10'),(9,'5feceb66ffc86f38d952786c6d696c79c2dbc239dd4e91b46729d73a27fb57e9','0',1,'College Board','false','','',1,'2017-03-21 21:11:48','2017-03-21 21:11:48'),(35,'166e5fb037f51db16329991a90a51c2a66b1709319ff1be013f7d2375a5bdf88','@attributes',1,'educreations','{\"cartridge_basiclti_link\":{\"bltititle\":\"educreations\",\"bltidescription\":\"Teacher-recorded whiteboard sessions\",\"bltiicon\":\"https:\\/\\/www.edu-apps.org\\/tools\\/educreations\\/icon.png\",\"bltilaunch_url\":\"https:\\/\\/www.edu-apps.org\\/tool_redirect?id=educreations\",\"bltiextensions\":{\"lticmproperty\":[{\"@value\":\"educreations\",\"@attributes\":{\"name\":\"tool_id\"}},{\"@value\":\"anonymous\",\"@attributes\":{\"name\":\"privacy_level\"}}],\"lticmoptions\":[{\"lticmproperty\":[{\"@value\":\"https:\\/\\/www.edu-apps.org\\/tool_redirect?id=educreations\",\"@attributes\":{\"name\":\"url\"}},{\"@value\":\"https:\\/\\/www.edu-apps.org\\/tools\\/educreations\\/icon.png\",\"@attributes\":{\"name\":\"icon_url\"}},{\"@value\":\"educreations\",\"@attributes\":{\"name\":\"text\"}},{\"@value\":\"690\",\"@attributes\":{\"name\":\"selection_width\"}},{\"@value\":\"530\",\"@attributes\":{\"name\":\"selection_height\"}},{\"@value\":\"true\",\"@attributes\":{\"name\":\"enabled\"}}],\"@attributes\":{\"name\":\"editor_button\"}},{\"lticmproperty\":[{\"@value\":\"https:\\/\\/www.edu-apps.org\\/tool_redirect?id=educreations\",\"@attributes\":{\"name\":\"url\"}},{\"@value\":\"https:\\/\\/www.edu-apps.org\\/tools\\/educreations\\/icon.png\",\"@attributes\":{\"name\":\"icon_url\"}},{\"@value\":\"educreations\",\"@attributes\":{\"name\":\"text\"}},{\"@value\":\"690\",\"@attributes\":{\"name\":\"selection_width\"}},{\"@value\":\"530\",\"@attributes\":{\"name\":\"selection_height\"}},{\"@value\":\"true\",\"@attributes\":{\"name\":\"enabled\"}}],\"@attributes\":{\"name\":\"resource_selection\"}}],\"@attributes\":{\"platform\":\"canvas.instructure.com\"}},\"cartridge_bundle\":{\"@value\":\"\",\"@attributes\":{\"identifierref\":\"BLTI001_Bundle\"}},\"cartridge_icon\":{\"@value\":\"\",\"@attributes\":{\"identifierref\":\"BLTI001_Icon\"}},\"@attributes\":{\"schemaLocation\":\"http:\\/\\/www.imsglobal.org\\/xsd\\/imslticc_v1p0 http:\\/\\/www.imsglobal.org\\/xsd\\/lti\\/ltiv1p0\\/imslticc_v1p0.xsd http:\\/\\/www.imsglobal.org\\/xsd\\/imsbasiclti_v1p0 http:\\/\\/www.imsglobal.org\\/xsd\\/lti\\/ltiv1p0\\/imsbasiclti_v1p0.xsd http:\\/\\/www.imsglobal.org\\/xsd\\/imslticm_v1p0 http:\\/\\/www.imsglobal.org\\/xsd\\/lti\\/ltiv1p0\\/imslticm_v1p0.xsd http:\\/\\/www.imsglobal.org\\/xsd\\/imslticp_v1p0 http:\\/\\/www.imsglobal.org\\/xsd\\/lti\\/ltiv1p0\\/imslticp_v1p0.xsd\"}}}','','',1,'2017-04-03 20:51:26','2017-04-03 20:51:26'),(38,'98483c6eb40b6c31a448c22a66ded3b5e5e8d5119cac8327b655c8b5c4836489','testkey',34,'XanEdu','{\"cartridge_basiclti_link\":{\"bltititle\":\"XanEdu\",\"bltidescription\":\"XanEdu LTI App\",\"bltilaunch_url\":\"\",\"bltiextensions\":{\"lticmproperty\":[{\"@value\":\"xanedu.com\",\"@attributes\":{\"name\":\"domain\"}},{\"@value\":\"http:\\/\\/coursepacks.xanedu.com\\/images\\/cpcc_xanedu.gif\",\"@attributes\":{\"name\":\"icon_url\"}},{\"@value\":\"name_only\",\"@attributes\":{\"name\":\"privacy_level\"}},{\"@value\":\"xanedu\",\"@attributes\":{\"name\":\"tool_id\"}}],\"@attributes\":{\"platform\":\"canvas.instructure.com\"}},\"@attributes\":{\"schemaLocation\":\"http:\\/\\/www.imsglobal.org\\/xsd\\/imslticc_v1p0 http:\\/\\/www.imsglobal.org\\/xsd\\/lti\\/ltiv1p0\\/imslticc_v1p0.xsd http:\\/\\/www.imsglobal.org\\/xsd\\/imsbasiclti_v1p0 http:\\/\\/www.imsglobal.org\\/xsd\\/lti\\/ltiv1p0\\/imsbasiclti_v1p0p1.xsd http:\\/\\/www.imsglobal.org\\/xsd\\/imslticm_v1p0 http:\\/\\/www.imsglobal.org\\/xsd\\/lti\\/ltiv1p0\\/imslticm_v1p0.xsd http:\\/\\/www.imsglobal.org\\/xsd\\/imslticp_v1p0 http:\\/\\/www.imsglobal.org\\/xsd\\/lti\\/ltiv1p0\\/imslticp_v1p0.xsd\"}}}','','',1,'2017-04-03 21:12:58','2017-04-03 21:12:58'),(40,'3a86e4c51bcc8d434e8e28a81b71a5af4f5d2525f4874a38f3644fb6291b3406','nokey',36,'Quizlet','{\"cartridge_basiclti_link\":{\"bltititle\":\"Quizlet\",\"bltidescription\":\"Search for and embed publicly available flashcards and question sets from Quizlet. Questions can be embedded directly into content as flash cards, review, or as a study game.\",\"bltilaunch_url\":\"https:\\/\\/www.edu-apps.org\\/lti_public_resources\\/?tool_id=quizlet\",\"bltiextensions\":{\"lticmproperty\":[{\"@value\":\"edu-apps.org\",\"@attributes\":{\"name\":\"domain\"}},{\"@value\":\"https:\\/\\/www.edu-apps.org\\/assets\\/lti_public_resources\\/quizlet_icon.png\",\"@attributes\":{\"name\":\"icon_url\"}},{\"@value\":\"anonymous\",\"@attributes\":{\"name\":\"privacy_level\"}},{\"@value\":\"600\",\"@attributes\":{\"name\":\"selection_height\"}},{\"@value\":\"560\",\"@attributes\":{\"name\":\"selection_width\"}},{\"@value\":\"quizlet\",\"@attributes\":{\"name\":\"tool_id\"}}],\"lticmoptions\":[{\"lticmproperty\":{\"@value\":\"true\",\"@attributes\":{\"name\":\"enabled\"}},\"@attributes\":{\"name\":\"editor_button\"}},{\"lticmproperty\":{\"@value\":\"true\",\"@attributes\":{\"name\":\"enabled\"}},\"@attributes\":{\"name\":\"resource_selection\"}}],\"@attributes\":{\"platform\":\"canvas.instructure.com\"}},\"@attributes\":{\"schemaLocation\":\"http:\\/\\/www.imsglobal.org\\/xsd\\/imslticc_v1p0 http:\\/\\/www.imsglobal.org\\/xsd\\/lti\\/ltiv1p0\\/imslticc_v1p0.xsd http:\\/\\/www.imsglobal.org\\/xsd\\/imsbasiclti_v1p0 http:\\/\\/www.imsglobal.org\\/xsd\\/lti\\/ltiv1p0\\/imsbasiclti_v1p0p1.xsd http:\\/\\/www.imsglobal.org\\/xsd\\/imslticm_v1p0 http:\\/\\/www.imsglobal.org\\/xsd\\/lti\\/ltiv1p0\\/imslticm_v1p0.xsd http:\\/\\/www.imsglobal.org\\/xsd\\/imslticp_v1p0 http:\\/\\/www.imsglobal.org\\/xsd\\/lti\\/ltiv1p0\\/imslticp_v1p0.xsd\"}}}','','',1,'2017-04-03 21:14:31','2017-04-03 21:14:31'),(43,'166253b8f92ae0bc431aa587a64251665513aa31f0304a757f7e3f4d3c559f33','mahara',39,'Open Educational Search','{\"cartridge_basiclti_link\":{\"bltititle\":\"Open Educational Search\",\"bltidescription\":\"\",\"bltilaunch_url\":\"https:\\/\\/openedsearch.azurewebsites.net\\/\",\"bltiicon\":\"https:\\/\\/openedsearch.azurewebsites.net\\/Store\\/StoreIcon16.png\",\"blticustom\":\"\",\"bltiextensions\":{\"lticmproperty\":[{\"@value\":\"microsoft_opened_search\",\"@attributes\":{\"name\":\"tool_id\"}},{\"@value\":\"https:\\/\\/openedsearch.azurewebsites.net\\/Store\\/StoreIcon16.png\",\"@attributes\":{\"name\":\"icon_url\"}},{\"@value\":\"public\",\"@attributes\":{\"name\":\"privacy_level\"}},{\"@value\":\"openedsearch.azurewebsites.net\",\"@attributes\":{\"name\":\"domain\"}},{\"@value\":\"Open Educational Search\",\"@attributes\":{\"name\":\"text\"}}],\"@attributes\":{\"platform\":\"canvas.instructure.com\"}},\"@attributes\":{\"schemalocation\":\"http:\\/\\/www.imsglobal.org\\/xsd\\/imslticc_v1p0 http:\\/\\/www.imsglobal.org\\/xsd\\/lti\\/ltiv1p0\\/imslticc_v1p0.xsd http:\\/\\/www.imsglobal.org\\/xsd\\/imsbasiclti_v1p0 http:\\/\\/www.imsglobal.org\\/xsd\\/lti\\/ltiv1p0\\/imsbasiclti_v1p0p1.xsd http:\\/\\/www.imsglobal.org\\/xsd\\/imslticm_v1p0 http:\\/\\/www.imsglobal.org\\/xsd\\/lti\\/ltiv1p0\\/imslticm_v1p0.xsd http:\\/\\/www.imsglobal.org\\/xsd\\/imslticp_v1p0 http:\\/\\/www.imsglobal.org\\/xsd\\/lti\\/ltiv1p0\\/imslticp_v1p0.xsd\"}}}','','',1,'2017-04-03 21:17:03','2017-04-03 21:17:03'),(46,'01ceddcf9a9138a7ac34277fa9340ea7b34b0990a961c4eafde8a08065048095','4564345135',1,'Introduction to Programming',NULL,NULL,NULL,0,'2017-04-10 12:09:46','2017-04-10 12:09:46'),(47,'01f956315e03b0513e2d011fda7df9a56aa335f4b6c236627b6d17dc6af141c4','4564345133',1,'Introduction to Programming',NULL,NULL,NULL,0,'2017-04-10 16:03:44','2017-04-10 16:03:44'),(48,'25d1b1b8b0df9c415c37c56f8d7fd122a6d7b0fca47f598726b71fe1de95ba46','45643451355',1,'Introduction to Programming',NULL,NULL,NULL,0,'2017-04-10 16:57:38','2017-04-10 16:57:38'),(49,'11cdf5cb34aef73394abde0dc62900b615d493091d80b124d6672fd4c4ba31f8','unisa',42,'Mahara','false','','',1,'2017-04-10 20:50:59','2017-04-10 20:50:59'),(50,'11cdf5cb34aef73394abde0dc62900b615d493091d80b124d6672fd4c4ba31f8','unisa',43,'Mahara','false','','',1,'2017-04-10 20:53:28','2017-04-10 20:53:28'),(52,'5994471abb01112afcc18159f6cc74b4f511b99806da59b3caf5a9c173cacfc5','12345',45,'WhiteBoard','false','','',1,'2017-04-10 21:11:23','2017-04-10 21:11:23'),(54,'6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b','1',1,'Design of Personal Environments',NULL,NULL,NULL,0,'2017-04-11 10:22:14','2017-04-11 10:22:14'),(55,'6036272f420fcb803d05299ad19dd82cebd716b75e4c967b169a055e011a6b06','mangwanani',47,'Graphs Tool','false','','',1,'2017-04-10 23:03:57','2017-04-10 23:03:57'),(56,'f0bc6d10cee6478ca4f69692bae9de2b10bd2ce9cda3d974251572b62894590e','chingwachevana',48,'MindMap','false','','',1,'2017-04-10 23:09:08','2017-04-10 23:09:08'),(57,'11cdf5cb34aef73394abde0dc62900b615d493091d80b124d6672fd4c4ba31f8','unisa',49,'TAO Delivery','false','','',1,'2017-04-10 23:28:56','2017-04-10 23:28:56'),(58,'25d1b1b8b0df9c415c37c56f8d7fd122a6d7b0fca47f598726b71fe1de95ba46','45643451355',42,'Introduction to Programming',NULL,NULL,NULL,0,'2017-04-11 12:55:28','2017-04-11 12:55:28'),(59,'52c16e1feb3f0f46a81e70cea775d0511ee02434097329c9748ac3e3eeb26882','45643451333',1,'Introduction to Programming',NULL,NULL,NULL,0,'2017-04-20 13:50:48','2017-04-20 13:50:48'),(60,'680d48ce56d582bee092e23826ca0724dd50d6615ed5f8f8a8feea82372e5ea8','X03V2zr6ECRiV0ix',50,'Unplag Plagiarism Checker','{\"cartridge_basiclti_link\":{\"bltititle\":\"Unplag\",\"bltidescription\":\"Unplag.com is a similarity checker created to protect content originality, timely spot text duplication\",\"bltiicon\":\"https:\\/\\/unplag.com\\/img\\/logo_cab.svg\",\"bltisecure_icon\":\"https:\\/\\/unplag.com\\/img\\/logo_cab.svg\",\"bltivendor\":{\"lticpcode\":\"Unplag.com\",\"lticpname\":\"Unplag.com\",\"lticpdescription\":\"Unplag.com is a similarity checker created to protect content originality.\",\"lticpurl\":\"https:\\/\\/Unplag.com\\/\",\"lticpcontact\":{\"lticpemail\":\"support@Unplag.com\"}},\"bltilaunch_url\":\"https:\\/\\/lti.unplag.com\\/lti\\/launch\",\"bltisecure_launch_url\":\"https:\\/\\/lti.unplag.com\\/lti\\/launch\",\"bltiextensions\":{\"lticmproperty\":[{\"@value\":\"public\",\"@attributes\":{\"name\":\"privacy_level\"}},{\"@value\":\"lti.unplag.com\",\"@attributes\":{\"name\":\"domain\"}}],\"lticmoptions\":{\"lticmproperty\":[{\"@value\":\"0\",\"@attributes\":{\"name\":\"auto_grade\"}},{\"@value\":\"$Canvas.assignment.dueAt.iso8601\",\"@attributes\":{\"name\":\"due_date\"}}],\"@attributes\":{\"name\":\"custom_fields\"}},\"@attributes\":{\"platform\":\"canvas.instructure.com\"}},\"@attributes\":{\"schemaLocation\":\"http:\\/\\/www.imsglobal.org\\/xsd\\/imslticc_v1p0 http:\\/\\/www.imsglobal.org\\/xsd\\/lti\\/ltiv1p0\\/imslticc_v1p0.xsd http:\\/\\/www.imsglobal.org\\/xsd\\/imsbasiclti_v1p0 http:\\/\\/www.imsglobal.org\\/xsd\\/lti\\/ltiv1p0\\/imsbasiclti_v1p0.xsd http:\\/\\/www.imsglobal.org\\/xsd\\/imslticm_v1p0 http:\\/\\/www.imsglobal.org\\/xsd\\/lti\\/ltiv1p0\\/imslticm_v1p0.xsd http:\\/\\/www.imsglobal.org\\/xsd\\/imslticp_v1p0 http:\\/\\/www.imsglobal.org\\/xsd\\/lti\\/ltiv1p0\\/imslticp_v1p0.xsd\"}}}','','',1,'2017-04-20 01:52:44','2017-04-20 01:52:44'),(63,'1cc1a8c8fec669478e25a389e57d31decae735594569215ca5e81369e17c139a','Ooi4WJNocGqZuZJa',53,'Unplag Plagiarism Checker','{\"cartridge_basiclti_link\":{\"bltititle\":\"Unplag\",\"bltidescription\":\"Unplag.com is a similarity checker created to protect content originality, timely spot text duplication\",\"bltiicon\":\"https:\\/\\/unplag.com\\/img\\/logo_cab.svg\",\"bltisecure_icon\":\"https:\\/\\/unplag.com\\/img\\/logo_cab.svg\",\"bltivendor\":{\"lticpcode\":\"Unplag.com\",\"lticpname\":\"Unplag.com\",\"lticpdescription\":\"Unplag.com is a similarity checker created to protect content originality.\",\"lticpurl\":\"https:\\/\\/Unplag.com\\/\",\"lticpcontact\":{\"lticpemail\":\"support@Unplag.com\"}},\"bltilaunch_url\":\"https:\\/\\/lti.unplag.com\\/lti\\/launch\",\"bltisecure_launch_url\":\"https:\\/\\/lti.unplag.com\\/lti\\/launch\",\"bltiextensions\":{\"lticmproperty\":[{\"@value\":\"public\",\"@attributes\":{\"name\":\"privacy_level\"}},{\"@value\":\"lti.unplag.com\",\"@attributes\":{\"name\":\"domain\"}}],\"lticmoptions\":{\"lticmproperty\":[{\"@value\":\"0\",\"@attributes\":{\"name\":\"auto_grade\"}},{\"@value\":\"$Canvas.assignment.dueAt.iso8601\",\"@attributes\":{\"name\":\"due_date\"}}],\"@attributes\":{\"name\":\"custom_fields\"}},\"@attributes\":{\"platform\":\"canvas.instructure.com\"}},\"@attributes\":{\"schemaLocation\":\"http:\\/\\/www.imsglobal.org\\/xsd\\/imslticc_v1p0 http:\\/\\/www.imsglobal.org\\/xsd\\/lti\\/ltiv1p0\\/imslticc_v1p0.xsd http:\\/\\/www.imsglobal.org\\/xsd\\/imsbasiclti_v1p0 http:\\/\\/www.imsglobal.org\\/xsd\\/lti\\/ltiv1p0\\/imsbasiclti_v1p0.xsd http:\\/\\/www.imsglobal.org\\/xsd\\/imslticm_v1p0 http:\\/\\/www.imsglobal.org\\/xsd\\/lti\\/ltiv1p0\\/imslticm_v1p0.xsd http:\\/\\/www.imsglobal.org\\/xsd\\/imslticp_v1p0 http:\\/\\/www.imsglobal.org\\/xsd\\/lti\\/ltiv1p0\\/imslticp_v1p0.xsd\"}}}','','',1,'2017-04-22 22:24:49','2017-04-22 22:24:49'),(64,'60734f174b2035e5b2ba85fef8c648cc0cb18c5995b419d3cd1c025c5b09d0c7','50000',1,'Introduction to Programming',NULL,NULL,NULL,0,'2017-07-11 10:33:29','2017-07-11 10:33:29'),(65,'5994471abb01112afcc18159f6cc74b4f511b99806da59b3caf5a9c173cacfc5','12345',54,NULL,'{\"cartridge_basiclti_link\":{\"bltititle\":\"Programr\",\"bltidescription\":\"Coding challenges in Java, C# and C++\",\"bltiicon\":\"https:\\/\\/www.edu-apps.org\\/tools\\/programr\\/icon.png\",\"bltilaunch_url\":\"https:\\/\\/www.edu-apps.org\\/tool_redirect?id=programr\",\"bltiextensions\":{\"lticmproperty\":[{\"@value\":\"programr\",\"@attributes\":{\"name\":\"tool_id\"}},{\"@value\":\"anonymous\",\"@attributes\":{\"name\":\"privacy_level\"}}],\"lticmoptions\":[{\"lticmproperty\":[{\"@value\":\"https:\\/\\/www.edu-apps.org\\/tool_redirect?id=programr\",\"@attributes\":{\"name\":\"url\"}},{\"@value\":\"https:\\/\\/www.edu-apps.org\\/tools\\/programr\\/icon.png\",\"@attributes\":{\"name\":\"icon_url\"}},{\"@value\":\"Programr\",\"@attributes\":{\"name\":\"text\"}},{\"@value\":\"690\",\"@attributes\":{\"name\":\"selection_width\"}},{\"@value\":\"530\",\"@attributes\":{\"name\":\"selection_height\"}},{\"@value\":\"true\",\"@attributes\":{\"name\":\"enabled\"}}],\"@attributes\":{\"name\":\"editor_button\"}},{\"lticmproperty\":[{\"@value\":\"https:\\/\\/www.edu-apps.org\\/tool_redirect?id=programr\",\"@attributes\":{\"name\":\"url\"}},{\"@value\":\"https:\\/\\/www.edu-apps.org\\/tools\\/programr\\/icon.png\",\"@attributes\":{\"name\":\"icon_url\"}},{\"@value\":\"Programr\",\"@attributes\":{\"name\":\"text\"}},{\"@value\":\"690\",\"@attributes\":{\"name\":\"selection_width\"}},{\"@value\":\"530\",\"@attributes\":{\"name\":\"selection_height\"}},{\"@value\":\"true\",\"@attributes\":{\"name\":\"enabled\"}}],\"@attributes\":{\"name\":\"resource_selection\"}}],\"@attributes\":{\"platform\":\"canvas.instructure.com\"}},\"cartridge_bundle\":{\"@value\":\"\",\"@attributes\":{\"identifierref\":\"BLTI001_Bundle\"}},\"cartridge_icon\":{\"@value\":\"\",\"@attributes\":{\"identifierref\":\"BLTI001_Icon\"}},\"@attributes\":{\"schemaLocation\":\"http:\\/\\/www.imsglobal.org\\/xsd\\/imslticc_v1p0 http:\\/\\/www.imsglobal.org\\/xsd\\/lti\\/ltiv1p0\\/imslticc_v1p0.xsd http:\\/\\/www.imsglobal.org\\/xsd\\/imsbasiclti_v1p0 http:\\/\\/www.imsglobal.org\\/xsd\\/lti\\/ltiv1p0\\/imsbasiclti_v1p0.xsd http:\\/\\/www.imsglobal.org\\/xsd\\/imslticm_v1p0 http:\\/\\/www.imsglobal.org\\/xsd\\/lti\\/ltiv1p0\\/imslticm_v1p0.xsd http:\\/\\/www.imsglobal.org\\/xsd\\/imslticp_v1p0 http:\\/\\/www.imsglobal.org\\/xsd\\/lti\\/ltiv1p0\\/imslticp_v1p0.xsd\"}}}','','',1,'2017-07-25 10:29:01','2017-07-25 10:29:01'),(66,'f5ee0257572a46566faab819389feda14106dcab024c257e3c421531a4bb6077','124536',55,NULL,'{\"cartridge_basiclti_link\":{\"bltititle\":\"scootpad\",\"bltidescription\":\"ScootPad is a leading adaptive learning platform for grades K-8. ScootPad uses adaptive algorithms, predictive analytics, data visualization and gamification to deliver personalized learning for each student.\",\"bltilaunch_url\":\"https:\\/\\/www.scootpad.com\\/lti\\/launch?spky=5f95b021729730d7135d1cb490c50e2c\",\"bltiextensions\":{\"lticmproperty\":[{\"@value\":\"www.scootpad.com\",\"@attributes\":{\"name\":\"domain\"}},{\"@value\":\"http:\\/\\/static.scootpad.com\\/v2\\/images\\/icon-xsm.png\",\"@attributes\":{\"name\":\"icon_url\"}},{\"@value\":\"ScootPad: Where learning get personalized & accelerated!\",\"@attributes\":{\"name\":\"link_text\"}},{\"@value\":\"public\",\"@attributes\":{\"name\":\"privacy_level\"}},{\"@value\":\"scootpad\",\"@attributes\":{\"name\":\"tool_id\"}}],\"@attributes\":{\"platform\":\"canvas.instructure.com\"}},\"@attributes\":{\"schemaLocation\":\"http:\\/\\/www.imsglobal.org\\/xsd\\/imslticc_v1p0 http:\\/\\/www.imsglobal.org\\/xsd\\/lti\\/ltiv1p0\\/imslticc_v1p0.xsd http:\\/\\/www.imsglobal.org\\/xsd\\/imsbasiclti_v1p0 http:\\/\\/www.imsglobal.org\\/xsd\\/lti\\/ltiv1p0\\/imsbasiclti_v1p0p1.xsd http:\\/\\/www.imsglobal.org\\/xsd\\/imslticm_v1p0 http:\\/\\/www.imsglobal.org\\/xsd\\/lti\\/ltiv1p0\\/imslticm_v1p0.xsd http:\\/\\/www.imsglobal.org\\/xsd\\/imslticp_v1p0 http:\\/\\/www.imsglobal.org\\/xsd\\/lti\\/ltiv1p0\\/imslticp_v1p0.xsd\"}}}','','',1,'2017-07-25 11:25:50','2017-07-25 11:25:50'),(67,'f5ee0257572a46566faab819389feda14106dcab024c257e3c421531a4bb6077','124536',56,NULL,'{\"cartridge_basiclti_link\":{\"bltititle\":\"scootpad\",\"bltidescription\":\"ScootPad is a leading adaptive learning platform for grades K-8. ScootPad uses adaptive algorithms, predictive analytics, data visualization and gamification to deliver personalized learning for each student.\",\"bltilaunch_url\":\"https:\\/\\/www.scootpad.com\\/lti\\/launch?spky=5f95b021729730d7135d1cb490c50e2c\",\"bltiextensions\":{\"lticmproperty\":[{\"@value\":\"www.scootpad.com\",\"@attributes\":{\"name\":\"domain\"}},{\"@value\":\"http:\\/\\/static.scootpad.com\\/v2\\/images\\/icon-xsm.png\",\"@attributes\":{\"name\":\"icon_url\"}},{\"@value\":\"ScootPad: Where learning get personalized & accelerated!\",\"@attributes\":{\"name\":\"link_text\"}},{\"@value\":\"public\",\"@attributes\":{\"name\":\"privacy_level\"}},{\"@value\":\"scootpad\",\"@attributes\":{\"name\":\"tool_id\"}}],\"@attributes\":{\"platform\":\"canvas.instructure.com\"}},\"@attributes\":{\"schemaLocation\":\"http:\\/\\/www.imsglobal.org\\/xsd\\/imslticc_v1p0 http:\\/\\/www.imsglobal.org\\/xsd\\/lti\\/ltiv1p0\\/imslticc_v1p0.xsd http:\\/\\/www.imsglobal.org\\/xsd\\/imsbasiclti_v1p0 http:\\/\\/www.imsglobal.org\\/xsd\\/lti\\/ltiv1p0\\/imsbasiclti_v1p0p1.xsd http:\\/\\/www.imsglobal.org\\/xsd\\/imslticm_v1p0 http:\\/\\/www.imsglobal.org\\/xsd\\/lti\\/ltiv1p0\\/imslticm_v1p0.xsd http:\\/\\/www.imsglobal.org\\/xsd\\/imslticp_v1p0 http:\\/\\/www.imsglobal.org\\/xsd\\/lti\\/ltiv1p0\\/imslticp_v1p0.xsd\"}}}','','',1,'2017-07-25 11:29:22','2017-07-25 11:29:22'),(68,'a3c0ebdd3a4bef2d113e07f3556f44edf7bc7a782803b29e8b8153a987ff0aaf','12456',57,NULL,'{\"cartridge_basiclti_link\":{\"bltititle\":\"app.youbthere.com\",\"bltidescription\":\"Youbthere PRD API\",\"bltilaunch_url\":\"https:\\/\\/app.youbthere.com\\/Canvas\\/LaunchPoint\",\"bltiextensions\":{\"lticmoptions\":{\"lticmproperty\":{\"@value\":\"true\",\"@attributes\":{\"name\":\"enabled\"}},\"@attributes\":{\"name\":\"course_navigation\"}},\"lticmproperty\":[{\"@value\":\"public\",\"@attributes\":{\"name\":\"privacy_level\"}},{\"@value\":\"c22d3b55-b135-44b9-833d-f0f3a60587b4\",\"@attributes\":{\"name\":\"tool_id\"}}],\"@attributes\":{\"platform\":\"canvas.instructure.com\"}},\"@attributes\":{\"schemaLocation\":\"http:\\/\\/www.imsglobal.org\\/xsd\\/imslticc_v1p0 http:\\/\\/www.imsglobal.org\\/xsd\\/lti\\/ltiv1p0\\/imslticc_v1p0.xsd http:\\/\\/www.imsglobal.org\\/xsd\\/imsbasiclti_v1p0 http:\\/\\/www.imsglobal.org\\/xsd\\/lti\\/ltiv1p0\\/imsbasiclti_v1p0p1.xsd http:\\/\\/www.imsglobal.org\\/xsd\\/imslticm_v1p0 http:\\/\\/www.imsglobal.org\\/xsd\\/lti\\/ltiv1p0\\/imslticm_v1p0.xsd http:\\/\\/www.imsglobal.org\\/xsd\\/imslticp_v1p0 http:\\/\\/www.imsglobal.org\\/xsd\\/lti\\/ltiv1p0\\/imslticp_v1p0.xsd\"}}}','','',1,'2017-07-25 11:45:55','2017-07-25 11:45:55'),(69,'5994471abb01112afcc18159f6cc74b4f511b99806da59b3caf5a9c173cacfc5','12345',58,NULL,'{\"cartridge_basiclti_link\":{\"bltititle\":\"Elementary Paper\",\"bltidescription\":\"Browse printable writing practice sheets\",\"bltiicon\":\"https:\\/\\/www.edu-apps.org\\/tools\\/elementary_paper\\/icon.png\",\"bltilaunch_url\":\"https:\\/\\/www.edu-apps.org\\/tool_redirect?id=elementary_paper\",\"bltiextensions\":{\"lticmproperty\":[{\"@value\":\"elementary_paper\",\"@attributes\":{\"name\":\"tool_id\"}},{\"@value\":\"anonymous\",\"@attributes\":{\"name\":\"privacy_level\"}}],\"lticmoptions\":[{\"lticmproperty\":[{\"@value\":\"https:\\/\\/www.edu-apps.org\\/tool_redirect?id=elementary_paper\",\"@attributes\":{\"name\":\"url\"}},{\"@value\":\"https:\\/\\/www.edu-apps.org\\/tools\\/elementary_paper\\/icon.png\",\"@attributes\":{\"name\":\"icon_url\"}},{\"@value\":\"Elementary Paper\",\"@attributes\":{\"name\":\"text\"}},{\"@value\":\"690\",\"@attributes\":{\"name\":\"selection_width\"}},{\"@value\":\"530\",\"@attributes\":{\"name\":\"selection_height\"}},{\"@value\":\"true\",\"@attributes\":{\"name\":\"enabled\"}}],\"@attributes\":{\"name\":\"editor_button\"}},{\"lticmproperty\":[{\"@value\":\"https:\\/\\/www.edu-apps.org\\/tool_redirect?id=elementary_paper\",\"@attributes\":{\"name\":\"url\"}},{\"@value\":\"https:\\/\\/www.edu-apps.org\\/tools\\/elementary_paper\\/icon.png\",\"@attributes\":{\"name\":\"icon_url\"}},{\"@value\":\"Elementary Paper\",\"@attributes\":{\"name\":\"text\"}},{\"@value\":\"690\",\"@attributes\":{\"name\":\"selection_width\"}},{\"@value\":\"530\",\"@attributes\":{\"name\":\"selection_height\"}},{\"@value\":\"true\",\"@attributes\":{\"name\":\"enabled\"}}],\"@attributes\":{\"name\":\"resource_selection\"}}],\"@attributes\":{\"platform\":\"canvas.instructure.com\"}},\"cartridge_bundle\":{\"@value\":\"\",\"@attributes\":{\"identifierref\":\"BLTI001_Bundle\"}},\"cartridge_icon\":{\"@value\":\"\",\"@attributes\":{\"identifierref\":\"BLTI001_Icon\"}},\"@attributes\":{\"schemaLocation\":\"http:\\/\\/www.imsglobal.org\\/xsd\\/imslticc_v1p0 http:\\/\\/www.imsglobal.org\\/xsd\\/lti\\/ltiv1p0\\/imslticc_v1p0.xsd http:\\/\\/www.imsglobal.org\\/xsd\\/imsbasiclti_v1p0 http:\\/\\/www.imsglobal.org\\/xsd\\/lti\\/ltiv1p0\\/imsbasiclti_v1p0.xsd http:\\/\\/www.imsglobal.org\\/xsd\\/imslticm_v1p0 http:\\/\\/www.imsglobal.org\\/xsd\\/lti\\/ltiv1p0\\/imslticm_v1p0.xsd http:\\/\\/www.imsglobal.org\\/xsd\\/imslticp_v1p0 http:\\/\\/www.imsglobal.org\\/xsd\\/lti\\/ltiv1p0\\/imslticp_v1p0.xsd\"}}}','','',1,'2017-07-25 11:48:44','2017-07-25 11:48:44'),(70,'20f3765880a5c269b747e1e906054a4b4a3a991259f1e16b5dde4742cec2319a','54321',59,NULL,'{\"cartridge_basiclti_link\":{\"bltititle\":\"TEDEd\",\"bltidescription\":\"Search YouTube videos in the TEDEd Channel. A new icon will show up in your course rich editor letting you search the TEDEd channel and click to embed videos in your course material.\",\"bltilaunch_url\":\"https:\\/\\/www.edu-apps.org\\/lti_public_resources\\/?tool_id=youtube_ted_ed\",\"bltiextensions\":{\"lticmproperty\":[{\"@value\":\"www.edu-apps.org\",\"@attributes\":{\"name\":\"domain\"}},{\"@value\":\"https:\\/\\/www.edu-apps.org\\/assets\\/lti_public_resources\\/ted_ed_icon.png\",\"@attributes\":{\"name\":\"icon_url\"}},{\"@value\":\"anonymous\",\"@attributes\":{\"name\":\"privacy_level\"}},{\"@value\":\"600\",\"@attributes\":{\"name\":\"selection_height\"}},{\"@value\":\"560\",\"@attributes\":{\"name\":\"selection_width\"}},{\"@value\":\"TEDEd\",\"@attributes\":{\"name\":\"text\"}},{\"@value\":\"youtube_ted_ed\",\"@attributes\":{\"name\":\"tool_id\"}}],\"lticmoptions\":[{\"lticmproperty\":{\"@value\":\"true\",\"@attributes\":{\"name\":\"enabled\"}},\"@attributes\":{\"name\":\"editor_button\"}},{\"lticmproperty\":{\"@value\":\"true\",\"@attributes\":{\"name\":\"enabled\"}},\"@attributes\":{\"name\":\"resource_selection\"}}],\"@attributes\":{\"platform\":\"canvas.instructure.com\"}},\"@attributes\":{\"schemaLocation\":\"http:\\/\\/www.imsglobal.org\\/xsd\\/imslticc_v1p0 http:\\/\\/www.imsglobal.org\\/xsd\\/lti\\/ltiv1p0\\/imslticc_v1p0.xsd http:\\/\\/www.imsglobal.org\\/xsd\\/imsbasiclti_v1p0 http:\\/\\/www.imsglobal.org\\/xsd\\/lti\\/ltiv1p0\\/imsbasiclti_v1p0p1.xsd http:\\/\\/www.imsglobal.org\\/xsd\\/imslticm_v1p0 http:\\/\\/www.imsglobal.org\\/xsd\\/lti\\/ltiv1p0\\/imslticm_v1p0.xsd http:\\/\\/www.imsglobal.org\\/xsd\\/imslticp_v1p0 http:\\/\\/www.imsglobal.org\\/xsd\\/lti\\/ltiv1p0\\/imslticp_v1p0.xsd\"}}}','','',1,'2017-07-26 03:13:43','2017-07-26 03:13:43'),(71,'5994471abb01112afcc18159f6cc74b4f511b99806da59b3caf5a9c173cacfc5','12345',60,NULL,'{\"cartridge_basiclti_link\":{\"bltititle\":\"YouSeeU\",\"bltidescription\":\"Create a LTI connection to YouSeeU\'s demo environment. Security codes are provided for testing or production environments upon request.\",\"bltilaunch_url\":\"https:\\/\\/steamboat.youseeu.com\\/lti\\/955rf3\\/lti_connect.php\",\"bltiextensions\":{\"lticmproperty\":[{\"@value\":\"http:\\/\\/ysumisc.s3.amazonaws.com\\/iconsm.jpg\",\"@attributes\":{\"name\":\"icon_url\"}},{\"@value\":\"YouSeeU Demo\",\"@attributes\":{\"name\":\"link_text\"}},{\"@value\":\"public\",\"@attributes\":{\"name\":\"privacy_level\"}},{\"@value\":\"youseeu_demo\",\"@attributes\":{\"name\":\"tool_id\"}}],\"@attributes\":{\"platform\":\"canvas.instructure.com\"}},\"@attributes\":{\"schemaLocation\":\"http:\\/\\/www.imsglobal.org\\/xsd\\/imslticc_v1p0 http:\\/\\/www.imsglobal.org\\/xsd\\/lti\\/ltiv1p0\\/imslticc_v1p0.xsd http:\\/\\/www.imsglobal.org\\/xsd\\/imsbasiclti_v1p0 http:\\/\\/www.imsglobal.org\\/xsd\\/lti\\/ltiv1p0\\/imsbasiclti_v1p0p1.xsd http:\\/\\/www.imsglobal.org\\/xsd\\/imslticm_v1p0 http:\\/\\/www.imsglobal.org\\/xsd\\/lti\\/ltiv1p0\\/imslticm_v1p0.xsd http:\\/\\/www.imsglobal.org\\/xsd\\/imslticp_v1p0 http:\\/\\/www.imsglobal.org\\/xsd\\/lti\\/ltiv1p0\\/imslticp_v1p0.xsd\"}}}','','',1,'2017-07-27 11:52:29','2017-07-27 11:52:29'),(72,'e2d833a3825bacfba36715285294bffd07b566b1113cbc6b2f9da575d1948f53','math123',61,NULL,'{\"cartridge_basiclti_link\":{\"bltititle\":\"Curiosity\",\"bltidescription\":\"Our tool provides editorial commentary and assembles insightful information on many interesting topics, perfectly suited to those hungry to learn.\",\"bltilaunch_url\":\"https:\\/\\/curiosity-canvas.herokuapp.com\\/lti_public_resources\",\"bltiextensions\":{\"lticmproperty\":[{\"@value\":\"curiosity.com\",\"@attributes\":{\"name\":\"domain\"}},{\"@value\":\"https:\\/\\/d2nfa0w59y2lzi.cloudfront.net\\/static\\/images\\/nav-logo.gif\",\"@attributes\":{\"name\":\"icon_url\"}},{\"@value\":\"Curiosity | makes you smarter\",\"@attributes\":{\"name\":\"link_text\"}},{\"@value\":\"public\",\"@attributes\":{\"name\":\"privacy_level\"}},{\"@value\":\"topics\",\"@attributes\":{\"name\":\"tool_id\"}}],\"@attributes\":{\"platform\":\"canvas.instructure.com\"}},\"@attributes\":{\"schemaLocation\":\"http:\\/\\/www.imsglobal.org\\/xsd\\/imslticc_v1p0 http:\\/\\/www.imsglobal.org\\/xsd\\/lti\\/ltiv1p0\\/imslticc_v1p0.xsd http:\\/\\/www.imsglobal.org\\/xsd\\/imsbasiclti_v1p0 http:\\/\\/www.imsglobal.org\\/xsd\\/lti\\/ltiv1p0\\/imsbasiclti_v1p0p1.xsd http:\\/\\/www.imsglobal.org\\/xsd\\/imslticm_v1p0 http:\\/\\/www.imsglobal.org\\/xsd\\/lti\\/ltiv1p0\\/imslticm_v1p0.xsd http:\\/\\/www.imsglobal.org\\/xsd\\/imslticp_v1p0 http:\\/\\/www.imsglobal.org\\/xsd\\/lti\\/ltiv1p0\\/imslticp_v1p0.xsd\"}}}','','',1,'2017-07-27 11:57:43','2017-07-27 11:57:43'),(73,'20f3765880a5c269b747e1e906054a4b4a3a991259f1e16b5dde4742cec2319a','54321',62,NULL,'{\"cartridge_basiclti_link\":{\"bltititle\":\"College Board\",\"bltidescription\":\"Links to SAT and AP practice tests\",\"bltiicon\":\"https:\\/\\/www.edu-apps.org\\/tools\\/college_board\\/icon.png\",\"bltilaunch_url\":\"https:\\/\\/www.edu-apps.org\\/tool_redirect?id=college_board\",\"bltiextensions\":{\"lticmproperty\":[{\"@value\":\"college_board\",\"@attributes\":{\"name\":\"tool_id\"}},{\"@value\":\"anonymous\",\"@attributes\":{\"name\":\"privacy_level\"}}],\"lticmoptions\":[{\"lticmproperty\":[{\"@value\":\"https:\\/\\/www.edu-apps.org\\/tool_redirect?id=college_board\",\"@attributes\":{\"name\":\"url\"}},{\"@value\":\"https:\\/\\/www.edu-apps.org\\/tools\\/college_board\\/icon.png\",\"@attributes\":{\"name\":\"icon_url\"}},{\"@value\":\"College Board\",\"@attributes\":{\"name\":\"text\"}},{\"@value\":\"690\",\"@attributes\":{\"name\":\"selection_width\"}},{\"@value\":\"530\",\"@attributes\":{\"name\":\"selection_height\"}},{\"@value\":\"true\",\"@attributes\":{\"name\":\"enabled\"}}],\"@attributes\":{\"name\":\"editor_button\"}},{\"lticmproperty\":[{\"@value\":\"https:\\/\\/www.edu-apps.org\\/tool_redirect?id=college_board\",\"@attributes\":{\"name\":\"url\"}},{\"@value\":\"https:\\/\\/www.edu-apps.org\\/tools\\/college_board\\/icon.png\",\"@attributes\":{\"name\":\"icon_url\"}},{\"@value\":\"College Board\",\"@attributes\":{\"name\":\"text\"}},{\"@value\":\"690\",\"@attributes\":{\"name\":\"selection_width\"}},{\"@value\":\"530\",\"@attributes\":{\"name\":\"selection_height\"}},{\"@value\":\"true\",\"@attributes\":{\"name\":\"enabled\"}}],\"@attributes\":{\"name\":\"resource_selection\"}}],\"@attributes\":{\"platform\":\"canvas.instructure.com\"}},\"cartridge_bundle\":{\"@value\":\"\",\"@attributes\":{\"identifierref\":\"BLTI001_Bundle\"}},\"cartridge_icon\":{\"@value\":\"\",\"@attributes\":{\"identifierref\":\"BLTI001_Icon\"}},\"@attributes\":{\"schemaLocation\":\"http:\\/\\/www.imsglobal.org\\/xsd\\/imslticc_v1p0 http:\\/\\/www.imsglobal.org\\/xsd\\/lti\\/ltiv1p0\\/imslticc_v1p0.xsd http:\\/\\/www.imsglobal.org\\/xsd\\/imsbasiclti_v1p0 http:\\/\\/www.imsglobal.org\\/xsd\\/lti\\/ltiv1p0\\/imsbasiclti_v1p0.xsd http:\\/\\/www.imsglobal.org\\/xsd\\/imslticm_v1p0 http:\\/\\/www.imsglobal.org\\/xsd\\/lti\\/ltiv1p0\\/imslticm_v1p0.xsd http:\\/\\/www.imsglobal.org\\/xsd\\/imslticp_v1p0 http:\\/\\/www.imsglobal.org\\/xsd\\/lti\\/ltiv1p0\\/imslticp_v1p0.xsd\"}}}','','',1,'2017-07-27 12:03:13','2017-07-27 12:03:13'),(74,'310ced37200b1a0dae25edb263fe52c491f6e467268acab0ffec06666e2ed959','1235',63,NULL,'{\"cartridge_basiclti_link\":{\"bltititle\":\"Adjust-All HQ\",\"bltidescription\":\"Adjust dates and settings for all all course items.\",\"bltilaunch_url\":\"https:\\/\\/apps.etudes.org\\/api\\/lti\\/launch\\/3\",\"blticustom\":{\"lticmproperty\":{\"@value\":\"$Canvas.masqueradingUser.id\",\"@attributes\":{\"name\":\"etudes_masquerading_user_id\"}}},\"bltiextensions\":{\"lticmproperty\":{\"@value\":\"public\",\"@attributes\":{\"name\":\"privacy_level\"}},\"lticmoptions\":{\"lticmproperty\":[{\"@value\":\"true\",\"@attributes\":{\"name\":\"enabled\"}},{\"@value\":\"admins\",\"@attributes\":{\"name\":\"visibility\"}},{\"@value\":\"Adjust All\",\"@attributes\":{\"name\":\"text\"}},{\"@value\":\"enabled\",\"@attributes\":{\"name\":\"default\"}}],\"@attributes\":{\"name\":\"course_navigation\"}},\"@attributes\":{\"platform\":\"canvas.instructure.com\"}},\"@attributes\":{\"schemaLocation\":\"http:\\/\\/www.imsglobal.org\\/xsd\\/imslticc_v1p0 http:\\/\\/www.imsglobal.org\\/xsd\\/lti\\/ltiv1p0\\/imslticc_v1p0.xsd http:\\/\\/www.imsglobal.org\\/xsd\\/imsbasiclti_v1p0 http:\\/\\/www.imsglobal.org\\/xsd\\/lti\\/ltiv1p0\\/imsbasiclti_v1p0.xsd http:\\/\\/www.imsglobal.org\\/xsd\\/imslticm_v1p0 http:\\/\\/www.imsglobal.org\\/xsd\\/lti\\/ltiv1p0\\/imslticm_v1p0.xsd http:\\/\\/www.imsglobal.org\\/xsd\\/imslticp_v1p0 http:\\/\\/www.imsglobal.org\\/xsd\\/lti\\/ltiv1p0\\/imslticp_v1p0.xsd\"}}}','','',1,'2017-07-27 12:06:42','2017-07-27 12:06:42'),(75,'bbdefa2950f49882f295b1285d4fa9dec45fc4144bfb07ee6acc68762d12c2e3','google',64,'LTI Maps','{\"cartridge_basiclti_link\":{\"bltititle\":\"LTI Maps\",\"bltidescription\":\"This LTI Tool enables you to easily embed a Google Map into your course\",\"bltiicon\":\"https:\\/\\/bltools.creighton.edu\\/lti\\/ltimaps\\/ltimaps\\/maps.png\",\"bltilaunch_url\":\"https:\\/\\/bltools.creighton.edu\\/lti\\/ltimaps\\/ltimaps\\/map.php\",\"bltiextensions\":{\"lticmproperty\":[{\"@value\":\"LTI_Maps_71364a\",\"@attributes\":{\"name\":\"tool_id\"}},{\"@value\":\"anonymous\",\"@attributes\":{\"name\":\"privacy_level\"}}],\"lticmoptions\":{\"lticmproperty\":[{\"@value\":\"https:\\/\\/bltools.creighton.edu\\/lti\\/ltimaps\\/ltimaps\\/map.php\",\"@attributes\":{\"name\":\"url\"}},{\"@value\":\"https:\\/\\/bltools.creighton.edu\\/lti\\/ltimaps\\/ltimaps\\/maps.png\",\"@attributes\":{\"name\":\"icon_url\"}},{\"@value\":\"Google Maps\",\"@attributes\":{\"name\":\"text\"}},{\"@value\":\"525\",\"@attributes\":{\"name\":\"selection_width\"}},{\"@value\":\"510\",\"@attributes\":{\"name\":\"selection_height\"}},{\"@value\":\"true\",\"@attributes\":{\"name\":\"enabled\"}}],\"@attributes\":{\"name\":\"editor_button\"}},\"@attributes\":{\"platform\":\"canvas.instructure.com\"}},\"cartridge_bundle\":{\"@value\":\"\",\"@attributes\":{\"identifierref\":\"BLTI001_Bundle\"}},\"cartridge_icon\":{\"@value\":\"\",\"@attributes\":{\"identifierref\":\"BLTI001_Icon\"}},\"@attributes\":{\"schemaLocation\":\"http:\\/\\/www.imsglobal.org\\/xsd\\/imslticc_v1p0 http:\\/\\/www.imsglobal.org\\/xsd\\/lti\\/ltiv1p0\\/imslticc_v1p0.xsd http:\\/\\/www.imsglobal.org\\/xsd\\/imsbasiclti_v1p0 http:\\/\\/www.imsglobal.org\\/xsd\\/lti\\/ltiv1p0\\/imsbasiclti_v1p0.xsd http:\\/\\/www.imsglobal.org\\/xsd\\/imslticm_v1p0 http:\\/\\/www.imsglobal.org\\/xsd\\/lti\\/ltiv1p0\\/imslticm_v1p0.xsd http:\\/\\/www.imsglobal.org\\/xsd\\/imslticp_v1p0 http:\\/\\/www.imsglobal.org\\/xsd\\/lti\\/ltiv1p0\\/imslticp_v1p0.xsd\"}}}','','',1,'2017-07-27 12:17:03','2017-07-27 12:17:03'),(76,'05cc6c650fa6e8acf3809945f1dc2228bf28046c8b8d250da4911b9a52b148ba','tube',65,'YouTube','{\"cartridge_basiclti_link\":{\"bltititle\":\"YouTube\",\"bltidescription\":\"Search publicly available YouTube videos. A new icon will show up in your course rich editor letting you search YouTube and click to embed videos in your course material.\",\"bltilaunch_url\":\"https:\\/\\/www.edu-apps.org\\/lti_public_resources\\/?tool_id=youtube\",\"bltiextensions\":{\"lticmproperty\":[{\"@value\":\"www.edu-apps.org\",\"@attributes\":{\"name\":\"domain\"}},{\"@value\":\"https:\\/\\/www.edu-apps.org\\/assets\\/lti_public_resources\\/youtube_icon.png\",\"@attributes\":{\"name\":\"icon_url\"}},{\"@value\":\"anonymous\",\"@attributes\":{\"name\":\"privacy_level\"}},{\"@value\":\"600\",\"@attributes\":{\"name\":\"selection_height\"}},{\"@value\":\"560\",\"@attributes\":{\"name\":\"selection_width\"}},{\"@value\":\"YouTube\",\"@attributes\":{\"name\":\"text\"}},{\"@value\":\"youtube\",\"@attributes\":{\"name\":\"tool_id\"}}],\"lticmoptions\":[{\"lticmproperty\":{\"@value\":\"true\",\"@attributes\":{\"name\":\"enabled\"}},\"@attributes\":{\"name\":\"editor_button\"}},{\"lticmproperty\":{\"@value\":\"true\",\"@attributes\":{\"name\":\"enabled\"}},\"@attributes\":{\"name\":\"resource_selection\"}}],\"@attributes\":{\"platform\":\"canvas.instructure.com\"}},\"@attributes\":{\"schemaLocation\":\"http:\\/\\/www.imsglobal.org\\/xsd\\/imslticc_v1p0 http:\\/\\/www.imsglobal.org\\/xsd\\/lti\\/ltiv1p0\\/imslticc_v1p0.xsd http:\\/\\/www.imsglobal.org\\/xsd\\/imsbasiclti_v1p0 http:\\/\\/www.imsglobal.org\\/xsd\\/lti\\/ltiv1p0\\/imsbasiclti_v1p0p1.xsd http:\\/\\/www.imsglobal.org\\/xsd\\/imslticm_v1p0 http:\\/\\/www.imsglobal.org\\/xsd\\/lti\\/ltiv1p0\\/imslticm_v1p0.xsd http:\\/\\/www.imsglobal.org\\/xsd\\/imslticp_v1p0 http:\\/\\/www.imsglobal.org\\/xsd\\/lti\\/ltiv1p0\\/imslticp_v1p0.xsd\"}}}','','',1,'2017-07-27 13:37:48','2017-07-27 13:37:48');
/*!40000 ALTER TABLE `lti_context` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `lti_domain`
--
DROP TABLE IF EXISTS `lti_domain`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lti_domain` (
`key_id` int(10) unsigned NOT NULL,
`context_id` int(10) unsigned DEFAULT NULL,
`category_id` int(10) unsigned NOT NULL,
`domain` longtext,
`description` text NOT NULL,
`port` int(10) unsigned DEFAULT NULL,
`consumer_key` text,
`secret` text,
`json` text,
`logo_uri` text NOT NULL,
`app_categories` varchar(255) NOT NULL,
`created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
UNIQUE KEY `key_id` (`key_id`,`context_id`) USING BTREE,
KEY `lti_domain_ibfk_2` (`context_id`),
KEY `category_id_index` (`category_id`),
CONSTRAINT `category_id_index` FOREIGN KEY (`category_id`) REFERENCES `lti_app_categories` (`id`),
CONSTRAINT `lti_domain_ibfk_1` FOREIGN KEY (`key_id`) REFERENCES `lti_key` (`key_id`) ON DELETE CASCADE ON UPDATE CASCADE,
CONSTRAINT `lti_domain_ibfk_2` FOREIGN KEY (`context_id`) REFERENCES `lti_context` (`context_id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `lti_domain`
--
LOCK TABLES `lti_domain` WRITE;
/*!40000 ALTER TABLE `lti_domain` DISABLE KEYS */;
INSERT INTO `lti_domain` VALUES (36,40,1,'https://www.edu-apps.org/lti_public_resources/?tool_id=quizlet','',80,'nokey','nosecret','{\"cartridge_basiclti_link\":{\"bltititle\":\"Quizlet\",\"bltidescription\":\"Search for and embed publicly available flashcards and question sets from Quizlet. Questions can be embedded directly into content as flash cards, review, or as a study game.\",\"bltilaunch_url\":\"https:\\/\\/www.edu-apps.org\\/lti_public_resources\\/?tool_id=quizlet\",\"bltiextensions\":{\"lticmproperty\":[{\"@value\":\"edu-apps.org\",\"@attributes\":{\"name\":\"domain\"}},{\"@value\":\"https:\\/\\/www.edu-apps.org\\/assets\\/lti_public_resources\\/quizlet_icon.png\",\"@attributes\":{\"name\":\"icon_url\"}},{\"@value\":\"anonymous\",\"@attributes\":{\"name\":\"privacy_level\"}},{\"@value\":\"600\",\"@attributes\":{\"name\":\"selection_height\"}},{\"@value\":\"560\",\"@attributes\":{\"name\":\"selection_width\"}},{\"@value\":\"quizlet\",\"@attributes\":{\"name\":\"tool_id\"}}],\"lticmoptions\":[{\"lticmproperty\":{\"@value\":\"true\",\"@attributes\":{\"name\":\"enabled\"}},\"@attributes\":{\"name\":\"editor_button\"}},{\"lticmproperty\":{\"@value\":\"true\",\"@attributes\":{\"name\":\"enabled\"}},\"@attributes\":{\"name\":\"resource_selection\"}}],\"@attributes\":{\"platform\":\"canvas.instructure.com\"}},\"@attributes\":{\"schemaLocation\":\"http:\\/\\/www.imsglobal.org\\/xsd\\/imslticc_v1p0 http:\\/\\/www.imsglobal.org\\/xsd\\/lti\\/ltiv1p0\\/imslticc_v1p0.xsd http:\\/\\/www.imsglobal.org\\/xsd\\/imsbasiclti_v1p0 http:\\/\\/www.imsglobal.org\\/xsd\\/lti\\/ltiv1p0\\/imsbasiclti_v1p0p1.xsd http:\\/\\/www.imsglobal.org\\/xsd\\/imslticm_v1p0 http:\\/\\/www.imsglobal.org\\/xsd\\/lti\\/ltiv1p0\\/imslticm_v1p0.xsd http:\\/\\/www.imsglobal.org\\/xsd\\/imslticp_v1p0 http:\\/\\/www.imsglobal.org\\/xsd\\/lti\\/ltiv1p0\\/imslticp_v1p0.xsd\"}}}','https://edu-app-center.s3.amazonaws.com/uploads/production/lti_app/banner_image/pr_quizlet.png','','2017-04-03 21:14:31','2017-04-03 21:14:31'),(39,43,4,'https://openedsearch.azurewebsites.net/','',80,'mahara','maharakey','{\"cartridge_basiclti_link\":{\"bltititle\":\"Open Educational Search\",\"bltidescription\":\"\",\"bltilaunch_url\":\"https:\\/\\/openedsearch.azurewebsites.net\\/\",\"bltiicon\":\"https:\\/\\/openedsearch.azurewebsites.net\\/Store\\/StoreIcon16.png\",\"blticustom\":\"\",\"bltiextensions\":{\"lticmproperty\":[{\"@value\":\"microsoft_opened_search\",\"@attributes\":{\"name\":\"tool_id\"}},{\"@value\":\"https:\\/\\/openedsearch.azurewebsites.net\\/Store\\/StoreIcon16.png\",\"@attributes\":{\"name\":\"icon_url\"}},{\"@value\":\"public\",\"@attributes\":{\"name\":\"privacy_level\"}},{\"@value\":\"openedsearch.azurewebsites.net\",\"@attributes\":{\"name\":\"domain\"}},{\"@value\":\"Open Educational Search\",\"@attributes\":{\"name\":\"text\"}}],\"@attributes\":{\"platform\":\"canvas.instructure.com\"}},\"@attributes\":{\"schemalocation\":\"http:\\/\\/www.imsglobal.org\\/xsd\\/imslticc_v1p0 http:\\/\\/www.imsglobal.org\\/xsd\\/lti\\/ltiv1p0\\/imslticc_v1p0.xsd http:\\/\\/www.imsglobal.org\\/xsd\\/imsbasiclti_v1p0 http:\\/\\/www.imsglobal.org\\/xsd\\/lti\\/ltiv1p0\\/imsbasiclti_v1p0p1.xsd http:\\/\\/www.imsglobal.org\\/xsd\\/imslticm_v1p0 http:\\/\\/www.imsglobal.org\\/xsd\\/lti\\/ltiv1p0\\/imslticm_v1p0.xsd http:\\/\\/www.imsglobal.org\\/xsd\\/imslticp_v1p0 http:\\/\\/www.imsglobal.org\\/xsd\\/lti\\/ltiv1p0\\/imslticp_v1p0.xsd\"}}}','https://edu-app-center.s3.amazonaws.com/uploads/production/lti_app/banner_image/f808b8c7-602b-4715-bead-a4230b58365f.png','','2017-04-03 21:17:03','2017-04-03 21:17:03'),(60,71,5,'https://steamboat.youseeu.com/lti/955rf3/lti_connect.php','Create a LTI connection to YouSeeU\'s demo environment. Security codes are provided for testing or production environments upon request.',80,'12345','12345','{\"cartridge_basiclti_link\":{\"bltititle\":\"YouSeeU\",\"bltidescription\":\"Create a LTI connection to YouSeeU\'s demo environment. Security codes are provided for testing or production environments upon request.\",\"bltilaunch_url\":\"https:\\/\\/steamboat.youseeu.com\\/lti\\/955rf3\\/lti_connect.php\",\"bltiextensions\":{\"lticmproperty\":[{\"@value\":\"http:\\/\\/ysumisc.s3.amazonaws.com\\/iconsm.jpg\",\"@attributes\":{\"name\":\"icon_url\"}},{\"@value\":\"YouSeeU Demo\",\"@attributes\":{\"name\":\"link_text\"}},{\"@value\":\"public\",\"@attributes\":{\"name\":\"privacy_level\"}},{\"@value\":\"youseeu_demo\",\"@attributes\":{\"name\":\"tool_id\"}}],\"@attributes\":{\"platform\":\"canvas.instructure.com\"}},\"@attributes\":{\"schemaLocation\":\"http:\\/\\/www.imsglobal.org\\/xsd\\/imslticc_v1p0 http:\\/\\/www.imsglobal.org\\/xsd\\/lti\\/ltiv1p0\\/imslticc_v1p0.xsd http:\\/\\/www.imsglobal.org\\/xsd\\/imsbasiclti_v1p0 http:\\/\\/www.imsglobal.org\\/xsd\\/lti\\/ltiv1p0\\/imsbasiclti_v1p0p1.xsd http:\\/\\/www.imsglobal.org\\/xsd\\/imslticm_v1p0 http:\\/\\/www.imsglobal.org\\/xsd\\/lti\\/ltiv1p0\\/imslticm_v1p0.xsd http:\\/\\/www.imsglobal.org\\/xsd\\/imslticp_v1p0 http:\\/\\/www.imsglobal.org\\/xsd\\/lti\\/ltiv1p0\\/imslticp_v1p0.xsd\"}}}','','5','2017-07-27 11:52:29','2017-07-27 11:52:29'),(61,72,7,'https://curiosity-canvas.herokuapp.com/lti_public_resources','Our tool provides editorial commentary and assembles insightful information on many interesting topics, perfectly suited to those hungry to learn.',80,'math123','math123','{\"cartridge_basiclti_link\":{\"bltititle\":\"Curiosity\",\"bltidescription\":\"Our tool provides editorial commentary and assembles insightful information on many interesting topics, perfectly suited to those hungry to learn.\",\"bltilaunch_url\":\"https:\\/\\/curiosity-canvas.herokuapp.com\\/lti_public_resources\",\"bltiextensions\":{\"lticmproperty\":[{\"@value\":\"curiosity.com\",\"@attributes\":{\"name\":\"domain\"}},{\"@value\":\"https:\\/\\/d2nfa0w59y2lzi.cloudfront.net\\/static\\/images\\/nav-logo.gif\",\"@attributes\":{\"name\":\"icon_url\"}},{\"@value\":\"Curiosity | makes you smarter\",\"@attributes\":{\"name\":\"link_text\"}},{\"@value\":\"public\",\"@attributes\":{\"name\":\"privacy_level\"}},{\"@value\":\"topics\",\"@attributes\":{\"name\":\"tool_id\"}}],\"@attributes\":{\"platform\":\"canvas.instructure.com\"}},\"@attributes\":{\"schemaLocation\":\"http:\\/\\/www.imsglobal.org\\/xsd\\/imslticc_v1p0 http:\\/\\/www.imsglobal.org\\/xsd\\/lti\\/ltiv1p0\\/imslticc_v1p0.xsd http:\\/\\/www.imsglobal.org\\/xsd\\/imsbasiclti_v1p0 http:\\/\\/www.imsglobal.org\\/xsd\\/lti\\/ltiv1p0\\/imsbasiclti_v1p0p1.xsd http:\\/\\/www.imsglobal.org\\/xsd\\/imslticm_v1p0 http:\\/\\/www.imsglobal.org\\/xsd\\/lti\\/ltiv1p0\\/imslticm_v1p0.xsd http:\\/\\/www.imsglobal.org\\/xsd\\/imslticp_v1p0 http:\\/\\/www.imsglobal.org\\/xsd\\/lti\\/ltiv1p0\\/imslticp_v1p0.xsd\"}}}','','7','2017-07-27 11:57:43','2017-07-27 11:57:43'),(62,73,5,'https://www.edu-apps.org/tool_redirect?id=college_board','Links to SAT and AP practice tests',80,'54321','54321','{\"cartridge_basiclti_link\":{\"bltititle\":\"College Board\",\"bltidescription\":\"Links to SAT and AP practice tests\",\"bltiicon\":\"https:\\/\\/www.edu-apps.org\\/tools\\/college_board\\/icon.png\",\"bltilaunch_url\":\"https:\\/\\/www.edu-apps.org\\/tool_redirect?id=college_board\",\"bltiextensions\":{\"lticmproperty\":[{\"@value\":\"college_board\",\"@attributes\":{\"name\":\"tool_id\"}},{\"@value\":\"anonymous\",\"@attributes\":{\"name\":\"privacy_level\"}}],\"lticmoptions\":[{\"lticmproperty\":[{\"@value\":\"https:\\/\\/www.edu-apps.org\\/tool_redirect?id=college_board\",\"@attributes\":{\"name\":\"url\"}},{\"@value\":\"https:\\/\\/www.edu-apps.org\\/tools\\/college_board\\/icon.png\",\"@attributes\":{\"name\":\"icon_url\"}},{\"@value\":\"College Board\",\"@attributes\":{\"name\":\"text\"}},{\"@value\":\"690\",\"@attributes\":{\"name\":\"selection_width\"}},{\"@value\":\"530\",\"@attributes\":{\"name\":\"selection_height\"}},{\"@value\":\"true\",\"@attributes\":{\"name\":\"enabled\"}}],\"@attributes\":{\"name\":\"editor_button\"}},{\"lticmproperty\":[{\"@value\":\"https:\\/\\/www.edu-apps.org\\/tool_redirect?id=college_board\",\"@attributes\":{\"name\":\"url\"}},{\"@value\":\"https:\\/\\/www.edu-apps.org\\/tools\\/college_board\\/icon.png\",\"@attributes\":{\"name\":\"icon_url\"}},{\"@value\":\"College Board\",\"@attributes\":{\"name\":\"text\"}},{\"@value\":\"690\",\"@attributes\":{\"name\":\"selection_width\"}},{\"@value\":\"530\",\"@attributes\":{\"name\":\"selection_height\"}},{\"@value\":\"true\",\"@attributes\":{\"name\":\"enabled\"}}],\"@attributes\":{\"name\":\"resource_selection\"}}],\"@attributes\":{\"platform\":\"canvas.instructure.com\"}},\"cartridge_bundle\":{\"@value\":\"\",\"@attributes\":{\"identifierref\":\"BLTI001_Bundle\"}},\"cartridge_icon\":{\"@value\":\"\",\"@attributes\":{\"identifierref\":\"BLTI001_Icon\"}},\"@attributes\":{\"schemaLocation\":\"http:\\/\\/www.imsglobal.org\\/xsd\\/imslticc_v1p0 http:\\/\\/www.imsglobal.org\\/xsd\\/lti\\/ltiv1p0\\/imslticc_v1p0.xsd http:\\/\\/www.imsglobal.org\\/xsd\\/imsbasiclti_v1p0 http:\\/\\/www.imsglobal.org\\/xsd\\/lti\\/ltiv1p0\\/imsbasiclti_v1p0.xsd http:\\/\\/www.imsglobal.org\\/xsd\\/imslticm_v1p0 http:\\/\\/www.imsglobal.org\\/xsd\\/lti\\/ltiv1p0\\/imslticm_v1p0.xsd http:\\/\\/www.imsglobal.org\\/xsd\\/imslticp_v1p0 http:\\/\\/www.imsglobal.org\\/xsd\\/lti\\/ltiv1p0\\/imslticp_v1p0.xsd\"}}}','','5','2017-07-27 12:03:13','2017-07-27 12:03:13'),(63,74,4,'https://apps.etudes.org/api/lti/launch/3','Adjust dates and settings for all all course items.',80,'1235','2555','{\"cartridge_basiclti_link\":{\"bltititle\":\"Adjust-All HQ\",\"bltidescription\":\"Adjust dates and settings for all all course items.\",\"bltilaunch_url\":\"https:\\/\\/apps.etudes.org\\/api\\/lti\\/launch\\/3\",\"blticustom\":{\"lticmproperty\":{\"@value\":\"$Canvas.masqueradingUser.id\",\"@attributes\":{\"name\":\"etudes_masquerading_user_id\"}}},\"bltiextensions\":{\"lticmproperty\":{\"@value\":\"public\",\"@attributes\":{\"name\":\"privacy_level\"}},\"lticmoptions\":{\"lticmproperty\":[{\"@value\":\"true\",\"@attributes\":{\"name\":\"enabled\"}},{\"@value\":\"admins\",\"@attributes\":{\"name\":\"visibility\"}},{\"@value\":\"Adjust All\",\"@attributes\":{\"name\":\"text\"}},{\"@value\":\"enabled\",\"@attributes\":{\"name\":\"default\"}}],\"@attributes\":{\"name\":\"course_navigation\"}},\"@attributes\":{\"platform\":\"canvas.instructure.com\"}},\"@attributes\":{\"schemaLocation\":\"http:\\/\\/www.imsglobal.org\\/xsd\\/imslticc_v1p0 http:\\/\\/www.imsglobal.org\\/xsd\\/lti\\/ltiv1p0\\/imslticc_v1p0.xsd http:\\/\\/www.imsglobal.org\\/xsd\\/imsbasiclti_v1p0 http:\\/\\/www.imsglobal.org\\/xsd\\/lti\\/ltiv1p0\\/imsbasiclti_v1p0.xsd http:\\/\\/www.imsglobal.org\\/xsd\\/imslticm_v1p0 http:\\/\\/www.imsglobal.org\\/xsd\\/lti\\/ltiv1p0\\/imslticm_v1p0.xsd http:\\/\\/www.imsglobal.org\\/xsd\\/imslticp_v1p0 http:\\/\\/www.imsglobal.org\\/xsd\\/lti\\/ltiv1p0\\/imslticp_v1p0.xsd\"}}}','','4','2017-07-27 12:06:42','2017-07-27 12:06:42'),(64,75,5,'https://bltools.creighton.edu/lti/ltimaps/ltimaps/map.php','This LTI Tool enables you to easily embed a Google Map into your course',80,'google','googleQQ','{\"cartridge_basiclti_link\":{\"bltititle\":\"LTI Maps\",\"bltidescription\":\"This LTI Tool enables you to easily embed a Google Map into your course\",\"bltiicon\":\"https:\\/\\/bltools.creighton.edu\\/lti\\/ltimaps\\/ltimaps\\/maps.png\",\"bltilaunch_url\":\"https:\\/\\/bltools.creighton.edu\\/lti\\/ltimaps\\/ltimaps\\/map.php\",\"bltiextensions\":{\"lticmproperty\":[{\"@value\":\"LTI_Maps_71364a\",\"@attributes\":{\"name\":\"tool_id\"}},{\"@value\":\"anonymous\",\"@attributes\":{\"name\":\"privacy_level\"}}],\"lticmoptions\":{\"lticmproperty\":[{\"@value\":\"https:\\/\\/bltools.creighton.edu\\/lti\\/ltimaps\\/ltimaps\\/map.php\",\"@attributes\":{\"name\":\"url\"}},{\"@value\":\"https:\\/\\/bltools.creighton.edu\\/lti\\/ltimaps\\/ltimaps\\/maps.png\",\"@attributes\":{\"name\":\"icon_url\"}},{\"@value\":\"Google Maps\",\"@attributes\":{\"name\":\"text\"}},{\"@value\":\"525\",\"@attributes\":{\"name\":\"selection_width\"}},{\"@value\":\"510\",\"@attributes\":{\"name\":\"selection_height\"}},{\"@value\":\"true\",\"@attributes\":{\"name\":\"enabled\"}}],\"@attributes\":{\"name\":\"editor_button\"}},\"@attributes\":{\"platform\":\"canvas.instructure.com\"}},\"cartridge_bundle\":{\"@value\":\"\",\"@attributes\":{\"identifierref\":\"BLTI001_Bundle\"}},\"cartridge_icon\":{\"@value\":\"\",\"@attributes\":{\"identifierref\":\"BLTI001_Icon\"}},\"@attributes\":{\"schemaLocation\":\"http:\\/\\/www.imsglobal.org\\/xsd\\/imslticc_v1p0 http:\\/\\/www.imsglobal.org\\/xsd\\/lti\\/ltiv1p0\\/imslticc_v1p0.xsd http:\\/\\/www.imsglobal.org\\/xsd\\/imsbasiclti_v1p0 http:\\/\\/www.imsglobal.org\\/xsd\\/lti\\/ltiv1p0\\/imsbasiclti_v1p0.xsd http:\\/\\/www.imsglobal.org\\/xsd\\/imslticm_v1p0 http:\\/\\/www.imsglobal.org\\/xsd\\/lti\\/ltiv1p0\\/imslticm_v1p0.xsd http:\\/\\/www.imsglobal.org\\/xsd\\/imslticp_v1p0 http:\\/\\/www.imsglobal.org\\/xsd\\/lti\\/ltiv1p0\\/imslticp_v1p0.xsd\"}}}','','5','2017-07-27 12:17:03','2017-07-27 12:17:03'),(65,76,8,'https://www.edu-apps.org/lti_public_resources/?tool_id=youtube','Search publicly available YouTube videos. A new icon will show up in your course rich editor letting you search YouTube and click to embed videos in your course material.',80,'tube','tube','{\"cartridge_basiclti_link\":{\"bltititle\":\"YouTube\",\"bltidescription\":\"Search publicly available YouTube videos. A new icon will show up in your course rich editor letting you search YouTube and click to embed videos in your course material.\",\"bltilaunch_url\":\"https:\\/\\/www.edu-apps.org\\/lti_public_resources\\/?tool_id=youtube\",\"bltiextensions\":{\"lticmproperty\":[{\"@value\":\"www.edu-apps.org\",\"@attributes\":{\"name\":\"domain\"}},{\"@value\":\"https:\\/\\/www.edu-apps.org\\/assets\\/lti_public_resources\\/youtube_icon.png\",\"@attributes\":{\"name\":\"icon_url\"}},{\"@value\":\"anonymous\",\"@attributes\":{\"name\":\"privacy_level\"}},{\"@value\":\"600\",\"@attributes\":{\"name\":\"selection_height\"}},{\"@value\":\"560\",\"@attributes\":{\"name\":\"selection_width\"}},{\"@value\":\"YouTube\",\"@attributes\":{\"name\":\"text\"}},{\"@value\":\"youtube\",\"@attributes\":{\"name\":\"tool_id\"}}],\"lticmoptions\":[{\"lticmproperty\":{\"@value\":\"true\",\"@attributes\":{\"name\":\"enabled\"}},\"@attributes\":{\"name\":\"editor_button\"}},{\"lticmproperty\":{\"@value\":\"true\",\"@attributes\":{\"name\":\"enabled\"}},\"@attributes\":{\"name\":\"resource_selection\"}}],\"@attributes\":{\"platform\":\"canvas.instructure.com\"}},\"@attributes\":{\"schemaLocation\":\"http:\\/\\/www.imsglobal.org\\/xsd\\/imslticc_v1p0 http:\\/\\/www.imsglobal.org\\/xsd\\/lti\\/ltiv1p0\\/imslticc_v1p0.xsd http:\\/\\/www.imsglobal.org\\/xsd\\/imsbasiclti_v1p0 http:\\/\\/www.imsglobal.org\\/xsd\\/lti\\/ltiv1p0\\/imsbasiclti_v1p0p1.xsd http:\\/\\/www.imsglobal.org\\/xsd\\/imslticm_v1p0 http:\\/\\/www.imsglobal.org\\/xsd\\/lti\\/ltiv1p0\\/imslticm_v1p0.xsd http:\\/\\/www.imsglobal.org\\/xsd\\/imslticp_v1p0 http:\\/\\/www.imsglobal.org\\/xsd\\/lti\\/ltiv1p0\\/imslticp_v1p0.xsd\"}}}','','8','2017-07-27 13:37:48','2017-07-27 13:37:48');
/*!40000 ALTER TABLE `lti_domain` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `lti_graphs`
--
DROP TABLE IF EXISTS `lti_graphs`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lti_graphs` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`code` text COLLATE utf8mb4_unicode_ci NOT NULL,
`name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `lti_graphs`
--
LOCK TABLES `lti_graphs` WRITE;
/*!40000 ALTER TABLE `lti_graphs` DISABLE KEYS */;
INSERT INTO `lti_graphs` VALUES (1,'(function () {\n var board = JXG.JSXGraph.initBoard(\'jxgbox\', {\n boundingbox: [-1.5, 2, 1.5, -1],\n keepaspectratio: true,\n showcopyright: false,\n shownavigation: false\n });\n var cerise = {\n strokeColor: \'#901B77\',\n fillColor: \'#CA147A\'\n },\n grass = {\n strokeColor: \'#009256\',\n fillColor: \'#65B72E\',\n visible: true,\n withLabel: true\n },\n perpendicular = {\n strokeColor: \'black\',\n dash: 1,\n strokeWidth: 1,\n point: JXG.deepCopy(cerise, {\n visible: true,\n withLabel: true\n })\n },\n median = {\n strokeWidth: 1,\n strokeColor: \'#333333\',\n dash: 2\n },\n A = board.create(\'point\', [1, 0], cerise),\n B = board.create(\'point\', [-1, 0], cerise),\n C = board.create(\'point\', [0.2, 1.5], cerise),\n pol = board.create(\'polygon\', [A, B, C], {\n fillColor: \'#FFFF00\',\n lines: {\n strokeWidth: 2,\n strokeColor: \'#009256\'\n }\n });\n var pABC, pBCA, pCAB, i1;\n perpendicular.point.name = \'H_c\';\n pABC = board.create(\'perpendicular\', [pol.borders[0], C], perpendicular);\n perpendicular.point.name = \'H_a\';\n pBCA = board.create(\'perpendicular\', [pol.borders[1], A], perpendicular);\n perpendicular.point.name = \'H_b\';\n pCAB = board.create(\'perpendicular\', [pol.borders[2], B], perpendicular);\n grass.name = \'H\';\n i1 = board.create(\'intersection\', [pABC, pCAB, 0], grass);\n var mAB, mBC, mCA;\n cerise.name = \'M_c\';\n mAB = board.create(\'midpoint\', [A, B], cerise);\n cerise.name = \'M_a\';\n mBC = board.create(\'midpoint\', [B, C], cerise);\n cerise.name = \'M_b\';\n mCA = board.create(\'midpoint\', [C, A], cerise);\n var ma, mb, mc, i2;\n ma = board.create(\'segment\', [mBC, A], median);\n mb = board.create(\'segment\', [mCA, B], median);\n mc = board.create(\'segment\', [mAB, C], median);\n grass.name = \'S\';\n i2 = board.create(\'intersection\', [ma, mc, 0], grass);\n var c;\n grass.name = \'U\';\n c = board.create(\'circumcircle\', [A, B, C], {\n strokeColor: \'#000000\',\n dash: 3,\n strokeWidth: 1,\n point: grass\n });\n var euler;\n euler = board.create(\'line\', [i1, i2], {\n strokeWidth: 2,\n strokeColor: \'#901B77\'\n });\n board.update();\n })();','Peace Graph Test','2017-07-06 11:14:48','2017-07-06 11:14:48'),(2,'(function () {\r\n var board = JXG.JSXGraph.initBoard(\'jxgbox\', {\r\n boundingbox: [-1.5, 2, 1.5, -1],\r\n keepaspectratio: true,\r\n showcopyright: false,\r\n shownavigation: false\r\n });\r\n var cerise = {\r\n strokeColor: \'#901B77\',\r\n fillColor: \'#CA147A\'\r\n },\r\n grass = {\r\n strokeColor: \'#009256\',\r\n fillColor: \'#65B72E\',\r\n visible: true,\r\n withLabel: true\r\n },\r\n perpendicular = {\r\n strokeColor: \'black\',\r\n dash: 1,\r\n strokeWidth: 1,\r\n point: JXG.deepCopy(cerise, {\r\n visible: true,\r\n withLabel: true\r\n })\r\n },\r\n median = {\r\n strokeWidth: 1,\r\n strokeColor: \'#333333\',\r\n dash: 2\r\n },\r\n A = board.create(\'point\', [1, 0], cerise),\r\n B = board.create(\'point\', [-1, 0], cerise),\r\n C = board.create(\'point\', [0.2, 1.5], cerise),\r\n pol = board.create(\'polygon\', [A, B, C], {\r\n fillColor: \'#FFFF00\',\r\n lines: {\r\n strokeWidth: 2,\r\n strokeColor: \'#009256\'\r\n }\r\n });\r\n var pABC, pBCA, pCAB, i1;\r\n perpendicular.point.name = \'H_c\';\r\n pABC = board.create(\'perpendicular\', [pol.borders[0], C], perpendicular);\r\n perpendicular.point.name = \'H_a\';\r\n pBCA = board.create(\'perpendicular\', [pol.borders[1], A], perpendicular);\r\n perpendicular.point.name = \'H_b\';\r\n pCAB = board.create(\'perpendicular\', [pol.borders[2], B], perpendicular);\r\n grass.name = \'H\';\r\n i1 = board.create(\'intersection\', [pABC, pCAB, 0], grass);\r\n var mAB, mBC, mCA;\r\n cerise.name = \'M_c\';\r\n mAB = board.create(\'midpoint\', [A, B], cerise);\r\n cerise.name = \'M_a\';\r\n mBC = board.create(\'midpoint\', [B, C], cerise);\r\n cerise.name = \'M_b\';\r\n mCA = board.create(\'midpoint\', [C, A], cerise);\r\n var ma, mb, mc, i2;\r\n ma = board.create(\'segment\', [mBC, A], median);\r\n mb = board.create(\'segment\', [mCA, B], median);\r\n mc = board.create(\'segment\', [mAB, C], median);\r\n grass.name = \'S\';\r\n i2 = board.create(\'intersection\', [ma, mc, 0], grass);\r\n var c;\r\n grass.name = \'U\';\r\n c = board.create(\'circumcircle\', [A, B, C], {\r\n strokeColor: \'#000000\',\r\n dash: 3,\r\n strokeWidth: 1,\r\n point: grass\r\n });\r\n var euler;\r\n euler = board.create(\'line\', [i1, i2], {\r\n strokeWidth: 2,\r\n strokeColor: \'#901B77\'\r\n });\r\n board.update();\r\n })();','Peace 2','2017-07-06 11:14:48','2017-07-06 11:14:48');
/*!40000 ALTER TABLE `lti_graphs` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `lti_key`
--
DROP TABLE IF EXISTS `lti_key`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lti_key` (
`key_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`key_sha256` char(64) NOT NULL,
`key_key` text NOT NULL,
`secret` text,
`new_secret` text,
`ack` text,
`user_id` int(10) unsigned DEFAULT NULL,
`consumer_profile` text,
`new_consumer_profile` text,
`tool_profile` text,
`new_tool_profile` text,
`json` text,
`settings` text,
`settings_url` text,
`entity_version` int(10) unsigned NOT NULL DEFAULT '0',
`created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY (`key_id`)
) ENGINE=InnoDB AUTO_INCREMENT=66 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `lti_key`
--
LOCK TABLES `lti_key` WRITE;
/*!40000 ALTER TABLE `lti_key` DISABLE KEYS */;
INSERT INTO `lti_key` VALUES (1,'5994471abb01112afcc18159f6cc74b4f511b99806da59b3caf5a9c173cacfc5','12345','secret',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2017-01-19 07:16:12','2017-01-19 07:16:12'),(2,'d4c9d9027326271a89ce51fcaf328ed673f17be33469ff979e8ab8dd501e664f','google.com',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2017-01-19 07:16:12','2017-01-19 07:16:12'),(34,'98483c6eb40b6c31a448c22a66ded3b5e5e8d5119cac8327b655c8b5c4836489','testkey','testkey',NULL,'',14,'','','','','{\"cartridge_basiclti_link\":{\"bltititle\":\"XanEdu\",\"bltidescription\":\"XanEdu LTI App\",\"bltilaunch_url\":\"\",\"bltiextensions\":{\"lticmproperty\":[{\"@value\":\"xanedu.com\",\"@attributes\":{\"name\":\"domain\"}},{\"@value\":\"http:\\/\\/coursepacks.xanedu.com\\/images\\/cpcc_xanedu.gif\",\"@attributes\":{\"name\":\"icon_url\"}},{\"@value\":\"name_only\",\"@attributes\":{\"name\":\"privacy_level\"}},{\"@value\":\"xanedu\",\"@attributes\":{\"name\":\"tool_id\"}}],\"@attributes\":{\"platform\":\"canvas.instructure.com\"}},\"@attributes\":{\"schemaLocation\":\"http:\\/\\/www.imsglobal.org\\/xsd\\/imslticc_v1p0 http:\\/\\/www.imsglobal.org\\/xsd\\/lti\\/ltiv1p0\\/imslticc_v1p0.xsd http:\\/\\/www.imsglobal.org\\/xsd\\/imsbasiclti_v1p0 http:\\/\\/www.imsglobal.org\\/xsd\\/lti\\/ltiv1p0\\/imsbasiclti_v1p0p1.xsd http:\\/\\/www.imsglobal.org\\/xsd\\/imslticm_v1p0 http:\\/\\/www.imsglobal.org\\/xsd\\/lti\\/ltiv1p0\\/imslticm_v1p0.xsd http:\\/\\/www.imsglobal.org\\/xsd\\/imslticp_v1p0 http:\\/\\/www.imsglobal.org\\/xsd\\/lti\\/ltiv1p0\\/imslticp_v1p0.xsd\"}}}','','',1,'2017-04-03 21:12:58','2017-04-03 21:12:58'),(36,'3a86e4c51bcc8d434e8e28a81b71a5af4f5d2525f4874a38f3644fb6291b3406','nokey','nosecret',NULL,'',14,'','','','','{\"cartridge_basiclti_link\":{\"bltititle\":\"Quizlet\",\"bltidescription\":\"Search for and embed publicly available flashcards and question sets from Quizlet. Questions can be embedded directly into content as flash cards, review, or as a study game.\",\"bltilaunch_url\":\"https:\\/\\/www.edu-apps.org\\/lti_public_resources\\/?tool_id=quizlet\",\"bltiextensions\":{\"lticmproperty\":[{\"@value\":\"edu-apps.org\",\"@attributes\":{\"name\":\"domain\"}},{\"@value\":\"https:\\/\\/www.edu-apps.org\\/assets\\/lti_public_resources\\/quizlet_icon.png\",\"@attributes\":{\"name\":\"icon_url\"}},{\"@value\":\"anonymous\",\"@attributes\":{\"name\":\"privacy_level\"}},{\"@value\":\"600\",\"@attributes\":{\"name\":\"selection_height\"}},{\"@value\":\"560\",\"@attributes\":{\"name\":\"selection_width\"}},{\"@value\":\"quizlet\",\"@attributes\":{\"name\":\"tool_id\"}}],\"lticmoptions\":[{\"lticmproperty\":{\"@value\":\"true\",\"@attributes\":{\"name\":\"enabled\"}},\"@attributes\":{\"name\":\"editor_button\"}},{\"lticmproperty\":{\"@value\":\"true\",\"@attributes\":{\"name\":\"enabled\"}},\"@attributes\":{\"name\":\"resource_selection\"}}],\"@attributes\":{\"platform\":\"canvas.instructure.com\"}},\"@attributes\":{\"schemaLocation\":\"http:\\/\\/www.imsglobal.org\\/xsd\\/imslticc_v1p0 http:\\/\\/www.imsglobal.org\\/xsd\\/lti\\/ltiv1p0\\/imslticc_v1p0.xsd http:\\/\\/www.imsglobal.org\\/xsd\\/imsbasiclti_v1p0 http:\\/\\/www.imsglobal.org\\/xsd\\/lti\\/ltiv1p0\\/imsbasiclti_v1p0p1.xsd http:\\/\\/www.imsglobal.org\\/xsd\\/imslticm_v1p0 http:\\/\\/www.imsglobal.org\\/xsd\\/lti\\/ltiv1p0\\/imslticm_v1p0.xsd http:\\/\\/www.imsglobal.org\\/xsd\\/imslticp_v1p0 http:\\/\\/www.imsglobal.org\\/xsd\\/lti\\/ltiv1p0\\/imslticp_v1p0.xsd\"}}}','','',1,'2017-04-03 21:14:31','2017-04-03 21:14:31'),(39,'166253b8f92ae0bc431aa587a64251665513aa31f0304a757f7e3f4d3c559f33','mahara','maharakey',NULL,'',14,'','','','','{\"cartridge_basiclti_link\":{\"bltititle\":\"Open Educational Search\",\"bltidescription\":\"\",\"bltilaunch_url\":\"https:\\/\\/openedsearch.azurewebsites.net\\/\",\"bltiicon\":\"https:\\/\\/openedsearch.azurewebsites.net\\/Store\\/StoreIcon16.png\",\"blticustom\":\"\",\"bltiextensions\":{\"lticmproperty\":[{\"@value\":\"microsoft_opened_search\",\"@attributes\":{\"name\":\"tool_id\"}},{\"@value\":\"https:\\/\\/openedsearch.azurewebsites.net\\/Store\\/StoreIcon16.png\",\"@attributes\":{\"name\":\"icon_url\"}},{\"@value\":\"public\",\"@attributes\":{\"name\":\"privacy_level\"}},{\"@value\":\"openedsearch.azurewebsites.net\",\"@attributes\":{\"name\":\"domain\"}},{\"@value\":\"Open Educational Search\",\"@attributes\":{\"name\":\"text\"}}],\"@attributes\":{\"platform\":\"canvas.instructure.com\"}},\"@attributes\":{\"schemalocation\":\"http:\\/\\/www.imsglobal.org\\/xsd\\/imslticc_v1p0 http:\\/\\/www.imsglobal.org\\/xsd\\/lti\\/ltiv1p0\\/imslticc_v1p0.xsd http:\\/\\/www.imsglobal.org\\/xsd\\/imsbasiclti_v1p0 http:\\/\\/www.imsglobal.org\\/xsd\\/lti\\/ltiv1p0\\/imsbasiclti_v1p0p1.xsd http:\\/\\/www.imsglobal.org\\/xsd\\/imslticm_v1p0 http:\\/\\/www.imsglobal.org\\/xsd\\/lti\\/ltiv1p0\\/imslticm_v1p0.xsd http:\\/\\/www.imsglobal.org\\/xsd\\/imslticp_v1p0 http:\\/\\/www.imsglobal.org\\/xsd\\/lti\\/ltiv1p0\\/imslticp_v1p0.xsd\"}}}','','',1,'2017-04-03 21:17:03','2017-04-03 21:17:03'),(42,'11cdf5cb34aef73394abde0dc62900b615d493091d80b124d6672fd4c4ba31f8','unisa','12345',NULL,'',1,'','','','','false','','',1,'2017-04-10 20:50:58','2017-04-10 20:50:58'),(43,'11cdf5cb34aef73394abde0dc62900b615d493091d80b124d6672fd4c4ba31f8','unisa','12345',NULL,'',1,'','','','','false','','',1,'2017-04-10 20:53:28','2017-04-10 20:53:28'),(45,'5994471abb01112afcc18159f6cc74b4f511b99806da59b3caf5a9c173cacfc5','12345','secret',NULL,'',1,'','','','','false','','',1,'2017-04-10 21:11:23','2017-04-10 21:11:23'),(47,'6036272f420fcb803d05299ad19dd82cebd716b75e4c967b169a055e011a6b06','mangwanani','mangwanani',NULL,'',1400006,'','','','','false','','',1,'2017-04-10 23:03:57','2017-04-10 23:03:57'),(48,'f0bc6d10cee6478ca4f69692bae9de2b10bd2ce9cda3d974251572b62894590e','chingwachevana','chingwachevana',NULL,'',1400007,'','','','','false','','',1,'2017-04-10 23:09:08','2017-04-10 23:09:08'),(49,'11cdf5cb34aef73394abde0dc62900b615d493091d80b124d6672fd4c4ba31f8','unisa','12345',NULL,'',1,'','','','','false','','',1,'2017-04-10 23:28:56','2017-04-10 23:28:56'),(50,'680d48ce56d582bee092e23826ca0724dd50d6615ed5f8f8a8feea82372e5ea8','X03V2zr6ECRiV0ix','25DRd3DauiRBMoRl79ya18cw19GYOOdJ',NULL,'',1400010,'','','','','{\"cartridge_basiclti_link\":{\"bltititle\":\"Unplag\",\"bltidescription\":\"Unplag.com is a similarity checker created to protect content originality, timely spot text duplication\",\"bltiicon\":\"https:\\/\\/unplag.com\\/img\\/logo_cab.svg\",\"bltisecure_icon\":\"https:\\/\\/unplag.com\\/img\\/logo_cab.svg\",\"bltivendor\":{\"lticpcode\":\"Unplag.com\",\"lticpname\":\"Unplag.com\",\"lticpdescription\":\"Unplag.com is a similarity checker created to protect content originality.\",\"lticpurl\":\"https:\\/\\/Unplag.com\\/\",\"lticpcontact\":{\"lticpemail\":\"support@Unplag.com\"}},\"bltilaunch_url\":\"https:\\/\\/lti.unplag.com\\/lti\\/launch\",\"bltisecure_launch_url\":\"https:\\/\\/lti.unplag.com\\/lti\\/launch\",\"bltiextensions\":{\"lticmproperty\":[{\"@value\":\"public\",\"@attributes\":{\"name\":\"privacy_level\"}},{\"@value\":\"lti.unplag.com\",\"@attributes\":{\"name\":\"domain\"}}],\"lticmoptions\":{\"lticmproperty\":[{\"@value\":\"0\",\"@attributes\":{\"name\":\"auto_grade\"}},{\"@value\":\"$Canvas.assignment.dueAt.iso8601\",\"@attributes\":{\"name\":\"due_date\"}}],\"@attributes\":{\"name\":\"custom_fields\"}},\"@attributes\":{\"platform\":\"canvas.instructure.com\"}},\"@attributes\":{\"schemaLocation\":\"http:\\/\\/www.imsglobal.org\\/xsd\\/imslticc_v1p0 http:\\/\\/www.imsglobal.org\\/xsd\\/lti\\/ltiv1p0\\/imslticc_v1p0.xsd http:\\/\\/www.imsglobal.org\\/xsd\\/imsbasiclti_v1p0 http:\\/\\/www.imsglobal.org\\/xsd\\/lti\\/ltiv1p0\\/imsbasiclti_v1p0.xsd http:\\/\\/www.imsglobal.org\\/xsd\\/imslticm_v1p0 http:\\/\\/www.imsglobal.org\\/xsd\\/lti\\/ltiv1p0\\/imslticm_v1p0.xsd http:\\/\\/www.imsglobal.org\\/xsd\\/imslticp_v1p0 http:\\/\\/www.imsglobal.org\\/xsd\\/lti\\/ltiv1p0\\/imslticp_v1p0.xsd\"}}}','','',1,'2017-04-20 01:52:44','2017-04-20 01:52:44'),(53,'1cc1a8c8fec669478e25a389e57d31decae735594569215ca5e81369e17c139a','Ooi4WJNocGqZuZJa','9j60XQP1oIstW6mrfqCUJXGwN9gvGKUs',NULL,'',1,'','','','','{\"cartridge_basiclti_link\":{\"bltititle\":\"Unplag\",\"bltidescription\":\"Unplag.com is a similarity checker created to protect content originality, timely spot text duplication\",\"bltiicon\":\"https:\\/\\/unplag.com\\/img\\/logo_cab.svg\",\"bltisecure_icon\":\"https:\\/\\/unplag.com\\/img\\/logo_cab.svg\",\"bltivendor\":{\"lticpcode\":\"Unplag.com\",\"lticpname\":\"Unplag.com\",\"lticpdescription\":\"Unplag.com is a similarity checker created to protect content originality.\",\"lticpurl\":\"https:\\/\\/Unplag.com\\/\",\"lticpcontact\":{\"lticpemail\":\"support@Unplag.com\"}},\"bltilaunch_url\":\"https:\\/\\/lti.unplag.com\\/lti\\/launch\",\"bltisecure_launch_url\":\"https:\\/\\/lti.unplag.com\\/lti\\/launch\",\"bltiextensions\":{\"lticmproperty\":[{\"@value\":\"public\",\"@attributes\":{\"name\":\"privacy_level\"}},{\"@value\":\"lti.unplag.com\",\"@attributes\":{\"name\":\"domain\"}}],\"lticmoptions\":{\"lticmproperty\":[{\"@value\":\"0\",\"@attributes\":{\"name\":\"auto_grade\"}},{\"@value\":\"$Canvas.assignment.dueAt.iso8601\",\"@attributes\":{\"name\":\"due_date\"}}],\"@attributes\":{\"name\":\"custom_fields\"}},\"@attributes\":{\"platform\":\"canvas.instructure.com\"}},\"@attributes\":{\"schemaLocation\":\"http:\\/\\/www.imsglobal.org\\/xsd\\/imslticc_v1p0 http:\\/\\/www.imsglobal.org\\/xsd\\/lti\\/ltiv1p0\\/imslticc_v1p0.xsd http:\\/\\/www.imsglobal.org\\/xsd\\/imsbasiclti_v1p0 http:\\/\\/www.imsglobal.org\\/xsd\\/lti\\/ltiv1p0\\/imsbasiclti_v1p0.xsd http:\\/\\/www.imsglobal.org\\/xsd\\/imslticm_v1p0 http:\\/\\/www.imsglobal.org\\/xsd\\/lti\\/ltiv1p0\\/imslticm_v1p0.xsd http:\\/\\/www.imsglobal.org\\/xsd\\/imslticp_v1p0 http:\\/\\/www.imsglobal.org\\/xsd\\/lti\\/ltiv1p0\\/imslticp_v1p0.xsd\"}}}','','',1,'2017-04-22 22:24:48','2017-04-22 22:24:48'),(54,'5994471abb01112afcc18159f6cc74b4f511b99806da59b3caf5a9c173cacfc5','12345','12345',NULL,'',1,'','','','','{\"cartridge_basiclti_link\":{\"bltititle\":\"Programr\",\"bltidescription\":\"Coding challenges in Java, C# and C++\",\"bltiicon\":\"https:\\/\\/www.edu-apps.org\\/tools\\/programr\\/icon.png\",\"bltilaunch_url\":\"https:\\/\\/www.edu-apps.org\\/tool_redirect?id=programr\",\"bltiextensions\":{\"lticmproperty\":[{\"@value\":\"programr\",\"@attributes\":{\"name\":\"tool_id\"}},{\"@value\":\"anonymous\",\"@attributes\":{\"name\":\"privacy_level\"}}],\"lticmoptions\":[{\"lticmproperty\":[{\"@value\":\"https:\\/\\/www.edu-apps.org\\/tool_redirect?id=programr\",\"@attributes\":{\"name\":\"url\"}},{\"@value\":\"https:\\/\\/www.edu-apps.org\\/tools\\/programr\\/icon.png\",\"@attributes\":{\"name\":\"icon_url\"}},{\"@value\":\"Programr\",\"@attributes\":{\"name\":\"text\"}},{\"@value\":\"690\",\"@attributes\":{\"name\":\"selection_width\"}},{\"@value\":\"530\",\"@attributes\":{\"name\":\"selection_height\"}},{\"@value\":\"true\",\"@attributes\":{\"name\":\"enabled\"}}],\"@attributes\":{\"name\":\"editor_button\"}},{\"lticmproperty\":[{\"@value\":\"https:\\/\\/www.edu-apps.org\\/tool_redirect?id=programr\",\"@attributes\":{\"name\":\"url\"}},{\"@value\":\"https:\\/\\/www.edu-apps.org\\/tools\\/programr\\/icon.png\",\"@attributes\":{\"name\":\"icon_url\"}},{\"@value\":\"Programr\",\"@attributes\":{\"name\":\"text\"}},{\"@value\":\"690\",\"@attributes\":{\"name\":\"selection_width\"}},{\"@value\":\"530\",\"@attributes\":{\"name\":\"selection_height\"}},{\"@value\":\"true\",\"@attributes\":{\"name\":\"enabled\"}}],\"@attributes\":{\"name\":\"resource_selection\"}}],\"@attributes\":{\"platform\":\"canvas.instructure.com\"}},\"cartridge_bundle\":{\"@value\":\"\",\"@attributes\":{\"identifierref\":\"BLTI001_Bundle\"}},\"cartridge_icon\":{\"@value\":\"\",\"@attributes\":{\"identifierref\":\"BLTI001_Icon\"}},\"@attributes\":{\"schemaLocation\":\"http:\\/\\/www.imsglobal.org\\/xsd\\/imslticc_v1p0 http:\\/\\/www.imsglobal.org\\/xsd\\/lti\\/ltiv1p0\\/imslticc_v1p0.xsd http:\\/\\/www.imsglobal.org\\/xsd\\/imsbasiclti_v1p0 http:\\/\\/www.imsglobal.org\\/xsd\\/lti\\/ltiv1p0\\/imsbasiclti_v1p0.xsd http:\\/\\/www.imsglobal.org\\/xsd\\/imslticm_v1p0 http:\\/\\/www.imsglobal.org\\/xsd\\/lti\\/ltiv1p0\\/imslticm_v1p0.xsd http:\\/\\/www.imsglobal.org\\/xsd\\/imslticp_v1p0 http:\\/\\/www.imsglobal.org\\/xsd\\/lti\\/ltiv1p0\\/imslticp_v1p0.xsd\"}}}','','',1,'2017-07-25 10:29:01','2017-07-25 10:29:01'),(55,'f5ee0257572a46566faab819389feda14106dcab024c257e3c421531a4bb6077','124536','123456',NULL,'',1,'','','','','{\"cartridge_basiclti_link\":{\"bltititle\":\"scootpad\",\"bltidescription\":\"ScootPad is a leading adaptive learning platform for grades K-8. ScootPad uses adaptive algorithms, predictive analytics, data visualization and gamification to deliver personalized learning for each student.\",\"bltilaunch_url\":\"https:\\/\\/www.scootpad.com\\/lti\\/launch?spky=5f95b021729730d7135d1cb490c50e2c\",\"bltiextensions\":{\"lticmproperty\":[{\"@value\":\"www.scootpad.com\",\"@attributes\":{\"name\":\"domain\"}},{\"@value\":\"http:\\/\\/static.scootpad.com\\/v2\\/images\\/icon-xsm.png\",\"@attributes\":{\"name\":\"icon_url\"}},{\"@value\":\"ScootPad: Where learning get personalized & accelerated!\",\"@attributes\":{\"name\":\"link_text\"}},{\"@value\":\"public\",\"@attributes\":{\"name\":\"privacy_level\"}},{\"@value\":\"scootpad\",\"@attributes\":{\"name\":\"tool_id\"}}],\"@attributes\":{\"platform\":\"canvas.instructure.com\"}},\"@attributes\":{\"schemaLocation\":\"http:\\/\\/www.imsglobal.org\\/xsd\\/imslticc_v1p0 http:\\/\\/www.imsglobal.org\\/xsd\\/lti\\/ltiv1p0\\/imslticc_v1p0.xsd http:\\/\\/www.imsglobal.org\\/xsd\\/imsbasiclti_v1p0 http:\\/\\/www.imsglobal.org\\/xsd\\/lti\\/ltiv1p0\\/imsbasiclti_v1p0p1.xsd http:\\/\\/www.imsglobal.org\\/xsd\\/imslticm_v1p0 http:\\/\\/www.imsglobal.org\\/xsd\\/lti\\/ltiv1p0\\/imslticm_v1p0.xsd http:\\/\\/www.imsglobal.org\\/xsd\\/imslticp_v1p0 http:\\/\\/www.imsglobal.org\\/xsd\\/lti\\/ltiv1p0\\/imslticp_v1p0.xsd\"}}}','','',1,'2017-07-25 11:25:50','2017-07-25 11:25:50'),(56,'f5ee0257572a46566faab819389feda14106dcab024c257e3c421531a4bb6077','124536','123456',NULL,'',1,'','','','','{\"cartridge_basiclti_link\":{\"bltititle\":\"scootpad\",\"bltidescription\":\"ScootPad is a leading adaptive learning platform for grades K-8. ScootPad uses adaptive algorithms, predictive analytics, data visualization and gamification to deliver personalized learning for each student.\",\"bltilaunch_url\":\"https:\\/\\/www.scootpad.com\\/lti\\/launch?spky=5f95b021729730d7135d1cb490c50e2c\",\"bltiextensions\":{\"lticmproperty\":[{\"@value\":\"www.scootpad.com\",\"@attributes\":{\"name\":\"domain\"}},{\"@value\":\"http:\\/\\/static.scootpad.com\\/v2\\/images\\/icon-xsm.png\",\"@attributes\":{\"name\":\"icon_url\"}},{\"@value\":\"ScootPad: Where learning get personalized & accelerated!\",\"@attributes\":{\"name\":\"link_text\"}},{\"@value\":\"public\",\"@attributes\":{\"name\":\"privacy_level\"}},{\"@value\":\"scootpad\",\"@attributes\":{\"name\":\"tool_id\"}}],\"@attributes\":{\"platform\":\"canvas.instructure.com\"}},\"@attributes\":{\"schemaLocation\":\"http:\\/\\/www.imsglobal.org\\/xsd\\/imslticc_v1p0 http:\\/\\/www.imsglobal.org\\/xsd\\/lti\\/ltiv1p0\\/imslticc_v1p0.xsd http:\\/\\/www.imsglobal.org\\/xsd\\/imsbasiclti_v1p0 http:\\/\\/www.imsglobal.org\\/xsd\\/lti\\/ltiv1p0\\/imsbasiclti_v1p0p1.xsd http:\\/\\/www.imsglobal.org\\/xsd\\/imslticm_v1p0 http:\\/\\/www.imsglobal.org\\/xsd\\/lti\\/ltiv1p0\\/imslticm_v1p0.xsd http:\\/\\/www.imsglobal.org\\/xsd\\/imslticp_v1p0 http:\\/\\/www.imsglobal.org\\/xsd\\/lti\\/ltiv1p0\\/imslticp_v1p0.xsd\"}}}','','',1,'2017-07-25 11:29:22','2017-07-25 11:29:22'),(57,'a3c0ebdd3a4bef2d113e07f3556f44edf7bc7a782803b29e8b8153a987ff0aaf','12456','124556',NULL,'',1,'','','','','{\"cartridge_basiclti_link\":{\"bltititle\":\"app.youbthere.com\",\"bltidescription\":\"Youbthere PRD API\",\"bltilaunch_url\":\"https:\\/\\/app.youbthere.com\\/Canvas\\/LaunchPoint\",\"bltiextensions\":{\"lticmoptions\":{\"lticmproperty\":{\"@value\":\"true\",\"@attributes\":{\"name\":\"enabled\"}},\"@attributes\":{\"name\":\"course_navigation\"}},\"lticmproperty\":[{\"@value\":\"public\",\"@attributes\":{\"name\":\"privacy_level\"}},{\"@value\":\"c22d3b55-b135-44b9-833d-f0f3a60587b4\",\"@attributes\":{\"name\":\"tool_id\"}}],\"@attributes\":{\"platform\":\"canvas.instructure.com\"}},\"@attributes\":{\"schemaLocation\":\"http:\\/\\/www.imsglobal.org\\/xsd\\/imslticc_v1p0 http:\\/\\/www.imsglobal.org\\/xsd\\/lti\\/ltiv1p0\\/imslticc_v1p0.xsd http:\\/\\/www.imsglobal.org\\/xsd\\/imsbasiclti_v1p0 http:\\/\\/www.imsglobal.org\\/xsd\\/lti\\/ltiv1p0\\/imsbasiclti_v1p0p1.xsd http:\\/\\/www.imsglobal.org\\/xsd\\/imslticm_v1p0 http:\\/\\/www.imsglobal.org\\/xsd\\/lti\\/ltiv1p0\\/imslticm_v1p0.xsd http:\\/\\/www.imsglobal.org\\/xsd\\/imslticp_v1p0 http:\\/\\/www.imsglobal.org\\/xsd\\/lti\\/ltiv1p0\\/imslticp_v1p0.xsd\"}}}','','',1,'2017-07-25 11:45:55','2017-07-25 11:45:55'),(58,'5994471abb01112afcc18159f6cc74b4f511b99806da59b3caf5a9c173cacfc5','12345','12345',NULL,'',1,'','','','','{\"cartridge_basiclti_link\":{\"bltititle\":\"Elementary Paper\",\"bltidescription\":\"Browse printable writing practice sheets\",\"bltiicon\":\"https:\\/\\/www.edu-apps.org\\/tools\\/elementary_paper\\/icon.png\",\"bltilaunch_url\":\"https:\\/\\/www.edu-apps.org\\/tool_redirect?id=elementary_paper\",\"bltiextensions\":{\"lticmproperty\":[{\"@value\":\"elementary_paper\",\"@attributes\":{\"name\":\"tool_id\"}},{\"@value\":\"anonymous\",\"@attributes\":{\"name\":\"privacy_level\"}}],\"lticmoptions\":[{\"lticmproperty\":[{\"@value\":\"https:\\/\\/www.edu-apps.org\\/tool_redirect?id=elementary_paper\",\"@attributes\":{\"name\":\"url\"}},{\"@value\":\"https:\\/\\/www.edu-apps.org\\/tools\\/elementary_paper\\/icon.png\",\"@attributes\":{\"name\":\"icon_url\"}},{\"@value\":\"Elementary Paper\",\"@attributes\":{\"name\":\"text\"}},{\"@value\":\"690\",\"@attributes\":{\"name\":\"selection_width\"}},{\"@value\":\"530\",\"@attributes\":{\"name\":\"selection_height\"}},{\"@value\":\"true\",\"@attributes\":{\"name\":\"enabled\"}}],\"@attributes\":{\"name\":\"editor_button\"}},{\"lticmproperty\":[{\"@value\":\"https:\\/\\/www.edu-apps.org\\/tool_redirect?id=elementary_paper\",\"@attributes\":{\"name\":\"url\"}},{\"@value\":\"https:\\/\\/www.edu-apps.org\\/tools\\/elementary_paper\\/icon.png\",\"@attributes\":{\"name\":\"icon_url\"}},{\"@value\":\"Elementary Paper\",\"@attributes\":{\"name\":\"text\"}},{\"@value\":\"690\",\"@attributes\":{\"name\":\"selection_width\"}},{\"@value\":\"530\",\"@attributes\":{\"name\":\"selection_height\"}},{\"@value\":\"true\",\"@attributes\":{\"name\":\"enabled\"}}],\"@attributes\":{\"name\":\"resource_selection\"}}],\"@attributes\":{\"platform\":\"canvas.instructure.com\"}},\"cartridge_bundle\":{\"@value\":\"\",\"@attributes\":{\"identifierref\":\"BLTI001_Bundle\"}},\"cartridge_icon\":{\"@value\":\"\",\"@attributes\":{\"identifierref\":\"BLTI001_Icon\"}},\"@attributes\":{\"schemaLocation\":\"http:\\/\\/www.imsglobal.org\\/xsd\\/imslticc_v1p0 http:\\/\\/www.imsglobal.org\\/xsd\\/lti\\/ltiv1p0\\/imslticc_v1p0.xsd http:\\/\\/www.imsglobal.org\\/xsd\\/imsbasiclti_v1p0 http:\\/\\/www.imsglobal.org\\/xsd\\/lti\\/ltiv1p0\\/imsbasiclti_v1p0.xsd http:\\/\\/www.imsglobal.org\\/xsd\\/imslticm_v1p0 http:\\/\\/www.imsglobal.org\\/xsd\\/lti\\/ltiv1p0\\/imslticm_v1p0.xsd http:\\/\\/www.imsglobal.org\\/xsd\\/imslticp_v1p0 http:\\/\\/www.imsglobal.org\\/xsd\\/lti\\/ltiv1p0\\/imslticp_v1p0.xsd\"}}}','','',1,'2017-07-25 11:48:44','2017-07-25 11:48:44'),(59,'20f3765880a5c269b747e1e906054a4b4a3a991259f1e16b5dde4742cec2319a','54321','456789',NULL,'',1,'','','','','{\"cartridge_basiclti_link\":{\"bltititle\":\"TEDEd\",\"bltidescription\":\"Search YouTube videos in the TEDEd Channel. A new icon will show up in your course rich editor letting you search the TEDEd channel and click to embed videos in your course material.\",\"bltilaunch_url\":\"https:\\/\\/www.edu-apps.org\\/lti_public_resources\\/?tool_id=youtube_ted_ed\",\"bltiextensions\":{\"lticmproperty\":[{\"@value\":\"www.edu-apps.org\",\"@attributes\":{\"name\":\"domain\"}},{\"@value\":\"https:\\/\\/www.edu-apps.org\\/assets\\/lti_public_resources\\/ted_ed_icon.png\",\"@attributes\":{\"name\":\"icon_url\"}},{\"@value\":\"anonymous\",\"@attributes\":{\"name\":\"privacy_level\"}},{\"@value\":\"600\",\"@attributes\":{\"name\":\"selection_height\"}},{\"@value\":\"560\",\"@attributes\":{\"name\":\"selection_width\"}},{\"@value\":\"TEDEd\",\"@attributes\":{\"name\":\"text\"}},{\"@value\":\"youtube_ted_ed\",\"@attributes\":{\"name\":\"tool_id\"}}],\"lticmoptions\":[{\"lticmproperty\":{\"@value\":\"true\",\"@attributes\":{\"name\":\"enabled\"}},\"@attributes\":{\"name\":\"editor_button\"}},{\"lticmproperty\":{\"@value\":\"true\",\"@attributes\":{\"name\":\"enabled\"}},\"@attributes\":{\"name\":\"resource_selection\"}}],\"@attributes\":{\"platform\":\"canvas.instructure.com\"}},\"@attributes\":{\"schemaLocation\":\"http:\\/\\/www.imsglobal.org\\/xsd\\/imslticc_v1p0 http:\\/\\/www.imsglobal.org\\/xsd\\/lti\\/ltiv1p0\\/imslticc_v1p0.xsd http:\\/\\/www.imsglobal.org\\/xsd\\/imsbasiclti_v1p0 http:\\/\\/www.imsglobal.org\\/xsd\\/lti\\/ltiv1p0\\/imsbasiclti_v1p0p1.xsd http:\\/\\/www.imsglobal.org\\/xsd\\/imslticm_v1p0 http:\\/\\/www.imsglobal.org\\/xsd\\/lti\\/ltiv1p0\\/imslticm_v1p0.xsd http:\\/\\/www.imsglobal.org\\/xsd\\/imslticp_v1p0 http:\\/\\/www.imsglobal.org\\/xsd\\/lti\\/ltiv1p0\\/imslticp_v1p0.xsd\"}}}','','',1,'2017-07-26 03:13:42','2017-07-26 03:13:42'),(60,'5994471abb01112afcc18159f6cc74b4f511b99806da59b3caf5a9c173cacfc5','12345','12345',NULL,'',1,'','','','','{\"cartridge_basiclti_link\":{\"bltititle\":\"YouSeeU\",\"bltidescription\":\"Create a LTI connection to YouSeeU\'s demo environment. Security codes are provided for testing or production environments upon request.\",\"bltilaunch_url\":\"https:\\/\\/steamboat.youseeu.com\\/lti\\/955rf3\\/lti_connect.php\",\"bltiextensions\":{\"lticmproperty\":[{\"@value\":\"http:\\/\\/ysumisc.s3.amazonaws.com\\/iconsm.jpg\",\"@attributes\":{\"name\":\"icon_url\"}},{\"@value\":\"YouSeeU Demo\",\"@attributes\":{\"name\":\"link_text\"}},{\"@value\":\"public\",\"@attributes\":{\"name\":\"privacy_level\"}},{\"@value\":\"youseeu_demo\",\"@attributes\":{\"name\":\"tool_id\"}}],\"@attributes\":{\"platform\":\"canvas.instructure.com\"}},\"@attributes\":{\"schemaLocation\":\"http:\\/\\/www.imsglobal.org\\/xsd\\/imslticc_v1p0 http:\\/\\/www.imsglobal.org\\/xsd\\/lti\\/ltiv1p0\\/imslticc_v1p0.xsd http:\\/\\/www.imsglobal.org\\/xsd\\/imsbasiclti_v1p0 http:\\/\\/www.imsglobal.org\\/xsd\\/lti\\/ltiv1p0\\/imsbasiclti_v1p0p1.xsd http:\\/\\/www.imsglobal.org\\/xsd\\/imslticm_v1p0 http:\\/\\/www.imsglobal.org\\/xsd\\/lti\\/ltiv1p0\\/imslticm_v1p0.xsd http:\\/\\/www.imsglobal.org\\/xsd\\/imslticp_v1p0 http:\\/\\/www.imsglobal.org\\/xsd\\/lti\\/ltiv1p0\\/imslticp_v1p0.xsd\"}}}','','',1,'2017-07-27 11:52:29','2017-07-27 11:52:29'),(61,'e2d833a3825bacfba36715285294bffd07b566b1113cbc6b2f9da575d1948f53','math123','math123',NULL,'',1,'','','','','{\"cartridge_basiclti_link\":{\"bltititle\":\"Curiosity\",\"bltidescription\":\"Our tool provides editorial commentary and assembles insightful information on many interesting topics, perfectly suited to those hungry to learn.\",\"bltilaunch_url\":\"https:\\/\\/curiosity-canvas.herokuapp.com\\/lti_public_resources\",\"bltiextensions\":{\"lticmproperty\":[{\"@value\":\"curiosity.com\",\"@attributes\":{\"name\":\"domain\"}},{\"@value\":\"https:\\/\\/d2nfa0w59y2lzi.cloudfront.net\\/static\\/images\\/nav-logo.gif\",\"@attributes\":{\"name\":\"icon_url\"}},{\"@value\":\"Curiosity | makes you smarter\",\"@attributes\":{\"name\":\"link_text\"}},{\"@value\":\"public\",\"@attributes\":{\"name\":\"privacy_level\"}},{\"@value\":\"topics\",\"@attributes\":{\"name\":\"tool_id\"}}],\"@attributes\":{\"platform\":\"canvas.instructure.com\"}},\"@attributes\":{\"schemaLocation\":\"http:\\/\\/www.imsglobal.org\\/xsd\\/imslticc_v1p0 http:\\/\\/www.imsglobal.org\\/xsd\\/lti\\/ltiv1p0\\/imslticc_v1p0.xsd http:\\/\\/www.imsglobal.org\\/xsd\\/imsbasiclti_v1p0 http:\\/\\/www.imsglobal.org\\/xsd\\/lti\\/ltiv1p0\\/imsbasiclti_v1p0p1.xsd http:\\/\\/www.imsglobal.org\\/xsd\\/imslticm_v1p0 http:\\/\\/www.imsglobal.org\\/xsd\\/lti\\/ltiv1p0\\/imslticm_v1p0.xsd http:\\/\\/www.imsglobal.org\\/xsd\\/imslticp_v1p0 http:\\/\\/www.imsglobal.org\\/xsd\\/lti\\/ltiv1p0\\/imslticp_v1p0.xsd\"}}}','','',1,'2017-07-27 11:57:43','2017-07-27 11:57:43'),(62,'20f3765880a5c269b747e1e906054a4b4a3a991259f1e16b5dde4742cec2319a','54321','54321',NULL,'',1,'','','','','{\"cartridge_basiclti_link\":{\"bltititle\":\"College Board\",\"bltidescription\":\"Links to SAT and AP practice tests\",\"bltiicon\":\"https:\\/\\/www.edu-apps.org\\/tools\\/college_board\\/icon.png\",\"bltilaunch_url\":\"https:\\/\\/www.edu-apps.org\\/tool_redirect?id=college_board\",\"bltiextensions\":{\"lticmproperty\":[{\"@value\":\"college_board\",\"@attributes\":{\"name\":\"tool_id\"}},{\"@value\":\"anonymous\",\"@attributes\":{\"name\":\"privacy_level\"}}],\"lticmoptions\":[{\"lticmproperty\":[{\"@value\":\"https:\\/\\/www.edu-apps.org\\/tool_redirect?id=college_board\",\"@attributes\":{\"name\":\"url\"}},{\"@value\":\"https:\\/\\/www.edu-apps.org\\/tools\\/college_board\\/icon.png\",\"@attributes\":{\"name\":\"icon_url\"}},{\"@value\":\"College Board\",\"@attributes\":{\"name\":\"text\"}},{\"@value\":\"690\",\"@attributes\":{\"name\":\"selection_width\"}},{\"@value\":\"530\",\"@attributes\":{\"name\":\"selection_height\"}},{\"@value\":\"true\",\"@attributes\":{\"name\":\"enabled\"}}],\"@attributes\":{\"name\":\"editor_button\"}},{\"lticmproperty\":[{\"@value\":\"https:\\/\\/www.edu-apps.org\\/tool_redirect?id=college_board\",\"@attributes\":{\"name\":\"url\"}},{\"@value\":\"https:\\/\\/www.edu-apps.org\\/tools\\/college_board\\/icon.png\",\"@attributes\":{\"name\":\"icon_url\"}},{\"@value\":\"College Board\",\"@attributes\":{\"name\":\"text\"}},{\"@value\":\"690\",\"@attributes\":{\"name\":\"selection_width\"}},{\"@value\":\"530\",\"@attributes\":{\"name\":\"selection_height\"}},{\"@value\":\"true\",\"@attributes\":{\"name\":\"enabled\"}}],\"@attributes\":{\"name\":\"resource_selection\"}}],\"@attributes\":{\"platform\":\"canvas.instructure.com\"}},\"cartridge_bundle\":{\"@value\":\"\",\"@attributes\":{\"identifierref\":\"BLTI001_Bundle\"}},\"cartridge_icon\":{\"@value\":\"\",\"@attributes\":{\"identifierref\":\"BLTI001_Icon\"}},\"@attributes\":{\"schemaLocation\":\"http:\\/\\/www.imsglobal.org\\/xsd\\/imslticc_v1p0 http:\\/\\/www.imsglobal.org\\/xsd\\/lti\\/ltiv1p0\\/imslticc_v1p0.xsd http:\\/\\/www.imsglobal.org\\/xsd\\/imsbasiclti_v1p0 http:\\/\\/www.imsglobal.org\\/xsd\\/lti\\/ltiv1p0\\/imsbasiclti_v1p0.xsd http:\\/\\/www.imsglobal.org\\/xsd\\/imslticm_v1p0 http:\\/\\/www.imsglobal.org\\/xsd\\/lti\\/ltiv1p0\\/imslticm_v1p0.xsd http:\\/\\/www.imsglobal.org\\/xsd\\/imslticp_v1p0 http:\\/\\/www.imsglobal.org\\/xsd\\/lti\\/ltiv1p0\\/imslticp_v1p0.xsd\"}}}','','',1,'2017-07-27 12:03:13','2017-07-27 12:03:13'),(63,'310ced37200b1a0dae25edb263fe52c491f6e467268acab0ffec06666e2ed959','1235','2555',NULL,'',1,'','','','','{\"cartridge_basiclti_link\":{\"bltititle\":\"Adjust-All HQ\",\"bltidescription\":\"Adjust dates and settings for all all course items.\",\"bltilaunch_url\":\"https:\\/\\/apps.etudes.org\\/api\\/lti\\/launch\\/3\",\"blticustom\":{\"lticmproperty\":{\"@value\":\"$Canvas.masqueradingUser.id\",\"@attributes\":{\"name\":\"etudes_masquerading_user_id\"}}},\"bltiextensions\":{\"lticmproperty\":{\"@value\":\"public\",\"@attributes\":{\"name\":\"privacy_level\"}},\"lticmoptions\":{\"lticmproperty\":[{\"@value\":\"true\",\"@attributes\":{\"name\":\"enabled\"}},{\"@value\":\"admins\",\"@attributes\":{\"name\":\"visibility\"}},{\"@value\":\"Adjust All\",\"@attributes\":{\"name\":\"text\"}},{\"@value\":\"enabled\",\"@attributes\":{\"name\":\"default\"}}],\"@attributes\":{\"name\":\"course_navigation\"}},\"@attributes\":{\"platform\":\"canvas.instructure.com\"}},\"@attributes\":{\"schemaLocation\":\"http:\\/\\/www.imsglobal.org\\/xsd\\/imslticc_v1p0 http:\\/\\/www.imsglobal.org\\/xsd\\/lti\\/ltiv1p0\\/imslticc_v1p0.xsd http:\\/\\/www.imsglobal.org\\/xsd\\/imsbasiclti_v1p0 http:\\/\\/www.imsglobal.org\\/xsd\\/lti\\/ltiv1p0\\/imsbasiclti_v1p0.xsd http:\\/\\/www.imsglobal.org\\/xsd\\/imslticm_v1p0 http:\\/\\/www.imsglobal.org\\/xsd\\/lti\\/ltiv1p0\\/imslticm_v1p0.xsd http:\\/\\/www.imsglobal.org\\/xsd\\/imslticp_v1p0 http:\\/\\/www.imsglobal.org\\/xsd\\/lti\\/ltiv1p0\\/imslticp_v1p0.xsd\"}}}','','',1,'2017-07-27 12:06:42','2017-07-27 12:06:42'),(64,'bbdefa2950f49882f295b1285d4fa9dec45fc4144bfb07ee6acc68762d12c2e3','google','googleQQ',NULL,'',1,'','','','','{\"cartridge_basiclti_link\":{\"bltititle\":\"LTI Maps\",\"bltidescription\":\"This LTI Tool enables you to easily embed a Google Map into your course\",\"bltiicon\":\"https:\\/\\/bltools.creighton.edu\\/lti\\/ltimaps\\/ltimaps\\/maps.png\",\"bltilaunch_url\":\"https:\\/\\/bltools.creighton.edu\\/lti\\/ltimaps\\/ltimaps\\/map.php\",\"bltiextensions\":{\"lticmproperty\":[{\"@value\":\"LTI_Maps_71364a\",\"@attributes\":{\"name\":\"tool_id\"}},{\"@value\":\"anonymous\",\"@attributes\":{\"name\":\"privacy_level\"}}],\"lticmoptions\":{\"lticmproperty\":[{\"@value\":\"https:\\/\\/bltools.creighton.edu\\/lti\\/ltimaps\\/ltimaps\\/map.php\",\"@attributes\":{\"name\":\"url\"}},{\"@value\":\"https:\\/\\/bltools.creighton.edu\\/lti\\/ltimaps\\/ltimaps\\/maps.png\",\"@attributes\":{\"name\":\"icon_url\"}},{\"@value\":\"Google Maps\",\"@attributes\":{\"name\":\"text\"}},{\"@value\":\"525\",\"@attributes\":{\"name\":\"selection_width\"}},{\"@value\":\"510\",\"@attributes\":{\"name\":\"selection_height\"}},{\"@value\":\"true\",\"@attributes\":{\"name\":\"enabled\"}}],\"@attributes\":{\"name\":\"editor_button\"}},\"@attributes\":{\"platform\":\"canvas.instructure.com\"}},\"cartridge_bundle\":{\"@value\":\"\",\"@attributes\":{\"identifierref\":\"BLTI001_Bundle\"}},\"cartridge_icon\":{\"@value\":\"\",\"@attributes\":{\"identifierref\":\"BLTI001_Icon\"}},\"@attributes\":{\"schemaLocation\":\"http:\\/\\/www.imsglobal.org\\/xsd\\/imslticc_v1p0 http:\\/\\/www.imsglobal.org\\/xsd\\/lti\\/ltiv1p0\\/imslticc_v1p0.xsd http:\\/\\/www.imsglobal.org\\/xsd\\/imsbasiclti_v1p0 http:\\/\\/www.imsglobal.org\\/xsd\\/lti\\/ltiv1p0\\/imsbasiclti_v1p0.xsd http:\\/\\/www.imsglobal.org\\/xsd\\/imslticm_v1p0 http:\\/\\/www.imsglobal.org\\/xsd\\/lti\\/ltiv1p0\\/imslticm_v1p0.xsd http:\\/\\/www.imsglobal.org\\/xsd\\/imslticp_v1p0 http:\\/\\/www.imsglobal.org\\/xsd\\/lti\\/ltiv1p0\\/imslticp_v1p0.xsd\"}}}','','',1,'2017-07-27 12:17:03','2017-07-27 12:17:03'),(65,'05cc6c650fa6e8acf3809945f1dc2228bf28046c8b8d250da4911b9a52b148ba','tube','tube',NULL,'',1,'','','','','{\"cartridge_basiclti_link\":{\"bltititle\":\"YouTube\",\"bltidescription\":\"Search publicly available YouTube videos. A new icon will show up in your course rich editor letting you search YouTube and click to embed videos in your course material.\",\"bltilaunch_url\":\"https:\\/\\/www.edu-apps.org\\/lti_public_resources\\/?tool_id=youtube\",\"bltiextensions\":{\"lticmproperty\":[{\"@value\":\"www.edu-apps.org\",\"@attributes\":{\"name\":\"domain\"}},{\"@value\":\"https:\\/\\/www.edu-apps.org\\/assets\\/lti_public_resources\\/youtube_icon.png\",\"@attributes\":{\"name\":\"icon_url\"}},{\"@value\":\"anonymous\",\"@attributes\":{\"name\":\"privacy_level\"}},{\"@value\":\"600\",\"@attributes\":{\"name\":\"selection_height\"}},{\"@value\":\"560\",\"@attributes\":{\"name\":\"selection_width\"}},{\"@value\":\"YouTube\",\"@attributes\":{\"name\":\"text\"}},{\"@value\":\"youtube\",\"@attributes\":{\"name\":\"tool_id\"}}],\"lticmoptions\":[{\"lticmproperty\":{\"@value\":\"true\",\"@attributes\":{\"name\":\"enabled\"}},\"@attributes\":{\"name\":\"editor_button\"}},{\"lticmproperty\":{\"@value\":\"true\",\"@attributes\":{\"name\":\"enabled\"}},\"@attributes\":{\"name\":\"resource_selection\"}}],\"@attributes\":{\"platform\":\"canvas.instructure.com\"}},\"@attributes\":{\"schemaLocation\":\"http:\\/\\/www.imsglobal.org\\/xsd\\/imslticc_v1p0 http:\\/\\/www.imsglobal.org\\/xsd\\/lti\\/ltiv1p0\\/imslticc_v1p0.xsd http:\\/\\/www.imsglobal.org\\/xsd\\/imsbasiclti_v1p0 http:\\/\\/www.imsglobal.org\\/xsd\\/lti\\/ltiv1p0\\/imsbasiclti_v1p0p1.xsd http:\\/\\/www.imsglobal.org\\/xsd\\/imslticm_v1p0 http:\\/\\/www.imsglobal.org\\/xsd\\/lti\\/ltiv1p0\\/imslticm_v1p0.xsd http:\\/\\/www.imsglobal.org\\/xsd\\/imslticp_v1p0 http:\\/\\/www.imsglobal.org\\/xsd\\/lti\\/ltiv1p0\\/imslticp_v1p0.xsd\"}}}','','',1,'2017-07-27 13:37:48','2017-07-27 13:37:48');
/*!40000 ALTER TABLE `lti_key` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `lti_link`
--
DROP TABLE IF EXISTS `lti_link`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lti_link` (
`link_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`link_sha256` char(64) NOT NULL,
`link_key` text NOT NULL,
`context_id` int(10) unsigned NOT NULL,
`path` text,
`title` text,
`json` text,
`settings` text,
`settings_url` text,
`entity_version` int(10) unsigned NOT NULL DEFAULT '0',
`created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY (`link_id`),
UNIQUE KEY `link_sha256` (`link_sha256`,`context_id`),
KEY `lti_link_ibfk_1` (`context_id`),
CONSTRAINT `lti_link_ibfk_1` FOREIGN KEY (`context_id`) REFERENCES `lti_context` (`context_id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `lti_link`
--
LOCK TABLES `lti_link` WRITE;
/*!40000 ALTER TABLE `lti_link` DISABLE KEYS */;
INSERT INTO `lti_link` VALUES (1,'92cef4029ac060d448065916b25ead6c273e25114224d01c283fdc2ce250c463','292832126',1,'http://unisa.app/lti','Weekly Blog',NULL,NULL,NULL,0,'2017-01-20 09:39:51','2017-01-20 09:39:51'),(2,'92cef4029ac060d448065916b25ead6c273e25114224d01c283fdc2ce250c463','292832126',46,NULL,'Weekly Blog',NULL,NULL,NULL,0,'2017-04-10 12:09:46','2017-04-10 12:09:46'),(3,'f97b62402266a3de1c158831a5868ac00ba75dc58d142df75078c7416eb3fe60','2928321267',46,NULL,'Weekly Blog',NULL,NULL,NULL,0,'2017-04-10 12:12:24','2017-04-10 12:12:24'),(4,'92cef4029ac060d448065916b25ead6c273e25114224d01c283fdc2ce250c463','292832126',47,NULL,'Weekly Blog',NULL,NULL,NULL,0,'2017-04-10 16:03:44','2017-04-10 16:03:44'),(5,'dbd3ca8516da0f8db2519b6a384cbf43c85fe7dd4911d9b182b2796a307ed46b','292832126787',48,NULL,'Weekly Blog',NULL,NULL,NULL,0,'2017-04-10 16:57:38','2017-04-10 16:57:38'),(6,'5994471abb01112afcc18159f6cc74b4f511b99806da59b3caf5a9c173cacfc5','12345',54,NULL,'Title for thing',NULL,NULL,NULL,0,'2017-04-11 10:22:14','2017-04-11 10:22:14'),(7,'dbd3ca8516da0f8db2519b6a384cbf43c85fe7dd4911d9b182b2796a307ed46b','292832126787',58,NULL,'Weekly Blog',NULL,NULL,NULL,0,'2017-04-11 12:55:28','2017-04-11 12:55:28'),(8,'afc5caccc30408631f34bafec359b58c58dcccaaffa9a857e6aa48abbcc1c926','29283212633',59,NULL,'Weekly Blog',NULL,NULL,NULL,0,'2017-04-20 13:50:48','2017-04-20 13:50:48'),(9,'7d6cb413c1fc5d55c0b92d56c9405d7719e9e49212138d65d899057c166f6a5e','292832126343',64,NULL,'Weekly Blog',NULL,NULL,NULL,0,'2017-07-11 10:33:29','2017-07-11 10:33:29');
/*!40000 ALTER TABLE `lti_link` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `lti_membership`
--
DROP TABLE IF EXISTS `lti_membership`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lti_membership` (
`membership_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`context_id` int(10) unsigned NOT NULL,
`user_id` int(10) unsigned NOT NULL,
`role` smallint(6) DEFAULT NULL,
`role_override` smallint(6) DEFAULT NULL,
`json` text,
`entity_version` int(10) unsigned NOT NULL DEFAULT '0',
`created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY (`membership_id`),
UNIQUE KEY `context_id` (`context_id`,`user_id`),
KEY `lti_membership_ibfk_2` (`user_id`)
) ENGINE=InnoDB AUTO_INCREMENT=35 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `lti_membership`
--
LOCK TABLES `lti_membership` WRITE;
/*!40000 ALTER TABLE `lti_membership` DISABLE KEYS */;
INSERT INTO `lti_membership` VALUES (1,1,1,1,NULL,NULL,0,'2017-01-20 09:39:51','2017-01-20 09:39:51'),(2,1,2,0,NULL,NULL,0,'2017-03-07 06:26:31','2017-03-07 06:26:31'),(3,1,3,0,NULL,NULL,0,'2017-03-07 06:26:37','2017-03-07 06:26:37'),(8,1,7,1,NULL,NULL,0,'2017-04-10 12:47:38','2017-04-10 12:47:38'),(9,1,8,0,NULL,NULL,0,'2017-04-10 12:47:51','2017-04-10 12:47:51'),(10,46,1,1,NULL,NULL,0,'2017-04-10 13:46:52','2017-04-10 13:46:52'),(11,46,2,0,NULL,NULL,0,'2017-04-10 15:41:09','2017-04-10 15:41:09'),(12,46,3,0,NULL,NULL,0,'2017-04-10 15:41:17','2017-04-10 15:41:17'),(13,46,7,0,NULL,NULL,0,'2017-04-10 15:42:48','2017-04-10 15:42:48'),(14,1,9,1,NULL,NULL,0,'2017-04-10 15:45:34','2017-04-10 15:45:34'),(15,47,9,1,NULL,NULL,0,'2017-04-10 16:03:44','2017-04-10 16:03:44'),(16,46,10,0,NULL,NULL,0,'2017-04-10 16:16:02','2017-04-10 16:16:02'),(17,46,11,0,NULL,NULL,0,'2017-04-10 16:54:09','2017-04-10 16:54:09'),(18,46,12,1,NULL,NULL,0,'2017-04-10 16:54:50','2017-04-10 16:54:50'),(19,48,13,1,NULL,NULL,0,'2017-04-10 16:57:39','2017-04-10 16:57:39'),(20,48,8,0,NULL,NULL,0,'2017-04-10 17:51:22','2017-04-10 17:51:22'),(21,48,2,0,NULL,NULL,0,'2017-04-10 17:51:25','2017-04-10 17:51:25'),(22,48,1,1,NULL,NULL,0,'2017-04-10 17:53:20','2017-04-10 17:53:20'),(23,47,2,0,NULL,NULL,0,'2017-04-11 07:43:39','2017-04-11 07:43:39'),(24,47,1,1,NULL,NULL,0,'2017-04-11 07:44:04','2017-04-11 07:44:04'),(25,54,14,1,NULL,NULL,0,'2017-04-11 10:22:14','2017-04-11 10:22:14'),(26,58,15,1,NULL,NULL,0,'2017-04-11 12:55:28','2017-04-11 12:55:28'),(27,58,16,0,NULL,NULL,0,'2017-04-11 12:56:47','2017-04-11 12:56:47'),(28,59,17,1,NULL,NULL,0,'2017-04-20 13:50:48','2017-04-20 13:50:48'),(29,59,1,1,NULL,NULL,0,'2017-04-20 14:13:03','2017-04-20 14:13:03'),(30,59,2,0,NULL,NULL,0,'2017-04-20 14:13:19','2017-04-20 14:13:19'),(31,59,8,0,NULL,NULL,0,'2017-04-20 14:13:30','2017-04-20 14:13:30'),(32,64,18,1,NULL,NULL,0,'2017-07-11 10:33:29','2017-07-11 10:33:29'),(33,64,1,1,NULL,NULL,0,'2017-07-13 09:54:47','2017-07-13 09:54:47'),(34,64,2,0,NULL,NULL,0,'2017-07-13 09:54:58','2017-07-13 09:54:58');
/*!40000 ALTER TABLE `lti_membership` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `lti_nonce`
--
DROP TABLE IF EXISTS `lti_nonce`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lti_nonce` (
`nonce` char(128) NOT NULL,
`key_id` int(10) unsigned NOT NULL,
`entity_version` int(10) unsigned NOT NULL DEFAULT '0',
`created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
UNIQUE KEY `key_id` (`key_id`,`nonce`),
KEY `nonce_indx_1` (`nonce`) USING HASH
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `lti_nonce`
--
LOCK TABLES `lti_nonce` WRITE;
/*!40000 ALTER TABLE `lti_nonce` DISABLE KEYS */;
INSERT INTO `lti_nonce` VALUES ('02198167fa6867495a600fd4047d2094',1,0,'2017-09-15 07:34:12'),('02377ada465e407ee313961cceb3aa3c',1,0,'2017-09-06 09:52:16'),('02cb1f226de5478760fbc579eae30742',1,0,'2017-07-06 21:31:50'),('0603a7d9d33bc8bac5b8e904d255bffc',1,0,'2017-09-12 13:49:45'),('069d879ae7b124ea3be628c1ca3263ac',1,0,'2017-08-31 09:11:10'),('0c2986f66ad299b2b25d87ff1cd24b8b',1,0,'2017-09-21 11:59:10'),('0c980e5debbabdd78171f381450b1b6a',1,0,'2017-07-26 18:09:53'),('0f183f4cc2f391da0a999c202f9d6e52',1,0,'2017-09-20 09:38:34'),('121d839caab819eed1de166bcddc0fe9',1,0,'2017-07-11 10:33:29'),('13c981723dc673e13089de34cddf69a9',1,0,'2017-07-28 10:52:21'),('15902f75f2da1c73ddd6b689f6a4a90e',1,0,'2017-08-31 11:22:38'),('15f1de3e2166643ee058bb097084d6e7',1,0,'2017-05-01 13:35:52'),('164c20a51bcd1b2be50278030517c0bf',1,0,'2017-07-19 10:37:02'),('16787fbb9fc6bba9acd9fa93b3fb626c',1,0,'2017-04-25 06:11:06'),('168d5be33cb52afc0cae4b6b5027c91d',1,0,'2017-04-25 04:50:54'),('1a440a3461c157a17f3b7b48c9ff0988',1,0,'2017-07-19 10:39:11'),('1b00ad8f9fcb31a412bf9f4b18e998e5',1,0,'2017-04-27 19:53:08'),('1ba64f3414e25b61b9aa6c5e817b87a9',1,0,'2017-09-18 14:03:03'),('1bd3b667d9dd432edd9c1bf5848bb2b7',1,0,'2017-09-15 12:42:05'),('1cec9b39d6f85d76c171609e7af023d5',1,0,'2017-07-27 07:18:47'),('1d19da40d6e2a59cccdea87836f033d2',1,0,'2017-07-06 21:24:22'),('1d3aa1898276f516354c6243820b47e1',1,0,'2017-07-28 10:54:29'),('1f01f59d748f59f25197241a44c89707',1,0,'2017-04-25 05:47:27'),('1fe5e9689f4a6edd2523a9e04a7f2924',1,0,'2017-09-11 13:07:23'),('209ef89859cfb2588b55426be30f5552',1,0,'2017-09-08 07:28:49'),('225d39cf58668c95258d313d76e22ec3',1,0,'2017-07-26 14:52:11'),('228c396d506deabb8071a59933feca69',1,0,'2017-09-15 13:55:12'),('22cd8758c73fa620c7a0dbafe0c8e50c',1,0,'2017-04-25 05:55:08'),('246d1c26e45f9ed04605c800d2eb5df5',1,0,'2017-07-28 11:01:37'),('2598d843a9422d60b82bd3488287c338',1,0,'2017-04-26 10:00:11'),('27a6d06d422d419a90605bf0053d0d40',1,0,'2017-07-19 07:57:37'),('291c7ab5d706eb4e2046e923d8a2c031',1,0,'2017-09-14 07:58:17'),('2b9f5d87aec59ca7b889fe1e7c2c7fe0',1,0,'2017-09-14 07:51:49'),('2e2b4314a3db115390b9eac1398d0abb',1,0,'2017-04-27 19:40:19'),('2e4fe0f647c65e529c9667697d331684',1,0,'2017-09-21 13:14:55'),('2e804c3efc29e2216cbb75030c085743',1,0,'2017-07-19 10:37:15'),('2f02ba9fd68efcb5f6bc0f5e0f84732a',1,0,'2017-04-25 05:01:15'),('2f5d26d1b79b8401f0cd8868c4e3f787',1,0,'2017-09-18 06:25:15'),('2fff6934c01117e057d14dc1afb009f9',1,0,'2017-09-07 14:14:43'),('3037bf93326bf516e4af6815f5f3f9b1',1,0,'2017-04-25 05:46:50'),('3116ca01f5b72a7cd603a1517e3cd42e',1,0,'2017-09-15 13:55:04'),('319706f4c09c4c3b22568ea6ae08891e',1,0,'2017-04-25 11:15:51'),('3218b1d9612ea177f8f60a8c16405150',1,0,'2017-07-13 13:35:40'),('3364861e528313f8c7d438ab1892f962',1,0,'2017-07-28 10:53:06'),('348b8de59d535940f1e2570f2ac68dbe',1,0,'2017-04-25 05:47:07'),('35065542a79acfe3d3b3463ad6790e64',1,0,'2017-07-05 21:01:54'),('386952d35d31e17906bae005d737c9ea',1,0,'2017-05-02 16:26:52'),('38f9e509f67cbca977e164751a29189c',1,0,'2017-07-13 13:33:36'),('3974cce4c18a29dcc6f3868e5bb81566',1,0,'2017-09-13 09:48:51'),('3a841813f6c219658eaf2d4cb81d8b2b',1,0,'2017-04-25 04:57:02'),('3a87a1c87f95cbb037e89c3bfb5ea7b4',1,0,'2017-09-10 07:47:25'),('3b7a64b79278b6cd55075aa647ef9966',1,0,'2017-08-31 08:48:03'),('3cde1840a080e04d3e6821149221d523',1,0,'2017-04-25 08:57:32'),('3cdeff9de10e8cef3ef8420ce81b38ea',1,0,'2017-07-17 13:30:44'),('3dcb424cadca569b72b9b4177f8b4752',1,0,'2017-09-05 08:32:50'),('3e399325ee41c403b78eff2c3fdd648f',1,0,'2017-09-04 13:31:13'),('3f42dc98ad550c20b8a03646547ca5bc',1,0,'2017-04-25 05:53:59'),('3f787922796a01140b1e1f0f9b2d301a',1,0,'2017-04-27 19:52:43'),('420bead00b0f4c6a8760eb2e25985874',1,0,'2017-04-29 07:31:41'),('455b439e89240904bed3c795e820f573',1,0,'2017-07-28 11:02:45'),('45d8915f8513caa5d6310ee9afbaa228',1,0,'2017-04-26 08:22:28'),('467cbf77369b0be569f7e393f88463f6',1,0,'2017-07-19 10:37:32'),('4720acc11c9b0f20975190f2f5978435',1,0,'2017-05-05 06:49:15'),('476e3abb36e5eb6c7baa90de891b44e5',1,0,'2017-09-22 07:56:18'),('477194d2f198d8734aab8de3e5e489c1',1,0,'2017-04-25 11:38:31'),('482756694bb60e1ae957e71d70b9584d',1,0,'2017-09-15 12:43:10'),('49a16eb75e5702113c2ef8c6483552a0',1,0,'2017-05-01 13:24:42'),('4bfafa3abec6f9ed3cc25523166391d5',1,0,'2017-09-19 07:15:18'),('4cd28ef9cf225fadbffeb006e1d4a839',1,0,'2017-09-12 07:31:24'),('4f5ccbee482c308daeed857646f3eb60',1,0,'2017-04-25 10:49:06'),('4fedca50cd4a2c4f09f7479221fa482c',1,0,'2017-08-31 09:12:34'),('50349d0b5ff3bcc37ee42cd550ea30a5',1,0,'2017-09-14 08:04:36'),('515bd6c79b2ac526999ac0136f34dc51',1,0,'2017-05-03 00:52:50'),('519282dad8a1025543250462caa2ba3e',1,0,'2017-09-15 13:51:57'),('51b011c84aa8a8408b96b0a82bab7a59',1,0,'2017-05-07 20:50:58'),('56163d6ff0897389e134d16fc7b5575f',1,0,'2017-09-14 10:41:03'),('5711dcd983064f1e47a3d894cb0b67c9',1,0,'2017-05-02 07:44:16'),('5747cd6da7ed105c36e842a0becce849',1,0,'2017-04-26 23:17:00'),('58d43ab0f684c020de1c7da8aca4a302',1,0,'2017-07-19 10:40:03'),('5995f8b6739666bbf5de491f874f56fe',1,0,'2017-04-25 05:00:00'),('5a2040c95b7438610e91ca767287ee40',1,0,'2017-04-25 05:52:55'),('5bddd527141ce38773eb6b78ebdfc85e',1,0,'2017-04-25 06:18:32'),('5d1c004296ea8c3d8ed336ca06ac320f',1,0,'2017-08-31 10:57:02'),('5d911d4a3aa00b57559c087388c3a185',1,0,'2017-09-10 10:54:07'),('6030bb962e1a1f9a44c5136edb1dfdac',1,0,'2017-09-21 12:09:39'),('6125d129be4730a64bf47321c20b7fce',1,0,'2017-07-13 14:39:48'),('62b050fb04c6169b7aef34e75a6bebca',1,0,'2017-09-05 15:10:24'),('634b376f8cfa7f1551bb649653d298ec',1,0,'2017-09-15 12:43:00'),('6439d8809944bef4f52aa3644e590e2f',1,0,'2017-04-26 10:01:08'),('644e47ce91a7b7795f60737fbbdc768b',1,0,'2017-07-13 13:33:52'),('64be29e3a4097fff74dec63f2541c21e',1,0,'2017-09-12 14:13:08'),('65919684ab8c9a44c8a3bdc0e0cd8c7c',1,0,'2017-09-01 07:15:07'),('66095f33b9731cb9bc91a42ca28f93b3',1,0,'2017-09-21 12:09:36'),('67e24d148aeb0abcc9256adefffde561',1,0,'2017-05-02 07:10:35'),('68fe93143ef9b5ccae212b4cd71a84d1',1,0,'2017-04-25 05:54:53'),('697fdbb0644d9492e4d9d20c894345bc',1,0,'2017-09-13 12:57:39'),('6b1dcc4aa05aa60a2963fae5e5c55683',1,0,'2017-09-21 10:14:13'),('6c0ce5629ccccda0629e754498c13de1',1,0,'2017-04-25 05:54:38'),('6c9bb3b9925d808898c98c6f47893e6f',1,0,'2017-09-22 07:56:25'),('6f208196db55fb3162544747d5280c10',1,0,'2017-07-19 10:38:50'),('6f3ac51fabb4ef68d4edba328576c73d',1,0,'2017-07-13 13:32:49'),('71151bf5d505ea27d42827fdd76e2403',1,0,'2017-04-25 04:55:06'),('723567531e5b01669427623df9ab10fb',1,0,'2017-09-13 12:59:26'),('7235e7ae69f9512485a223b0f0a516c4',1,0,'2017-09-14 10:40:31'),('741f565c53d486593045ed7102cb17ca',1,0,'2017-04-25 06:20:18'),('750933a106cd173745c0aeda456ba245',1,0,'2017-07-06 10:20:48'),('7557b0f2d506dd961340155ce685e3ce',1,0,'2017-09-13 10:00:19'),('757bcb9b107cb1b009a9cfcbbaff8493',1,0,'2017-05-02 07:12:05'),('7622426234b952236a924249876c1ebe',1,0,'2017-04-25 04:53:15'),('771e60607ce12354b558bf9dd7110884',1,0,'2017-04-25 05:49:30'),('78cf98e3b4b0a776f5c4730a7c26843a',1,0,'2017-09-20 12:09:07'),('797865eec8ab5124d8c116473357615f',1,0,'2017-04-26 07:07:56'),('7b061d582c9022d387cf887c38212f22',1,0,'2017-07-13 09:54:29'),('7b39d77a6a4d6d88ceded025cbe2ad86',1,0,'2017-05-02 10:29:34'),('7ba4a2abb6b6c416b32066a3b8d7412f',1,0,'2017-07-28 10:51:02'),('7bdeeb19dd3a5c591346dce26db73264',1,0,'2017-09-18 14:03:06'),('7c62ccbb2ae179adaa981704248b2fff',1,0,'2017-07-13 13:58:15'),('7dc99bba839357eb51ceb46eb2256816',1,0,'2017-09-05 15:10:03'),('7f617c26638da07dceb2e9f44156275d',1,0,'2017-09-05 15:10:01'),('8013f20a650b7e3d6958135d4bddb3af',1,0,'2017-04-28 08:20:25'),('8097b55ca54e4dbd3ed4b9fe25c78569',1,0,'2017-04-28 19:58:10'),('80bef9fe413ab92d1f1b844e41438363',1,0,'2017-07-13 13:22:02'),('81cad16b9ad5c60a3d3da7f59c9a7fd4',1,0,'2017-07-05 10:17:43'),('81ee71595f366b74022fd00a5496ff6c',1,0,'2017-04-25 05:02:55'),('828ea3a5c847fdaf7d3dc69a66e37a7c',1,0,'2017-04-25 06:25:12'),('82b8408c1d4827ae167f167ca29f0490',1,0,'2017-09-19 07:51:44'),('83105894a6b9d2df6e5d47a8a30a3e37',1,0,'2017-09-05 07:54:01'),('83f73b5c6f1660bb8cfbfebe66138848',1,0,'2017-04-25 04:46:37'),('879edf0ca28b57268b6d922093a6f913',1,0,'2017-07-17 13:24:29'),('88416196b530fedba14c77b1585e5295',1,0,'2017-09-21 13:14:45'),('886e7bdbbe95c337390cfedc902256b2',1,0,'2017-04-25 06:03:48'),('888bd54bbf23090d164f815d40113a84',1,0,'2017-09-14 08:03:41'),('8a762692a6f0ce8cc1ae5dda2073b4a4',1,0,'2017-04-25 05:55:12'),('8ccbe34efdccdda2d086d84dbf6b6862',1,0,'2017-04-25 05:18:49'),('8d38a2a8e6db2bec7fbd9d891c563201',1,0,'2017-07-28 10:53:27'),('8d7e4f7859f0185f9b0fd3dc94f76290',1,0,'2017-09-20 09:40:19'),('8e6d3a2ea9ba5b45ba850b9899a91c29',1,0,'2017-09-22 08:29:46'),('8ecccebfe12223bdc1f64de0ed889c63',1,0,'2017-04-25 09:20:36'),('8fafb43f25d9a204ca63ad9b9bf206fd',1,0,'2017-09-28 07:14:07'),('8fd9dcd90bd15d81c4a7aedc878ff3ed',1,0,'2017-07-28 11:00:56'),('90c62b65b2dd778432a4ddf50f73b251',1,0,'2017-09-18 08:46:00'),('923a541e5906704818a97784dec9adb9',1,0,'2017-09-21 12:06:35'),('94a4679058f9c6defbbbb9703c64695b',1,0,'2017-08-31 11:08:52'),('953d9d60a962b09f5590fe0ba1e4f982',1,0,'2017-04-25 10:56:24'),('95a1a6b4bdd22e73cfb33ecd0c74783f',1,0,'2017-09-21 12:07:05'),('96eb285fcbbb19a5816991e404f545ed',1,0,'2017-09-14 10:44:07'),('970df63ef88652c4ff782739032536dc',1,0,'2017-07-28 10:42:36'),('975a64383d7899af0af84ff8ada95eb9',1,0,'2017-09-13 10:00:22'),('97bd12a0dc01049f67aad586227c95de',1,0,'2017-07-17 13:30:40'),('9cb2d322f81df0dd230267075529a70a',1,0,'2017-04-25 11:06:18'),('9d498431583347eb8d5e61951e8f98b0',1,0,'2017-04-26 07:21:18'),('9da8bb5890683b9265344c2206232a8b',1,0,'2017-04-27 06:06:15'),('9e1b957ecb61698eff54ba2ebf8c6afe',1,0,'2017-04-25 05:47:23'),('9faea5797b61e6dfca570cdd1d355d70',1,0,'2017-05-01 13:13:01'),('a06cd29ff80290e284ca6ec0c57a33ef',1,0,'2017-07-17 11:58:16'),('a368af90e04cce3d9d1346612f5da247',1,0,'2017-04-25 04:48:59'),('a3920bdeede6920bfaeb6a512b877bc2',1,0,'2017-07-17 12:00:37'),('a3f9b411cf761e6efaf0f24ac8866f8c',1,0,'2017-09-12 07:31:21'),('a3fb763918cb2c4aa2bde7f32f155b08',1,0,'2017-08-31 09:12:55'),('a5b4460138144a5a2ddc543f87d65250',1,0,'2017-05-03 00:49:48'),('a5f762e79d1bc30481fb076759dd4728',1,0,'2017-05-02 11:51:22'),('a637d0dff05814ee74916ddabd24decc',1,0,'2017-07-17 12:41:45'),('a63f4d5dd7bf10b4b7d9510e5bf82984',1,0,'2017-07-20 09:31:44'),('a65b25dc827df66a78276793c37c1912',1,0,'2017-09-22 07:56:33'),('a6bc7fc971274aaf3761ffd50186e8ff',1,0,'2017-07-13 10:00:12'),('a9c6ae13520e5fc195c6efd8a55f0350',1,0,'2017-07-19 10:38:44'),('aab9d1cc10f08f97beec51e1087c1efd',1,0,'2017-07-06 21:22:43'),('ab1bae847871adfb20e51a4d3063cbaf',1,0,'2017-04-25 05:00:02'),('ac19953d834381fb3f1e3ff034039084',1,0,'2017-07-06 21:23:21'),('aeeeb3b6213caa218332fc347522b21e',1,0,'2017-08-31 10:56:58'),('af8ad220764fc07c086dcb6ee360ec26',1,0,'2017-08-31 09:41:06'),('b037baae0d9b3458b253448451d1bab8',1,0,'2017-04-26 07:33:38'),('b0397ec6d6cfb0d3eb46dd9c1ecccc05',1,0,'2017-09-01 07:15:10'),('b058ddee16b86c3bfe3c91f94befefff',1,0,'2017-09-21 08:29:50'),('b0c8888ca39c9803e6b920d7f10f7d15',1,0,'2017-07-28 10:59:49'),('b0ea9f5f27a5d4c7ff658b9b888237fd',1,0,'2017-04-25 09:09:44'),('b19fe5e3dd8caff5e50793e0160edcaf',1,0,'2017-07-25 22:10:01'),('b224d0d8054c62a10b88907de829f90a',1,0,'2017-07-06 21:30:48'),('b3e93328f94e7feb549da23b10176197',1,0,'2017-09-14 10:45:33'),('b441864238dc1819a5b49251c08f6245',1,0,'2017-05-03 15:09:30'),('b4d9a1461d837383423e8680164dec89',1,0,'2017-09-20 08:07:53'),('b824b3468269c17fd6aae4f7aad5a4a0',1,0,'2017-04-25 04:54:06'),('b8ec52336b97ce427d8235ba97373559',1,0,'2017-04-25 08:08:06'),('b8f781868d84d8da33833c783c81bfad',1,0,'2017-05-01 12:26:14'),('b9f028bc7fe240ad77337823445368b1',1,0,'2017-09-06 07:26:59'),('bb2a2c7572a0c40eb2c2be00d2027124',1,0,'2017-09-12 13:56:28'),('bb4157f59fd74de4ab40a5ed5b9a9336',1,0,'2017-09-21 12:09:30'),('bbccbfe9cd109782075c247280a2b911',1,0,'2017-09-13 13:03:09'),('bbd8f1a3a856fae82b1ce5c18c6e0ce7',1,0,'2017-04-25 07:58:54'),('bc13f5ad1ca7b8f95a90beb7ddddc76d',1,0,'2017-04-25 09:36:31'),('bd5a6010d66abed8b34ea48bdb7ba516',1,0,'2017-09-13 13:05:57'),('bdffeaa5857ee0458a107920b9da6700',1,0,'2017-09-08 13:35:41'),('c2768ddbafa9de5871b4c5442dae0874',1,0,'2017-09-04 07:38:08'),('c2a4a6347c17da0089a37f1c825a3943',1,0,'2017-07-31 05:26:21'),('c3e99b159ee71269226b60af30fba457',1,0,'2017-07-14 09:10:41'),('c3fa7accca99c6a06d9ff310bf8f3ea8',1,0,'2017-07-05 10:18:23'),('c5f60e1287451853d68619503208bc18',1,0,'2017-04-25 05:46:00'),('c682fa2b5735664c42ab3b0777023b55',1,0,'2017-09-11 09:41:21'),('c700c2635e54bbf01ebf60f2cca2c5f4',1,0,'2017-09-21 10:14:24'),('cbf205412b9ec38da1472eb63fae0773',1,0,'2017-05-02 07:44:19'),('cd511202f476063c82d4f47b066f9d15',1,0,'2017-04-25 04:45:48'),('ce5a055f829d93d8df17ac837f07b9c0',1,0,'2017-05-05 06:49:19'),('ce8612128867f2a9e0e7d50365a67b85',1,0,'2017-07-20 13:20:29'),('ce8686a937d3634fadb8fb2e56505f92',1,0,'2017-07-28 10:36:30'),('ced548a2f1939b49f775d07f27110ff0',1,0,'2017-07-13 09:54:58'),('cf4105b7282fa6e9da36fc3d521a78a5',1,0,'2017-09-05 08:04:39'),('cf5e29e71c8bf348459a2a9a4d1a4c00',1,0,'2017-04-29 01:43:38'),('cf71d608637855b407bc06875411a25b',1,0,'2017-08-31 11:22:32'),('d081cf6392b50cf9897454616d775487',1,0,'2017-09-13 11:10:41'),('d1af157897564592f991048bc7f19c2f',1,0,'2017-09-04 10:45:39'),('d252bb51c764b9b6f66d4ac4c8c9508d',1,0,'2017-04-26 07:58:07'),('d49e312a00b654f1f2c48a9ff9931a8f',1,0,'2017-05-03 00:49:43'),('d53e74c35389cab97f44897d0380812e',1,0,'2017-09-15 12:37:17'),('d5976dab02c685b9971b1fbb33b50434',1,0,'2017-05-01 13:56:51'),('d5e88aff420c011e59e50c5812bb5fb2',1,0,'2017-07-19 10:38:39'),('d60b8adffaf1f612e910af2a7efbe077',1,0,'2017-09-06 12:46:17'),('d63b3081a3b7af3a1c097d7ec066458e',1,0,'2017-07-31 05:30:34'),('d75ea6f25c5d6e0692bb898ebea7625e',1,0,'2017-04-26 08:21:55'),('d8c344174de1d7b7e3c95fc5b6ec9bc1',1,0,'2017-04-25 11:08:07'),('d92ef947bdafc840df83fad3e30806b1',1,0,'2017-05-07 22:38:13'),('d9738a7e55685ed864897eb33ac865d2',1,0,'2017-07-13 13:34:05'),('da058bbaf37f8aa0f4e4054bf2f0ca38',1,0,'2017-09-21 14:06:01'),('db40a2314b78555869f77c04190b6b2d',1,0,'2017-09-05 08:04:47'),('dc532d29add62b5bb34520c213787d20',1,0,'2017-04-25 05:45:44'),('de2b262417fcd26dbc902155fd365ef3',1,0,'2017-07-27 07:48:19'),('debf46991f2776499704a8cc4a3f8077',1,0,'2017-09-20 08:07:47'),('df8a20a85b275410ca6c2a7e20434d80',1,0,'2017-04-25 05:15:00'),('e05cd83238d01d28afe63c53dfa45d4d',1,0,'2017-09-18 09:23:45'),('e0bf8f77cabc3a2e5ffde5856489d431',1,0,'2017-08-31 09:10:25'),('e14808807bd055d24adff390fd99f455',1,0,'2017-09-15 08:13:16'),('e1a035776ae9a00b5b664429ba2aff09',1,0,'2017-07-27 21:50:12'),('e306fa7a34e4dfe52c5cefca05bed7a2',1,0,'2017-05-05 06:24:19'),('e3b8c8099c31ef7b67f3167754bb95f8',1,0,'2017-09-05 15:36:19'),('e44997b9e29b61a5242de22e8c3bac4e',1,0,'2017-04-25 09:09:04'),('e5a065c550a3ffff12b30a77e8d7b07a',1,0,'2017-07-13 09:54:47'),('e69484dd2fb31e9d21735d217eaa3b25',1,0,'2017-04-25 10:15:01'),('e7b33aac8d458c10173a365eb8315afc',1,0,'2017-04-30 11:50:36'),('e83cc94552b019a7cb8461f8997b6576',1,0,'2017-09-05 08:04:55'),('e862d30ea2cb78ae82b894d7a09d1686',1,0,'2017-09-18 14:03:50'),('e8fd87426f57954b3d5bf911b6649032',1,0,'2017-07-05 14:54:51'),('ea8eeb56ee3869cc2198dff1b60c30e8',1,0,'2017-05-07 22:34:34'),('eae27b1727f180cb4f809b4cfb810d35',1,0,'2017-07-06 21:19:29'),('eb4520a928c8308deb69daa955015440',1,0,'2017-09-04 07:38:17'),('ec3cf36f102c3d064825784c338d30c3',1,0,'2017-04-25 10:15:19'),('ed1f570fcdf8f70d81c7e39775bc7940',1,0,'2017-04-25 04:55:48'),('ed26ecbca999f198e9d3e3ec7f1f34a9',1,0,'2017-07-07 07:20:31'),('ed60909a5b367c8ff83dd545cb771455',1,0,'2017-09-19 08:57:57'),('ee08aa77a9ecd709f9170c970bf2a6a8',1,0,'2017-04-25 04:58:07'),('f022136a136a4d7c4dc4f5948d51fc45',1,0,'2017-08-31 11:09:31'),('f13c94343891df5d5180257dc419ee00',1,0,'2017-07-17 11:57:21'),('f3990e03cb6973550ec7b83e506db566',1,0,'2017-09-04 13:31:19'),('f3c06cc37a66f8b1b5a77fb52e4e2ca7',1,0,'2017-04-30 18:06:50'),('f4fe37c956cceb7a512e4809c12a4d05',1,0,'2017-04-25 06:03:55'),('f7a02596a4ca16c2f5c7f5f43ce6a92e',1,0,'2017-09-21 12:06:33'),('f7d052c5f381a1c617d6025cd3a21677',1,0,'2017-09-15 12:42:01'),('f85db6895cc3abcefafe18ec20b493b0',1,0,'2017-04-25 04:56:43'),('f878a44cc6c6af4cce02a2ec48c7ee90',1,0,'2017-09-07 08:21:51'),('f8b491510ebbc248ba0c0c91f313687d',1,0,'2017-09-15 09:12:15'),('fb37e589f96a484d50b7ae8b406e2ce5',1,0,'2017-09-12 13:57:25'),('fb6b2d8dc5524efec5f889a68095d224',1,0,'2017-05-02 07:50:20'),('fbb3b6ea74b5f1e30c68ad9c0cb983f1',1,0,'2017-04-30 10:36:14'),('fc3d7c6365eae822cfd5ec7773d88d5b',1,0,'2017-08-31 09:10:27'),('fc86d7b58dd13385a399cf4e9a4626f1',1,0,'2017-08-31 09:10:35'),('fd0096d96caebc7990a0c0d3401418fe',1,0,'2017-07-06 10:10:05'),('fd2c12898fd06dec0dd4c6757080c1cd',1,0,'2017-05-08 05:52:40'),('fd92a79023aa9222a27c6bbde243d4a7',1,0,'2017-05-02 07:43:05');
/*!40000 ALTER TABLE `lti_nonce` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `lti_result`
--
DROP TABLE IF EXISTS `lti_result`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lti_result` (
`result_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`link_id` int(10) unsigned NOT NULL,
`user_id` int(10) unsigned NOT NULL,
`result_url` text,
`sourcedid` text,
`service_id` int(10) unsigned DEFAULT NULL,
`ipaddr` varchar(64) DEFAULT NULL,
`grade` float DEFAULT NULL,
`note` text,
`server_grade` float DEFAULT NULL,
`json` text,
`entity_version` int(10) unsigned NOT NULL DEFAULT '0',
`created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`retrieved_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY (`result_id`),
UNIQUE KEY `link_id` (`link_id`,`user_id`),
KEY `lti_result_ibfk_2` (`user_id`),
KEY `lti_result_ibfk_3` (`service_id`)
) ENGINE=InnoDB AUTO_INCREMENT=36 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `lti_result`
--
LOCK TABLES `lti_result` WRITE;
/*!40000 ALTER TABLE `lti_result` DISABLE KEYS */;
INSERT INTO `lti_result` VALUES (1,1,1,NULL,'456434513:292832126:292832126',7,NULL,NULL,NULL,NULL,NULL,0,'2017-01-20 09:39:51','2017-01-20 09:39:51','2017-01-20 09:39:51'),(2,1,2,NULL,'456434513:998928898:292832126',6,NULL,NULL,NULL,NULL,NULL,0,'2017-03-07 06:26:31','2017-03-07 06:26:31','2017-03-07 06:26:31'),(3,1,3,NULL,'d92dc727b3c069898d06e1f0fec491b1',1,NULL,NULL,NULL,NULL,NULL,0,'2017-03-07 06:26:37','2017-03-07 06:26:37','2017-03-07 06:26:37'),(9,1,7,NULL,'a5f216f2d9fe6cdd5ccc41880d5fc19d',3,NULL,NULL,NULL,NULL,NULL,0,'2017-04-10 12:47:38','2017-04-10 12:47:38','2017-04-10 12:47:38'),(10,1,8,NULL,'8a65e0c80e8948d535d378fe3105944f',3,NULL,NULL,NULL,NULL,NULL,0,'2017-04-10 12:47:51','2017-04-10 12:47:51','2017-04-10 12:47:51'),(11,3,1,NULL,'fd30ae4b7c1cf74c66ca404a2d60dfd1',3,NULL,NULL,NULL,NULL,NULL,0,'2017-04-10 13:46:52','2017-04-10 13:46:52','2017-04-10 13:46:52'),(12,3,2,NULL,'304056a4b093a24c8cc663114012608b',3,NULL,NULL,NULL,NULL,NULL,0,'2017-04-10 15:41:09','2017-04-10 15:41:09','2017-04-10 15:41:09'),(13,3,3,NULL,'88641707f970f15a096f49c6219c3fad',3,NULL,NULL,NULL,NULL,NULL,0,'2017-04-10 15:41:17','2017-04-10 15:41:17','2017-04-10 15:41:17'),(14,3,7,NULL,'5f9f79ac93f6668a3c7b23e65dd15b67',3,NULL,NULL,NULL,NULL,NULL,0,'2017-04-10 15:42:48','2017-04-10 15:42:48','2017-04-10 15:42:48'),(15,1,9,NULL,'97257598d41bbc8e1838e90bbdf2a7b4',3,NULL,NULL,NULL,NULL,NULL,0,'2017-04-10 15:45:35','2017-04-10 15:45:35','2017-04-10 15:45:35'),(16,4,9,NULL,'a3effd658568e6d002c811d8cc2dc0fe',3,NULL,NULL,NULL,NULL,NULL,0,'2017-04-10 16:03:44','2017-04-10 16:03:44','2017-04-10 16:03:44'),(17,3,10,NULL,'aeb45a08f5c3c73dcc5cfdd9683524a6',3,NULL,NULL,NULL,NULL,NULL,0,'2017-04-10 16:16:02','2017-04-10 16:16:02','2017-04-10 16:16:02'),(18,3,11,NULL,'5f9f79ac93f6668a3c7b23e65dd15b67',3,NULL,NULL,NULL,NULL,NULL,0,'2017-04-10 16:54:09','2017-04-10 16:54:09','2017-04-10 16:54:09'),(19,3,12,NULL,'36ea1191bacc2cc1f0e1c80c2459e739',3,NULL,NULL,NULL,NULL,NULL,0,'2017-04-10 16:54:50','2017-04-10 16:54:50','2017-04-10 16:54:50'),(20,5,13,NULL,'c35c4040e57de343a56d4c44d24b94ed',3,NULL,NULL,NULL,NULL,NULL,0,'2017-04-10 16:57:39','2017-04-10 16:57:39','2017-04-10 16:57:39'),(21,5,8,NULL,'fd5b4b0b6bca3b743b6e403781e0c462',3,NULL,NULL,NULL,NULL,NULL,0,'2017-04-10 17:51:22','2017-04-10 17:51:22','2017-04-10 17:51:22'),(22,5,2,NULL,'4c58f7341b7c309d96a4c9bae6df2174',3,NULL,NULL,NULL,NULL,NULL,0,'2017-04-10 17:51:25','2017-04-10 17:51:25','2017-04-10 17:51:25'),(23,5,1,NULL,'1bb6fbd849df9a3c64ab91791804c5ed',3,NULL,NULL,NULL,NULL,NULL,0,'2017-04-10 17:53:20','2017-04-10 17:53:20','2017-04-10 17:53:20'),(24,4,2,NULL,'ebf3fc7c4f121e883650fffa02ec5432',3,NULL,NULL,NULL,NULL,NULL,0,'2017-04-11 07:43:39','2017-04-11 07:43:39','2017-04-11 07:43:39'),(25,4,1,NULL,'88cf808c85a351525493769e0032d387',3,NULL,NULL,NULL,NULL,NULL,0,'2017-04-11 07:44:04','2017-04-11 07:44:04','2017-04-11 07:44:04'),(26,6,14,NULL,'123456',NULL,NULL,NULL,NULL,NULL,NULL,0,'2017-04-11 10:22:14','2017-04-11 10:22:14','2017-04-11 10:22:14'),(27,7,15,NULL,'1bb6fbd849df9a3c64ab91791804c5ed',4,NULL,NULL,NULL,NULL,NULL,0,'2017-04-11 12:55:28','2017-04-11 12:55:28','2017-04-11 12:55:28'),(28,7,16,NULL,'4c58f7341b7c309d96a4c9bae6df2174',4,NULL,NULL,NULL,NULL,NULL,0,'2017-04-11 12:56:47','2017-04-11 12:56:47','2017-04-11 12:56:47'),(29,8,17,NULL,'49b91f52e675d4c1c9bc1fbf46cb7cab',5,NULL,NULL,NULL,NULL,NULL,0,'2017-04-20 13:50:48','2017-04-20 13:50:48','2017-04-20 13:50:48'),(30,8,1,NULL,'2abb328bccd3053cbb55eddcaa20de76',5,NULL,NULL,NULL,NULL,NULL,0,'2017-04-20 14:13:04','2017-04-20 14:13:04','2017-04-20 14:13:04'),(31,8,2,NULL,'81920cb8df22757e53bcf5ecb17fb1e2',5,NULL,NULL,NULL,NULL,NULL,0,'2017-04-20 14:13:19','2017-04-20 14:13:19','2017-04-20 14:13:19'),(32,8,8,NULL,'72e4f8d9b93cfbf42ff23d434424483e',5,NULL,NULL,NULL,NULL,NULL,0,'2017-04-20 14:13:30','2017-04-20 14:13:30','2017-04-20 14:13:30'),(33,9,18,NULL,'12ce6af7df291b71aca83d84786be2ba',3,NULL,NULL,NULL,NULL,NULL,0,'2017-07-11 10:33:29','2017-07-11 10:33:29','2017-07-11 10:33:29'),(34,9,1,NULL,'cf92a82ba398294c706221e0bcfdf492',3,NULL,NULL,NULL,NULL,NULL,0,'2017-07-13 09:54:47','2017-07-13 09:54:47','2017-07-13 09:54:47'),(35,9,2,NULL,'2b59e5e8d7ae106b238ee1a1ea255fbd',3,NULL,NULL,NULL,NULL,NULL,0,'2017-07-13 09:54:58','2017-07-13 09:54:58','2017-07-13 09:54:58');
/*!40000 ALTER TABLE `lti_result` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `lti_service`
--
DROP TABLE IF EXISTS `lti_service`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lti_service` (
`service_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`service_sha256` char(64) NOT NULL,
`service_key` text NOT NULL,
`key_id` int(10) unsigned NOT NULL,
`format` varchar(1024) DEFAULT NULL,
`json` text,
`entity_version` int(10) unsigned NOT NULL DEFAULT '0',
`created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY (`service_id`),
UNIQUE KEY `key_id` (`key_id`,`service_sha256`)
) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `lti_service`
--
LOCK TABLES `lti_service` WRITE;
/*!40000 ALTER TABLE `lti_service` DISABLE KEYS */;
INSERT INTO `lti_service` VALUES (1,'22ad141bc0e61c84483b6e3c28d7435a0b0568f900a9b73ee6ca1e6b14889f5b','http://tsugi.dev/lti/tool_consumer_outcome.php?b64=MTIzNDU6OjpzZWNyZXQ6Ojo=',1,NULL,NULL,0,'2017-01-20 09:39:51','2017-01-20 09:39:51'),(3,'c15402f1322a26de3abb0219bb1015b0f8e96e6d5040c1100a94232c0a1be131','http://localhost/tsugi/lti/tool_consumer_outcome.php?b64=MTIzNDU6OjpzZWNyZXQ6Ojo=',1,NULL,NULL,0,'2017-04-05 13:44:21','2017-04-05 13:44:21'),(4,'dd1b5d072447b554d5c1d9ef619747f32f66f3f2ef2d7db56f0317e91b4b07af','http://localhost/tsugi/lti/tool_consumer_outcome.php?b64=dW5pc2E6OjoxMjM0NTo6Og==',42,NULL,NULL,0,'2017-04-11 12:55:28','2017-04-11 12:55:28'),(5,'ec8350153953965521e3cbddc747f3d405c1cc46e672b119c3362a812fb96a6a','https://dev.unisaonline.net/tsugi/lti/tool_consumer_outcome.php?b64=MTIzNDU6OjpzZWNyZXQ6Ojo=',1,NULL,NULL,0,'2017-04-19 08:43:13','2017-04-19 08:43:13'),(6,'1df671e17233160b6d14d74b67ab789f487767645cb5a163ac490b0d2402b754','http://localhost/tsugi/dev/grade?b64=MTIzNDU6OjpzZWNyZXQ6Ojo=',1,NULL,NULL,0,'2017-07-13 13:22:01','2017-07-13 13:22:01'),(7,'4dd5a0cbb613f5e2a2f15b1cac82f25a5a6206ea004711ec5d6a5b9e13521ec4','/tsugi/dev/grade?b64=MTIzNDU6OjpzZWNyZXQ6Ojo=',1,NULL,NULL,0,'2017-08-31 08:48:03','2017-08-31 08:48:03');
/*!40000 ALTER TABLE `lti_service` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `lti_user`
--
DROP TABLE IF EXISTS `lti_user`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lti_user` (
`user_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`user_sha256` char(64) NOT NULL,
`user_key` varchar(13) NOT NULL,
`key_id` int(10) unsigned NOT NULL,
`profile_id` int(10) unsigned DEFAULT NULL,
`displayname` text,
`email` text,
`locale` char(63) DEFAULT NULL,
`subscribe` smallint(6) DEFAULT NULL,
`json` text,
`login_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`ipaddr` varchar(64) DEFAULT NULL,
`entity_version` int(10) unsigned NOT NULL DEFAULT '0',
`created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY (`user_id`),
UNIQUE KEY `key_id` (`key_id`,`user_sha256`),
KEY `lti_user_ibfk_2` (`user_key`)
) ENGINE=InnoDB AUTO_INCREMENT=19 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `lti_user`
--
LOCK TABLES `lti_user` WRITE;
/*!40000 ALTER TABLE `lti_user` DISABLE KEYS */;
INSERT INTO `lti_user` VALUES (1,'92cef4029ac060d448065916b25ead6c273e25114224d01c283fdc2ce250c463','292832126',1,NULL,'Jane Instructor','inst@ischool.edu',NULL,NULL,NULL,'2017-09-22 08:29:46','192.168.10.1',0,'2017-01-20 09:39:51','2017-01-20 09:39:51'),(2,'e8167fb16b4a0fb3978449b74ffeb28a3b8d1dd5e25c85436cb452f6a5690161','998928898',1,NULL,'Sue Student','student@ischool.edu',NULL,NULL,NULL,'2017-09-22 07:56:33','192.168.10.1',0,'2017-03-07 06:26:31','2017-03-07 06:26:31'),(3,'a7c072f8e9c6eb84b2c5d2b6d4f092e8e982a34945401f67f7da93e8e7283529','121212331',1,NULL,'Ed Student','ed@ischool.edu',NULL,NULL,NULL,'2017-03-07 06:26:37',NULL,0,'2017-03-07 06:26:37','2017-03-07 06:26:37'),(8,'d43403a2c3dae4e4332bf99111e6e066ecda233354d5fa44484dff058e483bb8','777777777',1,NULL,NULL,NULL,NULL,NULL,NULL,'2017-04-10 12:47:51',NULL,0,'2017-04-10 12:47:51','2017-04-10 12:47:51'),(11,'f97b62402266a3de1c158831a5868ac00ba75dc58d142df75078c7416eb3fe60','2928321267',1,NULL,'Peace','peacengara@aol.com',NULL,NULL,NULL,'2017-04-10 16:54:09',NULL,0,'2017-04-10 16:54:09','2017-04-10 16:54:09'),(12,'bff68d1b386d54ee8602ff1a196500f1ec2eb3b9ffffcae9514884c4fd100b94','29283212628',1,NULL,'Runyararo','peacengara@aol.com',NULL,NULL,NULL,'2017-04-10 16:54:50',NULL,0,'2017-04-10 16:54:50','2017-04-10 16:54:50'),(13,'f495bd190c260618cd4f3c7e852a0c0dcad3d8dbd074e118aed196b14d252492','29283212687',1,NULL,'Runyararo','runya@yahoo.com',NULL,NULL,NULL,'2017-04-10 16:57:39',NULL,0,'2017-04-10 16:57:39','2017-04-10 16:57:39'),(14,'828171db4aa1985c06fb85e598a285458bf684b66144aec1f574944f7e70ffcb','1235134',1,NULL,'Josh Harington','josh1@live.co.za',NULL,NULL,NULL,'2017-04-11 10:22:14',NULL,0,'2017-04-11 10:22:14','2017-04-11 10:22:14'),(15,'92cef4029ac060d448065916b25ead6c273e25114224d01c283fdc2ce250c463','292832126',42,NULL,'Jane Instructor','inst@ischool.edu',NULL,NULL,NULL,'2017-04-11 12:55:28',NULL,0,'2017-04-11 12:55:28','2017-04-11 12:55:28'),(16,'e8167fb16b4a0fb3978449b74ffeb28a3b8d1dd5e25c85436cb452f6a5690161','998928898',42,NULL,'Sue Student','student@ischool.edu',NULL,NULL,NULL,'2017-04-11 12:56:47',NULL,0,'2017-04-11 12:56:47','2017-04-11 12:56:47'),(17,'afc5caccc30408631f34bafec359b58c58dcccaaffa9a857e6aa48abbcc1c926','29283212633',1,NULL,'Benedict Pabazhira','benedict.pabazhira@eon.co.za',NULL,NULL,NULL,'2017-04-20 13:50:48',NULL,0,'2017-04-20 13:50:48','2017-04-20 13:50:48'),(18,'60734f174b2035e5b2ba85fef8c648cc0cb18c5995b419d3cd1c025c5b09d0c7','50000',1,NULL,'Proud','digo@gmail.com',NULL,NULL,NULL,'2017-07-11 10:33:29',NULL,0,'2017-07-11 10:33:29','2017-07-11 10:33:29');
/*!40000 ALTER TABLE `lti_user` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `lti_users_domains_meta`
--
DROP TABLE IF EXISTS `lti_users_domains_meta`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lti_users_domains_meta` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`user_id` int(10) unsigned NOT NULL,
`lti_user_id` int(10) unsigned NOT NULL,
`app_id` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`lti_version` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`category` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`privacy_level` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`user_agent` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`display_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`json` json NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `lti_users_domains_meta_app_id_foreign` (`app_id`)
) ENGINE=MyISAM AUTO_INCREMENT=14 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `lti_users_domains_meta`
--
LOCK TABLES `lti_users_domains_meta` WRITE;
/*!40000 ALTER TABLE `lti_users_domains_meta` DISABLE KEYS */;
INSERT INTO `lti_users_domains_meta` VALUES (1,1,1,'67','v1p0','','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.115 Safari/537.36','','null','2017-07-25 01:44:19','2017-07-25 01:44:19'),(2,1,1,'68','v1p0','','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.115 Safari/537.36','','null','2017-07-25 01:49:08','2017-07-25 01:49:08'),(3,1,1,'75','v1p0','','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.115 Safari/537.36','','null','2017-07-25 03:17:50','2017-07-25 03:17:50'),(4,1,1,'65','v1p0','','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.115 Safari/537.36','','null','2017-07-25 10:29:01','2017-07-25 10:29:01'),(5,1,1,'67','v1p0','','public','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.115 Safari/537.36','','null','2017-07-25 11:29:22','2017-07-25 11:29:22'),(6,1,1,'69','v1p0','','anonymous','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.115 Safari/537.36','','[{\"app_id\": 69, \"user_id\": 1, \"category\": \"Assesment\", \"user_agent\": \"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.115 Safari/537.36\", \"lti_user_id\": 1, \"lti_version\": \"v1p0\", \"privacy_lavey\": \"anonymous\"}]','2017-07-25 11:48:45','2017-07-25 11:48:45'),(7,1,1,'70','v1p0','Assesment','anonymous','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.115 Safari/537.36','','[{\"app_id\": 70, \"user_id\": 1, \"category\": \"Assesment\", \"user_agent\": \"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.115 Safari/537.36\", \"lti_user_id\": 1, \"lti_version\": \"v1p0\", \"privacy_lavey\": \"anonymous\"}]','2017-07-26 03:13:43','2017-07-26 03:13:43'),(8,1,1,'71','v1p0','5','public','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.115 Safari/537.36','','[{\"app_id\": 71, \"user_id\": 1, \"category\": \"5\", \"user_agent\": \"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.115 Safari/537.36\", \"lti_user_id\": 1, \"lti_version\": \"v1p0\", \"privacy_lavey\": \"public\"}]','2017-07-27 11:52:29','2017-07-27 11:52:29'),(9,1,1,'72','v1p0','7','public','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.115 Safari/537.36','','[{\"app_id\": 72, \"user_id\": 1, \"category\": \"7\", \"user_agent\": \"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.115 Safari/537.36\", \"lti_user_id\": 1, \"lti_version\": \"v1p0\", \"privacy_lavey\": \"public\"}]','2017-07-27 11:57:43','2017-07-27 11:57:43'),(10,1,1,'73','v1p0','5','anonymous','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.115 Safari/537.36','','[{\"app_id\": 73, \"user_id\": 1, \"category\": \"5\", \"user_agent\": \"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.115 Safari/537.36\", \"lti_user_id\": 1, \"lti_version\": \"v1p0\", \"privacy_lavey\": \"anonymous\"}]','2017-07-27 12:03:13','2017-07-27 12:03:13'),(11,1,1,'74','v1p0','4','public','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.115 Safari/537.36','','[{\"app_id\": 74, \"user_id\": 1, \"category\": \"4\", \"user_agent\": \"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.115 Safari/537.36\", \"lti_user_id\": 1, \"lti_version\": \"v1p0\", \"privacy_lavey\": \"public\"}]','2017-07-27 12:06:42','2017-07-27 12:06:42'),(12,1,1,'75','v1p0','5','anonymous','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.115 Safari/537.36','','[{\"app_id\": 75, \"user_id\": 1, \"category\": \"5\", \"user_agent\": \"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.115 Safari/537.36\", \"lti_user_id\": 1, \"lti_version\": \"v1p0\", \"privacy_lavey\": \"anonymous\"}]','2017-07-27 12:17:03','2017-07-27 12:17:03'),(13,1,1,'76','v1p0','8','anonymous','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.115 Safari/537.36','','[{\"app_id\": 76, \"user_id\": 1, \"category\": \"8\", \"user_agent\": \"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.115 Safari/537.36\", \"lti_user_id\": 1, \"lti_version\": \"v1p0\", \"privacy_lavey\": \"anonymous\"}]','2017-07-27 13:37:48','2017-07-27 13:37:48');
/*!40000 ALTER TABLE `lti_users_domains_meta` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `mail_bulk`
--
DROP TABLE IF EXISTS `mail_bulk`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `mail_bulk` (
`bulk_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`user_id` int(10) unsigned NOT NULL,
`context_id` int(10) unsigned NOT NULL,
`subject` varchar(256) DEFAULT NULL,
`body` text,
`json` text,
`created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY (`bulk_id`),
KEY `mail_bulk_ibfk_1` (`context_id`),
KEY `mail_bulk_ibfk_2` (`user_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `mail_bulk`
--
LOCK TABLES `mail_bulk` WRITE;
/*!40000 ALTER TABLE `mail_bulk` DISABLE KEYS */;
/*!40000 ALTER TABLE `mail_bulk` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `mail_sent`
--
DROP TABLE IF EXISTS `mail_sent`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `mail_sent` (
`sent_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`context_id` int(10) unsigned NOT NULL,
`link_id` int(10) unsigned DEFAULT NULL,
`user_to` int(10) unsigned DEFAULT NULL,
`user_from` int(10) unsigned DEFAULT NULL,
`subject` varchar(256) DEFAULT NULL,
`body` text,
`json` text,
`created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY (`sent_id`),
KEY `mail_sent_ibfk_1` (`context_id`),
KEY `mail_sent_ibfk_2` (`link_id`),
KEY `mail_sent_ibfk_3` (`user_to`),
KEY `mail_sent_ibfk_4` (`user_from`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `mail_sent`
--
LOCK TABLES `mail_sent` WRITE;
/*!40000 ALTER TABLE `mail_sent` DISABLE KEYS */;
/*!40000 ALTER TABLE `mail_sent` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `metadata_store`
--
DROP TABLE IF EXISTS `metadata_store`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `metadata_store` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`metadata_type` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`description` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`classification` varchar(150) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`sequence` int(11) NOT NULL,
`entities` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=308 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `metadata_store`
--
LOCK TABLES `metadata_store` WRITE;
/*!40000 ALTER TABLE `metadata_store` DISABLE KEYS */;
INSERT INTO `metadata_store` VALUES (1,'Access Type','Internal Use','',1,NULL,NULL,NULL),(2,'Access Type','Open to public','',2,NULL,NULL,NULL),(3,'Application Type','Self-Study','',2,NULL,NULL,NULL),(4,'Application Type','Course based','',1,NULL,NULL,NULL),(5,'Bureau Type','Bureau of Market Research','',1,NULL,NULL,NULL),(6,'Bureau Type','SA Business Review','',2,NULL,NULL,NULL),(7,'Centre Type','Centre for Accounting Studies','',1,'storyline',NULL,NULL),(8,'Centre Type','Centre for Sustainable Agriculture and Environmental Sciences','',2,'storyline',NULL,NULL),(9,'Centre Type','Centre for Business Management','',3,'storyline',NULL,NULL),(10,'Centre Type','Centre for Decision Sciences','',4,'storyline',NULL,NULL),(11,'Centre Type','Centre for Transport Economics, Logistics and Tourism','',5,'storyline',NULL,NULL),(12,'Centre Type','Centre for Continuing Education and Training','',6,'storyline',NULL,NULL),(13,'Centre Type','Centre for Applied Information and Communication','',7,'storyline',NULL,NULL),(14,'Centre Type','Centre for Applied Psychology','',8,'storyline',NULL,NULL),(15,'Centre Type','Centre for Pan African Languages and Cultural Development','',9,'storyline',NULL,NULL),(16,'Centre Type','Khanokhulu Centre','',10,'storyline',NULL,NULL),(17,'Centre Type','The John Povey Centre for the Study of English in Southern Africa','',11,'storyline',NULL,NULL),(18,'Centre Type','Tirisano Centre','',12,'storyline',NULL,NULL),(19,'Centre Type','Centre for Basic Legal Education','',13,'storyline',NULL,NULL),(20,'Centre Type','Centre for Business Law','',14,'storyline',NULL,NULL),(21,'Centre Type','Centre for Criminological Sciences','',15,'storyline',NULL,NULL),(22,'Centre Type','Centre for Foreign and Comparative Law','',16,'storyline',NULL,NULL),(23,'Centre Type','Centre for Public Law Studies','',17,'storyline',NULL,NULL),(24,'Centre Type','Centre for Software Engineering (CENSE)','',18,'storyline',NULL,NULL),(25,'Centre Type','Centre for Industrial and Organisational Psychology','',19,'storyline',NULL,NULL),(26,'Chair Type','South African Research Chair in Development Education','',1,NULL,NULL,NULL),(27,'Chair Type','South African Research Chair in Social Policy','',2,NULL,NULL,NULL),(28,'Chair Type','Unesco - Unisa Africa Chair in nanoscience and nanotechnology','',3,NULL,NULL,NULL),(29,'Collaboration Type','Student-to-student','',7,'student:mentor',NULL,NULL),(30,'Collaboration Type','Student-to-lecturer','',6,'student:mentor',NULL,NULL),(31,'Collaboration Type','Student-to-group','',5,'student:mentor',NULL,NULL),(32,'Collaboration Type','Student-to-content','',4,'student:mentor',NULL,NULL),(33,'Collaboration Type','Lecturer-to-lecturer','',3,'student:mentor',NULL,NULL),(34,'Collaboration Type','Lecturer-to-group','',2,'student:mentor',NULL,NULL),(35,'Collaboration Type','Lecturer-to-content','',1,'student:mentor',NULL,NULL),(36,'College Type','Accounting Sciences','',1,'content:storyline:student',NULL,NULL),(37,'College Type','Agriculture and Environmental Sciences','',2,'content:storyline:student',NULL,NULL),(38,'College Type','Economic and Management Sciences','',3,'content:storyline:student',NULL,NULL),(39,'College Type','Education','',4,'content:storyline:student',NULL,NULL),(40,'College Type','Human Sciences','',6,'content:storyline:student',NULL,NULL),(41,'College Type','Law','',7,'content:storyline:student',NULL,NULL),(42,'College Type','Science, Engineering and Technology','',8,'content:storyline:student',NULL,NULL),(43,'College Type','Graduate Studies','',5,'content:storyline:student',NULL,NULL),(44,'Component Functional Type','Analytics','',1,NULL,NULL,NULL),(45,'Component Functional Type','Study aid (help)','',6,NULL,NULL,NULL),(46,'Component Functional Type','Assessment','',2,NULL,NULL,NULL),(47,'Component Functional Type','Content','',3,NULL,NULL,NULL),(48,'Component Functional Type','Media','',5,NULL,NULL,NULL),(49,'Component Functional Type','Dashboard','',4,NULL,NULL,NULL),(50,'Concern Type','Reliability','',2,NULL,NULL,NULL),(51,'Concern Type','Usability','',1,NULL,NULL,NULL),(52,'Concern Type','Responsiveness','',3,NULL,NULL,NULL),(53,'Concern Type','Security','',4,NULL,NULL,NULL),(54,'Content Difficulty Type','Easy','',2,'content',NULL,NULL),(55,'Content Difficulty Type','Moderate','',4,'content',NULL,NULL),(56,'Content Difficulty Type','Extreme','',3,'content',NULL,NULL),(57,'Content Difficulty Type','Difficult','',1,'content',NULL,NULL),(58,'Content Difficulty Type','Strenuous','',5,'content',NULL,NULL),(59,'Content Info Type','Name','',3,NULL,NULL,NULL),(60,'Content Info Type','Description','',1,NULL,NULL,NULL),(61,'Content Info Type','UID','',8,NULL,NULL,NULL),(62,'Content Info Type','Required','',5,NULL,NULL,NULL),(63,'Content Info Type','PID','',4,NULL,NULL,NULL),(64,'Content Info Type','Version','',9,NULL,NULL,NULL),(65,'Content Info Type','Format','',2,NULL,NULL,NULL),(66,'Content Info Type','Source','',6,NULL,NULL,NULL),(67,'Content Info Type','Title','',7,NULL,NULL,NULL),(68,'Content Progress Type','No Progress','',3,'content',NULL,NULL),(69,'Content Progress Type','Some Progress','',4,'content',NULL,NULL),(70,'Content Progress Type','Much Progress','',2,'content',NULL,NULL),(71,'Content Progress Type','Excellent Progress','',1,'content',NULL,NULL),(72,'Content Tag Type','Question','',4,'content',NULL,NULL),(73,'Content Tag Type','Important','',3,'content',NULL,NULL),(74,'Content Tag Type','Fact','',1,'content',NULL,NULL),(75,'Content Tag Type','Remember','',6,'content',NULL,NULL),(76,'Content Tag Type','Hint','',2,'content',NULL,NULL),(77,'Content Tag Type','Reflection','',5,'content',NULL,NULL),(78,'Content Type','Learning Content','',3,'content',NULL,NULL),(79,'Content Type','Learning Outcomes','',4,'content',NULL,NULL),(80,'Content Type','Lecturers voice','',5,'content',NULL,NULL),(81,'Content Type','Assessments','',1,'content',NULL,NULL),(82,'Content Type','Multimedia','',6,'content',NULL,NULL),(83,'Content Type','Textbooks','',8,'content',NULL,NULL),(84,'Content Type','Web 2.0','',9,'content',NULL,NULL),(85,'Content Type','Feedback','',2,'content',NULL,NULL),(86,'Content Type','Reminders','',7,'content',NULL,NULL),(87,'Content Usage Type','Always','',1,'content',NULL,NULL),(88,'Content Usage Type','Often','',3,'content',NULL,NULL),(89,'Content Usage Type','Sometimes','',5,'content',NULL,NULL),(90,'Content Usage Type','Rarely','',4,'content',NULL,NULL),(91,'Content Usage Type','Never','',2,'content',NULL,NULL),(92,'Contributor Type','System User','',3,NULL,NULL,NULL),(93,'Contributor Type','Role Type','',2,NULL,NULL,NULL),(94,'Contributor Type','Institution Type','',1,NULL,NULL,NULL),(95,'Costing Type','Free','',1,NULL,NULL,NULL),(96,'Costing Type','Subscription','',3,NULL,NULL,NULL),(97,'Costing Type','License Fee','',2,NULL,NULL,NULL),(98,'Coverage Type','Spacial Topic - Geometry (Where)','',1,'content',NULL,NULL),(99,'Coverage Type','Temporal Topic - Synchronization (When)','',2,'content',NULL,NULL),(100,'Creator Type','System User','',3,'lecturer',NULL,NULL),(101,'Creator Type','Role Type','',2,'lecturer',NULL,NULL),(102,'Creator Type','Institution Type','',1,'lecturer',NULL,NULL),(103,'Date Time Type','Date Time Stamp','',1,NULL,NULL,NULL),(104,'Department Type','Department of Auditing','',1,'storyline',NULL,NULL),(105,'Department Type','Department of Financial Accounting','',2,'storyline',NULL,NULL),(106,'Department Type','Department of Management Accounting','',3,'storyline',NULL,NULL),(107,'Department Type','Department of Taxation','',4,'storyline',NULL,NULL),(108,'Department Type','Department of Financial Governance','',5,'storyline',NULL,NULL),(109,'Department Type','Department of Financial Intelligence','',6,'storyline',NULL,NULL),(110,'Department Type','Department of Agriculture and Animal Health','',7,'storyline',NULL,NULL),(111,'Department Type','Department of Life and Consumer Sciences','',8,'storyline',NULL,NULL),(112,'Department Type','Department of Environmental Sciences','',9,'storyline',NULL,NULL),(113,'Department Type','Department of Geography','',10,'storyline',NULL,NULL),(114,'Department Type','Department of Decision Sciences','',11,'storyline',NULL,NULL),(115,'Department Type','Department of Economics','',12,'storyline',NULL,NULL),(116,'Department Type','Department of Finance, Risk Management and Banking','',13,'storyline',NULL,NULL),(117,'Department Type','Department of Business Management','',14,'storyline',NULL,NULL),(118,'Department Type','Department of Human Resources Management','',15,'storyline',NULL,NULL),(119,'Department Type','Department of Industrial and Organisational Psychology','',16,'storyline',NULL,NULL),(120,'Department Type','Department of Marketing and Retail','',17,'storyline',NULL,NULL),(121,'Department Type','South African Journal of Labour Relations Management','',18,'storyline',NULL,NULL),(122,'Department Type','Entrepreneurship, Supply Chain, Transport, Tourism and Logistics Management','',19,'storyline',NULL,NULL),(123,'Department Type','Department of Public Administration and Management','',20,'storyline',NULL,NULL),(124,'Department Type','Department of Operations Management','',21,'storyline',NULL,NULL),(125,'Department Type','Department of Adult Basic Education','',22,'storyline',NULL,NULL),(126,'Department Type','Department of Educational Foundations','',23,'storyline',NULL,NULL),(127,'Department Type','Department of Psychology of Education','',24,'storyline',NULL,NULL),(128,'Department Type','Department of Inclusive Education','',25,'storyline',NULL,NULL),(129,'Department Type','Department of Educational Leadership and Management','',26,'storyline',NULL,NULL),(130,'Department Type','Department of Mathematics Education','',27,'storyline',NULL,NULL),(131,'Department Type','Department of Science and Technology Education','',28,'storyline',NULL,NULL),(132,'Department Type','Department of Language Education, Arts and Culture','',29,'storyline',NULL,NULL),(133,'Department Type','Department of Curriculum and Instructional Studies','',30,'storyline',NULL,NULL),(134,'Department Type','Department of Early Childhood Education','',31,'storyline',NULL,NULL),(135,'Department Type','Department of African Languages','',32,'storyline',NULL,NULL),(136,'Department Type','Department of Afrikaans and Theory of Literature','',33,'storyline',NULL,NULL),(137,'Department Type','Department of Art History, Visual Arts and Musicology','',34,'storyline',NULL,NULL),(138,'Department Type','Department of Communication Science','',35,'storyline',NULL,NULL),(139,'Department Type','Department of English Studies','',36,'storyline',NULL,NULL),(140,'Department Type','Department of Information Science','',37,'storyline',NULL,NULL),(141,'Department Type','Department of Linguistics and Modern Languages','',38,'storyline',NULL,NULL),(142,'Department Type','Department of Anthropology and Archaeology','',39,'storyline',NULL,NULL),(143,'Department Type','Department of Biblical and Ancient Studies','',40,'storyline',NULL,NULL),(144,'Department Type','Department of Christian Spirituality, Church History and Missiology','',41,'storyline',NULL,NULL),(145,'Department Type','Department of History','',42,'storyline',NULL,NULL),(146,'Department Type','Department of Philosophy, Practical and Systematic Theology','',43,'storyline',NULL,NULL),(147,'Department Type','Department of Religious Studies and Arabic','',44,'storyline',NULL,NULL),(148,'Department Type','Department of Development Studies','',45,'storyline',NULL,NULL),(149,'Department Type','Department of Health Studies','',46,'storyline',NULL,NULL),(150,'Department Type','Department of Political Sciences','',47,'storyline',NULL,NULL),(151,'Department Type','Department of Psychology','',48,'storyline',NULL,NULL),(152,'Department Type','Department of Social Work','',49,'storyline',NULL,NULL),(153,'Department Type','Department of Sociology','',50,'storyline',NULL,NULL),(154,'Department Type','Department of Criminal and Procedural Law','',51,'storyline',NULL,NULL),(155,'Department Type','Department of Jurisprudence','',52,'storyline',NULL,NULL),(156,'Department Type','Department of Mercantile Law','',53,'storyline',NULL,NULL),(157,'Department Type','Department of Private Law','',54,'storyline',NULL,NULL),(158,'Department Type','Department of Public, Constitutional and International Law','',55,'storyline',NULL,NULL),(159,'Department Type','Department of Criminology and Security Science','',56,'storyline',NULL,NULL),(160,'Department Type','Department of Corrections Management','',57,'storyline',NULL,NULL),(161,'Department Type','Department of Police Practice','',58,'storyline',NULL,NULL),(162,'Department Type','Department of Chemistry','',59,'storyline',NULL,NULL),(163,'Department Type','Department of Mathematical Sciences','',60,'storyline',NULL,NULL),(164,'Department Type','Department of Physics','',61,'storyline',NULL,NULL),(165,'Department Type','Department of Statistics','',62,'storyline',NULL,NULL),(166,'Department Type','Department of Civil and Chemical Engineering','',63,'storyline',NULL,NULL),(167,'Department Type','Department of Mechanical and Industrial Engineering','',64,'storyline',NULL,NULL),(168,'Department Type','Department of Electrical and Mining Engineering','',65,'storyline',NULL,NULL),(169,'Department Type','Postgraduate Administration Department','',66,'storyline',NULL,NULL),(170,'Discipline Type','Performing Arts','arts',1,'content:storyline',NULL,NULL),(171,'Discipline Type','Visual Arts','arts',2,'content:storyline',NULL,NULL),(172,'Distribution Type','On campus','',2,NULL,NULL,NULL),(173,'Distribution Type','Correspondence','',3,NULL,NULL,NULL),(174,'Distribution Type','Online','',1,NULL,NULL,NULL),(175,'Duration Type','Course Duration','',2,'storyline',NULL,NULL),(176,'Duration Type','Evaluation Duration','',3,'storyline',NULL,NULL),(177,'Duration Type','Certification Duration','',1,'storyline',NULL,NULL),(178,'Duration Type','Study Duration','',5,'storyline',NULL,NULL),(179,'Duration Type','Online Interaction Duration','',4,'storyline',NULL,NULL),(180,'Enrolment Type','Full-time','',1,'student',NULL,NULL),(181,'Enrolment Type','Part-time','',2,'student',NULL,NULL),(182,'Expiration Type','Time Cycle','',2,'storyline',NULL,NULL),(183,'Expiration Type','Event','',1,'storyline',NULL,NULL),(184,'Goal Type','Professional Qualification','',3,'student',NULL,NULL),(185,'Goal Type','Certification','',2,'student',NULL,NULL),(186,'Goal Type','Continued Education','',1,'student',NULL,NULL),(187,'Goal Type','Research','',4,'student',NULL,NULL),(188,'Goal Type','Professional Registration ','',5,'student',NULL,NULL),(189,'Institute Type','Institute of Gender Studies','',4,'storyline',NULL,NULL),(190,'Institute Type','Research Institute for Theology and Religion','',8,'storyline',NULL,NULL),(191,'Institute Type','WIPHOLD-Brigalia Ban Chair in Electoral Democracy in Africa','',9,'storyline',NULL,NULL),(192,'Institute Type','Institute for Dispute Resolution in Africa (IDRA)','',3,'storyline',NULL,NULL),(193,'Institute Type','Archie Mafeje Research Institute (AMRI)','',1,'storyline',NULL,NULL),(194,'Institute Type','Institute for African Renaissance Studies (IARS)','',2,'storyline',NULL,NULL),(195,'Institute Type','Institute for Open and Distance Learning (IODL)','',5,'storyline',NULL,NULL),(196,'Institute Type','Institute for Science and Technology Education (ISTE)','',6,'storyline',NULL,NULL),(197,'Institute Type','Institute for Social and Health Studies (ISHS)','',7,'storyline',NULL,NULL),(198,'Institution Type','Faculty','',4,'lecturer:storyline:student',NULL,NULL),(199,'Institution Type','School','',6,'lecturer:storyline:student',NULL,NULL),(200,'Institution Type','Department','',3,'lecturer:storyline:student',NULL,NULL),(201,'Institution Type','College','',2,'lecturer:storyline:student',NULL,NULL),(202,'Institution Type','Academy','',1,'lecturer:storyline:student',NULL,NULL),(203,'Institution Type','Institute','',5,'lecturer:storyline:student',NULL,NULL),(204,'Interest Type','Course','',2,'student',NULL,NULL),(205,'Interest Type','Module','',4,'student',NULL,NULL),(206,'Interest Type','Subject','',5,'student',NULL,NULL),(207,'Interest Type','Topic','',6,'student',NULL,NULL),(208,'Interest Type','Idea','',3,'student',NULL,NULL),(209,'Interest Type','Asset','',1,'student',NULL,NULL),(210,'License Type','OSI approved Open Source','',3,NULL,NULL,NULL),(211,'License Type','Public Domain','',4,NULL,NULL,NULL),(212,'License Type','Creative Commons Attribution','',2,NULL,NULL,NULL),(213,'License Type','Commercial','',1,NULL,NULL,NULL),(214,'License Type','Unisa specific','',5,NULL,NULL,NULL),(215,'Location Type','International students','',2,NULL,NULL,NULL),(216,'Location Type','RSA students','',3,NULL,NULL,NULL),(217,'Location Type','Location bound students','',1,NULL,NULL,NULL),(218,'Pedagogical Type','Outcome Based','',2,'content:storyline',NULL,NULL),(219,'Pedagogical Type','Schedule Based','',3,'content:storyline',NULL,NULL),(220,'Pedagogical Type','Content Based','',1,'content:storyline',NULL,NULL),(221,'Physical Location Type','Physical Address','',2,NULL,NULL,NULL),(222,'Physical Location Type','GPS Coordinates','',1,NULL,NULL,NULL),(223,'Profile Type','Language','',4,'student',NULL,NULL),(224,'Profile Type','Ethnicity','',3,'student',NULL,NULL),(225,'Profile Type','Race','',6,'student',NULL,NULL),(226,'Profile Type','Sex','',7,'student',NULL,NULL),(227,'Profile Type','Date-of-birth','',2,'student',NULL,NULL),(228,'Profile Type','Autonomous','',1,'student',NULL,NULL),(229,'Profile Type','Nationality','',5,'student',NULL,NULL),(230,'Publisher Type','System User','',3,NULL,NULL,NULL),(231,'Publisher Type','Role Type','',2,NULL,NULL,NULL),(232,'Publisher Type','Institution Type','',1,NULL,NULL,NULL),(233,'Qualification Type','Certificate','',1,'storyline:student',NULL,NULL),(234,'Qualification Type','Diploma','',3,'storyline:student',NULL,NULL),(235,'Qualification Type','Degree','',2,'storyline:student',NULL,NULL),(236,'Qualification Type','Honours Degree','',5,'storyline:student',NULL,NULL),(237,'Qualification Type','Masters Degree','',6,'storyline:student',NULL,NULL),(238,'Qualification Type','Doctoral Degree','',4,'storyline:student',NULL,NULL),(239,'Rating Type','Always','Popularity',1,'content',NULL,NULL),(240,'Rating Type','Often','Popularity',3,'content',NULL,NULL),(241,'Rating Type','Sometimes','Popularity',5,'content',NULL,NULL),(242,'Rating Type','Rarely','Popularity',4,'content',NULL,NULL),(243,'Rating Type','Never','Popularity',2,'content',NULL,NULL),(244,'Revision Type','Planning','',5,'content',NULL,NULL),(245,'Revision Type','Pre-Alpha','',6,'content',NULL,NULL),(246,'Revision Type','Alpha','',1,'content',NULL,NULL),(247,'Revision Type','Beta','',2,'content',NULL,NULL),(248,'Revision Type','Production','',7,'content',NULL,NULL),(249,'Revision Type','Mature','',4,'content',NULL,NULL),(250,'Revision Type','Inactive','',3,'content',NULL,NULL),(251,'Risk Type','System','',3,NULL,NULL,NULL),(252,'Risk Type','Integration','',2,NULL,NULL,NULL),(253,'Risk Type','3rd Party Components','',1,NULL,NULL,NULL),(254,'Role Type','Student','',8,'content:user',NULL,NULL),(255,'Role Type','Lecturer','',5,'content:user',NULL,NULL),(256,'Role Type','Tutor','',10,'content:user',NULL,NULL),(257,'Role Type','Administrator','',1,'content:user',NULL,NULL),(258,'Role Type','Proctor','',7,'content:user',NULL,NULL),(259,'Role Type','Facilitator','',4,'content:user',NULL,NULL),(260,'Role Type','Assistant','',2,'content:user',NULL,NULL),(261,'Role Type','Editor','',3,'content:user',NULL,NULL),(262,'Role Type','Moderator','',6,'content:user',NULL,NULL),(263,'Role Type','Subject Matter Expert','',9,'content:user',NULL,NULL),(264,'School Type','School of Accountancy','',1,'storyline',NULL,NULL),(265,'School Type','School of Applied Accountancy','',3,'storyline',NULL,NULL),(266,'School Type','School of Agriculture and Life Sciences','',2,'storyline',NULL,NULL),(267,'School Type','School of Environmental Sciences','',6,'storyline',NULL,NULL),(268,'School Type','School of Educational Studies','',5,'storyline',NULL,NULL),(269,'School Type','School of Teacher Education','',10,'storyline',NULL,NULL),(270,'School Type','School of Arts','',4,'storyline',NULL,NULL),(271,'School Type','School of Humanities','',7,'storyline',NULL,NULL),(272,'School Type','School of Social Sciences','',9,'storyline',NULL,NULL),(273,'School Type','School of Interdisciplinary Research and Graduate Studies (SIRGS)','',8,'storyline',NULL,NULL),(274,'Solution Location Type','Storyline','',4,NULL,NULL,NULL),(275,'Solution Location Type','Apps repository','',2,NULL,NULL,NULL),(276,'Solution Location Type','Lecturer Interface','',3,NULL,NULL,NULL),(277,'Solution Location Type','Student Interface','',5,NULL,NULL,NULL),(278,'Solution Location Type','Administrator Interface','',1,NULL,NULL,NULL),(279,'Status Type','Potential student','',2,'student',NULL,NULL),(280,'Status Type','Registered student','',3,'student',NULL,NULL),(281,'Status Type','Alumni','',1,'student',NULL,NULL),(282,'Student Cycle Type','Undergraduate','',3,'student',NULL,NULL),(283,'Student Cycle Type','Graduate','',1,'student',NULL,NULL),(284,'Student Cycle Type','Postgraduate','',2,'student',NULL,NULL),(285,'Study Constraint Type','Time','',3,NULL,NULL,NULL),(286,'Study Constraint Type','Money','',1,NULL,NULL,NULL),(287,'Study Constraint Type','Technology','',2,NULL,NULL,NULL),(288,'Study Constraint Type','Application','',2,NULL,NULL,NULL),(289,'Study Constraint Type','Admittance','',1,NULL,NULL,NULL),(290,'Study Constraint Type','Registration','',5,NULL,NULL,NULL),(291,'Study Constraint Type','Study','',6,NULL,NULL,NULL),(292,'Study Constraint Type','Examination','',3,NULL,NULL,NULL),(293,'Study Constraint Type','Graduation','',4,NULL,NULL,NULL),(294,'Study Type','Revision','',3,'student',NULL,NULL),(295,'Study Type','1st registration','',1,'student',NULL,NULL),(296,'Study Type','Repeat Student','',2,'student',NULL,NULL),(297,'System Use Type','Front end use','',2,NULL,NULL,NULL),(298,'System Use Type','Back end use','',1,NULL,NULL,NULL),(299,'Term Cycle Type','1st Term','',1,'student',NULL,NULL),(300,'Term Cycle Type','2nd Term','',2,'student',NULL,NULL),(301,'Term Cycle Type','3rd Term','',3,'student',NULL,NULL),(302,'Term Cycle Type','4th Term','',4,'student',NULL,NULL),(303,'Unit Type','Applied Behavioural Ecology and Ecosystem Research Unit','',3,NULL,NULL,NULL),(304,'Unit Type','Anthropology and Archaeology Museum','',2,NULL,NULL,NULL),(305,'Unit Type','African Languages Literary Information Museum','',1,NULL,NULL,NULL),(306,'Unit Type','Unisa Art Gallery','',4,NULL,NULL,NULL),(307,'Unit Type','Unisa Law Clinic','',5,NULL,NULL,NULL);
/*!40000 ALTER TABLE `metadata_store` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `migrations`
--
DROP TABLE IF EXISTS `migrations`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `migrations` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`migration` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`batch` int(11) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=26 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `migrations`
--
LOCK TABLES `migrations` WRITE;
/*!40000 ALTER TABLE `migrations` DISABLE KEYS */;
INSERT INTO `migrations` VALUES (1,'2016_06_01_000001_create_oauth_auth_codes_table',1),(2,'2016_06_01_000002_create_oauth_access_tokens_table',2),(3,'2016_06_01_000003_create_oauth_refresh_tokens_table',2),(4,'2016_06_01_000004_create_oauth_clients_table',2),(5,'2016_06_01_000005_create_oauth_personal_access_clients_table',2),(6,'2017_03_20_075834_create_graphs_table',3),(13,'2017_05_20_085659_create_orders_table',5),(14,'2017_05_20_085944_create_discounts_table',5),(10,'2017_05_20_085138_create_currencies_table',4),(15,'2017_09_06_141344_create_content_table',6),(16,'2017_09_06_141440_create_content_lk_categories_table',6),(17,'2017_09_06_141456_create_content_categories_table',6),(18,'2017_09_06_141522_update_storyline_items_table',7),(19,'2017_09_08_121506_update_content_table',8),(20,'2017_09_07_103511_create_course_metadata_table',9),(21,'2017_09_08_122525_create_metadata_store_table',9),(22,'2017_09_12_103511_create_student_progress_table',9),(23,'2017_09_20_082649_add_clone_content_table',10),(24,'2017_09_15_113900_alter_student_progress_table',11),(25,'2017_09_18_113900_alter_metadata_store_table',11);
/*!40000 ALTER TABLE `migrations` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `oauth_access_tokens`
--
DROP TABLE IF EXISTS `oauth_access_tokens`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `oauth_access_tokens` (
`id` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL,
`user_id` int(11) DEFAULT NULL,
`client_id` int(11) NOT NULL,
`name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`scopes` text COLLATE utf8mb4_unicode_ci,
`revoked` tinyint(1) NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`expires_at` datetime DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `oauth_access_tokens_user_id_index` (`user_id`),
KEY `oauth_access_tokens_client_id_index` (`client_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;