-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdb-v0.14.7_2022-01-06_11-17-35.dump
1004 lines (516 loc) · 752 KB
/
db-v0.14.7_2022-01-06_11-17-35.dump
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
BEGIN TRANSACTION;CREATE TABLE "analytics_pingbacknotification" ("id" varchar(50) NOT NULL PRIMARY KEY, "version_range" varchar(50) NOT NULL, "timestamp" date NOT NULL, "link_url" varchar(150) NOT NULL, "i18n" text NOT NULL, "active" bool NOT NULL, "source" varchar(20) NOT NULL);CREATE TABLE "analytics_pingbacknotificationdismissed" ("id" integer NOT NULL PRIMARY KEY AUTOINCREMENT, "notification_id" varchar(50) NOT NULL REFERENCES "analytics_pingbacknotification" ("id"), "user_id" char(32) NOT NULL REFERENCES "kolibriauth_facilityuser" ("id"));CREATE TABLE "auth_group" ("id" integer NOT NULL PRIMARY KEY AUTOINCREMENT, "name" varchar(80) NOT NULL UNIQUE);CREATE TABLE "auth_group_permissions" ("id" integer NOT NULL PRIMARY KEY AUTOINCREMENT, "group_id" integer NOT NULL REFERENCES "auth_group" ("id"), "permission_id" integer NOT NULL REFERENCES "auth_permission" ("id"));CREATE TABLE "auth_permission" ("id" integer NOT NULL PRIMARY KEY AUTOINCREMENT, "content_type_id" integer NOT NULL REFERENCES "django_content_type" ("id"), "codename" varchar(100) NOT NULL, "name" varchar(255) NOT NULL);INSERT INTO "auth_permission" VALUES(1,1,'add_logentry','Can add log entry');INSERT INTO "auth_permission" VALUES(2,1,'change_logentry','Can change log entry');INSERT INTO "auth_permission" VALUES(3,1,'delete_logentry','Can delete log entry');INSERT INTO "auth_permission" VALUES(4,2,'add_permission','Can add permission');INSERT INTO "auth_permission" VALUES(5,2,'change_permission','Can change permission');INSERT INTO "auth_permission" VALUES(6,2,'delete_permission','Can delete permission');INSERT INTO "auth_permission" VALUES(7,3,'add_group','Can add group');INSERT INTO "auth_permission" VALUES(8,3,'change_group','Can change group');INSERT INTO "auth_permission" VALUES(9,3,'delete_group','Can delete group');INSERT INTO "auth_permission" VALUES(10,4,'add_contenttype','Can add content type');INSERT INTO "auth_permission" VALUES(11,4,'change_contenttype','Can change content type');INSERT INTO "auth_permission" VALUES(12,4,'delete_contenttype','Can delete content type');INSERT INTO "auth_permission" VALUES(13,5,'add_session','Can add session');INSERT INTO "auth_permission" VALUES(14,5,'change_session','Can change session');INSERT INTO "auth_permission" VALUES(15,5,'delete_session','Can delete session');INSERT INTO "auth_permission" VALUES(16,6,'add_collection','Can add collection');INSERT INTO "auth_permission" VALUES(17,6,'change_collection','Can change collection');INSERT INTO "auth_permission" VALUES(18,6,'delete_collection','Can delete collection');INSERT INTO "auth_permission" VALUES(19,7,'add_facilitydataset','Can add facility dataset');INSERT INTO "auth_permission" VALUES(20,7,'change_facilitydataset','Can change facility dataset');INSERT INTO "auth_permission" VALUES(21,7,'delete_facilitydataset','Can delete facility dataset');INSERT INTO "auth_permission" VALUES(22,8,'add_facilityuser','Can add facility user');INSERT INTO "auth_permission" VALUES(23,8,'change_facilityuser','Can change facility user');INSERT INTO "auth_permission" VALUES(24,8,'delete_facilityuser','Can delete facility user');INSERT INTO "auth_permission" VALUES(25,9,'add_membership','Can add membership');INSERT INTO "auth_permission" VALUES(26,9,'change_membership','Can change membership');INSERT INTO "auth_permission" VALUES(27,9,'delete_membership','Can delete membership');INSERT INTO "auth_permission" VALUES(28,10,'add_role','Can add role');INSERT INTO "auth_permission" VALUES(29,10,'change_role','Can change role');INSERT INTO "auth_permission" VALUES(30,10,'delete_role','Can delete role');INSERT INTO "auth_permission" VALUES(31,6,'add_classroom','Can add classroom');INSERT INTO "auth_permission" VALUES(32,6,'change_classroom','Can change classroom');INSERT INTO "auth_permission" VALUES(33,6,'delete_classroom','Can delete classroom');INSERT INTO "auth_permission" VALUES(34,6,'add_facility','Can add facility');INSERT INTO "auth_permission" VALUES(35,6,'change_facility','Can change facility');INSERT INTO "auth_permission" VALUES(36,6,'delete_facility','Can delete facility');INSERT INTO "auth_permission" VALUES(37,6,'add_learnergroup','Can add learner group');INSERT INTO "auth_permission" VALUES(38,6,'change_learnergroup','Can change learner group');INSERT INTO "auth_permission" VALUES(39,6,'delete_learnergroup','Can delete learner group');INSERT INTO "auth_permission" VALUES(40,6,'add_adhocgroup','Can add ad hoc group');INSERT INTO "auth_permission" VALUES(41,6,'change_adhocgroup','Can change ad hoc group');INSERT INTO "auth_permission" VALUES(42,6,'delete_adhocgroup','Can delete ad hoc group');INSERT INTO "auth_permission" VALUES(43,15,'add_assessmentmetadata','Can add assessment meta data');INSERT INTO "auth_permission" VALUES(44,15,'change_assessmentmetadata','Can change assessment meta data');INSERT INTO "auth_permission" VALUES(45,15,'delete_assessmentmetadata','Can delete assessment meta data');INSERT INTO "auth_permission" VALUES(46,16,'add_channelmetadata','Can add channel metadata');INSERT INTO "auth_permission" VALUES(47,16,'change_channelmetadata','Can change channel metadata');INSERT INTO "auth_permission" VALUES(48,16,'delete_channelmetadata','Can delete channel metadata');INSERT INTO "auth_permission" VALUES(49,17,'add_contentnode','Can add content node');INSERT INTO "auth_permission" VALUES(50,17,'change_contentnode','Can change content node');INSERT INTO "auth_permission" VALUES(51,17,'delete_contentnode','Can delete content node');INSERT INTO "auth_permission" VALUES(52,18,'add_contenttag','Can add content tag');INSERT INTO "auth_permission" VALUES(53,18,'change_contenttag','Can change content tag');INSERT INTO "auth_permission" VALUES(54,18,'delete_contenttag','Can delete content tag');INSERT INTO "auth_permission" VALUES(55,19,'add_file','Can add file');INSERT INTO "auth_permission" VALUES(56,19,'change_file','Can change file');INSERT INTO "auth_permission" VALUES(57,19,'delete_file','Can delete file');INSERT INTO "auth_permission" VALUES(58,20,'add_language','Can add language');INSERT INTO "auth_permission" VALUES(59,20,'change_language','Can change language');INSERT INTO "auth_permission" VALUES(60,20,'delete_language','Can delete language');INSERT INTO "auth_permission" VALUES(61,21,'add_localfile','Can add local file');INSERT INTO "auth_permission" VALUES(62,21,'change_localfile','Can change local file');INSERT INTO "auth_permission" VALUES(63,21,'delete_localfile','Can delete local file');INSERT INTO "auth_permission" VALUES(64,22,'add_attemptlog','Can add attempt log');INSERT INTO "auth_permission" VALUES(65,22,'change_attemptlog','Can change attempt log');INSERT INTO "auth_permission" VALUES(66,22,'delete_attemptlog','Can delete attempt log');INSERT INTO "auth_permission" VALUES(67,23,'add_contentsessionlog','Can add content session log');INSERT INTO "auth_permission" VALUES(68,23,'change_contentsessionlog','Can change content session log');INSERT INTO "auth_permission" VALUES(69,23,'delete_contentsessionlog','Can delete content session log');INSERT INTO "auth_permission" VALUES(70,24,'add_contentsummarylog','Can add content summary log');INSERT INTO "auth_permission" VALUES(71,24,'change_contentsummarylog','Can change content summary log');INSERT INTO "auth_permission" VALUES(72,24,'delete_contentsummarylog','Can delete content summary log');INSERT INTO "auth_permission" VALUES(73,25,'add_examattemptlog','Can add exam attempt log');INSERT INTO "auth_permission" VALUES(74,25,'change_examattemptlog','Can change exam attempt log');INSERT INTO "auth_permission" VALUES(75,25,'delete_examattemptlog','Can delete exam attempt log');INSERT INTO "auth_permission" VALUES(76,26,'add_examlog','Can add exam log');INSERT INTO "auth_permission" VALUES(77,26,'change_examlog','Can change exam log');INSERT INTO "auth_permission" VALUES(78,26,'delete_examlog','Can delete exam log');INSERT INTO "auth_permission" VALUES(79,27,'add_masterylog','Can add mastery log');INSERT INTO "auth_permission" VALUES(80,27,'change_masterylog','Can change mastery log');INSERT INTO "auth_permission" VALUES(81,27,'delete_masterylog','Can delete mastery log');INSERT INTO "auth_permission" VALUES(82,28,'add_usersessionlog','Can add user session log');INSERT INTO "auth_permission" VALUES(83,28,'change_usersessionlog','Can change user session log');INSERT INTO "auth_permission" VALUES(84,28,'delete_usersessionlog','Can delete user session log');INSERT INTO "auth_permission" VALUES(85,29,'add_learnerprogressnotification','Can add learner progress notification');INSERT INTO "auth_permission" VALUES(86,29,'change_learnerprogressnotification','Can change learner progress notification');INSERT INTO "auth_permission" VALUES(87,29,'delete_learnerprogressnotification','Can delete learner progress notification');INSERT INTO "auth_permission" VALUES(88,30,'add_notificationslog','Can add notifications log');INSERT INTO "auth_permission" VALUES(89,30,'change_notificationslog','Can change notifications log');INSERT INTO "auth_permission" VALUES(90,30,'delete_notificationslog','Can delete notifications log');INSERT INTO "auth_permission" VALUES(91,31,'add_exam','Can add exam');INSERT INTO "auth_permission" VALUES(92,31,'change_exam','Can change exam');INSERT INTO "auth_permission" VALUES(93,31,'delete_exam','Can delete exam');INSERT INTO "auth_permission" VALUES(94,32,'add_examassignment','Can add exam assignment');INSERT INTO "auth_permission" VALUES(95,32,'change_examassignment','Can change exam assignment');INSERT INTO "auth_permission" VALUES(96,32,'delete_examassignment','Can delete exam assignment');INSERT INTO "auth_permission" VALUES(97,33,'add_devicepermissions','Can add device permissions');INSERT INTO "auth_permission" VALUES(98,33,'change_devicepermissions','Can change device permissions');INSERT INTO "auth_permission" VALUES(99,33,'delete_devicepermissions','Can delete device permissions');INSERT INTO "auth_permission" VALUES(100,34,'add_devicesettings','Can add device settings');INSERT INTO "auth_permission" VALUES(101,34,'change_devicesettings','Can change device settings');INSERT INTO "auth_permission" VALUES(102,34,'delete_devicesettings','Can delete device settings');INSERT INTO "auth_permission" VALUES(103,35,'add_contentcachekey','Can add content cache key');INSERT INTO "auth_permission" VALUES(104,35,'change_contentcachekey','Can change content cache key');INSERT INTO "auth_permission" VALUES(105,35,'delete_contentcachekey','Can delete content cache key');INSERT INTO "auth_permission" VALUES(106,36,'add_deviceappkey','Can add device app key');INSERT INTO "auth_permission" VALUES(107,36,'change_deviceappkey','Can change device app key');INSERT INTO "auth_permission" VALUES(108,36,'delete_deviceappkey','Can delete device app key');INSERT INTO "auth_permission" VALUES(109,37,'add_sqlitelock','Can add sq lite lock');INSERT INTO "auth_permission" VALUES(110,37,'change_sqlitelock','Can change sq lite lock');INSERT INTO "auth_permission" VALUES(111,37,'delete_sqlitelock','Can delete sq lite lock');INSERT INTO "auth_permission" VALUES(112,38,'add_networklocation','Can add network location');INSERT INTO "auth_permission" VALUES(113,38,'change_networklocation','Can change network location');INSERT INTO "auth_permission" VALUES(114,38,'delete_networklocation','Can delete network location');INSERT INTO "auth_permission" VALUES(115,38,'add_dynamicnetworklocation','Can add dynamic network location');INSERT INTO "auth_permission" VALUES(116,38,'change_dynamicnetworklocation','Can change dynamic network location');INSERT INTO "auth_permission" VALUES(117,38,'delete_dynamicnetworklocation','Can delete dynamic network location');INSERT INTO "auth_permission" VALUES(118,38,'add_staticnetworklocation','Can add static network location');INSERT INTO "auth_permission" VALUES(119,38,'change_staticnetworklocation','Can change static network location');INSERT INTO "auth_permission" VALUES(120,38,'delete_staticnetworklocation','Can delete static network location');INSERT INTO "auth_permission" VALUES(121,41,'add_lesson','Can add lesson');INSERT INTO "auth_permission" VALUES(122,41,'change_lesson','Can change lesson');INSERT INTO "auth_permission" VALUES(123,41,'delete_lesson','Can delete lesson');INSERT INTO "auth_permission" VALUES(124,42,'add_lessonassignment','Can add lesson assignment');INSERT INTO "auth_permission" VALUES(125,42,'change_lessonassignment','Can change lesson assignment');INSERT INTO "auth_permission" VALUES(126,42,'delete_lessonassignment','Can delete lesson assignment');INSERT INTO "auth_permission" VALUES(127,43,'add_pingbacknotification','Can add pingback notification');INSERT INTO "auth_permission" VALUES(128,43,'change_pingbacknotification','Can change pingback notification');INSERT INTO "auth_permission" VALUES(129,43,'delete_pingbacknotification','Can delete pingback notification');INSERT INTO "auth_permission" VALUES(130,44,'add_pingbacknotificationdismissed','Can add pingback notification dismissed');INSERT INTO "auth_permission" VALUES(131,44,'change_pingbacknotificationdismissed','Can change pingback notification dismissed');INSERT INTO "auth_permission" VALUES(132,44,'delete_pingbacknotificationdismissed','Can delete pingback notification dismissed');INSERT INTO "auth_permission" VALUES(133,45,'add_buffer','Can add buffer');INSERT INTO "auth_permission" VALUES(134,45,'change_buffer','Can change buffer');INSERT INTO "auth_permission" VALUES(135,45,'delete_buffer','Can delete buffer');INSERT INTO "auth_permission" VALUES(136,46,'add_certificate','Can add certificate');INSERT INTO "auth_permission" VALUES(137,46,'change_certificate','Can change certificate');INSERT INTO "auth_permission" VALUES(138,46,'delete_certificate','Can delete certificate');INSERT INTO "auth_permission" VALUES(139,47,'add_databaseidmodel','Can add database id model');INSERT INTO "auth_permission" VALUES(140,47,'change_databaseidmodel','Can change database id model');INSERT INTO "auth_permission" VALUES(141,47,'delete_databaseidmodel','Can delete database id model');INSERT INTO "auth_permission" VALUES(142,48,'add_databasemaxcounter','Can add database max counter');INSERT INTO "auth_permission" VALUES(143,48,'change_databasemaxcounter','Can change database max counter');INSERT INTO "auth_permission" VALUES(144,48,'delete_databasemaxcounter','Can delete database max counter');INSERT INTO "auth_permission" VALUES(145,49,'add_deletedmodels','Can add deleted models');INSERT INTO "auth_permission" VALUES(146,49,'change_deletedmodels','Can change deleted models');INSERT INTO "auth_permission" VALUES(147,49,'delete_deletedmodels','Can delete deleted models');INSERT INTO "auth_permission" VALUES(148,50,'add_instanceidmodel','Can add instance id model');INSERT INTO "auth_permission" VALUES(149,50,'change_instanceidmodel','Can change instance id model');INSERT INTO "auth_permission" VALUES(150,50,'delete_instanceidmodel','Can delete instance id model');INSERT INTO "auth_permission" VALUES(151,51,'add_recordmaxcounter','Can add record max counter');INSERT INTO "auth_permission" VALUES(152,51,'change_recordmaxcounter','Can change record max counter');INSERT INTO "auth_permission" VALUES(153,51,'delete_recordmaxcounter','Can delete record max counter');INSERT INTO "auth_permission" VALUES(154,52,'add_recordmaxcounterbuffer','Can add record max counter buffer');INSERT INTO "auth_permission" VALUES(155,52,'change_recordmaxcounterbuffer','Can change record max counter buffer');INSERT INTO "auth_permission" VALUES(156,52,'delete_recordmaxcounterbuffer','Can delete record max counter buffer');INSERT INTO "auth_permission" VALUES(157,53,'add_scopedefinition','Can add scope definition');INSERT INTO "auth_permission" VALUES(158,53,'change_scopedefinition','Can change scope definition');INSERT INTO "auth_permission" VALUES(159,53,'delete_scopedefinition','Can delete scope definition');INSERT INTO "auth_permission" VALUES(160,54,'add_store','Can add store');INSERT INTO "auth_permission" VALUES(161,54,'change_store','Can change store');INSERT INTO "auth_permission" VALUES(162,54,'delete_store','Can delete store');INSERT INTO "auth_permission" VALUES(163,55,'add_syncsession','Can add sync session');INSERT INTO "auth_permission" VALUES(164,55,'change_syncsession','Can change sync session');INSERT INTO "auth_permission" VALUES(165,55,'delete_syncsession','Can delete sync session');INSERT INTO "auth_permission" VALUES(166,56,'add_transfersession','Can add transfer session');INSERT INTO "auth_permission" VALUES(167,56,'change_transfersession','Can change transfer session');INSERT INTO "auth_permission" VALUES(168,56,'delete_transfersession','Can delete transfer session');INSERT INTO "auth_permission" VALUES(169,57,'add_nonce','Can add nonce');INSERT INTO "auth_permission" VALUES(170,57,'change_nonce','Can change nonce');INSERT INTO "auth_permission" VALUES(171,57,'delete_nonce','Can delete nonce');INSERT INTO "auth_permission" VALUES(172,58,'add_sharedkey','Can add shared key');INSERT INTO "auth_permission" VALUES(173,58,'change_sharedkey','Can change shared key');INSERT INTO "auth_permission" VALUES(174,58,'delete_sharedkey','Can delete shared key');INSERT INTO "auth_permission" VALUES(175,59,'add_harddeletedmodels','Can add hard deleted models');INSERT INTO "auth_permission" VALUES(176,59,'change_harddeletedmodels','Can change hard deleted models');INSERT INTO "auth_permission" VALUES(177,59,'delete_harddeletedmodels','Can delete hard deleted models');CREATE TABLE "content_assessmentmetadata" ("id" char(32) NOT NULL PRIMARY KEY, "assessment_item_ids" text NOT NULL, "number_of_assessments" integer NOT NULL, "mastery_model" text NOT NULL, "randomize" bool NOT NULL, "is_manipulable" bool NOT NULL, "contentnode_id" char(32) NOT NULL REFERENCES "content_contentnode" ("id"));CREATE TABLE "content_channelmetadata" ("id" char(32) NOT NULL PRIMARY KEY, "name" varchar(200) NOT NULL, "description" varchar(400) NOT NULL, "author" varchar(400) NOT NULL, "version" integer NOT NULL, "thumbnail" text NOT NULL, "last_updated" varchar NULL, "min_schema_version" varchar(50) NOT NULL, "root_id" char(32) NOT NULL REFERENCES "content_contentnode" ("id"), "published_size" bigint NULL, "total_resource_count" integer NULL, "order" integer unsigned NULL, "public" bool NULL, "tagline" varchar(150) NULL);INSERT INTO "content_channelmetadata" VALUES('000409f81dbe5d1ba67101cb9fed4530','Touchable Earth (en)','Where kids teach kids about the world. Taught entirely by school age children in short videos, Touchable Earth promotes tolerance for gender, culture, and identity.','',7,'data:image/jpg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/2wBDAAgGBgcGBQgHBwcJCQgKDBQNDAsLDBkSEw8UHRofHh0aHBwgJC4nICIsIxwcKDcpLDAxNDQ0Hyc5PTgyPC4zNDL/2wBDAQkJCQwLDBgNDRgyIRwhMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjL/wAARCADiAOIDASIAAhEBAxEB/8QAHwAAAQUBAQEBAQEAAAAAAAAAAAECAwQFBgcICQoL/8QAtRAAAgEDAwIEAwUFBAQAAAF9AQIDAAQRBRIhMUEGE1FhByJxFDKBkaEII0KxwRVS0fAkM2JyggkKFhcYGRolJicoKSo0NTY3ODk6Q0RFRkdISUpTVFVWV1hZWmNkZWZnaGlqc3R1dnd4eXqDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uHi4+Tl5ufo6erx8vP09fb3+Pn6/8QAHwEAAwEBAQEBAQEBAQAAAAAAAAECAwQFBgcICQoL/8QAtREAAgECBAQDBAcFBAQAAQJ3AAECAxEEBSExBhJBUQdhcRMiMoEIFEKRobHBCSMzUvAVYnLRChYkNOEl8RcYGRomJygpKjU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6goOEhYaHiImKkpOUlZaXmJmaoqOkpaanqKmqsrO0tba3uLm6wsPExcbHyMnK0tPU1dbX2Nna4uPk5ebn6Onq8vP09fb3+Pn6/9oADAMBAAIRAxEAPwD3+iiigAooooAKKKKACiiigAopCQoySABXMax450vTC0cLG7nHG2I/KD7t0/LNBjWxFKjHmqSSR05YCoLi+tLRN9zcRQr6yOF/nXh/ib4r3gMkIvY7TPHlwNgj6sefyrhk8ZRyzl3uo5XbqZJCSfxNWlFwcr69jl+t1qkObD0213el/wBT6PuPG+gwcC880+kSFv16VnSfEbTFP7u1u3/BR/WvHLTXraZRuyrHoM5B+hq1/aDv9xVUfma1w2Er4j4Fp3Z4eJzTMac+WUVH5f8ABPU/+Fk2ueNNuP8AvtakT4j6eT+8srpfoVP9a80t7RrmBZZJ3+b+FanFhbRjlSx9Wau+OUSXxT+5EQzLHvVyX3I9St/HmhSkB5pYT/00iOPzGa17TXdLvuLW/t5T6LIM/l1r5v8AEHiTSNOZrZHQ3CnkISdvscfyrmR4wgL585lOevlGuWph6FNuMql35L/gntYWtj5q84xa+a/zPsQOp704HNfNPh/4k6palRb6l5sY/gkO9R9QeRXrOifEi1uQkepR/Z3P/LRPmQ/1H61zVIRjZqSaf9ao6XjYU5KNb3W++337fkd7RUNvcw3UKywSpJG3RkOQamrM6001dBRRRQMKKKKACiiigAooooAKKKKACiiigAoooNABWXrWvWOiW/mXUnzt9yJOWf6D096zPE/iyHRUNvb7Zb5hwvaMerf4V5lPPcX9y9xdStLM5yzMamUrHhZnnMMNenS1n+C/4Pl95qa34p1HWiyFzBanpDGev+8e/wDKvNvGviJtJtls7RsXk46jrGvr9T2rq7u7gtEYyH7qlm/2QBkk1yWl6BJqN3JruogrdXJ3wxsP9Un8OffGPpW9HB1qsldWT6s8PBc2IqvE4n3ktr9X0Xp1OJsfDN/fASzHyVbnMmSx/D/GtYeCEKf8fcm/12DH866TUdRsNGYpdzhZOyKNzH8Kyh440zft8m5C+u0fyzXtLC4Gl7tSWvr/AJHrPF5hW96lF28l/nuYsmh6xopMtq4niHLKuen+7/hXR+H9aj1KEr92ZPvoTzWjYanY6pGWtZlfHVejD6isvVtHa2uV1jT1xPEd0sa9JV7/AI4rSOFVBqth3ePVb6eXoZzxTxMXQxKtLo9tfP1Oqt7iWHlGOPQ9KxPFviyawsvs1uAt3OMKynlF7n69hWnBIklusqt+7ZQwPsRmsCx0z7dqEms3aZeQ/wCjo3/LOMfdP1I5/Gu3FKU4qFPeXXsu/wDkcGDcac3OrtHp3fRf5+hy+n+E7u8HnXTmBW52kZc/4V0dr8P7OVgkpuFyu4EsBn9K2LvULLSEWa7lVOcqp5LfQVmXfxMtXKrDYzYVs7iyg/lXi4uhSw9qUbXd7tvVdtDtnisyxOtBO3lovx3M3VvAc+nMtxp90xx0D8HP1FXPC2vTfav7J1JTHcj/AFZbjcfStiHxjpuvCK1iLRTuw+SbAyfQHoak1jwjHqFuHhnKXsXzQygYww5APtmvPlGksOpVJWm76d7fkZPG1HT+r5grX2dtV2Z0em6/qGiXitaTFUbGU6q31FeqeH/GNpq5W3nxb3Z/gY/K/wDun+leOaRuvbSG7nUifGySMjHluDhhj6g1oshBBGQRyCKzq1qTUVBapa+b/r7zhw+aVcFU5Fqluuny/qx7xkGivPfC/jRlZLHVpMg8R3Dfyb/H869BVgwyORUJ3PssJjKWKp89N/5oWiiimdQUUUUAFFFFABRRRQAUUUUAFcz4s8TrotuLe3Ia+lHyjqEH94/0Faeu6xDommSXUvLfdjT++x6CvHri4n1C7kurly80rbmJ/wA9KmUrI8POcz+qw9nTfvv8F/n2+8YTJNK0krs8jnczMckn1qdUVF3MQqjqTUMsyWqZPLHotZ0s0lw2XbjsB0FdmCyuri/fb5Y9+/p/nsfEKEqru9h2qPBdoYljDLkFmI+8Aen0rn/EnimTTYFt7WMPfz8RgDOM8Zx3OegrXmdYYnkc4RVLMfQDrVj4K+F/+En8TXnjLUoi1vaSeXZI448z1/4CMfic9q9jGqngaCpUt331f9fgfSZJhfaS1+GP4s1/APwOt2gTWPGge7vpv3n2JnO2PP8Az0I5ZvboPevUJPBHhWS1+zN4d0rysbdotEHH1xmt+ivnT68+f/iH8Fjo0T+IPBZmTyMvNY7ixC9zGTyfdTn29K5fw3rKa1Z7iAtxHgSJ79iPY19UV81/Ezwz/wAIJ4/g1yyi8vR9UciVVGFjkP3lx2HRh+I7V3YHFyoVEr+69/8AM8/MMHHEUnp7y2/yLEenxpbeSq/usEbfQHt+tZ2valDoenNcOAXPyxR/3m9PpXRQ/NFnrXPeHNBHxD+KYtJl36PpI33A7Pg/d/4E3H0U17uNxaoUbx3eiPncBg3iK9p7LV/15mn8OPhHL4rCeJvF7Sm1nw9vaAlTKvZm7qnoByev190tPDOhWNqLa10ewihAxsS3QDHvxzWoqqiBVUKoGAAMAClr5Vtyd3ufYpKKstjy/wAdfBbQvEdrLc6PBFpeqgFkaFdsUh9HUcD6jke9eT+GtYv7HU5/DevI8WoWrFF8z7xx/CT345B7ivqivGvjp4Ne5srfxdpabdQsCFnKjl48/K31U/ofaonFSVmcmOwcMXRdOW/R9mU4IUBZkXG87mx3OMZ/SpHj4rltKv7nV7GG7TzCsi7sLwAe4/Ot2xu3D/Z5yQ38Jb+RroqZXONH2sJqTWrS3S/ryPzqvhp05O71W46SOuy8HeKmhkTTL+QlD8sMrHof7p/pXEQ3cjzeVcIF3EhWAwCR2qWRMVhVpVMPPln/AMBnRg8XVwVVSj/wGv6+492ByM0tch4K8RnUbX7DdPm6hHDH+NfX6jvXX073P0LD4iGIpKrDZhRRRQbhRRRQAUUUUAFITgUtc5401c6ZoTrE2J7k+UnqB/Efy/nQZV60aNKVSWyRwnizWjrWsMI2JtYMpEOx9W/H+QrHZ1ghMjDp0HqabElU7u4EzhU+4vT3NbYHCSxddR+yt/8AL5n5vWqzxVZ1J9dyFmaVy7nJNOUUiip0TNfcxioxslojTyRzfjK5a18PThM75isSgdTnr+gNfQfgPQF8M+CdK0oKFkigDTcdZG+Z/wBSfyrwnUrEan4r8LaYwylxqSFx6qpBP6Zr6Zr5PN6nPibdkj7PJaahhU+7f+QUUUV5h6wVxfxX0FfEHw41a3CbpoIvtUPqGj+bj6jcPxrtKjniWeCSJxlXUqR7EYoA+a9F1fPguPUWOWitmLH/AGkBH8wK9F+A2hf2d4EbVZV/0nVZ2nZj12KSqj89x/GvFwG0/wAB69ZZP+jXclv/AOPqP8a+pPCunrpXhLSLBVwLezijI9woz+ua68TVc4wT7HDg6KpyqNd/6/M16KKK5DuCobu1ivbOa1nQPFKhR1PcGpqKAPmrw5aPoesa34fkPOn3zqn+43Kn+v411FzapdRYPDj7relU/FNuLL4z6sFGBeWMFwfcj5f6VqIPkFc7qTo1eem7NHwGe0/Z4yUo9bP8Dl54ZIZCkgIYVNDqDqds3zr69xW/LDHKu2RAw96rDT7VUYCIc9zzXtyzjDV6XLiKd35W+9dUeZ9ZhJWmhlleyWN5De2zfMh3D3HcGvaNL1CLU9PhuojlZFz9PavExbJAhRM4znk5rsvh/q3k3UumyN8r5eMHse4/rXlXhzNQd10PfyDG8lZ0G/dlt6/8E9Goooqj7MKKKKACiiigBD0ryrxzqBvfETQK2Y7VfLH+8eW/oPwr1K4mW3tpZn+7Ghc/QDNeFz3DTSzXUnLOzSNn1JzSabtFbs+d4iruNGNJfaf5f8Er3c+1fJU8n7x/pWHqWtWWkhBcOzTSfchjG52+gp+q6kmm6fPfSjcVGQv95j0H516T8K/h2mk2aeJNdiE+v3oEoMgz9lQ9FUdmx1Pbp65+inVjltGNGmrzer/z/wAjzsqytYi8p/CvxZ5cniRILiKLVNOv9M87/VPdwlFb8TXTxJxXsHivSNI1vw9dWWtwrJZOhLMRzGQM71PYjrmvC/Cq3Fsl/o905ll0u6a2Eh/jTqp/L+lVgMyqVpezq79GdWZZVToQVWlt1Re06EP8VPB+fuia4P4iIkV9ADpXhdsot/HXhW6PRb8xE/8AXSJ1H64r3QdK8rMV/tMn6Hs5U/8AZY/P8wridd+K/hPQL97Ge+knuIztkW1iMgQ+hI4z7ZpnxW8Rz+HvBsn2SUxXd7ILWKQdYwQSzD3Cg/nXlnifWPB1rpDeHdC8P2t2I02tqjnDmTHLqwG5ueeTg+mK4T0D3Tw94p0bxTZm50i9S4VTiRMFXjPoynkVrscIT6DNfJ/hjxFL4Y8XWmrW0a28OUiuIYidrxnAbOSef4vY9K+rJXBtyynIYDB9c0AfLmvWw+zeMEA+T+3iPw8xc/zr6lhUJCijoFAr5z1CzN74X8V3qLnzr+7uk9wknH/oBr6IspluLG3mU5WSNXB9QQDWk9o+hjSd5T9f8h11dQWVrLc3UyQwRKWeSRsKoHUk151P8cfCUN55Kfb5od237THb/IfcZIJH4VhfGzX92paV4caRksnK3N6EPLJvwB+ADH64rl/GXjxNbsJND0rSrO20SP5Id8IMhA6MP7nTtz6mszY+gtJ1fT9d06LUNMuo7m1k+7Ih49wfQ+xq7Xzz8IvEtzZ+OXsJnUW2rbt0aIERZgMqwUcDIBHHtX0NnjNAHivjpAfi7G476QAf+/pqzGvyCoPE3+lfE69lHIgsLeH8WZ3P6Yq4q4QfSuSt8R8Tn9pYl+i/IgYVHU7iomFZHzMkVpV4qK0unsNQgukPMThvqO/6VacZFUZlrWmzXD1HCSkt0e42ky3FskqHKuAQamrmvA979r8PRKxy0RMZ/Dp+mK6Wus/UqFVVacai6pMKKKKDUKKKKAMXxTcGDw5eEcF18sficV5FcQExOqDqOBXpXjq+tk0lbX7RCJmmXMZkAbHJ6da89g0jVvEt62l6Q32ZFx9s1BhkW6n+FB/FIR27Dk9RXo0qcFhXVfxJ3XqrafM+czbDTxWIVOG6SOY03S28XeN9J0O3RpYLS4W71BwPljReisfU9Me9fSjOsa5Y4FY3hfwppXhHShYaXBsUndLK53STP/edu5/l2qp41h1GbS4xpzSiRXDMsRwzD/ODXLicRLEVHUke1hMNHDUlTj0IfFWoR3MMWlI+w3JzKxONkI5dj6DANeT+HGN9LqmtFSq6peyXESkciLOE/QVu65p13baC9nPI51HV/wB3O+7c0NqMGTn1bhfxPoabaxpFGkcahUQBVUdAB0Fd+VUbydV9NDy85xK5VQW+7/Qqaxvt7Rb6MZkspo7tPrG4c/oDXuMM0dxBHNEwaORQysOhBGQa8jkiDxEEZBGCPUV13w71Pz9B/sqVybjTG8jnq0X/ACzb/vnj6rU5nD31M0yep7kqfzOW+PMEjaDpFwB+7ju2Vj6FkOP5V4rDIoXmvqvxV4dt/FXh270m5bYJlykgGTG45VvwNfL2t+E/EPhy+e0vtMucg4WWGNnjkHqrAfp1ryz2TPn/AHrCNBlnO1QO5PAr6t1a+GjeG3uJj/x6Wplf6onT8SK8a+GXw41G71eDXdctJLXT7VvNiinXa87j7vynkKDzz14r0fxrcG8ht9MHW8mBkHpEhDH8yFH509wbsrmH4f0YR+GbeyuFyWt9s2e5YZf9WNdn4CumuPBmnRSkefaIbOUdw0RMZz/3yD+NVbK2xb8jqKq+Hrj+yPFt7psh2wan/pMGennKAJF/FQrfga1qLRHHh5e+0+p5f8bLd4PHsM7j5JrJNh/3WYH+n51wqypsxX0Z8SvA3/CZ6IgtWSPU7Ql7Zn4Vs/eQnsDgc9iBXzzN4T8U294bOTw/qXng7cLbswJ9mGQR75rE7DY+HcD3nxI0RYhkpOZW9lVSSa+nblykBA+83yivN/hT8PLjwxHLrGsqq6nOmxIQQfIj6nJ6bjgZx0Ax611HirV2stIuJ4j+92+VAPWRuAfw6/hQDdtTzuJxf6/q2ojlbi8YIfVEAjX/ANBJ/GtUrhcVV0uzW2to41HyooUVekHFcM3d3Pgsyqe0qyl3KbioWFWHFQNUnh1ERHpVSYVcNVZh1q4bkU9zsPhzc4a8t+2Q4/Hj+leg15b4CkKa7Kn96L+R/wDr16kOldkdj9HyWbngoX6XX4hRRRTPVCuT17UrzU9dj8M6RO0DiMT6jdRn54IjwqIezuQef4VBPXFdLe3cNjZT3dw22GCNpZG9FUZJ/IVxvhOUab4QufE2qkQ3WrF9TunbrHGRlF/4DGFGPWgDWttF0TTCljDZWu9wSQ0YYtjqWZssx9ya2NOsLXTrYxWkKRIzs5CjGWJyTXB+HpLrVPEv267VkaKPzpIz/wAsiwwkf1VTz/tFq9CimjZQA4z9aAt1JaCAeooyPWigDK1PQLDU5BJPG4lC7Q8blTj0/WueuPANuSTbapfwH0IjkH6rXbUhANXTqSptuDtcwlhaE5OUoJt+R51P4H1uMf6Lr1o/+zc2B/mjj+VZlr4d8daJrceqWaaFclVMcsa3EsPmp6HcpAPcHPFeqyNHGuXIAqMSQP0dfx4qp16k1aTuEMNSpvmhGzOQPjDxPaj/AE3wJesB1axvoZ/0JU1Xf4s6PZkjVdK17S8dTdac+381yK7nyUboQfpTHt/kIDHHpmsjc46P4l+E9UQtb6/ZbFBbYz7H/wC+WAJNVtNjfV799WuQUWUBYI+pWMdB9T1NXtb8HaFq5P2/R7K4J/iaEBv++hg/rXIv8NX0eU3PhLXdQ0acdITIZoG9ip5x+dNOzJkrqx6jDbxrEB5MmMetc/4l0V7y1E1pIUuYHEsMg4ZHHQ1geF/GmqJr6eGPFtrFa6tIpa0uYD+5vAOu30bjp+g7+gE+ahY/eXr7itL3Whz25XqjP8N+J4dZsylwBBqEHy3EJ7H1Hsf0raa6hUffz7CuL13w6GvReWkj212nKTR8HHofUVnjWfEtqvlyQ2NyRx5h3IT9QKnkfQ1VaO0nY7e6vd0bFiI4lGWLHHHqT6V57qWoHX9RR4s/YbckQ5GPMbu/07D/AOvUF++r6uNuoXC+TnP2eFdqH692/GlhSS2TCuQK2jgatWOjsedjsdFRcIdTQSMRR9hiopCDyKoXMryDDuWHoTUK6gIYNjKWZfu+mKKuS1o01KD5pX2X/BPk66ctS3JVdqfHKZoEkIxuGcUxq8icHCTjLdHk1NyM1Wm71ZNVZj1ojuZQ3NrwP/yMY/65H+Yr1evK/AiFvEDt2WP+ZFeqV2R2P0TIVbBL1f5hRRRVHsnKfEdmfwXdWaNta/lhss+0sqof0JrK8bXKMmkaQF22s9xvmUdPs9uvmsv0Yqi/jWv4+j/4p+C5P3LTULS4f2VZlyfwBzXNeNo5Br2kFFLFra9hCju2I3I/75RqAOg0SyntdHdwEa/ugZ38wkKZG5AJHOB0rAuPHh0m9Flr2lvYXB+6GkAWT3Rj8rj6HPtXS3ut2Gk2sdzdzFI3A2KiF2bjPCjmufvviP4du7drS98P6vfWzcMsmnKyH8Gb+lAF+DxjpEqgtJNFn+9ESPzGa0LbXdOu50ht7xXlf7qgMCf0rirGD4U6jcbUsp9Lmc8pILi1X8wQn616Do3hPQNIYXGm2ahmXiUzPKSPqxNAGxbMzwKzdfX1qWjpRQBU1K3nurGSK1u2tZiPkmEaybT/ALrcEV4f4u8XfEvwXfxx36aNPYTSCOLUBalYsn+/g5Q+x/DNe8l0HVgPxrnfFMGmX+kXdlqBja1uYHSQN04Utke4xnPbFAHm0PjL4j2qLLP4Z0vUoiAd1jc7SR6j5j/KmXfxTmWRW1bTPE2gOBguiCaH8QQv6U74X3E0/gPTftJJYb0Un+4rEL/hXfpErLjseo7VtSoucOZnnLGyUnGS2ON034n2V0VC6/pV8p/hnJtJf/HgBXRnxjpwtzLJGwUDJKzRMv8A30HxTL7wd4f1Qlr3RbCdj/EYQG/MYNUY/hL4JkkEi6HCHHWNppNp/wDHqmVJxOqGIjM5iLWF+IHxH0ZtOg26doTvc3F0p3BnIAVARxzgdPf0r2K2yY3c/wAXA/GqOmaBaaTbJa2GnRWtuvIjiAVfr7/U1pNIkA5Ks44Cr0WnFdETOV3d6Iivdpfb/dAFY80KHPFXJZckknmqU0nBrspQsrHnVql22Zt0iL0FZM5ANaF3KMnmsiaQZPIr1aENDx68rsrTNWfOetWppB61QmkHNejTR582bMRX7NHt6bRimsao6bc5ieIn7pyPoatlwa+Dx1CVDEzhLv8Anr+p5NVNNiHpVWY1Zc/LVKZq54LUimtTr/h3blru6n7DCj9TXo46VyPgG08nRvOIwZWLf4fyrrq7FsfpmWUvZYSnHyv9+oUUUUzvK99ZwahYT2dym+CeNo5F9VIwa4XVba8hsLVLgNLqOkTpdQSgf8faICrY/wBsxlgV9eRkGvQqjlgjmXEig0Ac7Np+nagUnltobgFBsdlzlTyP51Xfwzo8o506Ef7gI/kavyCLT5ktNojjPEPof9ke/t+VTRvg5FAHPy+DdMzmP7TAexSQ/wBa6LQoWsbZbMzyTIgJVpAAQPTir0MoIweRUyxxht6qAT3FAD6ztTMsUZmWOaZRgGOJcsPfHetGjI7mgDiNU8W6Vo0Kyag09tvyEE8Jj3EdgWwK8o8WeM5PF1wNK0WdZJ7nMAEJLLbxH77s3TJHFev/ABAh07U/D11pF4I5HuraYorAHYUQsH9sEDmvnPwp4uuG+y6Tax6PYP5YT7TeM0aSEf3io6/X86mV7aGFeVWMf3Ubv1tY9g0mKDTbW3srfiC2jWJPoB1rooLxcDmuOg8HeOplDtrehW6sMgxQPJkeoJ4NX7b4ceKrg/v/AB40Y9LbTkX9Sa9NYijCmoRvoeVTy+utZNfedYt4vapPt2B0x9a5wfCG4m/4/fHHiGUdxFIsQ/QGph8E/DLj/Sr3Wrw9zPfsc/kBWDxEX0OyODkt5GtNr9rAD515bxgf35VH8zWPdePPD1uSJdd09T6eepP6Vbt/gv4CgOTonmn1luJG/wDZq1Lf4Z+CrYgx+GdNOP78If8A9CzUe37I0+qJ7yOHuvin4UiJzrMbkf8APNHb+lZE/wAWNClBFpHqF0f+mVsf6mvZbfwxoNoc2+i6dD/1ztY1/pWjHBFCMRRog9FUD+VUsTNbB9Spve589P44vrw/6F4T12fPQi3IB/IGo/t/je7/AOPXwNfgHvMSv8wK+iZmWOJmZgqqMkk4AHua8l8Y/GTw54faSDT3GrXw42wN+6Q/7Unf6Lmq+vV+j/An+zcN1jf5s4a/g+INrYy3t7othptrGMvLdXSAL/4/19uteeT+OtclJxPCn+5EP61H4q8a634wvBNql0TEhzFbR/LFF9F9fc5Nc9SeNxD+2y1gMMvsI2/+Eu13J26nOmeDswv8hXpXgmS/bRlmvLmaaW4bzAZWLEL0A5/P8a8s0TS21bVIbVc7Cd0jDso617lplusMQwoVEACgdq4MRUc3eTuzweIJ0aNJUoRSb1dkvl0L0hwoGarLG9zcRwJy0jBR+NPmfrW94K0w3urG5Zf3cPAP+0f/AK386zpxPnMtwrxFeNNdXr6dT0jSbVbPToYVGAqgVdpAMDApa6T9LSSVkFFFFAwooooAqX9jDf2zwTxq6MOQa5e4XVtDb/VS6nYjupH2iMfjgSD8m/3q7OmPGrjkUAcdbeNPD7Ha+rW1vIPvRXT+TIv1V8EVf/4TjwzCP3niLSl+t5H/AI03xL4Yh1axO2JGnj+aMsoP4c+teVzabDFIQ1pCrKdrAxLwfyrdUeai6kXdrdeXc83HZhLCauF16/8AAPRNU+JHhdId1r4m0h3HWM3XBH1UHn8K5a++MWhW6N5UsUrgfeRpHUe/CCsmGKNeFjjH0UCoL6xVkb5QY3GCuOPpXF7bW1jyI8TRlLl9nb5/8A5bxX8TrW7028XT7ia51G+jMDzGMxpBEfvBQeSSOOgABPUmvJs10nirwzLot0ZolLWUh+Rv7h/un+lc3Wqd1dH0tKrCtBTg7pnU+GfiH4l8KBY9O1BmtR/y6zjzIvwB6fhivW/D37Q+n/ImuaPPA/eWzcOv12tgj8zXz3RTND7H034v+BdTQFNfggbut0rREfiwx+tdDB4q8PXShoNd0yQHpsu0P9a+F8mjNAH3ede0dRltVsQPU3Cf41n3fjnwpYjNz4j0pPb7WhP5A18Q8/5FHNAH1vqfxy8DaduEeozXrgfdtYGOfxbArgdc/aRndGj0HRFiPaa9k3H/AL4Xj9a8GwfekxQB0viPx/4n8Vll1bVp5YSci3Q7Ih/wFcA/jmuaoooAKVQWOACT7Uldh4Z8PMGS9uk+Y8xRkdP9o/0rWjSlVlyoxr1o0YOcjqPBvh46daBpV/0qfBf/AGR2X/Gu4O2OMIvQVDbQC2i5++Rz7UkknWvPfvO5+b4zEyxVZzkIFeeZYowWd22gDua9c8NaSulaZHHj5yMsfU965TwT4fMsg1G4Q4/5Zgjt6/jXooAAAHSumEbI+vyLAewpe2mvel+C/wCD/kLRRRVHvhRRRQAUUUUAFFFFAARXGeLfDfnhr+0TMgH71APvD1HvXZ0hAIwelaUqsqUuaJjXoQrQcJ7HheTG+09qnVwwIbkHrXa+KvCJm33unoPM6tGP4vp71wKsyMVYEMDggjBBrDEU4814bP8ADyPz7MsuqYSpZ7PZkV9p8VxBJFLGssMgIKsMg+xryjXvBlxZF7iwVp7fqUHLp/iK9jSXPFZsyLDdMjcKTlT7V05dSVbmpvfdfqduUZlKjJwk/wDJng8NvNcSiKGJ5JCcBUUkn8K6aw8A6xdgNMsVqh/56tlvyFekv4et5bn7ZaO1pdkYM0GBuHow6MPrU/k6paj9/afakH/LW1HzfjGefyJrPFUK9P4Fdf10P0PK62X13bEScX+H3/8ADHHW3w1s0x9qvppD3EaBB+ua1IfAegxY3Wskh9Xlb+mK3oL22ncxxyqZB1jPyuPqp5FWc9iK8mVWpezZ9nRwGCUbwgmvv/VmKnhPQo+ml25/3gT/ADNSjw3oy9NKtP8Av0K1s0ZqOeXc6VhaC2gvuX+Rknw3ox66Vaf9+hUT+E9Cfrpdv/wEEfyNbWainuYLZN88qRL6uwH86FOfRilh8OleUVb0X+RgyeB/D8n/AC4Ff9yVh/WsvUPA/h+1gMryXUI6KFcMWPoBjJNdM19cXIxY2zFT/wAt5wUT8B95v0HvVf7AEk+0XMrTTkY8x+w9FHRR9PxzXp4TBYis1dtL8fuPl82zXLMNFxpwjOXlsvVr9DkNJ8JwwXJuZ1ZsNmKKTB2jsWxwT+ldlptspu0yOF+Y/hUZx2HFWrKRY5W3HGVwDX08sK8PhZuC96x+W5jjp172/r0NaSTmtfw14fk1i6WWRCLZT3/jP+FHh7w5PrMqyyKy2oOc9N//ANavU7GxisbdYolChRjgV8xGny7m+T5M5NV6606Lv5vy/P0JLe3S2hWNBgCpqKK0PrwooooAKKKKACiiigAooooAKKKKAEIB61zHiHwhbasGngxDdf3wOG+orqKKDKtQp14OFRXTPEL/AE680mfyruEoezdVb6GqU8a3EeM4YdDXud5YW99C0VxEkiN1DDNcRq3w/wAFpdNl29/LfkfgeoopuVKaqU3Zo+UxnD9Sm+fDO67df+CebQ3M1pIQpwQeVPIresPENrkLdRMn+0nzD8utUdX0PULRsz2roV4LYyCPqKxuQcelfVUJ0cbTUpL3uvdHHTrV6D5Xo+zPQpItB1yMJI1ndeiygbh+fIqpJ4JscZtZry29BFOSv5NkVw+amjvLiH/Vzyp/uuRWVTKqc+v3o9Ohndaj8N16No6pvBtyD8msz/8AbS3jb+WKaPB96fva02P9m0QfzJrn11rU16X9yP8AtoaG1rUn4a/uT/20Nc39h077L8T0FxVi0rc8vvX+R0n/AAhsYQtc6lfyAdvMWIf+OgH9aoSWWg6W5aNYPOH8X+sf8zk/rWBLczzf62aST/fcmoq6aOU0qb/yRw4nPcTX+Jt+rb/DY0rnUw5Igjx/tN1/Ks93Z2LMST71LbWVzePstoJJW/2FzXW6P8PL68ZXvW8mP+4vLfn0FdM6uGwq1dn+JwwpYrGPRNr7kchBbzXUyxQRtJI3RVGTXoHhr4fksl1qYDY5EXYfX1rtNH8MafpEYEMK7u56k/U1tAADAGBXjYvNJ1fdp6L8f+Ae7g8op0ffq+8/w/4JFb20dtEEjUACpqKK8o9gKKKKACiiigAooooAKKx9f1200KzWW8MgSUlFZFzg4J/pXn3hHxha6LZ3Y1F7u4uJXDJg7vlA6ZY8ck11UsHUq03Uitvx/wCGOOtjqVGqqcnvv5f8Oes0Vl3mv6bp+mw315cCCKZQyBuWbIzgAdTWXZ+PtAu7wWy3LxsxwryJhSfr2/Gso0Ksk3GLaRtLEUYtRlJJvzOoorGk8SWMfiKPRGEv2uQAj5flxgnrn2NXNV1GHSdPkvZ1kaOPGRGu5jk4GB9TU+zndK2+3mUqsGm77b+RdorDk8VaXb6LBqc8rRxTJvjjZf3jD/dFULP4gaFdXIhaSaAkgB5kwvPTJBOPxq1hq0k2ovQzliqEWk5q7OrorzvV9aew+I1utzdypYbUkKlyEA2Hn3H9a3rXx1oVzMsYuWjz0MibRj1PoPrVywlVRjKKumr6GcMbScpRk0mnbVnQyW8UqkOgYH1FYOoeCdF1Al3tUVz/ABJ8p/Srmt+ItO0GBJbyU5fhI4xuZvoKyrL4g6HdzLE7zW28gK06YUn6gnH40qVLEW9pTTt3RVarhnL2dVq/ZmNdfC63Yk215Kns2GrKl+GN+p/d3cbD3Qj+tdPrGsnTPHNoLq+aLT/sjSOhYhcjdzgdSeKs2fj7Qry5WDzpISxwjSphT+IJx+OK7Y18dGKlFuStfa/f/I4JYfL5TcZpRd7b27f5nDn4bavn/WQ49fm/wqSP4aam337mJfopNa3iqG9sfGmnXEN3cGC5lQugchVw6jpnnrXa6trunaJAJL+4EefuqAWZvoB/OrnjMWlBwlfm7Izp4HBuU1ONuV9WcJb/AAvPBnvHPsqgf41vWXw80i2IaSPzWHeQlv8A61WbDx5oV/cpCs0kJc7VaaPapPpnkfnXTg5rkr4jFr3asmvw/I7sPhsE1zUop/j+ZStdKs7RAsUKKB2AxVwAAYFV76/tdOtmuLuZYol6s38h6n2rm4/iLoEk+zzbgKDzIYTtHue4/KueFGrUV4RbOmdelSajOSR1tFZl/r2m6dpY1Ge5X7OwBRk+Yvnpt9awoPiPoc0gV/tUCH/lpLF8o+uCTThh601zRi2hTxVGnLllJJnYUVi6x4jttJsrW62NcRXLhI2iZcHILA5JxjAqjYeO9Hv7mKBWmiaQDDSKAucfdznrQsPVlHnUXYJYqjGXJKST/wAzqKK8o1vxdZ3vivTL2Ce6Wyttv2iPlckMT93OD2rU1/xemq+G7m40prqBreaLc/C5DZ9D0roeX1VyXXxfhrY5f7Sovnt9n8dLnodFcTpXjfR7PR7CC4uZWmEC+YT820/7THqfaur0/UrTVLUXFnMJI84OOoOM4I7HmuerQqU/iTt3OqliaVX4ZK/Yt0UUViblW9sLa+hCXNvFOFO5RKgYA4xnH41yXw9it20q+hCxSKt03G3oOnOfYV25rgtQ8D6mNTuJdH1P7JbXTb5V8x1YE5zjHBHNdeHlGUJUpy5b2t20OHEwlGpGrCHNa6e19SC+8m/+KcVnfqr20UQWGNx8pOzcBj3OfyFa/ju1sV8LzTywRb4yvlttwQSQMDHsTVbVPA891p2nC2u41v7JAnmsGAcDpyDkEHnv0qP/AIRDXNWe3XxBqyTW8JzshBy/bngAcZGcZ5rqU6TdOanZR0tr07epyunWUalN07uet9La239DK0yWaLxnoc12ctNYwruY9yjc/U4/Wuq8cXcVv4ZlV2/eSOixKDyzBg2P0pfEPhSLWfss0En2e5tcCJlyOB0GRyMe1YV94G1nU1llvtY+0yhQsCMMBeRnJxx07DnikqlGrOFSUrW3XzdvzB069GnUpRjzc2z+Sv8AkZugW0HiDxZbC8UGC2sI2jhboeAcY7jLE49q7XVPC2hXcIee1htxGQxkiAj47gkdj3rBufA98lrYXGnXa2+p2sAhZwxAbB4IOOvbkcinv4b8UayqW+t6tELQY3R245f68AH8ePanVnCpNThV5UtLa367d7io0504OE6XM3rfS3Td9LGT4k0+01D4iafYOn7qRIgQvA2ANx+Qrb8deHrJ/C8lxbW0UUtmA67EC/J0ZeO2P5VIfBssXiew1G3njW1s40jSNgS21QRjPfqea6DWrCTU9FurGNwjTx7Nx7Z6/pUSxKjOjyS0ilf79fwNIYVyhW546ybt92n4+h5ve3cElj4euksUutXmt1RPNOUO1tqkjuc5749c8U7xPB4jfQN+tR2YgVhsCoodD/s4PTsev0roj4G87Q7G2knCX9luWOdc4Kl9wzgg+n0NVD8Pry+82XV9XkupdhEagtt3Y4JJ5x04FdMMTQTT5lo30be+luiRyzwuIcXHlfvJbNJba36tnMSD/hIL3w3BcsS0kCwOSeyyMpyfXA/Ouz8YeHtMh8HXJt7OGFrZFeNkQA8EDBPU8Z61j/8ACu9UaG1hF7bx/Z1IEilsklywOMcYJrRj8G67fGOLW9fea0QgmKPPz4Pcn+fNFWtS5oShUso9Ne9wo0KqhOM6V3Jb6drf8ExNflumsPCNw7OXeNNz55yGQ8/pSa7qTx+OdQLaf9vuECR20TnMa8A5K9+p4966fxb4YvdYi02LTXigW13A72IwPl24wD/dqO+8G3d09hqMV75Or28SpLNkkSkDGcjnPvjkdamniKKjFya+0uul3dXt06FVcNX5pKKeji76a2Vna/XrqZtj4SmupTrPi26ULGAVgBCogzwGxwB7D8a9DjKlAUIK44I6Yrh08G63qEiDXNdeW3V9/lQ5z9NxAx9cZrtLW2is7WO3gTZFGoVF9AK4sXUU2vfv5JWSXkd2CpuF/ct5t3bfmcD8QrwQ6zpMdxBJPbKryGFG2+Y2QME/T9DVez8O6v4peObVdmnaUh3R2sChePYf1Ndd4o8Mw+I7JEZzDcwndDKBnHqD7GsJ/Cvii83QXfiHbaMArKmXJH4gfqa6aOIgqMVGSjJdXd/d0uctfDVHXlKUXKLtorL5PrYg8WpoNnoGnSQWsV0kTGO2AkyhHUhiOWGecevfrVTUYfFE3h6f+0LexisQuTEI1UqPVeeo7c101z4J06bQ001C6mNjIszHcxcjaSemcjtx0FZK+Ab+9mUavrUs9rHwsUZblfTLE4+vWnSr0VFXls29U2/lrZMVbDV3J2juktGktuul2jm7e6N14EsY5tzGz1NUUZ/hKEgfqa7Xw5oGl3nh/R7qSzj82NBMrqMEscnn1+hrIi8C6pa6PLYwXFqZPtqXUbktgYBGCMe4rsdBsZtM0OysZyhkgiEbFCSDj0zSxeIg4fupfab081/w48Fhpqf76P2Ute6f/DHKaxp9jp/jrQRBDbwq+QVWPG45x+J5rQ8exwReFJyYwqmWPdtUAnnirvinw4deggeCbyby2bfDISQM8dcc9q53/hBdbuLC5S91dJppwikSF3ACtu4J6flU0p05eznOdnHdO+utyqtKpD2tOFO6ls1bTSxp+D/D+m/8InbmW0ila7i3ys6Algegz249Ky/AcUml+Jtc0ctmOIhlz3wcA/kRXZ6JYPpmjWljI6u0EYQsowDisrTvD1zZeL77WHmR4rpSNnOV5XH6Cs/rCl7ZSldS29b6fga/VnH2LjGzjv6W1/E6WiiiuA9IKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooA/9k=','2022-01-05 22:45:14.257988(Europe/London)','1','000409f81dbe5d1ba67101cb9fed4530',4761653,1,1,1,NULL);CREATE TABLE "content_channelmetadata_included_languages" ("id" integer NOT NULL PRIMARY KEY AUTOINCREMENT, "channelmetadata_id" char(32) NOT NULL REFERENCES "content_channelmetadata" ("id"), "language_id" varchar(14) NOT NULL REFERENCES "content_language" ("id"));INSERT INTO "content_channelmetadata_included_languages" VALUES(1,'000409f81dbe5d1ba67101cb9fed4530','en');CREATE TABLE "content_contentnode" ("id" char(32) NOT NULL PRIMARY KEY, "title" varchar(200) NOT NULL, "content_id" char(32) NOT NULL, "channel_id" char(32) NOT NULL, "description" text NULL, "sort_order" real NULL, "license_owner" varchar(200) NOT NULL, "author" varchar(200) NOT NULL, "kind" varchar(200) NOT NULL, "available" bool NOT NULL, "lft" integer unsigned NOT NULL, "rght" integer unsigned NOT NULL, "tree_id" integer unsigned NOT NULL, "level" integer unsigned NOT NULL, "lang_id" varchar(14) NULL REFERENCES "content_language" ("id"), "license_description" text NULL, "license_name" varchar(50) NULL, "coach_content" bool NOT NULL, "num_coach_contents" integer NULL, "on_device_resources" integer NULL, "options" text NULL, "parent_id" char(32) NULL REFERENCES "content_contentnode" ("id"));INSERT INTO "content_contentnode" VALUES('000409f81dbe5d1ba67101cb9fed4530','Touchable Earth (en)','000409f81dbe5d1ba67101cb9fed4530','000409f81dbe5d1ba67101cb9fed4530','',15512.0,'','','topic',1,1,856,1,0,'en',NULL,NULL,0,0,1,'{}',NULL);INSERT INTO "content_contentnode" VALUES('6d50cb759abe5c4a90734f791abdf613','China','9f6fe326620d5729ae5ad178d3f68cc1','000409f81dbe5d1ba67101cb9fed4530','',1.0,'','','topic',0,2,67,1,1,'en',NULL,NULL,0,NULL,NULL,'{}','000409f81dbe5d1ba67101cb9fed4530');INSERT INTO "content_contentnode" VALUES('aad99e72b32e50f9aa8094b63ba3c8a3','India','4338dabc0d385b718d1fb856cccf1331','000409f81dbe5d1ba67101cb9fed4530','',2.0,'','','topic',0,68,173,1,1,'en',NULL,NULL,0,NULL,NULL,'{}','000409f81dbe5d1ba67101cb9fed4530');INSERT INTO "content_contentnode" VALUES('1d12a7a5e45d5db49a80fe5354f55f8c','Iraqi Kurdistan','138e2ebf733b56c9ab57440e7ec4d501','000409f81dbe5d1ba67101cb9fed4530','',3.0,'','','topic',0,174,283,1,1,'en',NULL,NULL,0,NULL,NULL,'{}','000409f81dbe5d1ba67101cb9fed4530');INSERT INTO "content_contentnode" VALUES('8c30dc0f9dfd598d98ec990ef47bcf75','Mongolia','4f98b26cfc645bce96f8f6178e859509','000409f81dbe5d1ba67101cb9fed4530','',4.0,'','','topic',0,284,351,1,1,'en',NULL,NULL,0,NULL,NULL,'{}','000409f81dbe5d1ba67101cb9fed4530');INSERT INTO "content_contentnode" VALUES('660a484c265b59199e965b9a2a7928ff','South Africa','4cc34520e713564da3d05289f0f5b027','000409f81dbe5d1ba67101cb9fed4530','',5.0,'','','topic',0,352,473,1,1,'en',NULL,NULL,0,NULL,NULL,'{}','000409f81dbe5d1ba67101cb9fed4530');INSERT INTO "content_contentnode" VALUES('477a8f303f3b580fa2a96609bab59a48','Nepal','e8b11101530b597a9aa81d7004b29304','000409f81dbe5d1ba67101cb9fed4530','',6.0,'','','topic',0,474,589,1,1,'en',NULL,NULL,0,NULL,NULL,'{}','000409f81dbe5d1ba67101cb9fed4530');INSERT INTO "content_contentnode" VALUES('693356e8d5b7583cb6d2a5f97340ec90','Romania','b015d5d3272655b2b31ebfe177b68704','000409f81dbe5d1ba67101cb9fed4530','',7.0,'','','topic',0,590,693,1,1,'en',NULL,NULL,0,NULL,NULL,'{}','000409f81dbe5d1ba67101cb9fed4530');INSERT INTO "content_contentnode" VALUES('d6d03b1343c65d9684f4d9e6d179f5dd','Russia','ae29f5b8732d504eb0f20cda2ccaba6a','000409f81dbe5d1ba67101cb9fed4530','',8.0,'','','topic',0,694,781,1,1,'en',NULL,NULL,0,NULL,NULL,'{}','000409f81dbe5d1ba67101cb9fed4530');INSERT INTO "content_contentnode" VALUES('9098c819bc19582d8326f421be63510f','Syria','7952e863dd2258bb992a4ea018cceb7a','000409f81dbe5d1ba67101cb9fed4530','',9.0,'','','topic',1,782,855,1,1,'en',NULL,NULL,0,0,1,'{}','000409f81dbe5d1ba67101cb9fed4530');INSERT INTO "content_contentnode" VALUES('bb2b8242947f5bd9b64d4dfdac2b8177','Culture in China','f9c397d77cca528e9db95c0aafe28a9d','000409f81dbe5d1ba67101cb9fed4530','',1.0,'','','topic',0,3,18,1,2,'en',NULL,NULL,0,NULL,NULL,'{}','6d50cb759abe5c4a90734f791abdf613');INSERT INTO "content_contentnode" VALUES('c317467867325d45930d50f350c27dd5','Facts about China','7bbf54e331a65c2fb6612da0855f56ea','000409f81dbe5d1ba67101cb9fed4530','',2.0,'','','topic',0,19,30,1,2,'en',NULL,NULL,0,NULL,NULL,'{}','6d50cb759abe5c4a90734f791abdf613');INSERT INTO "content_contentnode" VALUES('a0f73f54122755ff80b8c49cca8dcf5b','Family in China','dbd5babe462554b6a777089c6469dfa5','000409f81dbe5d1ba67101cb9fed4530','',3.0,'','','topic',0,31,40,1,2,'en',NULL,NULL,0,NULL,NULL,'{}','6d50cb759abe5c4a90734f791abdf613');INSERT INTO "content_contentnode" VALUES('41def5ab07915c3ba360c0274526c21a','Friends in China','f761411c2deb59578d6ed2bff03b38b3','000409f81dbe5d1ba67101cb9fed4530','',4.0,'','','topic',0,41,46,1,2,'en',NULL,NULL,0,NULL,NULL,'{}','6d50cb759abe5c4a90734f791abdf613');INSERT INTO "content_contentnode" VALUES('0735d129e92d5f5893e347ccb0d7c198','Playing in China','0ae9275830355c6b8df50cf84e6a3897','000409f81dbe5d1ba67101cb9fed4530','',5.0,'','','topic',0,47,56,1,2,'en',NULL,NULL,0,NULL,NULL,'{}','6d50cb759abe5c4a90734f791abdf613');INSERT INTO "content_contentnode" VALUES('1c6066b19c7a5f5b8c2998ec1a72f3c6','School in China','da2f95894c5359de91b8776a5e80efad','000409f81dbe5d1ba67101cb9fed4530','',6.0,'','','topic',0,57,66,1,2,'en',NULL,NULL,0,NULL,NULL,'{}','6d50cb759abe5c4a90734f791abdf613');INSERT INTO "content_contentnode" VALUES('9a452d6b796f558f852ba112a77ecab1','Culture in India','c6d520b4da3b53dd9d297429826ec92b','000409f81dbe5d1ba67101cb9fed4530','',1.0,'','','topic',0,69,88,1,2,'en',NULL,NULL,0,NULL,NULL,'{}','aad99e72b32e50f9aa8094b63ba3c8a3');INSERT INTO "content_contentnode" VALUES('b3d04581fcb750c588e49baf47f88a81','Facts about India','8a2864d7ea915ba3a64012f04e9baf7f','000409f81dbe5d1ba67101cb9fed4530','',2.0,'','','topic',0,89,100,1,2,'en',NULL,NULL,0,NULL,NULL,'{}','aad99e72b32e50f9aa8094b63ba3c8a3');INSERT INTO "content_contentnode" VALUES('a5a6e5b5d92e5e138c8604ca47a7212a','Family in India','82bd8b9fbd3e56c19aefa04019f241f2','000409f81dbe5d1ba67101cb9fed4530','',3.0,'','','topic',0,101,120,1,2,'en',NULL,NULL,0,NULL,NULL,'{}','aad99e72b32e50f9aa8094b63ba3c8a3');INSERT INTO "content_contentnode" VALUES('8c0e3b1d595a517b9d63e54f1b07a9cf','Friends in India','f847fe34c5b85dceb1f305bdf56f15f9','000409f81dbe5d1ba67101cb9fed4530','',4.0,'','','topic',0,121,148,1,2,'en',NULL,NULL,0,NULL,NULL,'{}','aad99e72b32e50f9aa8094b63ba3c8a3');INSERT INTO "content_contentnode" VALUES('587c8a5030a7500e9c86723d7a2cf27f','Playing in India','fb209c802dac55f2b83edaa5f036bcbf','000409f81dbe5d1ba67101cb9fed4530','',5.0,'','','topic',0,149,158,1,2,'en',NULL,NULL,0,NULL,NULL,'{}','aad99e72b32e50f9aa8094b63ba3c8a3');INSERT INTO "content_contentnode" VALUES('b01a47cf980b51acac895f34f7a96750','School in India','6d68e22a5df0512b8d0564e21e3d644f','000409f81dbe5d1ba67101cb9fed4530','',6.0,'','','topic',0,159,172,1,2,'en',NULL,NULL,0,NULL,NULL,'{}','aad99e72b32e50f9aa8094b63ba3c8a3');INSERT INTO "content_contentnode" VALUES('c586f8b63b545d4ca765179dfc926c20','Culture in Iraqi Kurdistan','0dfa5f7d543450e0a46a89acbb14264a','000409f81dbe5d1ba67101cb9fed4530','',1.0,'','','topic',0,175,188,1,2,'en',NULL,NULL,0,NULL,NULL,'{}','1d12a7a5e45d5db49a80fe5354f55f8c');INSERT INTO "content_contentnode" VALUES('cb80be11d336516c9a586cc5bb06e9e6','Facts about Iraqi Kurdistan','70b517ed2ef15b239f988f36d8e3deeb','000409f81dbe5d1ba67101cb9fed4530','',2.0,'','','topic',0,189,200,1,2,'en',NULL,NULL,0,NULL,NULL,'{}','1d12a7a5e45d5db49a80fe5354f55f8c');INSERT INTO "content_contentnode" VALUES('e402698d51a25f009cd7e9dd4afd16d1','Family in Iraqi Kurdistan','8b6264857cce5dadac9dce151f83bec9','000409f81dbe5d1ba67101cb9fed4530','',3.0,'','','topic',0,201,220,1,2,'en',NULL,NULL,0,NULL,NULL,'{}','1d12a7a5e45d5db49a80fe5354f55f8c');INSERT INTO "content_contentnode" VALUES('5ee66344dcf859f0808eaa0977ce637d','Friends in Iraqi Kurdistan','c4e09c6b03e053d585028e993ffb6521','000409f81dbe5d1ba67101cb9fed4530','',4.0,'','','topic',0,221,254,1,2,'en',NULL,NULL,0,NULL,NULL,'{}','1d12a7a5e45d5db49a80fe5354f55f8c');INSERT INTO "content_contentnode" VALUES('5ec11b22d6ad57968e137b5e5059853e','Playing in Iraqi Kurdistan','ca2f977623195365b351e1a7062fb0c4','000409f81dbe5d1ba67101cb9fed4530','',5.0,'','','topic',0,255,266,1,2,'en',NULL,NULL,0,NULL,NULL,'{}','1d12a7a5e45d5db49a80fe5354f55f8c');INSERT INTO "content_contentnode" VALUES('4d280750a32650f88f35feb15e7da3ca','School in Iraqi Kurdistan','10aea0416cd15bb1a738a3442f7aa586','000409f81dbe5d1ba67101cb9fed4530','',6.0,'','','topic',0,267,282,1,2,'en',NULL,NULL,0,NULL,NULL,'{}','1d12a7a5e45d5db49a80fe5354f55f8c');INSERT INTO "content_contentnode" VALUES('c3d020736a3a5fde8f52fe60c66825f7','Culture in Mongolia','768dc4c7c04a5b06836bcf3ee80139ca','000409f81dbe5d1ba67101cb9fed4530','',1.0,'','','topic',0,285,304,1,2,'en',NULL,NULL,0,NULL,NULL,'{}','8c30dc0f9dfd598d98ec990ef47bcf75');INSERT INTO "content_contentnode" VALUES('99fd79e500ef5d328ee0da3b3768a502','Facts about Mongolia','ac78aace30fc560b92ffb2e605121cd8','000409f81dbe5d1ba67101cb9fed4530','',2.0,'','','topic',0,305,318,1,2,'en',NULL,NULL,0,NULL,NULL,'{}','8c30dc0f9dfd598d98ec990ef47bcf75');INSERT INTO "content_contentnode" VALUES('48ffc846802250b5ae7010fb9042c6f8','Family in Mongolia','aaffe7267b5058f4a693d5d93e5e7435','000409f81dbe5d1ba67101cb9fed4530','',3.0,'','','topic',0,319,332,1,2,'en',NULL,NULL,0,NULL,NULL,'{}','8c30dc0f9dfd598d98ec990ef47bcf75');INSERT INTO "content_contentnode" VALUES('84f121b5dd5d5f5092c7f41922130be2','Friends in Mongolia','b0313e8ebe41537da86b666d5fe5fe0a','000409f81dbe5d1ba67101cb9fed4530','',4.0,'','','topic',0,333,350,1,2,'en',NULL,NULL,0,NULL,NULL,'{}','8c30dc0f9dfd598d98ec990ef47bcf75');INSERT INTO "content_contentnode" VALUES('dcc52b5b322b577d9d636359084c9e6d','Culture in South Africa','ee9016e4e001570fa7d12a2c8fb9f491','000409f81dbe5d1ba67101cb9fed4530','',1.0,'','','topic',0,353,370,1,2,'en',NULL,NULL,0,NULL,NULL,'{}','660a484c265b59199e965b9a2a7928ff');INSERT INTO "content_contentnode" VALUES('7c81b50691c85f1fa4097fe932eaf80c','Facts about South Africa','77f743e7db8e55e3ab77ab7dd4e59d80','000409f81dbe5d1ba67101cb9fed4530','',2.0,'','','topic',0,371,382,1,2,'en',NULL,NULL,0,NULL,NULL,'{}','660a484c265b59199e965b9a2a7928ff');INSERT INTO "content_contentnode" VALUES('d90e4c5a13cb500ea38cf5d7b3027a0d','Family in South Africa','4ff4fa9f08b45c6f9660fcff3fe1789c','000409f81dbe5d1ba67101cb9fed4530','',3.0,'','','topic',0,383,404,1,2,'en',NULL,NULL,0,NULL,NULL,'{}','660a484c265b59199e965b9a2a7928ff');INSERT INTO "content_contentnode" VALUES('663fd107faa858bf9d428cd7601ed0b6','Friends in South Africa','1da25a3dd07b55a6ae94ef268e337e88','000409f81dbe5d1ba67101cb9fed4530','',4.0,'','','topic',0,405,434,1,2,'en',NULL,NULL,0,NULL,NULL,'{}','660a484c265b59199e965b9a2a7928ff');INSERT INTO "content_contentnode" VALUES('3cc1d6a81a6e56069d33e5e65b4f833f','Playing in South Africa','2290e60d54595d5aa9ae9b2fe96d01fd','000409f81dbe5d1ba67101cb9fed4530','',5.0,'','','topic',0,435,454,1,2,'en',NULL,NULL,0,NULL,NULL,'{}','660a484c265b59199e965b9a2a7928ff');INSERT INTO "content_contentnode" VALUES('f2695fb6bb245c32a6de12f65c74846d','School in South Africa','79b44711c09258e38bc9c21ea363c1b5','000409f81dbe5d1ba67101cb9fed4530','',6.0,'','','topic',0,455,472,1,2,'en',NULL,NULL,0,NULL,NULL,'{}','660a484c265b59199e965b9a2a7928ff');INSERT INTO "content_contentnode" VALUES('6fc08e28c2845cfd9bee1c35eb505af5','Culture in Nepal','cd0310b58dba5da592e8a2db4b6a1b86','000409f81dbe5d1ba67101cb9fed4530','',1.0,'','','topic',0,475,490,1,2,'en',NULL,NULL,0,NULL,NULL,'{}','477a8f303f3b580fa2a96609bab59a48');INSERT INTO "content_contentnode" VALUES('01784fa9abd45045b6a323a326dfd1a4','Facts about Nepal','8f29098c697a5eca946e9301b6ff66ac','000409f81dbe5d1ba67101cb9fed4530','',2.0,'','','topic',0,491,502,1,2,'en',NULL,NULL,0,NULL,NULL,'{}','477a8f303f3b580fa2a96609bab59a48');INSERT INTO "content_contentnode" VALUES('36a3f6f8d88353a18a8c34d898274ddf','Family in Nepal','0af5364cea4b5992a4f7b3f3e4ca5879','000409f81dbe5d1ba67101cb9fed4530','',3.0,'','','topic',0,503,520,1,2,'en',NULL,NULL,0,NULL,NULL,'{}','477a8f303f3b580fa2a96609bab59a48');INSERT INTO "content_contentnode" VALUES('d2a21d076000535daf08c4b56dfae2fb','Friends in Nepal','d91833fe5cc6554abef04b365e02a0e5','000409f81dbe5d1ba67101cb9fed4530','',4.0,'','','topic',0,521,550,1,2,'en',NULL,NULL,0,NULL,NULL,'{}','477a8f303f3b580fa2a96609bab59a48');INSERT INTO "content_contentnode" VALUES('625d7f3de5a85f76a2f3db8f589341f2','Playing in Nepal','568fea685e2552aeb8ae71cfdd1e90fa','000409f81dbe5d1ba67101cb9fed4530','',5.0,'','','topic',0,551,570,1,2,'en',NULL,NULL,0,NULL,NULL,'{}','477a8f303f3b580fa2a96609bab59a48');INSERT INTO "content_contentnode" VALUES('3984aef512c352bca130ee71afd94f48','School in Nepal','75ea7bac799d5f96abfe2cfc2ddf6a7e','000409f81dbe5d1ba67101cb9fed4530','',6.0,'','','topic',0,571,588,1,2,'en',NULL,NULL,0,NULL,NULL,'{}','477a8f303f3b580fa2a96609bab59a48');INSERT INTO "content_contentnode" VALUES('7c61031dd62f5440af42760f0c9b73dd','Culture in Romania','4f46160f0e0650749f29315eff366085','000409f81dbe5d1ba67101cb9fed4530','',1.0,'','','topic',0,591,604,1,2,'en',NULL,NULL,0,NULL,NULL,'{}','693356e8d5b7583cb6d2a5f97340ec90');INSERT INTO "content_contentnode" VALUES('63e46e4c9c205216a4680b0604a52659','Facts about Romania','e646904e20675938b06193d82da4f4c9','000409f81dbe5d1ba67101cb9fed4530','',2.0,'','','topic',0,605,616,1,2,'en',NULL,NULL,0,NULL,NULL,'{}','693356e8d5b7583cb6d2a5f97340ec90');INSERT INTO "content_contentnode" VALUES('7b14adb57b125c67b568c803af1f6de2','Family in Romania','2e4ad2d998395f6c9f2fc2000bcc5e66','000409f81dbe5d1ba67101cb9fed4530','',3.0,'','','topic',0,617,634,1,2,'en',NULL,NULL,0,NULL,NULL,'{}','693356e8d5b7583cb6d2a5f97340ec90');INSERT INTO "content_contentnode" VALUES('fb9991e35a2d5df6ad834cf62f416990','Friends in Romania','d3bd6359141253da9c30d09c303780a0','000409f81dbe5d1ba67101cb9fed4530','',4.0,'','','topic',0,635,664,1,2,'en',NULL,NULL,0,NULL,NULL,'{}','693356e8d5b7583cb6d2a5f97340ec90');INSERT INTO "content_contentnode" VALUES('c0676e1af2595f6fb019d87431270386','Playing in Romania','b6d93a87658155ebb9be007b5fe0abd8','000409f81dbe5d1ba67101cb9fed4530','',5.0,'','','topic',0,665,678,1,2,'en',NULL,NULL,0,NULL,NULL,'{}','693356e8d5b7583cb6d2a5f97340ec90');INSERT INTO "content_contentnode" VALUES('b875715e37af5f029268063727c27a61','School in Romania','73056efebd5959908b1bbda9eee625da','000409f81dbe5d1ba67101cb9fed4530','',6.0,'','','topic',0,679,692,1,2,'en',NULL,NULL,0,NULL,NULL,'{}','693356e8d5b7583cb6d2a5f97340ec90');INSERT INTO "content_contentnode" VALUES('58fcf30fc06b512b8c6a89868a0d5883','Culture in Russia','13f8fc9c91a55b758576041e91407d6a','000409f81dbe5d1ba67101cb9fed4530','',1.0,'','','topic',0,695,708,1,2,'en',NULL,NULL,0,NULL,NULL,'{}','d6d03b1343c65d9684f4d9e6d179f5dd');INSERT INTO "content_contentnode" VALUES('cfee81fe7b7a57a2960ac2b0fd77f507','Facts about Russia','b9c5317782d3580394118cc9924be9b9','000409f81dbe5d1ba67101cb9fed4530','',2.0,'','','topic',0,709,720,1,2,'en',NULL,NULL,0,NULL,NULL,'{}','d6d03b1343c65d9684f4d9e6d179f5dd');INSERT INTO "content_contentnode" VALUES('484dba1781875db88c1dbf864902884b','Family in Russia','ef0391f6d7085816a31669319b987645','000409f81dbe5d1ba67101cb9fed4530','',3.0,'','','topic',0,721,732,1,2,'en',NULL,NULL,0,NULL,NULL,'{}','d6d03b1343c65d9684f4d9e6d179f5dd');INSERT INTO "content_contentnode" VALUES('7b501135b4815a968befb8da625511e4','Friends in Russia','56bc502059845f16bae58a574dd3a910','000409f81dbe5d1ba67101cb9fed4530','',4.0,'','','topic',0,733,754,1,2,'en',NULL,NULL,0,NULL,NULL,'{}','d6d03b1343c65d9684f4d9e6d179f5dd');INSERT INTO "content_contentnode" VALUES('f5dcdc904047540f8b453bcd4c7bc586','Playing in Russia','c2a9ff1ac99855c288d94aeaa9ddd2b8','000409f81dbe5d1ba67101cb9fed4530','',5.0,'','','topic',0,755,764,1,2,'en',NULL,NULL,0,NULL,NULL,'{}','d6d03b1343c65d9684f4d9e6d179f5dd');INSERT INTO "content_contentnode" VALUES('24cf0fde9a9b5303a48495ad2c454097','School in Russia','2993d2791ce0535fa1cc1859c27b4553','000409f81dbe5d1ba67101cb9fed4530','',6.0,'','','topic',0,765,780,1,2,'en',NULL,NULL,0,NULL,NULL,'{}','d6d03b1343c65d9684f4d9e6d179f5dd');INSERT INTO "content_contentnode" VALUES('fd70be3b008356078163c1aedd0744db','Culture in Syria','c596854614f954f2b1aba01b4eec6aaa','000409f81dbe5d1ba67101cb9fed4530','',1.0,'','','topic',0,783,788,1,2,'en',NULL,NULL,0,NULL,NULL,'{}','9098c819bc19582d8326f421be63510f');INSERT INTO "content_contentnode" VALUES('0233cf204b65542e86f85983791b2ae1','Facts about Syria','1403835c589c5d1aad105faa8c34e667','000409f81dbe5d1ba67101cb9fed4530','',2.0,'','','topic',1,789,792,1,2,'en',NULL,NULL,0,0,1,'{}','9098c819bc19582d8326f421be63510f');INSERT INTO "content_contentnode" VALUES('76d8b3022705593ab8ccb0a76aff5012','Family in Syria','45b30f42c4715d06a49b583432feed24','000409f81dbe5d1ba67101cb9fed4530','',3.0,'','','topic',0,793,816,1,2,'en',NULL,NULL,0,NULL,NULL,'{}','9098c819bc19582d8326f421be63510f');INSERT INTO "content_contentnode" VALUES('6393b1b0ed3554d89db9ad9bda194683','Friends in Syria','774a0ab36c175d1dbe22d8b77d71f148','000409f81dbe5d1ba67101cb9fed4530','',4.0,'','','topic',0,817,836,1,2,'en',NULL,NULL,0,NULL,NULL,'{}','9098c819bc19582d8326f421be63510f');INSERT INTO "content_contentnode" VALUES('5d7127a1a9355682ae0e00cbe8fc9284','Playing in Syria','ddeec287315c523da26c6b3cb3ff1f88','000409f81dbe5d1ba67101cb9fed4530','',5.0,'','','topic',0,837,848,1,2,'en',NULL,NULL,0,NULL,NULL,'{}','9098c819bc19582d8326f421be63510f');INSERT INTO "content_contentnode" VALUES('3a252722578e567d96ee1998aa365043','School in Syria','c888839aadb1547ba07339d4ede1ff49','000409f81dbe5d1ba67101cb9fed4530','',6.0,'','','topic',0,849,854,1,2,'en',NULL,NULL,0,NULL,NULL,'{}','9098c819bc19582d8326f421be63510f');INSERT INTO "content_contentnode" VALUES('73c3fa2490575c7fb666677a5c9827e9','Music','f5a7e2bd531d5ec5a84c8002852409d3','000409f81dbe5d1ba67101cb9fed4530','Apple likes to play traditional Chinese music. What is she wearing on her fingers?
TRANSCRIPT: This is Chinese music (Plays music)
MORE INFO: This instrument is called a wonson. Apple puts bandaids on her fingers so she can play without hurting her fingernails.',1.0,'Touchable Earth Foundation (New Zealand)','','video',0,4,5,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','bb2b8242947f5bd9b64d4dfdac2b8177');INSERT INTO "content_contentnode" VALUES('1f9645d462705e3296862d7e9b64864b','Tea Ceremony','3dce64d15d365c7b9fe62e5c5054f366','000409f81dbe5d1ba67101cb9fed4530','Hehe is making tea. What kind of tea is she making?
TRANSCRIPT: Hello, everyone! I am Hehe. I am eight years old. I am from Beijing. I will make tea for you. (Sound of tea being made)
MORE INFO: Hehe is making green tea. Green tea is very delicate so the water must not be boiling when she pours it.',2.0,'Touchable Earth Foundation (New Zealand)','','video',0,6,7,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','bb2b8242947f5bd9b64d4dfdac2b8177');INSERT INTO "content_contentnode" VALUES('8d04cf37798357a48dea25c6b7d6cbec','Language','d02e6c285824590aa9d415a023bdddaa','000409f81dbe5d1ba67101cb9fed4530','Tiger is writing using the traditional Chinese characters. What has he written?
TRANSCRIPT: Hello! I’m Tiger. Today I’m going to teach you how to write ‘China’ in Chinese word. (Writes first outline) This is the country. This outline square is a county. (Writes horizontal line) And this line represents middle. And in Chinese this word means middle. (Writes second character) And this is same with this. So this a country. (Starts writing inside border) This word means jade, and this is same with this. So this is the country with jade in it. The country carries jade and jade is very special. So this country is very special.
MORE INFO: Jade is also known as Greenstone. It is an ornamental stone.',3.0,'Touchable Earth Foundation (New Zealand)','','video',0,8,9,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','bb2b8242947f5bd9b64d4dfdac2b8177');INSERT INTO "content_contentnode" VALUES('2a3196e7f1c55ad08cc922b4e6dc69c2','Boys’ Clothing','0d48cb8aaa6750f195eb94e1a2b05c2e','000409f81dbe5d1ba67101cb9fed4530','Tiger is wearing traditional clothes for boys. What is his coat made out of?
TRANSCRIPT: Hello! I’m Tiger I’m 11 years old. And now I’m in Beijing right now. And now I’m wearing a costume, it’s made up by silk. And, this mark here is about happiness. And this big mark here is dragon. And the dragon meaning is the emperor. And how this button works is, the Chinese people wear those button and is very simple. There is a ball and a circle. You put the ball in the circle and its very simple. Done! Bye!',4.0,'Touchable Earth Foundation (New Zealand)','','video',0,10,11,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','bb2b8242947f5bd9b64d4dfdac2b8177');INSERT INTO "content_contentnode" VALUES('901d5eb9d9e556fb897aea2add0a7f0c','Dance','0bf778cb12145e95986c7674ddd6b05a','000409f81dbe5d1ba67101cb9fed4530','Wang Qinghua loves to dance. What type of dance is she learning?
TRANSCRIPT: Hello, everyone! I am from China. My name is Wang Qinghua. We will learn fundamental combination of classical dance today. (Music plays]',5.0,'Touchable Earth Foundation (New Zealand)','','video',0,12,13,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','bb2b8242947f5bd9b64d4dfdac2b8177');INSERT INTO "content_contentnode" VALUES('e5ae6da3e6015e969b58472e69878343','Language','6dc519ca44815ec28ffd5b142e3a64b8','000409f81dbe5d1ba67101cb9fed4530','Hong Zeng and He Beibei speak Mandarin. How do you say ‘hello’ in Mandarin?
TRANSCRIPT: Hello my name is Hong Zeng, I am 10. I will teach you to speak Chinese. I will count to 10. ‘yi’, ‘er’, ‘san’, ‘si’, ‘wu’, ‘liu’, ‘qi’, ‘ba’, ‘jiu’, ‘shi’. Hello! My name is He Beibei. I am 10. I will teach you to speak Chinese. I will teach you how to say ‘hello’, ‘Ni Hao’. ‘How are you’? , ‘Ni Hao ma’?. ‘My name is He Bei Bei’, ‘Wo du ming d’zi jiao He Bei Bei’. ‘Good bye’, ‘Zaijian’
MORE INFO: Mandarin is spoken by almost 1 Billion people around the world and is the most popular language in China.',6.0,'Touchable Earth Foundation (New Zealand)','','video',0,14,15,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','bb2b8242947f5bd9b64d4dfdac2b8177');INSERT INTO "content_contentnode" VALUES('adf2f3c31e855091a138a742a8a922f5','Money','fe0dae9c37665078bab65959e6aa66bf','000409f81dbe5d1ba67101cb9fed4530','Tiger has some money from China. What is the name of the currency?
TRANSCRIPT: Hi! I’m Tiger and today I’m going to tell you about money in China. Every money in China has a person in it which is famous called Mao Zedong. Every money there is a note in it, it is call Renminbi or it’s called Yuan. And this is called 1 Yuan. 5 Yuan, 10 Yuan, 20 Yuan, 50 Yuan 100 Yuan. Now you know all the place at China very famous. Now I’m going to take this money and go buy some toys. Bye!
MORE INFO: Mao Zedong, who appears on all the banknotes, was the leader of China from 1945 – 1976.',7.0,'Touchable Earth Foundation (New Zealand)','','video',0,16,17,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','bb2b8242947f5bd9b64d4dfdac2b8177');INSERT INTO "content_contentnode" VALUES('ef77b964fc31549790e2513c4c5f8a85','Welcome','f5cce46f62be59bda62ff5a12716f6f4','000409f81dbe5d1ba67101cb9fed4530','Zheng Keyuan and Betty welcome you to China. What is the population of China?
TRANSCRIPT: Hi everyone! My name is Zheng Keyuan. I am from China. China is located in Asia. It’s capital is Beijing. Welcome to China! Hello! My name is Betty, I’m from China. China is in Asia. Our Capital is in Beijing. Welcome to China!
MORE INFO: China has the largest population in the world. It is estimated at 1.4 billion people.',1.0,'Touchable Earth Foundation (New Zealand)','','video',0,20,21,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','c317467867325d45930d50f350c27dd5');INSERT INTO "content_contentnode" VALUES('114ab24ec98e585dae3cd57559275394','Map','58185d5d52235009943ca2d73f1a3224','000409f81dbe5d1ba67101cb9fed4530','Where is China on the world map?
TRANSCRIPT: China is in East Asia. It holds the world record with Russia for the most countries is shares a border with (14). It is the second largest country in the world by area (after Russia).',2.0,'Touchable Earth Foundation (New Zealand)','','html5',0,22,23,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','c317467867325d45930d50f350c27dd5');INSERT INTO "content_contentnode" VALUES('9c7d1762c6b25bf98afbc27a5562a0e8','Capital','52aacac59ded5e88b1d9196683392732','000409f81dbe5d1ba67101cb9fed4530','The Capital city of China is Beijing. How many people live there?
MORE INFO: The capital city is Beijing. It has 30 million people, this is where the government sits.',3.0,'Touchable Earth Foundation (New Zealand)','','html5',0,24,25,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','c317467867325d45930d50f350c27dd5');INSERT INTO "content_contentnode" VALUES('bf5fa483b8b953f196751c2186e58485','Flag','9362bc8d22845c3786b6e8b4fc12ae86','000409f81dbe5d1ba67101cb9fed4530','You Jiangmei is with the flag of China. What does the color yellow mean?
TRANSCRIPT: Hello! My name is You Jiangmei from China. This is the national flag of People’s Republic of China. We love her. (Sing song for the flag)
MORE INFO: The red is for the people who worked to create a unified country of China. The yellow is for a bright future. There is a special song sung for the flag about prosperity for the Chinese people.',4.0,'Touchable Earth Foundation (New Zealand)','','video',0,26,27,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','c317467867325d45930d50f350c27dd5');INSERT INTO "content_contentnode" VALUES('ce034d1ba0c95a7894ed5b3704e32251','Anthem','9c31efe662a15db8be422e9889215984','000409f81dbe5d1ba67101cb9fed4530','Zhaoming will sing the national anthem. When did this song become the anthem?
TRANSCRIPT: Hello! My name is Zhaoming from China. Please allow us to perform you the national anthem of the People’s Republic of China. (Sing Anthem)
MORE INFO: The anthem is named ‘March of the Volunteers’. It has been sung as the anthem since 1949.',5.0,'Touchable Earth Foundation (New Zealand)','','video',0,28,29,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','c317467867325d45930d50f350c27dd5');INSERT INTO "content_contentnode" VALUES('4d5fff91f0035fd7aa54f28779da1535','Apple’s Family','01fc2937c2175740833d5491f8983c5b','000409f81dbe5d1ba67101cb9fed4530','Apple wants to introduce you to her family. Which city do they live in?
TRANSCRIPT: Hello! my name is Apple. I am from Beijing. I am 7 years old. This is my father. This is my mother. (In Mandarin) Hi everyone! My name is Shao Haizhou. I am 7 years old. I come from Beijing. This is my father. This is my mother. Bye!
MORE INFO: Apple and her family live in the capital city Beijing.',1.0,'Touchable Earth Foundation (New Zealand)','','video',0,32,33,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','a0f73f54122755ff80b8c49cca8dcf5b');INSERT INTO "content_contentnode" VALUES('52e176a20b535104a9993de95d001c91','Apple’s Father','3e97a89f2bfc5c6e970a7ffe000c50a8','000409f81dbe5d1ba67101cb9fed4530','Apple is with her father. What do they like to do together?
TRANSCRIPT: This is a game I play with my father and my father. I run away from the ball. Off camera She was hit! Oh now the exchange.
MORE INFO: This is a game I play with my father and my mother, with the ball. (Playing game and laughing)',2.0,'Touchable Earth Foundation (New Zealand)','','video',0,34,35,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','a0f73f54122755ff80b8c49cca8dcf5b');INSERT INTO "content_contentnode" VALUES('ec9901684b055660bd069ee223a7acf1','Apple’s Mother','198fa71180bf50b490b3f21209d09978','000409f81dbe5d1ba67101cb9fed4530','Apple is with her mother. Where does she go with her mother on the weekend?
TRANSCRIPT: (Plays instrument, teacher gives advice)
MORE INFO: On Saturday Apple’s mother takes her to music lessons.',3.0,'Touchable Earth Foundation (New Zealand)','','video',0,36,37,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','a0f73f54122755ff80b8c49cca8dcf5b');INSERT INTO "content_contentnode" VALUES('1e697b9aeb445990b950b70671508162','Apple’s Home','5cf6abd29fda58a198af607999e8108d','000409f81dbe5d1ba67101cb9fed4530','This is Apple’s room. Who made her favorite toy?
TRANSCRIPT: This is my bedroom. This is my favorite toy. I made it myself. (In Mandarin) This is my bedroom. This is my favourite toy. I made it myself.',4.0,'Touchable Earth Foundation (New Zealand)','','video',0,38,39,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','a0f73f54122755ff80b8c49cca8dcf5b');INSERT INTO "content_contentnode" VALUES('6449e0720f7c5343b725fc652e88805d','Haowei','d7eb8546852c5da1839421fab5b9de23','000409f81dbe5d1ba67101cb9fed4530','Let’s make friends with Haowei. What does he want to be when he grows up?
TRANSCRIPT: Hello everybody! My name is Wang Haowei. I am from China. I am a student from Elite Cradle International School. My hometown is Henan. My dream is to become a policeman.',1.0,'Touchable Earth Foundation (New Zealand)','','video',0,42,43,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','41def5ab07915c3ba360c0274526c21a');INSERT INTO "content_contentnode" VALUES('f6d5b003adbd532d99fba5a857ea4ccd','Tiger','bdcd4ae307bd58bb93cc44d004d6f683','000409f81dbe5d1ba67101cb9fed4530','Let’s make friends with Tiger. Where does he live?
TRANSCRIPT: Hey man I’m Tiger. I’m 11 years old. And this me in Huan Ming. And this is me in Paris, with my iPad. And this me in Beijing skiing. And my hobby is to play soccer and also I play baseball too. I’m in a baseball team and soccer team. That’s all my hobbies and I like to do all the stuff that I like. I also like swimming. I live in Beijing and I love Beijing. Bye!',2.0,'Touchable Earth Foundation (New Zealand)','','video',0,44,45,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','41def5ab07915c3ba360c0274526c21a');INSERT INTO "content_contentnode" VALUES('5d33e20820d75df3b3c2be3fb5dc87be','Catch','ccf8dc39ceb65f0b8d8d7434e8e21983','000409f81dbe5d1ba67101cb9fed4530','Wang Xu is playing catch. Will he get caught?
TRANSCRIPT: Hi! how are you? I am Wang Xu. We will play a game called handkerchief throwing. The rule is that one who is thrown the handkerchief should catch the person who throws. If the person is caught, he has to sing a song.',1.0,'Touchable Earth Foundation (New Zealand)','','video',0,48,49,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','0735d129e92d5f5893e347ccb0d7c198');INSERT INTO "content_contentnode" VALUES('59f3a0d21e5d56d4816f3de1d310087c','Checkers','b021569c70b95f03b3f5df3f465ee42b','000409f81dbe5d1ba67101cb9fed4530','Josh is playing Chinese Checkers. How many teams are there?
TRANSCRIPT: Hi! My name is Josh and this is a Chinese Checker board. It is a 6 side star and it has 3 teams. Green, yellow, and red. The rules are – you can move one step at a time and try to get to the other side of the board, which is your teams colour, before the other team does. And, you can’t move sideways to another colour, you can only stay in the white and black area, unless it is your colour. So, if green is in the green spot and the yellow is in front of the green, like this, you can jump over the green and jump over the yellow to skip to go further. So, if people stand in front of you you can jump over them but if two people are standing in front of you then they are blocking your way so you have to pick another figure to move. Lets play!',2.0,'Touchable Earth Foundation (New Zealand)','','video',0,50,51,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','0735d129e92d5f5893e347ccb0d7c198');INSERT INTO "content_contentnode" VALUES('070f6dee721757808b0d4497d22e2402','Chess','02d8abdadb545e658643f9543d4afbf8','000409f81dbe5d1ba67101cb9fed4530','Tiger is playing Chinese Chess. What is in the middle of the board to separate the teams?
TRANSCRIPT: Hello my name is Tiger today I’m going to tell you about Chinese Chess. This is the board of the game and this is the river to separate the teams. One is a red team and one is a black team. This is a regular soldier, this is like a bomb. It can jump over 1 chess and attack another enemy to death. And then this is a cart, it is like a castle in chess it can move front, back, left, and right, but not diagonal. This is a horse, it can like an ‘L’. And this is like an elephant in english it can move squares. And this is very special, its like a body guard and it protects the King. And those 3 can not move out of this box.',3.0,'Touchable Earth Foundation (New Zealand)','','video',0,52,53,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','0735d129e92d5f5893e347ccb0d7c198');INSERT INTO "content_contentnode" VALUES('4de7693dddcb5c7a9fe91cd27b9633ce','Football','1eee6923b28250a3bd62d8e1e3b78ee3','000409f81dbe5d1ba67101cb9fed4530','Tiger is playing football. What is the name of his club?
TRANSCRIPT: Hi! I’m Tiger today I’m at soccer. Soccer is very popular in China too and I play every week in here. This is a club it’s called Sport Beijing. (Kicks ball)',4.0,'Touchable Earth Foundation (New Zealand)','','video',0,54,55,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','0735d129e92d5f5893e347ccb0d7c198');INSERT INTO "content_contentnode" VALUES('84d5365e3d0052f6b6a2b073ad5c51c0','Classroom 1','77919eca334051e7b57c5c930e97b74e','000409f81dbe5d1ba67101cb9fed4530','Hangwei is at his Grade 5 class. What is he learning today?
TRANSCRIPT: Hello! I am Wang Hangwei. I am from China. We are in the calligraphy class. We are learning to write Chinese characters. Welcome to our class!',1.0,'Touchable Earth Foundation (New Zealand)','','video',0,58,59,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','1c6066b19c7a5f5b8c2998ec1a72f3c6');INSERT INTO "content_contentnode" VALUES('2a3faf858a245a409721f6f77b829eb4','Intro','e722963614c85382af29147bfd846382','000409f81dbe5d1ba67101cb9fed4530','Yanmeng welcomes you to her school. What city is it in?
TRANSCRIPT: Hello everyone! My name is Li Yanmeng. I am from China. This is my favorite school, Elite Cradle International School. You are always welcome. I will be your guide!
MORE INFO: This school is in the city of Zhengzhou.',2.0,'Touchable Earth Foundation (New Zealand)','','video',0,60,61,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','1c6066b19c7a5f5b8c2998ec1a72f3c6');INSERT INTO "content_contentnode" VALUES('a43dfa2aeccf5965a5d63d5d7f01d8d7','Lunch','bdf5f61348c555338b253342a348b3f0','000409f81dbe5d1ba67101cb9fed4530','Betty is eating her lunch. Which part of her lunch does she like?
TRANSCRIPT: Hello everyone! I am Zhao Bei. I am from Elite Cradle International School. Here is our lunch today. We have fried shredded pork with celery, corn with shrimp, fried shrimp and potato with meat shreds.I like rice. So today I have added more rice. What’s more, this is my favorite soup! Sweet! Bye bye!',3.0,'Touchable Earth Foundation (New Zealand)','','video',0,62,63,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','1c6066b19c7a5f5b8c2998ec1a72f3c6');INSERT INTO "content_contentnode" VALUES('6b5d07c826155a9cb973862b9ba94668','Classroom 2','1ef3d5de65ad568ba2bbe693e9a04b37','000409f81dbe5d1ba67101cb9fed4530','Wangguo is in his class. What subject are they learning today?
TRANSCRIPT: Hi everyone! my name is Wangguo from China. We are having a Chinese class. What we will learn today is literature, ‘Young China’. Welcome to our classroom. Class Young China is so gorgeous and will never be moldering. Great Chinese youth! They will be as energetic as the young China.',4.0,'Touchable Earth Foundation (New Zealand)','','video',0,64,65,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','1c6066b19c7a5f5b8c2998ec1a72f3c6');INSERT INTO "content_contentnode" VALUES('6bb8c4eb81ac575cbb0b0cae6b0f2258','Boys’ Clothes','57cab9422c62524a820d24405da6f432','000409f81dbe5d1ba67101cb9fed4530','Atha is wearing traditional boys’ clothing. When would he usually wear these clothes?
TRANSCRIPT: Hello! My name is Atha and I am 10 years old. I have on a ‘shalwar kameez’. It is worn in Rajasthan and many more places. It’s specially used for weddings. Bye bye!
MORE INFO: This is traditional clothing from the largest state of India, Rajasthan.',1.0,'Touchable Earth Foundation (New Zealand)','','video',0,70,71,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','9a452d6b796f558f852ba112a77ecab1');INSERT INTO "content_contentnode" VALUES('aaf9b1d1539e51e59c2685b27d1d7ed4','Dance','26ecff71ac1c545082701987402c9003','000409f81dbe5d1ba67101cb9fed4530','Aushwerya is performing a traditional Indian dance. How many types of movement are there in this dance?
TRANSCRIPT: Hi my name is Aushwerya. I am 10 years old. We are going to perform a classical dance called ‘Bharata Natyam’.
MORE INFO: The ‘Bharata Natyam’ dance is one of the most popular dances in India. There are 4 main elements – the pose, the hand gestures, the steps, and the neck movement.',2.0,'Touchable Earth Foundation (New Zealand)','','video',0,72,73,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','9a452d6b796f558f852ba112a77ecab1');INSERT INTO "content_contentnode" VALUES('fc9672e824f457e99d72e0e55954e64e','Girls’ Clothing','0b031eef736b542b8ac764928dd5dea3','000409f81dbe5d1ba67101cb9fed4530','The girls are wearing traditional clothing from different regions of India.
TRANSCRIPT: Hello, my name is Priyanka Varke. I’m studying in fourth club. I’m in City Pride School. I’m from Rajasthan, this is the Rajasthan costume. Bye! Hello, my name is Krishi. I am in Third Wisdom. I am studying in City Pride School . This is my Gujarat costume. Bye! Namaskar. My name is Mehek Santushaha. I am in Third Standard. I am Maharashtrian. This costume is of Mahasthrian. (Sings song) Bye! Hello, I am Urshita. I am from Standard First. I am in City Pride School. I’m wearing the Kela costume. Bye! Hi! My name is Spriha Bahme. Today I am going to do the Bengali thing. (Greeting) This is called a Bengali costume. Thank you! Bye bye!
MORE INFO: Due to the huge diversity in India there are many different styles of traditional clothes.',3.0,'Touchable Earth Foundation (New Zealand)','','video',0,74,75,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','9a452d6b796f558f852ba112a77ecab1');INSERT INTO "content_contentnode" VALUES('587ef342615758f3a57d0764aba5919f','Language','3d5626c887b4599d922929581af8afc8','000409f81dbe5d1ba67101cb9fed4530','Meher will teach you to speak some Hindi. How do you say ‘hello’ in Hindi?
TRANSCRIPT: Hello friends! My name is Meher and I’m going to teach you counting in Hindi from one to ten. ‘Ek’ is ‘1’. ‘Dho’ is ‘2’. ‘Theen’ is ‘3’. ‘Chaar’ is ‘4’. ‘Paanch’ is ‘5’. ‘Cheh’ is ‘6’. ‘Saath’ is ‘7’. ‘Aath’ is ‘8’. ‘Nau’ is ‘9’. ‘Dhas’ is ’10’. Thank you. Bye! Hello friends! My name is Meher and I’m going to teach you hello, hi, bye, in Hindi. Let’s start. ‘Namaste’ is ‘Hello’. ‘Thank you’ is ‘Dhanyavadh’. And ‘how are you?’ is ‘Aap kaise hai?’. ‘Meh achi hoon’ is like ‘I am fine’. ‘My name is Meher‘ in Hindi we say ‘mera naam Meher hai’. Dhanyavadh! Bye!
MORE INFO: Hindi is the official language of India. However English is used for official Government work and is spoken by over 200 million people. In 1961 the census found 1652 mother tongues. Even today there are over 122 languages spoken by more than 10,000 people!',4.0,'Touchable Earth Foundation (New Zealand)','','video',0,76,77,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','9a452d6b796f558f852ba112a77ecab1');INSERT INTO "content_contentnode" VALUES('868f3c24dde4598eaeb015ae731092c8','Music','9d2de4b7f9975ac685e14bd4eaf014f6','000409f81dbe5d1ba67101cb9fed4530','Nawan likes to play the harmonium. What song is he going to play?
TRANSCRIPT: Hi! My name is Nawan. I’m going to play the national anthem on harmonium. We have to move the ‘bhata’ and press the keys. (Song plays) Bye bye!
MORE INFO: Europeans brought harmoniums to India during the 1800s. Indian musicians developed unique types of harmoniums and they are now one of the most popular instruments in the country.',5.0,'Touchable Earth Foundation (New Zealand)','','video',0,78,79,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','9a452d6b796f558f852ba112a77ecab1');INSERT INTO "content_contentnode" VALUES('5c489d0dc22c54da933a53b57ec555d6','Performance','e02e922113bd5deaade3fc17f180b76f','000409f81dbe5d1ba67101cb9fed4530','This is a traditional Indian performance. What is the performance about?
TRANSCRIPT: Turn the pages of history and you will find the bravery related stories and a description of the how great our history was! (Sing’s song)
MORE INFO: This is a traditional Maharashtrian costume. This performance is called a ‘powada’ and includes a hand drum called a ‘daflee’.',6.0,'Touchable Earth Foundation (New Zealand)','','video',0,80,81,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','9a452d6b796f558f852ba112a77ecab1');INSERT INTO "content_contentnode" VALUES('53e7f1077d1e594ba774251f5bf1ffa0','Henna','564bef9c88b15a6a9f67e7c175bc942b','000409f81dbe5d1ba67101cb9fed4530','Ruchi and friends like henna. What is it made from?
TRANSCRIPT: Hi! My name is Ruchi, my name is Aishvirya, my name is Apoora and my name is Fezia. Today I’m here to teach you some henna designs and let’s see how the results are. Bye-bye!
MORE INFO: These are flowers and we draw abstract designs on this so it looks different. Mehndi is something that all Indian ladies like. Henna is a plant which is used for making mehndi and even tea leaves are used in making these. This mehndi will last for one week or two.',7.0,'Touchable Earth Foundation (New Zealand)','','video',0,82,83,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','9a452d6b796f558f852ba112a77ecab1');INSERT INTO "content_contentnode" VALUES('80f7566ddf205e39808dde8f33a94a76','Drums','883fde360c045dd8b7424d429e381664','000409f81dbe5d1ba67101cb9fed4530','Alhad is playing traditional Indian drums. How long ago was this drum invented?
TRANSCRIPT: Hi! My name is Alhad. I am 10 years old. This is a ‘Dagga’ made of metal. This is a ‘Tabla’ made of wood. Iêm going to play ‘Kaida in Trital Taal’. Boy 1: Bye! Boy 2: Wait, why byeê? (Drums played) Everyone: Bye!!!
MORE INFO: The ‘tabla’ drum was invented in India over 2000 years ago. There are several special ways to play it using different fingers or parts of your hand, each makes a different sound.',8.0,'Touchable Earth Foundation (New Zealand)','','video',0,84,85,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','9a452d6b796f558f852ba112a77ecab1');INSERT INTO "content_contentnode" VALUES('698a9d8e8eef589c8ae258cf3be146f4','Song','9488e8cc39f95ce7a6cef37e71b7bd8d','000409f81dbe5d1ba67101cb9fed4530','Vaideh is singing a traditional Indian song. How old is she?
TRANSCRIPT: Hi! My name is Vaidehi. I’m 10 years old and I’m going to sing a song. Its name is ‘Surajki garmee’. (Group sings)
MORE INFO: The design on Vaidehi’s hand is called a ‘henna tattoo’. It is temporary and is made using ink from a henna tree. Girls have them for special occasions or just for fun.',9.0,'Touchable Earth Foundation (New Zealand)','','video',0,86,87,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','9a452d6b796f558f852ba112a77ecab1');INSERT INTO "content_contentnode" VALUES('822fbfafcc5a5a1d8ad8bc2f823c75d6','Welcome','34abe7855d3e592b979acffe5eee824c','000409f81dbe5d1ba67101cb9fed4530','Mala and Chinmay welcome you to India!
TRANSCRIPT: Chinmay: Welcome to India!Group: Welcome to India! Chinmay: My name is Chinmay and I am 10 years old. I live in India. India is in South Asia. The population of our country is 1.2 billion. The capital city of our country is New Delhi. Once again, welcome to India! Group: Welcome to India!Mala: Welcome to India! Group: Welcome to India!. Mala: My name is Mala. I am 10 years old. I live in India. India is a great nation. My country has a population of 1.2 billion. The capital of India is New Delhi. Once again, welcome to you all to India.Group: Welcome to India!
MORE INFO: India has the 2nd largest population in the world, after China, with over 1 billion people.',1.0,'Touchable Earth Foundation (New Zealand)','','video',0,90,91,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','b3d04581fcb750c588e49baf47f88a81');INSERT INTO "content_contentnode" VALUES('09298be9288d50949d9cf3deb20b1f12','Map','b44c108ea2395ead9ac84c62e69f0058','000409f81dbe5d1ba67101cb9fed4530','Where is India on the world map?
TRANSCRIPT: India is in South Asia and is the 7th largest country in the world by area. It shares a border with Pakistan, China, Nepal, Bhutan, and Burma.',2.0,'Touchable Earth Foundation (New Zealand)','','html5',0,92,93,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','b3d04581fcb750c588e49baf47f88a81');INSERT INTO "content_contentnode" VALUES('5e43d269693d5c69a4c06029067df8ce','Capital','1aadfc79e1235199b1c51e8e4a95ce62','000409f81dbe5d1ba67101cb9fed4530','The capital of India is New Delhi. What is the name of this National Monument of India?
TRANSCRIPT: Hi! I’m Aadit, I live in New Delhi. New Delhi has been the capital of India since 1911 and there are 17 million people living in it. My favourite thing about New Delhi is that it is so green. And it’s so fun to play, you can go to so many places to play, and all that amazing stuff. Goodbye!
MORE INFO: The India Gate is the National Monument of India and is found in New Delhi. It was built in 1933 as a monument to soldiers of the Indian Army.',3.0,'Touchable Earth Foundation (New Zealand)','','video',0,94,95,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','b3d04581fcb750c588e49baf47f88a81');INSERT INTO "content_contentnode" VALUES('c5a44629cdc45c13981f8b18679adc46','Flag','c9c9994aa8c1583a8f146f14ce4005a5','000409f81dbe5d1ba67101cb9fed4530','Yash is holding the flag of India. What does the color white stand for?
TRANSCRIPT: Hi! I am Yash and I am 10 years old. I am going to tell you about the Indian Flag. This cotton is a special cotton, it is made of khadi. The Indian Flag consists of 3 colors, Saffron, White, and Green. Saffron stands for courage. White stands for peace. And Green stands for prosperity. This is called the Ashok Chakra. It represents the unity of laws. Bye bye!
MORE INFO: Every single flag in India is made from a special fabric called ‘khadi’ which is a type of cotton or silk. There are 9 official sizes of the flag allowed.',4.0,'Touchable Earth Foundation (New Zealand)','','video',0,96,97,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','b3d04581fcb750c588e49baf47f88a81');INSERT INTO "content_contentnode" VALUES('e702c2feeed85b9ab8597152ea8f2fa6','Anthem','49556c0ef797552a8bc2bb595dfd935e','000409f81dbe5d1ba67101cb9fed4530','Riddhi will sing the National anthem. What is said at the end of the anthem?
TRANSCRIPT: Hello everyone! My name is Riddhi. I’m 11 years old and we all are going to sing our national anthem ‘Jana Gana Mana’. (Group sings anthem). Riddhi: In India, after the National Anthem, we say ‘bharat mataki jai’ which mean ‘we are proud of India’. Group: Bharat mataki jai!
MORE INFO: The anthem, ‘Jana Gana Mana’, is in Bengali which is 1 of the 22 official languages of India. It includes references to the many ethnic groups within India. It’s official length is 52 seconds.',5.0,'Touchable Earth Foundation (New Zealand)','','video',0,98,99,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','b3d04581fcb750c588e49baf47f88a81');INSERT INTO "content_contentnode" VALUES('d158e1faa2875d4c8ab59d40a20993c1','Aadit’s Family','076a5d5fb8875fa28cd6231ac1ec04a1','000409f81dbe5d1ba67101cb9fed4530','Aadit introduces his family.
TRANSCRIPT: Hi! My name is Aadit and I’m 7 years old. I live in New Delhi. So, this is my mother. That’s my sister, and that’s my dad. And, welcome to my home.
MORE INFO: Aadit and his family live in a house in the capital city, New Delhi. His Great Grandfather used to live here. Now there are several houses on the property where Aadit’s extended family live.',1.0,'Touchable Earth Foundation (New Zealand)','','video',0,102,103,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','a5a6e5b5d92e5e138c8604ca47a7212a');INSERT INTO "content_contentnode" VALUES('abdc8821c75c5e3c98402ed5542ef611','Aadit’s Mother','3dd6309db58c5d1fa03abd9393ce8c9b','000409f81dbe5d1ba67101cb9fed4530','Aadit introduces his mother.
TRANSCRIPT: Hi! This is my mother. I love it when she takes me to my swimming classes, my tennis classes, and she takes me to the mall sometimes. And she took me to Legoland also.Mother: And we had lots of fun. Aadit: Yes we had lots of fun. And that’s why I love it when she does all this stuff Mother: And I love my baby.
MORE INFO: Aadit visited Legoland with his mum on a family trip to Europe.',2.0,'Touchable Earth Foundation (New Zealand)','','video',0,104,105,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','a5a6e5b5d92e5e138c8604ca47a7212a');INSERT INTO "content_contentnode" VALUES('88b43798fd4b57ee9d2e1727d78f5e9a','Aadit’s Father','f959d6177f6a53b7badbbdd8b781f391','000409f81dbe5d1ba67101cb9fed4530','Aadit’s introduces his father.
TRANSCRIPT: Hey! This is my dad. His name is Sachin Father: Hi!. Aadit: And he owns a tailoring shop and he makes awesome suits for men. And many times I play my Lego with him. He took me to Lego land and we bought so many Legoes. We had so much fun. And welcome to my home!
MORE INFO: Aadit’s Great Grandfather opened a tailoring shop in 1940 named ‘Vaish at Rivoli’. The shop is now run by Aadit’s dad, Sachin. It is famous as one of the best Mens Tailoring stores in India. Sachin hopes the Aadit will come work with him one day and be the 4th generation in the store.',3.0,'Touchable Earth Foundation (New Zealand)','','video',0,106,107,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','a5a6e5b5d92e5e138c8604ca47a7212a');INSERT INTO "content_contentnode" VALUES('b5b99c81582758fb9179749848795440','Aadit’s room','8de3eb7c1da750a8b75c10735bff2dcd','000409f81dbe5d1ba67101cb9fed4530','This is Aadit’s bedroom and favourite toy.
TRANSCRIPT: Hi! This is my room and this is my favourite toy, I bought it in England. And now I’ll show you how I’ll drive it.
MORE INFO: Aadit shares a room with his little sister. He is wearing his soccer uniform as he just finished practice. His favorite toy is lego but he wanted to show us his new bike.',4.0,'Touchable Earth Foundation (New Zealand)','','video',0,108,109,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','a5a6e5b5d92e5e138c8604ca47a7212a');INSERT INTO "content_contentnode" VALUES('05e7c2f1a6ae56e4b0101c18933f5f4a','Brendan’s Family','8cc93774fce05cf199723c9f2bcf843d','000409f81dbe5d1ba67101cb9fed4530','This is Brendan and his family. Which city do they live in?
TRANSCRIPT: i my name is Brendan and I am 12 years old. This is my sister, she’s my big sister. My mommy, she’s my grandma, my uncle, my big brother and my small brother. Welcome to my home.
MORE INFO: Brendan and his family live in an apartment in Mumbai. Many families in India have extended family members living with them.',5.0,'Touchable Earth Foundation (New Zealand)','','video',0,110,111,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','a5a6e5b5d92e5e138c8604ca47a7212a');INSERT INTO "content_contentnode" VALUES('a4da79d2862351de9b6dfc6e6bacd2b8','Brendan’s Mother','f6c067b00f3a501591833defd7ac3fbe','000409f81dbe5d1ba67101cb9fed4530','This is Brendan and his mother. What is his favorite food that she cooks?
TRANSCRIPT: Hi! This is my mom. Her name is Remi. She cooks very nice food. She’s the best parent; an award she has gotten in our school because she does lots of work in our school. And she is a PTA member. And she cooks good food like prawns, and she cooks nice noodles for me. And she’s my best mom. Thank you!
MORE INFO: Mum can look out this window from the kitchen and see the street where Brendan and his friends play football.',6.0,'Touchable Earth Foundation (New Zealand)','','video',0,112,113,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','a5a6e5b5d92e5e138c8604ca47a7212a');INSERT INTO "content_contentnode" VALUES('d443731e5e9f5074ad1f73d89ef71f8a','Brendan’s Father','9ef8344b410d5478a27499aa99e82eb1','000409f81dbe5d1ba67101cb9fed4530','This is Brendan and his father. What game does he like to play with his father?
TRANSCRIPT: Hi! This is my Dad. His name is Akash. He is working in Africa, Mozambique. He is very nice. When he comes in December for Christmas holidays he buys new toys for me and clothes and we play football together. And he takes me to picnics. He’s very nice. Thank you!
MORE INFO: Brendan’s father is an engineer and works for an oil company in Africa. This is his family’s favorite photograph of him.',7.0,'Touchable Earth Foundation (New Zealand)','','video',0,114,115,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','a5a6e5b5d92e5e138c8604ca47a7212a');INSERT INTO "content_contentnode" VALUES('9bd5b6e227b05432968e1ce55d2525f9','Brendan’s Home','eb844f2da6085f08802dea759d9a4a04','000409f81dbe5d1ba67101cb9fed4530','This is Brendan’s home. What is his favorite sport?
TRANSCRIPT: Hi! These are my trophies. Winner of GFC league and best player. This is my sister’s trophy, and this is my brother’s trophy, my house trophy. ‘Best Parent’, my mom’s trophy, and my sister’s trophy. Thank you.
MORE INFO: Brendan loves football and David Beckham. The glass trophy was given to Brendan’s mum for being the ‘Best Parent’ by helping his school so much.',8.0,'Touchable Earth Foundation (New Zealand)','','video',0,116,117,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','a5a6e5b5d92e5e138c8604ca47a7212a');INSERT INTO "content_contentnode" VALUES('01dba91a77f751d8a1524de9c5d6838f','Brendan’s Hobby','e1244c4574f256d8b1b53c116e9838cc','000409f81dbe5d1ba67101cb9fed4530','This is Brendan’s sticker collection. What is favorite type of car?
TRANSCRIPT: These are my sticker collections and these are my stickers. This is a car, my favorite car, a Ferrari, and my favourite bike, a BMW. And my favourite fighters, WWE, here. I like Charlie Chaplin because he is very funny and he looks cool. Thank you.
MORE INFO: Brendan loves stickers. Any sticker with a car, bike, or ‘Dragon Ball Z’ he collects and puts here.',9.0,'Touchable Earth Foundation (New Zealand)','','video',0,118,119,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','a5a6e5b5d92e5e138c8604ca47a7212a');INSERT INTO "content_contentnode" VALUES('9c484f9d16bc5e71a2fa02695b238307','Aditya','5189499aad6b5598bc9f130d114b036e','000409f81dbe5d1ba67101cb9fed4530','Let’s make friends with Aditya.
TRANSCRIPT: Hi! I’m Aditya. I am 9 years old. I don’t have any elder brothers or sisters but I have many cousins. I like to play with them very much. My mother’s name is Asawari and my father’s name is Venaed I like to play cricket with them. Bye!',1.0,'Touchable Earth Foundation (New Zealand)','','video',0,122,123,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','8c0e3b1d595a517b9d63e54f1b07a9cf');INSERT INTO "content_contentnode" VALUES('0d57172b3cc4520c95f1cd460ac72914','Anish','78b8a5bc92b65634818775b432c4115f','000409f81dbe5d1ba67101cb9fed4530','Let’s make friends with Anish.
TRANSCRIPT: Hi! My name is Anish and I am 10 years old. I am studying in City Pride School. My family type is a nuclear family. My hobby is to play the tabla. My favourite subject is English. My favourite cricket player is Sachin Tendulkar. My favourite bowler is Brett Lee. Bye!',2.0,'Touchable Earth Foundation (New Zealand)','','video',0,124,125,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','8c0e3b1d595a517b9d63e54f1b07a9cf');INSERT INTO "content_contentnode" VALUES('a7f2ef1a7fec5c27a97ede2f2e9cc8a4','Anupam','2fd075cde0095fccb64d2deef579730c','000409f81dbe5d1ba67101cb9fed4530','Let’s make friends with Anupam. How old is he?
TRANSCRIPT: Hi! My name is Anupam. I live in Bombay. I am 10 years old. My school name is Scholar High school. My parents live on Mint Road. I play football with my friends on Sunday. I’m 10 years old. Bye!',3.0,'Touchable Earth Foundation (New Zealand)','','video',0,126,127,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','8c0e3b1d595a517b9d63e54f1b07a9cf');INSERT INTO "content_contentnode" VALUES('e2401a5b848158fa9b605c4a68094690','Anushka','5e325f904bd65e5fb84c82a4d99dac9c','000409f81dbe5d1ba67101cb9fed4530','Let’s make friends with Anushaka. What does she want to do when she grows up?
TRANSCRIPT: Hi! my name is Anushka. I’m in Standard 6. I am 12 years old. I like Yoga very much, it grows my flexibility. It’s very energetic.I enjoy doing it and when I grow big I want to be a coach of Yoga. Bye!',4.0,'Touchable Earth Foundation (New Zealand)','','video',0,128,129,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','8c0e3b1d595a517b9d63e54f1b07a9cf');INSERT INTO "content_contentnode" VALUES('db5093935e4e53b79ebc88437b5c3230','Chinmay','9b66d157248458619b79706a18babf32','000409f81dbe5d1ba67101cb9fed4530','Let’s make friends with Chinmay. What grade is he in?
TRANSCRIPT: Hi! I’m Chinmay. I study in New India School. I am in Fourth Standard. I live in a big family. We have a big house, I have a brother who is in Senior KG. My mother goes to an office. After the school I go to the day care. Bye!',5.0,'Touchable Earth Foundation (New Zealand)','','video',0,130,131,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','8c0e3b1d595a517b9d63e54f1b07a9cf');INSERT INTO "content_contentnode" VALUES('1153b49a469d5c0ebb7ef3fd9e258314','Hamza and Brendan','019eea80f4255cd8b1305057f434fd4d','000409f81dbe5d1ba67101cb9fed4530','Let’s make friends with Hamza and Brendan. How do they know each other?
TRANSCRIPT: Hamza: Hi my name is Hamza. Brendan: And I’m Brendan. We both are neighbours and friends. Best friends ever since. When we go to school our teachers tell us that we are Laurel and Hardy. I am Laurel and he’s Hardy. He wants to become a WWE champion and I want to become a footballer. Thank you. Bye!',6.0,'Touchable Earth Foundation (New Zealand)','','video',0,132,133,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','8c0e3b1d595a517b9d63e54f1b07a9cf');INSERT INTO "content_contentnode" VALUES('7e8836f5c3bb5ad5a056f9e5563f250f','Mala','384c11d2073f59d488d90aa35ffbeed3','000409f81dbe5d1ba67101cb9fed4530','Let’s make friends with Mala. What is her favorite game?
TRANSCRIPT: Hi! My name is Mala. I study in New India School. I’m in Fifth Standard. I am 10 years old. My favourite game is football. My favourite team is Brazil. My favourite player is Messi. I love to eat chicken. Bye!',7.0,'Touchable Earth Foundation (New Zealand)','','video',0,134,135,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','8c0e3b1d595a517b9d63e54f1b07a9cf');INSERT INTO "content_contentnode" VALUES('82b5e8803735517d91553325163e1ecc','Nigagal','6c53d92a8d015944bf9d65e550ef1afb','000409f81dbe5d1ba67101cb9fed4530','Let’s make friends with Nigagal. What is her favorite subject?
TRANSCRIPT: Hi. I am Nigagal. I study in City Pride School. Today I am going to talk about my family. My mother is a basic maths teacher, she teaches in a school. My father was also a basic maths teacher, now he’s an engineer. My grandfather was taking tuition of maths and my grandmother was also taking tuition of maths. So maths subject is very easy for me. So I like math subject, it’s my hobby. Bye!',8.0,'Touchable Earth Foundation (New Zealand)','','video',0,136,137,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','8c0e3b1d595a517b9d63e54f1b07a9cf');INSERT INTO "content_contentnode" VALUES('992328c8436254f8a56fb775ba9404dd','Sanika','70a475513cee5ac9bfd2c7beb515c997','000409f81dbe5d1ba67101cb9fed4530','Let’s make friends with Sanika. What is her hobby?
TRANSCRIPT: Hi! I’m Sanika. I’m 9 years old. My hobby is singing. And, I want to make friends with all of them, the many friends in this school. And they are very nice. I don’t have any elder brothers or sisters but still I have fun in the house.',9.0,'Touchable Earth Foundation (New Zealand)','','video',0,138,139,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','8c0e3b1d595a517b9d63e54f1b07a9cf');INSERT INTO "content_contentnode" VALUES('ed2982c7b22d5cb1bbee09d5a140c8fd','Seher','70da1c38b4ca51e899ee5b88951e7347','000409f81dbe5d1ba67101cb9fed4530','Let’s make friends with Seher. What is she dressed up as?
TRANSCRIPT: Hello! My name is Seher. (Poem) I am Ipad, sophisticated and young. I came in the market, a year back or maybe 2. You can play games with me or even go to the education tree. I can also become a music player or help you make calls, so what do you say? Come enjoy the benefit of technology but let it not rule you. Understand its philosophy. Thank you!
MORE INFO: Seher and her mum wrote the ‘I am Ipad’ poem for a dress up day at school.',10.0,'Touchable Earth Foundation (New Zealand)','','video',0,140,141,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','8c0e3b1d595a517b9d63e54f1b07a9cf');INSERT INTO "content_contentnode" VALUES('aa175ada2254542090ab1df5768abe19','Talleh','ffffc1cfbdb859b29fcf5bc6a4635803','000409f81dbe5d1ba67101cb9fed4530','Let’s make friends with Talleh. What does he want to become when he grows up?
TRANSCRIPT: Hi! My name is Talleh. I’m 10 years old. I will grow big and become a scientist. I like science subject. Bye!',11.0,'Touchable Earth Foundation (New Zealand)','','video',0,142,143,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','8c0e3b1d595a517b9d63e54f1b07a9cf');INSERT INTO "content_contentnode" VALUES('31f2234f2263528eb83ff00d72ff54bc','Tanaya','8c14d4dd231d54d7acc26f2e7247c2f0','000409f81dbe5d1ba67101cb9fed4530','Let’s make friends with Tanaya. What does she want to become when she grows up?
TRANSCRIPT: Hi! My name is Tanaya and I am from City Pride School. I am 9 years old, and I’m studying in Standard Four Peace, and my favourite subject is science. And when I grow up I want to be a teacher. Bye! Thank you.',12.0,'Touchable Earth Foundation (New Zealand)','','video',0,144,145,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','8c0e3b1d595a517b9d63e54f1b07a9cf');INSERT INTO "content_contentnode" VALUES('b7d9d2a8c8585a78bb5f9f82f6aff9ea','Yash','62c774a5ce025c9b98bf02a51ef0300a','000409f81dbe5d1ba67101cb9fed4530','Let’s make friends with Yash. How old is he?
TRANSCRIPT: Hi! I am Yash. I am 10 years old. He is ‘Ben10’ and I like him because he has a watch which contains aliens and he fights with the bad aliens and he always wins. I like him a lot. Bye bye!',13.0,'Touchable Earth Foundation (New Zealand)','','video',0,146,147,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','8c0e3b1d595a517b9d63e54f1b07a9cf');INSERT INTO "content_contentnode" VALUES('d1d15b7380905e8a9c5a49f5cb919982','Carrom','a754413697b45570aef906f5dc5cd061','000409f81dbe5d1ba67101cb9fed4530','Meher is playing Carrom with her sister. What is Carrom played on?
TRANSCRIPT: Hello! My name is Meher. This whole thing is called a Carrom. The full name of it is Carrom board. This game is really popular in India. So we hit it up and it should go through the holes. If you get a Queen, the Queen is for 50 points and if you get a white one, the white one is for 20 points and the black one is for 10 points. So you hit it and it goes in the holes. You’re supposed to hit the Queen. You will need a soldier for it to go in so you get one more chance for it. But if you’re not able to get the soldier, then you put the Queen back. (Players talk)
MORE INFO: Carrom is believed to have originated in India hundreds of years ago. It can be played with 2 players sitting across from each other or by 4 players with one on each side.',1.0,'Touchable Earth Foundation (New Zealand)','','video',0,150,151,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','587c8a5030a7500e9c86723d7a2cf27f');INSERT INTO "content_contentnode" VALUES('23e41ce6f7b451c9aae47af84d1def89','Football','617a935d53e551d0b9c9b05ab7bcf9cb','000409f81dbe5d1ba67101cb9fed4530','Brendan and his friends are playing football. What is the name of their club?
TRANSCRIPT: I am Brendan I am Captain of this Club. This is ‘Street Club United’. This is Hamza, goal keep. This is a striker. I’m a mid, forward mid. He’s a striker, and he’s a defender, he’s half. This is our ground. This is Street Club United ground. This is the beautiful ground we play. This is the bus stop! (Kids play and laughter).
MORE INFO: Kids in India love football. On the weekend there will be kids playing on every street, park, or beach.',2.0,'Touchable Earth Foundation (New Zealand)','','video',0,152,153,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','587c8a5030a7500e9c86723d7a2cf27f');INSERT INTO "content_contentnode" VALUES('e5dc7e5002485673b2662016cd272132','Golli','0d1f010e4b045052b54c091f367a80d3','000409f81dbe5d1ba67101cb9fed4530','Ali likes to play a traditional game named Golli.
TRANSCRIPT: Hello my name is Ali and we are playing Golli.
MORE INFO: Golli is one of the popular games played in India and the aim is to strike a stone or marble into a hole.',3.0,'Touchable Earth Foundation (New Zealand)','','video',0,154,155,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','587c8a5030a7500e9c86723d7a2cf27f');INSERT INTO "content_contentnode" VALUES('ce87d458015a5245a5fa82fad37995f8','Gymnastics','79505ececb5756c6a2f495f588596176','000409f81dbe5d1ba67101cb9fed4530','Sadhi likes rope gymnastics. How old is she?
TRANSCRIPT: Hi! My name is Sadhi. I am 9 years old. I like to play rope ‘Mallakhamb’.
MORE INFO: ‘Mallakhamb’ is a traditional Indian form of gymnastics. There is either a pole or a hanging rope that the gymnast uses to pose in a special way. ‘Mallakhamb’ can be done as a performance or a competitive sport.',4.0,'Touchable Earth Foundation (New Zealand)','','video',0,156,157,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','587c8a5030a7500e9c86723d7a2cf27f');INSERT INTO "content_contentnode" VALUES('a216c39d35f45f5c99862f4f9cc3f84b','Transport','13fb5c10de685acdbfabf103e392c030','000409f81dbe5d1ba67101cb9fed4530','Gargi comes to school by auto rickshaw. How old is she?
TRANSCRIPT: Hello! Kids in background: Hello hello! Gargi: Hello! My name is Gargi. I am 6 years old. I come to school in a rickshaw. Bye bye!
MORE INFO: A rickshaw is a bicycle with a carriage on the back for people to sit. When it has a motor, and is more like a scooter with a carriage, it is called an ‘auto rickshaw’.',1.0,'Touchable Earth Foundation (New Zealand)','','video',0,160,161,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','b01a47cf980b51acac895f34f7a96750');INSERT INTO "content_contentnode" VALUES('221f9736f7b3569fb3100a7f9ef6a751','Maths','d9a091dc0001593c91eb22946ae8f4e1','000409f81dbe5d1ba67101cb9fed4530','Welcome to Vedant’s class. What subject are they learning today?
TRANSCRIPT: Hello! My name is Vedant I am 10 years old. I am learning mathematics. This is our teacher. Teacher: Hello. My name is Mrs Bhakti and I teach mathematics to this class. What will be your 3rd statement? Somebody else? Class: Ma’am! Ma’am! Ma’am! please! Ma’am! Girl: The total number of children in the city? Teacher:No. Class: Ma’am! Ma’am! Ma’am! Teacher: The total of
Yes? Vedant: The total number of men and women in the city?Teacher: Men and women in the city.
MORE INFO: The students also attend classes on math, science, history, geography, environmental education, music, art, and yoga.',2.0,'Touchable Earth Foundation (New Zealand)','','video',0,162,163,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','b01a47cf980b51acac895f34f7a96750');INSERT INTO "content_contentnode" VALUES('8264bde608725ddca31c2d1ddef47250','Writing','51b171cd1cdb5abe8cb4e66a2720a622','000409f81dbe5d1ba67101cb9fed4530','This is Anoushka’s Grade 5 class. What subject are they studying today?
TRANSCRIPT: My name is Anoushka. Today we are going to learn creative writing. This is my teacher Sheetal Karandikar. Teacher: Hello. Hi! Anoushka: This is my class. Class: Hi!!! (Everybody laughs) Teacher: Okay class. Today we’re going to have creative writing. I have put up a topic in the blackboard. I want you to guess what it is. If the ‘?’ came to the ‘?’. Student 1: If the guest came to the class? Teacher: Not really, but good idea, but not really. Student 2: If the car came to the mechanic? (Class laughs) Teacher: Someone else? Yes? Student3: If the aliens come to the earth? Teacher: Very creative for creative writing. I’ll give you a clue. Now, with this clue, this word starts with a ‘W’ and the other one with ‘S’. Yes, Anisha? Student 4: If the writer comes to our school. Teacher: If the writer comes to our school? No, I have something else in mind. Dajel?Student 5: If the world came to a stop? Teacher: The first word is correct. Let’s clap for Dajel! (Class claps) The world came to a
Can anyone think of another word for stop? Another word for stop
Yes Ketke? Student 6: School? Teacher: Another word for stop is school? (Class laughs) No, no. Mehil? Student 7: Stay? Teacher: Stay? A little beyond that. Yes? Student 8: Stand? Teacher: Stand? And extend that word a little bit? Student 9: Standing? Teacher: Extend this word a bit. Something else other than to stand. Yes, Aori? Anushka? Student 10: ‘i n g’? Teacher: no. Three more letters left. Come on! Come on! More hands! I want some more hands! I want some more people to answer. Anika? come on… Student 11: Standstill! Teacher: Yes! Clap for him! (Class Claps)
MORE INFO: Classes are taught in English but the students also learn Hindi, German, and Sanskrit.',3.0,'Touchable Earth Foundation (New Zealand)','','video',0,164,165,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','b01a47cf980b51acac895f34f7a96750');INSERT INTO "content_contentnode" VALUES('570f20c2dc91538da3a7104555976530','Lunch','b88a8856dc4553c8a69f9c5632db80ff','000409f81dbe5d1ba67101cb9fed4530','Piyusha is having her school lunch. Is it vegetarian?
TRANSCRIPT: Hi! My name is Piyusha. I am 9 years old. I am eating ‘Mashumbre’. There is sprouts, potato, tomato, onion, and sweet corn. Bye-bye!
MORE INFO: This is Piyusha’s lunch from the school cafeteria.',4.0,'Touchable Earth Foundation (New Zealand)','','video',0,166,167,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','b01a47cf980b51acac895f34f7a96750');INSERT INTO "content_contentnode" VALUES('9b0ed89f3cf5529f99bbb257ee9b0201','Teacher','ffa6aff6ae195435a08438efa58a3869','000409f81dbe5d1ba67101cb9fed4530','Chinmayee will introduce you to the Director of the school. How does the Director want the children to feel at school?
TRANSCRIPT: Hi! My name is Chinmayee and this is our school director Dr. Sunita Baghwad. Dr. Sunita Baghwad: Hi! I’m here at New India school, we want all of our teachers to love their children and then teach and make them more joyful. Both: Bye! Bye!
MORE INFO: Dr. Bhagwat has only been at the school a short time. She is very interested in connecting her students with kids in other parts of the world.',5.0,'Touchable Earth Foundation (New Zealand)','','video',0,168,169,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','b01a47cf980b51acac895f34f7a96750');INSERT INTO "content_contentnode" VALUES('ae1ebab2530657e9a629b1b8207a5817','School','37f6259a10dd57df92e73587fc3eb05c','000409f81dbe5d1ba67101cb9fed4530','Sanika and Aditya welcome you to their school. How many students go to their school?
TRANSCRIPT: Sanika: Hi! I’m Sanika and I am 9 years old. This is my school, New India School, and there are more than 2,000 students in this school. Aditya: Hi! I am Aditya. There are students from kindergarten to standard 10 in this school. Both: Welcome to our school!
MORE INFO: Sanika and Aditya go to New India school which is in the city of Pune. Pune has existed for 1200 years and is the 9th largest city in India. Classes are 7 hours a day 5 days a week.',6.0,'Touchable Earth Foundation (New Zealand)','','video',0,170,171,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','b01a47cf980b51acac895f34f7a96750');INSERT INTO "content_contentnode" VALUES('6a3ab428ef6a5d64941edb1f28e0f75a','Boys’ Clothing','916a3d301e8f513c8c00944880c00f14','000409f81dbe5d1ba67101cb9fed4530','Zhia is wearing traditional Kurdish clothing for boys. What is the shoe made out of?
TRANSCRIPT: Hello my name is Zhia. I am 11 years. This is a Kurdish clothes. This is ‘tolwar’, this is ‘shalwar’, ‘pushbian’. This is Kurdish shoes traditional. This is cotton, this is leather, this is nails. Bye!',1.0,'Touchable Earth Foundation (New Zealand)','','video',0,176,177,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','c586f8b63b545d4ca765179dfc926c20');INSERT INTO "content_contentnode" VALUES('720e92a156a158b1ab4483f026edefd6','Dance','21d213f55a265815a15dd7c51adfc124','000409f81dbe5d1ba67101cb9fed4530','Kawsar and her friends love to dance. Why are they dancing today?
TRANSCRIPT: Hello! My name is Kawsar. I live in Kurdistan. Now we will show you some Kurdish dance.',2.0,'Touchable Earth Foundation (New Zealand)','','video',0,178,179,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','c586f8b63b545d4ca765179dfc926c20');INSERT INTO "content_contentnode" VALUES('f7f8daaf372756268a274682cbbc25a7','Girls’ Clothing','ce0ed4c0a9c35157b35c3896057186b6','000409f81dbe5d1ba67101cb9fed4530','Keje is wearing traditional clothing for girls. How old is Keje?
TRANSCRIPT: Hi! My name is Keje. I am in 6 years old. This is ‘sukma’ and ‘crass’. I am six years old and I live in Erbil. Bye!',3.0,'Touchable Earth Foundation (New Zealand)','','video',0,180,181,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','c586f8b63b545d4ca765179dfc926c20');INSERT INTO "content_contentnode" VALUES('1c80eda3b797598b8a7e7d48a1a3d3bb','Language','c1d0ef5c67f5561b987401c234ab113f','000409f81dbe5d1ba67101cb9fed4530','Yara speaks Kurdish. How do you say hello in Kurdish?
TRANSCRIPT: Hi! I’m Yara. I’m going to teach you how count in Kurdish. Hi I’m Yara. I’m going to teach you how you can speak Kurdish. ‘Hello’. ‘slaw’. ‘How are you’?, ‘chony’?. ‘I’m well’, ‘mn bashm’. ‘My name is Yara’, ‘mn nawn Yara a’. ‘Thank you’, ‘supas’. ‘Goodbye’, ‘kwa hazfeez’. Bye!’0′, ‘sofor’. ‘1’, ‘?k’. ‘2’, ‘dô’. ‘3’, ‘s?’. ‘4’, ‘??r’. ‘5’, ‘p?nj’. ‘6’, ‘a’. ‘7’, ‘haft’. ‘8’, ‘hat’. ‘9’, ‘na’. ’10’, ‘da’. Bye!',4.0,'Touchable Earth Foundation (New Zealand)','','video',0,182,183,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','c586f8b63b545d4ca765179dfc926c20');INSERT INTO "content_contentnode" VALUES('12b420eab237592d9f2fedbfab446e20','Rugs','0d35014e16725b5b8b40ac80861482fa','000409f81dbe5d1ba67101cb9fed4530','Mohammed is standing with a traditional Kurdish rug. What is the rug made of?
TRANSCRIPT: Hi! My name is Mohammed. I was born in Hewler. I am 8 years old. The name of my school is ‘Furat’. I am in second level, next year I will be third. Today I am going to talk about this rug. It is 30 years old. It is made of wool. They made it by their hands in Kurdistan.',5.0,'Touchable Earth Foundation (New Zealand)','','video',0,184,185,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','c586f8b63b545d4ca765179dfc926c20');INSERT INTO "content_contentnode" VALUES('2668f899b3915f1499f6b72b1b327722','Writing','3fa2d95c44085895a6776667ff1913aa','000409f81dbe5d1ba67101cb9fed4530','Hevar will teach you to write in Kurdish. What has he written on the paper?
TRANSCRIPT: Hi! I’m Hevar I’m 9 years old and I’ll teach you how to write Kurdistan in Kurdish. So, I will write right to left because that’s how you write in Kurdish. Ok, this is how you write a K in Kurdish. This is like that, then you do it like this. Then the R it looks like kind of a curve. Then the D. Now I’ll do the S. So, I didn’t really do the I in the word because in Kurdish the I is not really a letter. So that’s why. And then the T is like this. And this is the A, and N is like this. So in Kurdish you start from right to left, not like English from left to right. Now you try!',6.0,'Touchable Earth Foundation (New Zealand)','','video',0,186,187,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','c586f8b63b545d4ca765179dfc926c20');INSERT INTO "content_contentnode" VALUES('8d07e8da09cc568bae067b5ab62dddf6','Welcome','90a05c448b9a51f4b9255f28e1581aa8','000409f81dbe5d1ba67101cb9fed4530','Helin and Sammy welcome you to Iraqi Kurdistan. What is the population of Iraqi Kurdistan?
TRANSCRIPT: Hello my name is Sammy. Kurdistan is in Northern Iraq. The capital is Erbil and the population is 4 and a half million. Welcome to Iraqi Kurdistan!Group: Welcome to Iraqi Kurdistan! Hi! My name is Helin. Welcome to Iraqi Kurdistan. Hewler is the capital of Kurdistan. Welcome to Iraqi Kurdistan!. Group: Welcome to Iraqi Kurdistan!',1.0,'Touchable Earth Foundation (New Zealand)','','video',0,190,191,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','cb80be11d336516c9a586cc5bb06e9e6');INSERT INTO "content_contentnode" VALUES('58a378aaa6ad527b83066605f312f010','Map','8582b51af11d565aa69f385e745ad2f6','000409f81dbe5d1ba67101cb9fed4530','Where is Iraqi Kurdistan on the world map?
TRANSCRIPT: Kurdistan is in the northern most part of Iraq. It borders Turkey, Syria, and Iran.',2.0,'Touchable Earth Foundation (New Zealand)','','html5',0,192,193,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','cb80be11d336516c9a586cc5bb06e9e6');INSERT INTO "content_contentnode" VALUES('310f39599509579a8cb110f3f92a3ee7','Capital','90cc9186c6e254d4a0b99841cb146fca','000409f81dbe5d1ba67101cb9fed4530','The capital of Iraqi Kurdistan is Erbil. How many people live in Erbil?
TRANSCRIPT: Hi! I’m Hevar. This is Iraqi Kurdistan it is in Iraq. The capital city of Kurdistan is Erbil. There are two million people in Erbil and this is the Parliament building.',3.0,'Touchable Earth Foundation (New Zealand)','','video',0,194,195,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','cb80be11d336516c9a586cc5bb06e9e6');INSERT INTO "content_contentnode" VALUES('7b3476e84df7510a9380a62d8dde2278','Flag','6c3bc4e7d956579e94d586da644c047a','000409f81dbe5d1ba67101cb9fed4530','Zhia is holding the flag of Iraqi Kurdistan. What does the color white stand for?
TRANSCRIPT: Hi this is Kurdish flag. Red for revolution, white for peace, and green for land. And sun it is yellow for light and life. It is 21 arrows of Kurdish new year. Bye!',4.0,'Touchable Earth Foundation (New Zealand)','','video',0,196,197,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','cb80be11d336516c9a586cc5bb06e9e6');INSERT INTO "content_contentnode" VALUES('400ed4fab92e5775bb7161b6be227128','Anthem','40b998adcc3753a782fa3315e049a33b','000409f81dbe5d1ba67101cb9fed4530','Savan will sing the Kurdish anthem. What is it about?
TRANSCRIPT: My name is Savan. I want to show you my Kurdish song. Anthem Kurdish song. It’s called ‘Ey Reqib’. Bye!',5.0,'Touchable Earth Foundation (New Zealand)','','video',0,198,199,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','cb80be11d336516c9a586cc5bb06e9e6');INSERT INTO "content_contentnode" VALUES('8684737f548752099ec8a8cd9737fe56','Muhammed’s Family','d6b6e8001f0b59d5a496c99417c5bd8f','000409f81dbe5d1ba67101cb9fed4530','Muhammed wants you to meet his family. How many people are in his family?
TRANSCRIPT: This is my family. His name is Mala Moshin, he is my father. This one is Zaha, she is my sister. This is Mohammed, he is my brother. This is my mother her name is Qadri and this is Bayan, she is my sister, Bayan. Bye bye!',1.0,'Touchable Earth Foundation (New Zealand)','','video',0,202,203,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','e402698d51a25f009cd7e9dd4afd16d1');INSERT INTO "content_contentnode" VALUES('0a72a983a6955783875532bc3612dc9f','Bayan’s Mother','59c930dae29857c999f2316aca13a9dd','000409f81dbe5d1ba67101cb9fed4530','Bayan is with her mother. What does she help her mother with?
TRANSCRIPT: I go to school. I am 7 years old. I am 2nd grade. To help my mum I cook, wash dishes, clean the house, and the kitchen. I milk the goats. I make yogurt. I boil the milk. We wash and clean the house. Welcome!',2.0,'Touchable Earth Foundation (New Zealand)','','video',0,204,205,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','e402698d51a25f009cd7e9dd4afd16d1');INSERT INTO "content_contentnode" VALUES('a684a3997efc5089bb7d8595ad5a7d4b','Devar’s Father','42a1fc22b4ea57b584a9e791081ce870','000409f81dbe5d1ba67101cb9fed4530','Devar is with his father. Where does he help his father?
TRANSCRIPT: I am helping my father and we have farm animals like goats, lamb, hens and birds. We are giving animals water. We are going to weddings in Hewler. We go to ceremonies. We are visiting shekhs. I am a shepherd. Sometimes dogs eat our hens. Bye bye!',3.0,'Touchable Earth Foundation (New Zealand)','','video',0,206,207,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','e402698d51a25f009cd7e9dd4afd16d1');INSERT INTO "content_contentnode" VALUES('aff730dcd8f858cf926122fce761f0ec','Muhammed’s Home','657b272109765c2e867dae933aebf254','000409f81dbe5d1ba67101cb9fed4530','Muhammed is in his home. What animal is on the carpet hanging on the wall?
TRANSCRIPT: This is our house. And this is our carpet. We have carpets decorating the wall. We don’t have a door. We don’t have glass on the window. We have a TV and a wall clock. My name is Muhammad. I was 4th grade and I passed to 5th grade. I am son of Mula Muhssan Lazzani. I am 8 years old. I take care of our animals.',4.0,'Touchable Earth Foundation (New Zealand)','','video',0,208,209,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','e402698d51a25f009cd7e9dd4afd16d1');INSERT INTO "content_contentnode" VALUES('45c8f4e8752a56529cf6d54b0f664140','Savan’s Family','0f79ab38223554d69c493e526b58fd6d','000409f81dbe5d1ba67101cb9fed4530','Savan lives in the suburbs of the capital city Erbil.
TRANSCRIPT: Hi! My name is Savan. I’m 10. This is my father, his name Hassan. This is my mother, her name her name is Khwncha. This is my brother, his name is Zhiwar. And welcome to our house!',5.0,'Touchable Earth Foundation (New Zealand)','','video',0,210,211,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','e402698d51a25f009cd7e9dd4afd16d1');INSERT INTO "content_contentnode" VALUES('907542296a165386b8114ee193f2e692','Savan’s Mother','24d9e74de54152cd86c905b92db391eb','000409f81dbe5d1ba67101cb9fed4530','Savan’s favorite Biryani is made from basmati rice mixed with potato, onion, tomato, peas, coriander, and chilies.
TRANSCRIPT: Hi! That’s my mother, her name is Khwncha. I help her in the kitchen. She cooks very tasty. My favorite food is Biryani, without meat.',6.0,'Touchable Earth Foundation (New Zealand)','','video',0,212,213,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','e402698d51a25f009cd7e9dd4afd16d1');INSERT INTO "content_contentnode" VALUES('d9291a36b6f15a1e88a6c4462c7df8ed','Savan’s Father','27c64eaa3af550879d9400afce5b85b6','000409f81dbe5d1ba67101cb9fed4530','Savan introduces her father.
TRANSCRIPT: Hi! This is my father. Father: Hello!. Savan: He works in ceramics. Every time when he comes back home I run and give him a big hug.',7.0,'Touchable Earth Foundation (New Zealand)','','video',0,214,215,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','e402698d51a25f009cd7e9dd4afd16d1');INSERT INTO "content_contentnode" VALUES('908ed84d655f5d09b07678d091010bb9','Savan’s Room','85279783049c5286bf62d3086d4e6f59','000409f81dbe5d1ba67101cb9fed4530','Savan shows you her room and favourite toy.
TRANSCRIPT: Hi! That’s my room and I’m staying with my sister. That’s my favorite toy. I named her Yoona because in Korean music there is a group named ‘Girls Generation’. And one of them I like the most, her name is Yoona, that’s why I like the most. Bye!',8.0,'Touchable Earth Foundation (New Zealand)','','video',0,216,217,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','e402698d51a25f009cd7e9dd4afd16d1');INSERT INTO "content_contentnode" VALUES('9af91108e56e57b09c0efeaa0eebf812','Savan’s Hobby','c3f7466dad2355c9aa2f7b827ed4619c','000409f81dbe5d1ba67101cb9fed4530','Savan sings her favourite song.
TRANSCRIPT: Hello! My name is Savan. And I live in Kurdistan. I like to sing and I’m 10 years old. I like to sing a song for fun And it’s ‘Us Against the World’. [We’re not gonna break Cause we both still believe We know what we’ve got And we’ve got what we need alright We’re doing something right. Cause it’s Us against the world You and me against them all If you listen to these words Know that we are standing tall I don’t ever see the day that I won’t catch you when you fall Cause it’s Us against the world Yeah it’s Us against the world, baby Us against the world Tonight Bye!]',9.0,'Touchable Earth Foundation (New Zealand)','','video',0,218,219,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','e402698d51a25f009cd7e9dd4afd16d1');INSERT INTO "content_contentnode" VALUES('8b42cc27de3e576b82f98d57d2ebb2b3','Sarah','f32110249fc8528d82c467b2996ef084','000409f81dbe5d1ba67101cb9fed4530','Let’s make friends with Sarah. What is her favorite subject at school?
TRANSCRIPT: Hi! I’m Sarah. I’m 6 years old. My favorite lesson is math. I love school. This is my paper, my teacher gave it to me because I’m first grade. Now I’m going to the second grade. Bye! See you!',1.0,'Touchable Earth Foundation (New Zealand)','','video',0,222,223,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','5ee66344dcf859f0808eaa0977ce637d');INSERT INTO "content_contentnode" VALUES('dcb2e07822c85c1e8b6d5d67dc9194aa','Ahmed','2dddb3fea2cb552bb7044d78016c8ea9','000409f81dbe5d1ba67101cb9fed4530','Let’s make friends with Ahmed. Which color of ice cream does he like the most?
TRANSCRIPT: My name is Ahmed. I am 11 years old. I like Milan’s ice cream. I like green ice cream. I want Barcelona to win. I like David Vea. I like Range rover cars. What else? ummm? Bye!',2.0,'Touchable Earth Foundation (New Zealand)','','video',0,224,225,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','5ee66344dcf859f0808eaa0977ce637d');INSERT INTO "content_contentnode" VALUES('412c0443f9f157f5b8ac0d5aec038215','Bahoz','5513c0ea7ae154d5b84e9f3935645c35','000409f81dbe5d1ba67101cb9fed4530','Let’s make friends with Bahoz. What is his favorite food?
TRANSCRIPT: Hi my name is Bahoz. I’m 10 years old. I live in Erbil. This is my city in 1820. My favorite food is banana and my favorite sport is football. Bye!',3.0,'Touchable Earth Foundation (New Zealand)','','video',0,226,227,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','5ee66344dcf859f0808eaa0977ce637d');INSERT INTO "content_contentnode" VALUES('bc502f76e9ff5c459989a02de27093f7','Evan','a76b299c62075d5ebde360bd29444121','000409f81dbe5d1ba67101cb9fed4530','Let’s make friends with Evan. What is her house made of?
TRANSCRIPT: My name is Evan. I was in seventh level and I passed to eighth. I like to go to school. We have farm animals. Our house is made of clay. We live in a cottage. I wish to be a doctor. I want to keep my studying. Bye!',4.0,'Touchable Earth Foundation (New Zealand)','','video',0,228,229,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','5ee66344dcf859f0808eaa0977ce637d');INSERT INTO "content_contentnode" VALUES('288902c01d49531fa9dc9cf51b131f20','Hemin','95b883418c46549a9ee1a78ed7581fa2','000409f81dbe5d1ba67101cb9fed4530','Let’s make friends with Hemin. What would he like to be when he grows up?
TRANSCRIPT: My name is Hemin. I was 4th grade and graduated to 5th grade. I am 11 years old. I would like to have a remote controlled car and a PlayStation 2.I would like to become a doctor and do well in school.',5.0,'Touchable Earth Foundation (New Zealand)','','video',0,230,231,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','5ee66344dcf859f0808eaa0977ce637d');INSERT INTO "content_contentnode" VALUES('7c718d9c1efe585a9f7bf266a7656c6d','Hevar','dbd268781dc550d5aabd923a1a56db31','000409f81dbe5d1ba67101cb9fed4530','Let’s make friends with Hevar. Who is his favorite football player?
TRANSCRIPT: Hi! My name is Hevar I am 9 years old. My mothers name is Naz and my fathers name is Ibrahim. I like soccer and my favorite player is Cristiano Ronaldo, because he is the best! Bye!',6.0,'Touchable Earth Foundation (New Zealand)','','video',0,232,233,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','5ee66344dcf859f0808eaa0977ce637d');INSERT INTO "content_contentnode" VALUES('4a4d7ffda0ce51c7b4da1147cfe89492','Hewar','dd8084283f325a3997a34f48def23e59','000409f81dbe5d1ba67101cb9fed4530','Let’s make friends with Hewar. What would Hewar like to be when he grows up?
TRANSCRIPT: My name is Hewar. I was third level and I passed to fourth level. I am 11 years old. I like bikes. I wish to be a doctor or teacher. Bye bye!',7.0,'Touchable Earth Foundation (New Zealand)','','video',0,234,235,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','5ee66344dcf859f0808eaa0977ce637d');INSERT INTO "content_contentnode" VALUES('95af8e7ab48b56a88d640e2f41ee53e2','Kawsar','32eaac3879ad573a8eb6b799a368f64a','000409f81dbe5d1ba67101cb9fed4530','Let’s make friends with Kawsar. How old is she?
TRANSCRIPT: My name is Kawsar. I live in Kurdistan. I like sports. I am 11 years old. I study in Paymen School. Bye bye!',8.0,'Touchable Earth Foundation (New Zealand)','','video',0,236,237,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','5ee66344dcf859f0808eaa0977ce637d');INSERT INTO "content_contentnode" VALUES('2d3f4015e29c56d49af725ff5a07afea','Mohammed','71151d93d2935408b9d056f7d455dbb2','000409f81dbe5d1ba67101cb9fed4530','Let’s make friends with Mohammed. What sport does he practice?
TRANSCRIPT: Uncle: What’s your name? Mohammed: Mohammed. Uncle: Which sport do you play? Mohammed: Swimming. Uncle: Do you like any player? Who? Mohammed: Yes, Messi. Uncle: How old are you? Mohammed: 5 years old.Uncle: Where are you from? Mohammed: Hawler. Uncle: Hawler is nice?Mohammed: Yes. Uncle: Do you go to school? Mohammed: No. Bye!',9.0,'Touchable Earth Foundation (New Zealand)','','video',0,238,239,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','5ee66344dcf859f0808eaa0977ce637d');INSERT INTO "content_contentnode" VALUES('cf5a9c39714959b6951c6d744259e19d','Mohammed','46496650fed15a9299d77e2a295737fe','000409f81dbe5d1ba67101cb9fed4530','Let’s make friends with Mohammed. What does he want to be when he grows up?
TRANSCRIPT: My name is Mohammed. I work here in Hawler. I study in Kadam Prayer Private School. Every year I’m one of the top students. Since I started studying I’m one of the top. Now I’m in 8th grade. I want to be an engineer. I really love Madrid, especially Cristiano Ronaldo. Now I watch Euro 2012. I hope Spain wins and get the cup. I am Muslim. I am praying and fasting. In summer I work here at the icecream store. In winter I’m just studying. I like Atari and Xbox 360. Bye!',10.0,'Touchable Earth Foundation (New Zealand)','','video',0,240,241,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','5ee66344dcf859f0808eaa0977ce637d');INSERT INTO "content_contentnode" VALUES('349915f2414d5a9aa0aff390469843b6','Muhammed','dff1c74a5f565961970dac405215678d','000409f81dbe5d1ba67101cb9fed4530','Let’s make friends with Muhammed. What would he like to be when he grows up?
TRANSCRIPT: My name is Muhammad. I am from Lazzan village. I would like to study and become a doctor to help my country. I am in 4th grade and I will be 5th. Bye!',11.0,'Touchable Earth Foundation (New Zealand)','','video',0,242,243,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','5ee66344dcf859f0808eaa0977ce637d');INSERT INTO "content_contentnode" VALUES('aca5eeba47fe5e798c556b94b5a251a2','Sara','ec63e8d9947955858022e4d41c4e79f5','000409f81dbe5d1ba67101cb9fed4530','Let’s make friends with Sara. What would she like to be when she grows up?
TRANSCRIPT: My name is Sara. I live in Lajan. I am in second level. I am 8 years old. I like to go to Hewler. My father is here. I wish to be a doctor.',12.0,'Touchable Earth Foundation (New Zealand)','','video',0,244,245,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','5ee66344dcf859f0808eaa0977ce637d');INSERT INTO "content_contentnode" VALUES('60830d1024905736822bf2bb8b9716a8','Simon','a6222e0c25ac529eaa166dc522b29c9e','000409f81dbe5d1ba67101cb9fed4530','Let’s make friends with Simon. What is his favorite car?
TRANSCRIPT: Hi! I’m Simon. I’m 8 years old and I live in Ankawa in Kurdistan. This is my room and this is me. I went to Majidi mall one day and I took a picture in a Ferrari. This is me, yeah, and I like the car Ferrari. And this is my computer. Bye! See you!',13.0,'Touchable Earth Foundation (New Zealand)','','video',0,246,247,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','5ee66344dcf859f0808eaa0977ce637d');INSERT INTO "content_contentnode" VALUES('3bb32ea8061f5cff9879205fba8f7901','Stiav','8b874eb6f55c5f33b068bd51816d54e9','000409f81dbe5d1ba67101cb9fed4530','Let’s make friends with Sitav. What country did she used to live in?
TRANSCRIPT: Hi I’m Sitav. I’m 10 years old. I live in Erbil and we are four members in my family. Me, my brother, my mom and my dad. My mom’s name is Naz, my dad’s name is Ibrahim and my brother is Havar. So, I’ve been in Malaysia for 2 years. I’ve made a lot of new friends and I’d like to say hi to them. And, I like it here and I’ve been to a lot of new places. Bye!',14.0,'Touchable Earth Foundation (New Zealand)','','video',0,248,249,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','5ee66344dcf859f0808eaa0977ce637d');INSERT INTO "content_contentnode" VALUES('51a2725885845850af53370c5736e61e','Sozan','701a6bef45ba5ad59ecd1ede7a585feb','000409f81dbe5d1ba67101cb9fed4530','Let’s make friends with Sozan. What would she like to be when she grows up?
TRANSCRIPT: My name is Sozan. I go to school. I am in level 3. I am 11 years old. I help my mother at home. I like pets. I wish to be a teacher.',15.0,'Touchable Earth Foundation (New Zealand)','','video',0,250,251,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','5ee66344dcf859f0808eaa0977ce637d');INSERT INTO "content_contentnode" VALUES('838287c9faf75347af1a2f7c15925143','Tabarak and Ahmed','0109f54a0701558798da8bdcadda126f','000409f81dbe5d1ba67101cb9fed4530','Let’s make friends with Tabarak and Ahmed.
TRANSCRIPT: Hello! My name is Tabarak. My name is Ahmed! (Laughing). Tabarak: My name is Tabarak from Baghdad. I would like to become a Doctor. Ahmed: I am Mohammed from Baghdad. I am 10 years old and I want to become a football player. Both: Bye bye!',16.0,'Touchable Earth Foundation (New Zealand)','','video',0,252,253,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','5ee66344dcf859f0808eaa0977ce637d');INSERT INTO "content_contentnode" VALUES('cacac815e2b35479a982f5ed3f7f71b9','Bicycle','c10310ab9a095cdea10a090331fb7184','000409f81dbe5d1ba67101cb9fed4530','Mohammed likes to ride his bike. What color is it?
TRANSCRIPT: My name is Mohammed. To have fun, I ride my bike.',1.0,'Touchable Earth Foundation (New Zealand)','','video',0,256,257,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','5ec11b22d6ad57968e137b5e5059853e');INSERT INTO "content_contentnode" VALUES('d9ba05a780135f6a9555fb24727a7835','Football','392c358b20e75a579bc8af1280bf98e0','000409f81dbe5d1ba67101cb9fed4530','Mohammed loves to play football with his friends. Who is his favorite player?
TRANSCRIPT: Group: Hello! Mohammed: I am Cristiano… My name is Mohammed. I like Cristiano Ronaldo. These are my friends and we are playing football together. I like Cristiano Ronaldo. Group: Bye bye! Zakarin: Hi! I am Cristiano. My name is Zakarin. I like Cristiano Ronaldo. These are my friends and we are playing football. Mohamamed: My name is Mohammed. I like Cristiano Ronaldo. These are my friends. We are playing together, and personally I want to score goals like Cristiano Ronaldo.',2.0,'Touchable Earth Foundation (New Zealand)','','video',0,258,259,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','5ec11b22d6ad57968e137b5e5059853e');INSERT INTO "content_contentnode" VALUES('43ef8d38ff9053fea2a2eea4e9085f83','Hopscotch','45c6994072cd552a8ae76b6adf59b222','000409f81dbe5d1ba67101cb9fed4530','Rayana likes to play hopscotch with her friends. How many times does she hop on her turn?
TRANSCRIPT: My name is Rayana. I am 7 years old. I’m playing hopscotch with my friends. We are having a really good time.',3.0,'Touchable Earth Foundation (New Zealand)','','video',0,260,261,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','5ec11b22d6ad57968e137b5e5059853e');INSERT INTO "content_contentnode" VALUES('4a9a563ca89851e9b9904807541640eb','Park','5fec435174d459f0b6831bad544023e6','000409f81dbe5d1ba67101cb9fed4530','Siera is at the park. What does she like to play on at the park?
TRANSCRIPT: Hi my name is Siera. I’m 9 years old. I live in Kurdistan. For fun, I like go to the park and my favorite thing is the slide and swing. Bye!',4.0,'Touchable Earth Foundation (New Zealand)','','video',0,262,263,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','5ec11b22d6ad57968e137b5e5059853e');INSERT INTO "content_contentnode" VALUES('73140166d70c57198d8bef149ec85ccd','Searskany','530012f3842252deb20f0b1172bcd213','000409f81dbe5d1ba67101cb9fed4530','Ali and Hassan like to play Searskany. Who wins the final game?
TRANSCRIPT: Hi! My name is Ali. I am 11 years old. Now, we are playing games searskany with my friend named Hassan. Hassan: Hi! Let us play this, a game.',5.0,'Touchable Earth Foundation (New Zealand)','','video',0,264,265,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','5ec11b22d6ad57968e137b5e5059853e');INSERT INTO "content_contentnode" VALUES('e6cade037ea6563ba4ccf08338346aea','School','941064d68c4159c583d33fc4fa9111b9','000409f81dbe5d1ba67101cb9fed4530','Sanna loves her school. How many students are at her school?
TRANSCRIPT: Hello! My name is Sanna I am in grade 4 in Cambridge International School. We have 130 students in our school. Welcome to our school!',1.0,'Touchable Earth Foundation (New Zealand)','','video',0,268,269,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','4d280750a32650f88f35feb15e7da3ca');INSERT INTO "content_contentnode" VALUES('5df1f4c470cf5ad68c4a50f2400b24d5','Administrator','fa61955816915fee9acaa19ef65ebd2c','000409f81dbe5d1ba67101cb9fed4530','Bahoz is visiting the school administrator. How long has he been with the school?
TRANSCRIPT: Hi! My name is Bahoz, I am 10 years old. This is Mr. Fareed, the administrator of our school. He has been here for 2 years. Mr. Fareed: Hi! I am Fareed, administrative manager. We are member of Cambridge University of Examination. I am looking forward to sharing my talent, and my skills, with my team and Kurdish community. Thank you, bye! Bahoz: Bye!',2.0,'Touchable Earth Foundation (New Zealand)','','video',0,270,271,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','4d280750a32650f88f35feb15e7da3ca');INSERT INTO "content_contentnode" VALUES('30413371d1925c169db9cf3fd7a08697','Bus','cba61a8db0d65f639527c7a6fae438a9','000409f81dbe5d1ba67101cb9fed4530','Hamza takes the bus to school. What color is the school bus?
TRANSCRIPT: My name is Hamza. I’m 8 years old. I come with the bus. It takes me to school. Kids on bus: Hello!',3.0,'Touchable Earth Foundation (New Zealand)','','video',0,272,273,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','4d280750a32650f88f35feb15e7da3ca');INSERT INTO "content_contentnode" VALUES('a5a7f44ba224555cab50af3799f1a6d9','Classroom 1','48be97a9a18b5a08ac03140ba700356e','000409f81dbe5d1ba67101cb9fed4530','Lavee is in Grade 4. What subject is she studying?
TRANSCRIPT: Hi! My name is Lavee. I am in grade 4A. We are learning English, present continuous. Present continuous is something you are in the now. You use ‘ing’. Teacher: All right kids! Today we are learning about past tense. Can anybody tell me about past tense, anyone? Amir, please. Amir: Past tense is something you do a long time ago. Teacher: Right! Can you give me an example Amir? Amir: I was playing football with my friends. Teacher: Sure, that was great! What about you Oscar?',4.0,'Touchable Earth Foundation (New Zealand)','','video',0,274,275,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','4d280750a32650f88f35feb15e7da3ca');INSERT INTO "content_contentnode" VALUES('63c6fea9aacd55ed856f656848f1cf22','Classroom 2','df24d35875c1571fbcf637e8bcdf9cbe','000409f81dbe5d1ba67101cb9fed4530','Bella is in Grade 5. What subject is she studying today?
TRANSCRIPT: Hi! My name is Bella, I’m in grade 5 A and we are learning language today. This is our teacher Mr. Hadge, welcome to the class. Teacher: Good morning class. Class: Good morning Mr. Hadge. Teacher: How are you this morning? Class: Fine thank you and you? Teacher: I am fine, sit down. Any idea how do we know this sentence is the past tense? We look at the time expressions, what are they? Student: Last week Teacher: Last, yes last week, last day. Student: Ago? Teacher: Ago right? 2 days ago, 3 days ago, yes?. Student: Yesterday?Teacher: Yesterday. Exactly.',5.0,'Touchable Earth Foundation (New Zealand)','','video',0,276,277,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','4d280750a32650f88f35feb15e7da3ca');INSERT INTO "content_contentnode" VALUES('f8b64484d9215b589360920fe91ba19a','Graduation','ff5990d28adb5276b4b9f091f3f8016a','000409f81dbe5d1ba67101cb9fed4530','Ibrahim just graduated. What grade will he be in next year?
TRANSCRIPT: Hello! My name is Ibrahim. I am 6 years old. I’m graduating my first year. Bye! (Music plays)',6.0,'Touchable Earth Foundation (New Zealand)','','video',0,278,279,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','4d280750a32650f88f35feb15e7da3ca');INSERT INTO "content_contentnode" VALUES('be380ba7c49e5c0eb9d0809abd185bee','Lunch','8e96948b452156b58cbdc86d24945188','000409f81dbe5d1ba67101cb9fed4530','Savan is eating lunch. What is the name of this traditional food?
TRANSCRIPT: Hi! This is our traditional Kurdish food. We will eat it for lunch. This is potato, and meat, and eggplant. Beans and rice goes inside the vegetable. Bye!',7.0,'Touchable Earth Foundation (New Zealand)','','video',0,280,281,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','4d280750a32650f88f35feb15e7da3ca');INSERT INTO "content_contentnode" VALUES('f55375d51cb45cd3bc68b2c684ba8aa4','Girls’ clothes','511f9ed199ec5fdba0e107b5d7775a96','000409f81dbe5d1ba67101cb9fed4530','[Hongorzul] will teach you about girls’ clothes in Mongolia. What color is the vest?
TRANSCRIPT: Hi! My name is [Hongorzul]. I am 10 years old. I am wearing Mongolian clothes. This is deel and vest, boots and earings. Bye!',1.0,'Touchable Earth Foundation (New Zealand)','','video',0,286,287,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','c3d020736a3a5fde8f52fe60c66825f7');INSERT INTO "content_contentnode" VALUES('838e818a6cf352d2b937fb23bdeb7f89','Boys’ clothes','5527d1d953b15065a4931d403e80cb73','000409f81dbe5d1ba67101cb9fed4530','[Tugs Uchral] will teach you about boys’ clothes in Mongolia. What is the name of the Mongol hat?
TRANSCRIPT: Hi! My name is [Tugs Uchral]. I am 11 years old. This is Mongolian clothe. [Janjin malgai], deel, boots and national boots. Bye!',2.0,'Touchable Earth Foundation (New Zealand)','','video',0,288,289,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','c3d020736a3a5fde8f52fe60c66825f7');INSERT INTO "content_contentnode" VALUES('af72c1d15db15d118587c91bfd6974b1','Dance','c77cc9c6f2b7532b8cd2e3ecb584b8f9','000409f81dbe5d1ba67101cb9fed4530','[Khongorzul] performs a traditional dance.
TRANSCRIPT: Hi! My name is [Khongorzul]. I am 10 years old. I like dancing. I will show you Mongolian national dance. (dances while music plays) Bye!',3.0,'Touchable Earth Foundation (New Zealand)','','video',0,290,291,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','c3d020736a3a5fde8f52fe60c66825f7');INSERT INTO "content_contentnode" VALUES('3fc99140bc4a5f0c90be65d0d385b0cf','Traditional instrument','740c32048bce580ca28ae609d9f3c0a0','000409f81dbe5d1ba67101cb9fed4530','[Odbayar] likes to play traditional Mongolia instrument. What is its name?
TRANSCRIPT: Hi! My name is [Odbayar]. It is Mongolia instrument [morin khuur] (plays instrument) Bye!',4.0,'Touchable Earth Foundation (New Zealand)','','video',0,292,293,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','c3d020736a3a5fde8f52fe60c66825f7');INSERT INTO "content_contentnode" VALUES('f75e02d6c60a55cda65bb602ad821bd6','Music String','15ba202468d053ab8e296e95fe660197','000409f81dbe5d1ba67101cb9fed4530','These boys are playing a traditional instrument. What type of instrument do the play?
TRANSCRIPT: (play instrument) Bye!',5.0,'Touchable Earth Foundation (New Zealand)','','video',0,294,295,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','c3d020736a3a5fde8f52fe60c66825f7');INSERT INTO "content_contentnode" VALUES('35991a7d265f5ffaae549a374472373b','Language','671dac0bbe47569d85cf731412b1df30','000409f81dbe5d1ba67101cb9fed4530','[Munkh Erdene] will teach you Mongolia language. How do you say eight in Mongolia?
TRANSCRIPT: Hi! My name is [Munkh Erdene]. I am 9. ‘neg’, ‘hoyor’ ‘guraw’ , ‘doruw’ ‘tav’ , ‘zurgaa’ ‘doloo’, ‘naym’ ‘yes’ , ‘araw’. Bye!',6.0,'Touchable Earth Foundation (New Zealand)','','video',0,296,297,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','c3d020736a3a5fde8f52fe60c66825f7');INSERT INTO "content_contentnode" VALUES('ae9380f0aa88505583f301ee363bb4b5','Hand gestures','f0e50ad00dac5940babd35fcb86d47ae','000409f81dbe5d1ba67101cb9fed4530','Odmandakh teaches about hand gestures in Mongolia. What does the thumb gesture mean?
TRANSCRIPT: Hi. My name is Odmandakh. This means very good in Mongolia. “Good”. This means very bad in Mongolia. “Bad”. This is used when Mongolians take a photo. “Photo”. Bye.',7.0,'Touchable Earth Foundation (New Zealand)','','video',0,298,299,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','c3d020736a3a5fde8f52fe60c66825f7');INSERT INTO "content_contentnode" VALUES('5531b0ef3266516c98662134369c06f3','Song','f41d532f4433564b8239c4d1c1000eb0','000409f81dbe5d1ba67101cb9fed4530','Khulan and friends sing a traditional song from Mongolia. What is its title?
TRANSCRIPT: Hi. My name is Khulan. I am twelve years old. Now we’ll sing a song “Childhood”. Like the sunrise in a clear sky Awakening the plains with a greeting Playing together in innocent friendship Creating all with a kind soul. Why do you sigh so? Do you miss your childhood? Childhood filled with happiness and laughter Touching the soul of the earth. Why do you sigh so? Do you miss your childhood? Childhood filled with happiness and laughter Touching the soul of the earth. Touching the soul of the earth. Bye.',8.0,'Touchable Earth Foundation (New Zealand)','','video',0,300,301,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','c3d020736a3a5fde8f52fe60c66825f7');INSERT INTO "content_contentnode" VALUES('2dfd9617a0cc55fcaec3e1f641847dfe','Poem','c507f04348c05c99b495a53bd732dc45','000409f81dbe5d1ba67101cb9fed4530','This is a traditional Mongol poem. What is the poem about?
TRANSCRIPT: Hello. My name is Bolortuya. I study at 4g class. I like reading poems. I will now recite a poem for you. I am Mongolian. Born was I in the house of a herder, a house that smelled of smoke Think fondly of the untouched wilderness as the cradle of my life. Gazing into the distance, trailing of blue fog, Looking at the vast beautiful land with pride and glory, The blowing breeze like a kiss on the cheek, Like my kind mother is stroking me gently, Benevolent feelings touching my heart deeply, Tears of infinite joy fill my eyes. Thank you. Bye.',9.0,'Touchable Earth Foundation (New Zealand)','','video',0,302,303,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','c3d020736a3a5fde8f52fe60c66825f7');INSERT INTO "content_contentnode" VALUES('fa84422bd9005686a5bbb02a0cae0732','Welcome','4df32b52baff5341bcfabd657263f632','000409f81dbe5d1ba67101cb9fed4530','[Khulan] welcomes you to Mongolia.
TRANSCRIPT: Hi! My name is [Khulan]. I am 12 years old. Welcome to Mongolia!',1.0,'Touchable Earth Foundation (New Zealand)','','video',0,306,307,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','99fd79e500ef5d328ee0da3b3768a502');INSERT INTO "content_contentnode" VALUES('a180ef3b4b8f55fc9183587f25012fe2','Map 1','82751150bd8b5ab8b5768b18b2556577','000409f81dbe5d1ba67101cb9fed4530','[Ariunzaya] shows where Mongolia is on the world map. Which countries does it border?
TRANSCRIPT: Hi! My name is [Ariunzaya]. I am 11 years old. This is Mongolia map. The Mongolian capital is [Ulaanbaatar]. Mongolia is our home. Mongolia borders are Russia, Kazakhstan, and China. Welcome to Mongolia! Bye bye!',2.0,'Touchable Earth Foundation (New Zealand)','','video',0,308,309,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','99fd79e500ef5d328ee0da3b3768a502');INSERT INTO "content_contentnode" VALUES('ee9fe4c9d8b753a790efb6d8fde79340','Map 2','53d8b410d00f5c4ca63bc47dd599d293','000409f81dbe5d1ba67101cb9fed4530','Where is Mongolia on the world map?
TRANSCRIPT: Hi! My name is [Ogoodei]. This is Mongolia map. Mongolia capital is [Ulaanbaatar] city. Mongolia borders are Russia, China, kazakhstan. Welcome to Mongolia! Bye bye!',3.0,'Touchable Earth Foundation (New Zealand)','','video',0,310,311,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','99fd79e500ef5d328ee0da3b3768a502');INSERT INTO "content_contentnode" VALUES('b62e8f12746c51c7a6c449d25d64ef39','Capital','48f25124cb5951c9992299b51cd2bff9','000409f81dbe5d1ba67101cb9fed4530','[Munkhmanlai] lives in Ulaanbataar, the capital city of Mongolia. What is its population?
TRANSCRIPT: Hi! My name is [Munkhmanlai]. I am 12 years old. I live in Mongolia. The capital is [Ulaanbaatar]. [Ulaanbaatar] has a population of 1.5 million. [Ulaanbaatar] is a very wonderful city. Welcome to my city! Goodbye!',4.0,'Touchable Earth Foundation (New Zealand)','','video',0,312,313,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','99fd79e500ef5d328ee0da3b3768a502');INSERT INTO "content_contentnode" VALUES('8545895016185c3da6ab04de13c542ae','Flag','835a94aedafb5c5788ba1c09d1000ca2','000409f81dbe5d1ba67101cb9fed4530','[Munkhbayar] is holding the Mongolian flag. What do the images on the flag represent?
TRANSCRIPT: Hi! My name is [Munkhbayar]. I am 10. This is Mongolia flag. Presentation: [paya], sun, moon, [wuji] and water. Bye!',5.0,'Touchable Earth Foundation (New Zealand)','','video',0,314,315,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','99fd79e500ef5d328ee0da3b3768a502');INSERT INTO "content_contentnode" VALUES('5e48998ae40b5127ad6b7ec002b9c955','Anthem','ee0cf8650ce25e408212808892937009','000409f81dbe5d1ba67101cb9fed4530','Namuunzul and her friends sing the national anthem of Mongolia.
TRANSCRIPT: Hi. My name is Namuunzul. We will sing the national anthem of Mongolia. Our great nation’s symbol blesses us. And the people’s fate supports us. Let us pass on our ancestry, culture and language. From generation to generation. The brilliant people of the brave Mongolia. Have gained freedom and happiness, The key to delight, and the path to progress, Let our majestic nation prosper. Bye! Bye! [all the kids] Bye!',6.0,'Touchable Earth Foundation (New Zealand)','','video',0,316,317,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','99fd79e500ef5d328ee0da3b3768a502');INSERT INTO "content_contentnode" VALUES('bbb054cdefb55aa38ede7d0704c9d802','Zoljargal’s family','add12d5d58f15ee4835bdfee71540fb2','000409f81dbe5d1ba67101cb9fed4530','Zoljargal wants to introduce you his family. How many people are in his family?
TRANSCRIPT: Hello. Start now. This is my family. This is my mother. This is my older sister. These are my younger sisters. This is my younger brother. This is my mother. This is my older sister. These are my younger sisters. This is my younger brother. My mother’s name is Lkhagvasuren. My sister’s name is Solongo. My younger sister’s name is Dulamjav. My youngest sister’s name is Burte. This is Zolbayar.',1.0,'Touchable Earth Foundation (New Zealand)','','video',0,320,321,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','48ffc846802250b5ae7010fb9042c6f8');INSERT INTO "content_contentnode" VALUES('ac18b7ca004a5564829b6bba4ea2cca6','Zoljargal’s mother','dcf49b7816f955e8a92da3f2574c7f4b','000409f81dbe5d1ba67101cb9fed4530','Zoljargal is with his mother. What do they like to do together?
TRANSCRIPT: Hello. [mother laughing] My mother, sister and I cook together. We do our homework together as well. And This is our kitchen. My older sister is a university student. I like soup. And I help mom peel vegetables. And my younger sister helps to cut them. And, I prepare the water. And, Is that all? You take this. Alright. Goodbye.',2.0,'Touchable Earth Foundation (New Zealand)','','video',0,322,323,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','48ffc846802250b5ae7010fb9042c6f8');INSERT INTO "content_contentnode" VALUES('792516f054575a99bf5943df65b3f3d9','Zoljargal’s sister','28f3440745d459e8912475f2fbe8d828','000409f81dbe5d1ba67101cb9fed4530','Zoljargal is with her sister. Where are they?
TRANSCRIPT: Hello. This is the living room. My younger siblings play here. On this side is the library, on this side is the television. And, my sister reads a book for me. And we do our homework here. [reading the book] I am trying to decipher an intriguing message inscribed on this puzzle. [reading the book] I sat here for a long time putting the letters back and forth to try to understand it. [reading the book] Suddenly, a thought crosses my mind. [reading the book] I got it! I must read it upside down! [reading the book] No, this is impossible.',3.0,'Touchable Earth Foundation (New Zealand)','','video',0,324,325,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','48ffc846802250b5ae7010fb9042c6f8');INSERT INTO "content_contentnode" VALUES('41e26c97491d5b6cbced0ba07870c2c4','Zoljargal’s room','aced4ee72b1a53a0a74bed5599ca5b00','000409f81dbe5d1ba67101cb9fed4530','This is Zoljargal family room toy. What is his favorite toy?
TRANSCRIPT: Hello. The camel is one of five types of animals. My little brother likes playing with it. My little sister likes playing with this stuffed toy. This robotic car is my little brother’s favorite. This is my intellectual puzzle. I can solve one side. And, This is a duck. These are the favorite toys of my younger sibling. Goodbye.',4.0,'Touchable Earth Foundation (New Zealand)','','video',0,326,327,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','48ffc846802250b5ae7010fb9042c6f8');INSERT INTO "content_contentnode" VALUES('6ac284890afe5e8f895eba4896e73797','Zoljargal’s home','e8e5799dcc915741acb974a01db29a82','000409f81dbe5d1ba67101cb9fed4530','This is Zoljargal home.
TRANSCRIPT: Hello. My name is Zoljargal Lkhagvasuren. This is our house. Welcome to my home.',5.0,'Touchable Earth Foundation (New Zealand)','','video',0,328,329,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','48ffc846802250b5ae7010fb9042c6f8');INSERT INTO "content_contentnode" VALUES('817ae32641e45ca08691014c3d51b14c','Tugs Ochir’s family','6e607773e64558559173243028a372a5','000409f81dbe5d1ba67101cb9fed4530','This is [Tugs Ochir]’s family. What do they like to do in their free time?
TRANSCRIPT: Hi! My name is [Tugs Ochir]. I am 11 years old. This is my family. This is my dad. This is my mom. This is my young brother. This is me. My dad’s name is [Ariunbold]. My mom’s name is [Otgontuya]. My young brother’s name is [Buyan-Ochir] My name is [Tugs Ochir]. My dad is a director. My mom is a manager. My young brother is a student. I am a student. We like journey. We like playing basketball in our free time Bye! Hi!',6.0,'Touchable Earth Foundation (New Zealand)','','video',0,330,331,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','48ffc846802250b5ae7010fb9042c6f8');INSERT INTO "content_contentnode" VALUES('55b6e54df3b75e9fb8c0ff650e852990','Nomingoo','3fb49b23a5a952aca7d88e5d4fbab544','000409f81dbe5d1ba67101cb9fed4530','Let’s make friends with [Nomingoo]. What does she want to be when she grows up?
TRANSCRIPT: Hi! My name is [Nomingoo]. I am 10 years old. It is my family. It is my dad. It is my mother. He is doctor. She is cooker shop. He likes basketball. She likes book and journal.My dad’s name is [Nktombaye]. My mom’s name is [Orichimunk]. I want to be a designer Bye!',1.0,'Touchable Earth Foundation (New Zealand)','','video',0,334,335,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','84f121b5dd5d5f5092c7f41922130be2');INSERT INTO "content_contentnode" VALUES('90d2401c65d45660b1323b7387be079b','Uuganbayar','1856ada121275220891cc1b3d137e327','000409f81dbe5d1ba67101cb9fed4530','Let’s make friends with [Uuganbayar[',2.0,'Touchable Earth Foundation (New Zealand)','','video',0,336,337,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','84f121b5dd5d5f5092c7f41922130be2');INSERT INTO "content_contentnode" VALUES('6c85ab792d635dd4ba468fe834f0ea28','Ariunzaya','9c3b7534f8d459b28fcdf15ff5c4a1ed','000409f81dbe5d1ba67101cb9fed4530','Let’s make friends with [Ariunzaya]. What are her hobbies?
TRANSCRIPT: Hello! My name is [Ariunzaya]. I am 12 years old. I like basketball and singing. My best friend is [Anadele]. I want to be a doctor. Bye!',3.0,'Touchable Earth Foundation (New Zealand)','','video',0,338,339,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','84f121b5dd5d5f5092c7f41922130be2');INSERT INTO "content_contentnode" VALUES('da0ac10c63ea57eea709106490d6e2ef','Enkhjin','1ea2d71180c1548380a52dece0514ce4','000409f81dbe5d1ba67101cb9fed4530','Let’s make friends with [Enkhjin]. What are her hobbies?
TRANSCRIPT: Hi! My name is [Enkhjin]. I am 11 years old. I like reading books, play cars and sing songs. My hobby is playing chess. Bye!',4.0,'Touchable Earth Foundation (New Zealand)','','video',0,340,341,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','84f121b5dd5d5f5092c7f41922130be2');INSERT INTO "content_contentnode" VALUES('5cbfa5ae78d25f4a977c4d88f4fec037','Temuujin','8af76398d08456708339035228db3f1b','000409f81dbe5d1ba67101cb9fed4530','Let’s make friends with [Temuujin]. What does he want to be when he grows up?
TRANSCRIPT: Hello! My name is [Temuujin]. I am 11. I have three friends. I like riding horse and basketball. I want to be a teacher. Bye!',5.0,'Touchable Earth Foundation (New Zealand)','','video',0,342,343,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','84f121b5dd5d5f5092c7f41922130be2');INSERT INTO "content_contentnode" VALUES('5d8a55b965865c11827b127c2abd8918','Nyamtseren','454d9071bb685c2aa28126aa942e0d91','000409f81dbe5d1ba67101cb9fed4530','Let’s make friends with Nyamtseren. In what grade is she?
TRANSCRIPT: Hello. My name is Nyamtseren. I am a 5th grade student at the 35th school. I would like to become a musician when I grow up. I am a citizen of Mongolia. Goodbye.',6.0,'Touchable Earth Foundation (New Zealand)','','video',0,344,345,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','84f121b5dd5d5f5092c7f41922130be2');INSERT INTO "content_contentnode" VALUES('1bb8e094390e5412831d8c950248f26b','Temuujin','a9d9038624335ce8ac2a242464bd3335','000409f81dbe5d1ba67101cb9fed4530','Let’s make friends with Temuujin. What type of instrument does he play?
TRANSCRIPT: Hello. My name is Temuujin. I am a student at 4b class of 35th school. My hobby is to play the morin khuur. I am a Mongolian national. Goodbye.',7.0,'Touchable Earth Foundation (New Zealand)','','video',0,346,347,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','84f121b5dd5d5f5092c7f41922130be2');INSERT INTO "content_contentnode" VALUES('16dd022236ba5e11a45ad5639da08ee4','Ariunzaya','3a495a44441c57a3a1ad43a6ca610651','000409f81dbe5d1ba67101cb9fed4530','Let’s make friends with [Ariunzaya].How old is she?
TRANSCRIPT: Hi! My name is [Ariunzaya]. I am 11 years old. I like playing the piano (plays piano). Thank you! Bye!',8.0,'Touchable Earth Foundation (New Zealand)','','video',0,348,349,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','84f121b5dd5d5f5092c7f41922130be2');INSERT INTO "content_contentnode" VALUES('b1bcae20d0b75a0e993ab69abcb640bd','Afrikaans Language','21f686bf30b05a16a9d446c50ee483fb','000409f81dbe5d1ba67101cb9fed4530','Misha speaks Afrikaans. How do you say hello in Afrikaans?
TRANSCRIPT: Hi! I’m Misha! I’m in Sand Du Plessis school. I’m gonna learn you to count in Afrikaans to 10. ‘1’ is ‘een’. ‘2’ is ‘twee’. ‘Three’ is ‘drie’. ‘4’ is ‘vier’. ‘5’ is ‘vyf’. ‘6’ is ‘ses’. 7′ is ‘sewe’. ‘8’ is ‘agt’. ‘9’ is ‘nege’. ’10’ is ‘tien’. Thank you! Bye! Hi I’m Nanai and I’m from Sand Du Plessis Primary in South Africa. I’m going to teach you some Afrikaans interaction. ‘Haai’ is ‘Hello’. ‘How are you’? is ‘Hoe gaan dit met jou’?. ‘I’m good’, ‘dit gaan goed met my, en jou?’. ‘My name is Nanei’ is ‘My naam is Nanai’. ‘Thank you’ is ‘Danke’. “Bye” is “Bye”.And bye!
MORE INFO: When Nanai teaches you how to say ‘I am fine’ she also says ‘en jou’? at the end. Im Afrikaans it is very important to always ask the person how they are after they ask how you are.',1.0,'Touchable Earth Foundation (New Zealand)','','video',0,354,355,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','dcc52b5b322b577d9d636359084c9e6d');INSERT INTO "content_contentnode" VALUES('296c4ce338f15f08a11e88717a9111dd','Boys’ Clothes','6aefc2e7f0a457fea66522257c9aaec2','000409f81dbe5d1ba67101cb9fed4530','Siboniso is wearing traditional Zulu clothing. From what animal are the clothes made?
TRANSCRIPT: Hi! I am Siboniso and I am 10 years old. I live in Mpophomeni township and this is skin of impala, and this is skin of impala and these are for decorations. And I am a Zulu man. Bye!
MORE INFO: Zulu is the largest ethnic group in South Africa making up 20% of the population.',2.0,'Touchable Earth Foundation (New Zealand)','','video',0,356,357,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','dcc52b5b322b577d9d636359084c9e6d');INSERT INTO "content_contentnode" VALUES('22ca355b401a5b24b2379fd21907ffa8','Dance','b969efcf95d458839ff1c9fcc9741cc4','000409f81dbe5d1ba67101cb9fed4530','Fakani is doing a traditional dance. Where is she doing this dance?
TRANSCRIPT: Hi! My name is Fakani I am 11 years old. I will show you how to do a ‘shibhalani’ dance. (Music plays while dancing) Bye!',3.0,'Touchable Earth Foundation (New Zealand)','','video',0,358,359,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','dcc52b5b322b577d9d636359084c9e6d');INSERT INTO "content_contentnode" VALUES('249c1b59e861580ab5850988d90d1aff','Drums','f968284d6ef956d9ab5e2289f043ad36','000409f81dbe5d1ba67101cb9fed4530','Siphamandla is playing a traditional drum. What is his drum made of?
TRANSCRIPT: Hi! My name is Siphamandla I live in Mpophomeni township. I like to play ‘isigubhu’ drum. (Plays drum) Hi!
MORE INFO: The ‘isigubhu’ drum is a traditional Zulu instrument. It is made from an oil can and ox hide on both ends.',4.0,'Touchable Earth Foundation (New Zealand)','','video',0,360,361,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','dcc52b5b322b577d9d636359084c9e6d');INSERT INTO "content_contentnode" VALUES('9a7e8032c9a45ac9bfb9410c8df32041','Girls’ Clothes','73352a18ae9c55989518d917f43a0845','000409f81dbe5d1ba67101cb9fed4530','Sindy and Sikelela are wearing traditional clothes for girls. What is Sindy’s skirt made of?
TRANSCRIPT: Both: Hi! Sindy: My name is Sindy. Sikelela: My name is Sikelela. Sindy: And this is ‘ncabetho’ and this is normal skirt. It is made of wool and linen. Sikelela: This is ‘ncebetha’ and a long skirt. This is ‘iqhiya’. It is worn by a woman who gets married Both: Bye!',5.0,'Touchable Earth Foundation (New Zealand)','','video',0,362,363,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','dcc52b5b322b577d9d636359084c9e6d');INSERT INTO "content_contentnode" VALUES('d615edd946fd564eb786b1b95ef97a19','Group Dance','a4c71ad6a91e5022b26606e15f3b87a3','000409f81dbe5d1ba67101cb9fed4530','Owami and her friends like to dance. When is this dance usually performed?
TRANSCRIPT: Hi! My name is Owami. I live in South Africa. This is how we dress in South Africa for a cultural wedding. We are going to sing a wedding song for you. (Group sings)
MORE INFO: This is a wedding dance. It is about a young man who wants to marry a girl but she is saying he has to work harder to earn her hand in marraige.',6.0,'Touchable Earth Foundation (New Zealand)','','video',0,364,365,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','dcc52b5b322b577d9d636359084c9e6d');INSERT INTO "content_contentnode" VALUES('5555a18e9214595cb2ee3318f01bc822','Gumboot Dance','1f2970f1388258dfb94717cb1c21b71b','000409f81dbe5d1ba67101cb9fed4530','Syanda and his friends like gumboot dancing. Which type of workers invented this dance?
TRANSCRIPT: Hi my name is Syanda my surname is Makai. I am live in South Africa. My performance is ‘Gumboots’. (Sound of clapping and hitting boot) Group: Bye!
MORE INFO: Gumboot dancing was invented by miners over 100 years ago.',7.0,'Touchable Earth Foundation (New Zealand)','','video',0,366,367,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','dcc52b5b322b577d9d636359084c9e6d');INSERT INTO "content_contentnode" VALUES('28ce23c5701b54169b878f84e2092b66','Zulu Language','87fe072967c15c6f893a50eebaf6f932','000409f81dbe5d1ba67101cb9fed4530','Mila speaks Zulu. How do you say hello in Zulu?
TRANSCRIPT: Hi! My name is Mila. I am going to teach you a bit of my Zulu culture language. ‘Sawubona’, which means ‘Hello’. ‘Unjani’, which means ‘How are you?’. ‘Ngiyaphila’, which means ‘I am fine’. ‘Igama lami ngingu…’, that means ‘My name is…’. ‘Thank you’, which means ‘Ngiyabonga’. ‘Bye’, which means ‘usale kahle’. Cool, I’ll see you when you come in to South Africa and I will teach you more Zulu. Bye!
MORE INFO: In 1994 Zulu became one of South Africa’s 11 official languages. It is written using the latin alphabet. It is estimated that over 50% of the population can understand it.',8.0,'Touchable Earth Foundation (New Zealand)','','video',0,368,369,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','dcc52b5b322b577d9d636359084c9e6d');INSERT INTO "content_contentnode" VALUES('b2926e00dbd75cc3a4f140a91efee5b6','Welcome','2049a0b7686552fca6ccf0588108ad12','000409f81dbe5d1ba67101cb9fed4530','Nandipha and Jayvanjolu welcome you to South Africa. What is the population of South Africa?
TRANSCRIPT: Hi! I am Jayvanjolu. I am 9 years old. I live in Mphophomeni township. South Africa is in Africa. The population is 49 million. The capital is Cape Town. Welcome to South Africa! Group: Yay! Hi! My name is Nandipha. I am 9 years old and I live at Mpophomeni Township. South Africa is in Africa. The capital city of South Africa is Cape Town and the population is 49 million. Welcome to South Africa! Group: Yay!
MORE INFO: South Africa is special as it has 3 capital cities. Cape Town is one of them. It has 11 official languages.',1.0,'Touchable Earth Foundation (New Zealand)','','video',0,372,373,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','7c81b50691c85f1fa4097fe932eaf80c');INSERT INTO "content_contentnode" VALUES('468e52361b6656e6a1cc39be2d25add5','Map','785915c40763576395ac285c4f6b0291','000409f81dbe5d1ba67101cb9fed4530','Where is South Africa on the world map?
TRANSCRIPT: Hey guys I’m Jamie! And I live down here in South Africa. We have quite a few countries bordering us. Mozambique, Zimbabwe, Botswana, and Namibia. We have two countries which are completely surrounded by us. One is down here, its called Lesotho. And another one, all the way up here, Swaziland. Bye!
MORE INFO: South Africa is the southern most country in Africa. It is comprised of 9 provinces with 48 million people.',2.0,'Touchable Earth Foundation (New Zealand)','','video',0,374,375,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','7c81b50691c85f1fa4097fe932eaf80c');INSERT INTO "content_contentnode" VALUES('422ea0fb26a456afb7f1280baf7f1dee','Capital','924e8cd52cc9589ea630d63d976c0a16','000409f81dbe5d1ba67101cb9fed4530','This are the Parliament building’s in South Africa. How many capital cities does it have?
TRANSCRIPT: South Africa has 3 capital cities. Pretoria (executive), Bloemfontein (judicial), Cape Town (legislative). These are the Union Buildings in Pretoria.',3.0,'Touchable Earth Foundation (New Zealand)','','html5',0,376,377,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','7c81b50691c85f1fa4097fe932eaf80c');INSERT INTO "content_contentnode" VALUES('3134a09b6195572f9497f9ca161b1b9a','Flag','968d84c569475fad838f6d81551ec1b1','000409f81dbe5d1ba67101cb9fed4530','Siphokazi is holding a South African flag. What does the color white stand for?
TRANSCRIPT: Hi! My name is Siphokazi I’m from Mphophomeni township. I will love to show and tell you about the South African flag. Black means black person. Yellow means sun. Green means green grass. Red means love. White means peace. Blue means sky. Thank you. Bye!
MORE INFO: This flag was adopted in 1994. The V part of the flag flowing into a single band represents the coming together of South Africa’s diverse people.',4.0,'Touchable Earth Foundation (New Zealand)','','video',0,378,379,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','7c81b50691c85f1fa4097fe932eaf80c');INSERT INTO "content_contentnode" VALUES('1993b73a914b55bea210ea1e6721e6fb','Anthem','631b91c4cd0b596083cca6d4b072136d','000409f81dbe5d1ba67101cb9fed4530','Zawulu and her friends will sing the national anthem. What is it about?
TRANSCRIPT: Hi! My name is Zawulu. I’m going to sing national anthem is called ‘Nkosi sikelel’. (Everyone sings) Hi! and welcome to South Africa!
MORE INFO: This anthem has been sung since 1997. It is a combination of a song from 1897 merged with a poem from 1918. It is about hope for the future of South Africa.',5.0,'Touchable Earth Foundation (New Zealand)','','video',0,380,381,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','7c81b50691c85f1fa4097fe932eaf80c');INSERT INTO "content_contentnode" VALUES('9128019503f85c2bb09cc468a9c7c964','Nikia’s Family','e755ae66c3c5537d8ecdc1805acce3ae','000409f81dbe5d1ba67101cb9fed4530','Nikia wants you to meet her family. Which city do they live in?
TRANSCRIPT: Hello! I am Nikia, I am in Viggies, I am 8 years old. I am in grade 2. I play hockey and I am in the ‘A’ team. I do villie veggies, tennis and netball. This is my mother EdnaMother: Hello!Nikia: And this is my dad Grant. Father: Hello!Nikia: My favourite colour is pink. Mother: Welcome to our home!
MORE INFO: Nikia and her family live in Bloemfontein.',1.0,'Touchable Earth Foundation (New Zealand)','','video',0,384,385,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','d90e4c5a13cb500ea38cf5d7b3027a0d');INSERT INTO "content_contentnode" VALUES('899887ffdf5e5f0e8cb3dff0d656ce16','Nikia’s Mother','39d60b806a445c4abdaa8671acb2884d','000409f81dbe5d1ba67101cb9fed4530','Nikia is with her mother in the kitchen. What does her mother love to make?
TRANSCRIPT: Hello! This is my mother Edna. This is what her kitchen looks like. She loves to make food and she likes to drink white wine while she makes food. She really enjoys making cake.
MORE INFO: Nikia is with her father. What sport does he love watching?',2.0,'Touchable Earth Foundation (New Zealand)','','video',0,386,387,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','d90e4c5a13cb500ea38cf5d7b3027a0d');INSERT INTO "content_contentnode" VALUES('e344b62dd8d05d0f86f9c5f38dc2f7ef','Nikia’s Father','3924d013a3f355a695276645a8d6ad82','000409f81dbe5d1ba67101cb9fed4530','Rugby is one of the most popular sports in South Africa. Dad is watching a playoff game with his favorite team, The Sharks. They win this game.
TRANSCRIPT: Hello! This is my dad, his name is Grant. He loves rugby and he watches rugby every weekend. His favourite team is the Sharks and he watches every weekend. I hope they win so that my dad can be happy.
MORE INFO: This is Nikia’s room. What is her doll’s name?',3.0,'Touchable Earth Foundation (New Zealand)','','video',0,388,389,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','d90e4c5a13cb500ea38cf5d7b3027a0d');INSERT INTO "content_contentnode" VALUES('90ce8dff005d5f218cbf4588f5593793','Nikia’s Room','c724e996f69454b1863b09af91acdf8e','000409f81dbe5d1ba67101cb9fed4530','This is Nikia’s room. What is her doll’s name?
TRANSCRIPT: Hello! I am Nikia, this is my doll her name is Jana. My grandmother gave it to me. She made it herself and then gave it to me. This is my favourite toy. This is a pig her name is Purple Blaze. I bought her from a shop but I don’t remember where but this is my favourite pig and I always play with her. This is my new bed linen and my mother bought it for me. I always fold up my clothes so that it is not a mess. These are my fairies I love them very much. At night time they fly and check if I am having sweet dreams. Bye! (Pig toy makes sound)',4.0,'Touchable Earth Foundation (New Zealand)','','video',0,390,391,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','d90e4c5a13cb500ea38cf5d7b3027a0d');INSERT INTO "content_contentnode" VALUES('737372353257531b9f1e5a4be9122074','Nikia’s Garden','85bf87f424be502e837e54107e290e46','000409f81dbe5d1ba67101cb9fed4530','Nikia is outside her home. What did she plant in the garden?
TRANSCRIPT: Hello! These flowers were planted by me. It is good to work in the garden. My mother made this, she painted the wheel barrow and then she planted the plants. It is also nice for my mother to work in the garden. Here is my trampoline. I jump on it a lot and it is a lot of fun to jump on it. This is where the fairies and dwarfs live.',5.0,'Touchable Earth Foundation (New Zealand)','','video',0,392,393,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','d90e4c5a13cb500ea38cf5d7b3027a0d');INSERT INTO "content_contentnode" VALUES('d541a4e18e325e37b956b5a2a74c8e37','Siphokazi’s Family','633c779974d155f3a27f0da12008b16c','000409f81dbe5d1ba67101cb9fed4530','Siphokazi wants you to meet her family. Where do they live?
TRANSCRIPT: Hi! My name is Siphokazi and this is my mother Tepsile. This is my grandmother Anatoria, and this my sister Atogomele, and this is my sister Aloga, and this is my sister Andise. Welcome home!
MORE INFO: Siphokazi and her family like in Mpophomeni Township in the South Western part of South Africa.',6.0,'Touchable Earth Foundation (New Zealand)','','video',0,394,395,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','d90e4c5a13cb500ea38cf5d7b3027a0d');INSERT INTO "content_contentnode" VALUES('0a562405b6c25b42bd070638e18d00c0','Siphokazi’s Mother','3cf212aefdd258f5a4a5a0339f2c1f4e','000409f81dbe5d1ba67101cb9fed4530','Siphokazi is with her mother. What do they like to do together?
TRANSCRIPT: Hi this is my mom Tepsile. We like to sing together! (Sing song together) Bye!
MORE INFO: Siphokazi and her mum are singing a gospel song.',7.0,'Touchable Earth Foundation (New Zealand)','','video',0,396,397,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','d90e4c5a13cb500ea38cf5d7b3027a0d');INSERT INTO "content_contentnode" VALUES('ca4befb7ce625deba6732a694a314380','Siphokazi’s Sister','a0c52ba863c4524aaf93f945a6f89e4c','000409f81dbe5d1ba67101cb9fed4530','Siphokazi is with her sisters. What do they like to do together?
TRANSCRIPT: Hi! This is my sister, we like to do Zulu dance together.',8.0,'Touchable Earth Foundation (New Zealand)','','video',0,398,399,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','d90e4c5a13cb500ea38cf5d7b3027a0d');INSERT INTO "content_contentnode" VALUES('82825db5ebf55262a1100ebecf171465','Siphokazi’s Grandmother','e652c175c82555d7bbebfccb269d7a2d','000409f81dbe5d1ba67101cb9fed4530','Siphokazi is with her mother. What do they like to do together?
TRANSCRIPT: Hi! This is my grandmother. We like to dance together! (Music plays)',9.0,'Touchable Earth Foundation (New Zealand)','','video',0,400,401,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','d90e4c5a13cb500ea38cf5d7b3027a0d');INSERT INTO "content_contentnode" VALUES('e79c03f32db7561696870012dbffc5cf','Siphokazi’s Room','85c3d74f1bc356c59405bf1ce27f4fb9','000409f81dbe5d1ba67101cb9fed4530','Siphokazi is with her grandmother. What do they like to do together?
TRANSCRIPT: Hi! This is my bedroom and this is my toy. You turn it on the button and it changes colors. Welcome home!',10.0,'Touchable Earth Foundation (New Zealand)','','video',0,402,403,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','d90e4c5a13cb500ea38cf5d7b3027a0d');INSERT INTO "content_contentnode" VALUES('3c61905381bb5c05ab03a477b0cf83ed','Clifford and Kabelo','04a830fb00b1557c992bb7ddab669ef2','000409f81dbe5d1ba67101cb9fed4530','Let’s make friends with Clifford and Kabelo. What is their hobby?
TRANSCRIPT: Hello! My name is Clifford I am 13 years old. Kabelo: Hello! My name is Kabelo. I am 13 years old. Clifford: For fun we like to dance. Kabelo: We will show you some actions. (Music plays)',1.0,'Touchable Earth Foundation (New Zealand)','','video',0,406,407,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','663fd107faa858bf9d428cd7601ed0b6');INSERT INTO "content_contentnode" VALUES('638830ee2aca5590b2404029f6ae9b9b','Deyen','cfb7b1ca73de59f3b80a5ad824f5d25a','000409f81dbe5d1ba67101cb9fed4530','Let’s make friends with Deyan. What is his favorite Rugby team?
TRANSCRIPT: Hi! My name is Deyan and I’m 13 years old and I’m also a prefect. I am in South Africa, in Bloemfontein, and I’m at Sand Du Plessis Primary School. My favorite thing, team, is the ‘Cheetahs’ and we are on Sunday going to win the ‘Currie Cup’. Bye!
MORE INFO: The Free State Cheetahs’ are a rugby team based in Deyan’s home town of Bloemfontein. The Currie cup has been played since 1889. Sadly Deyan’s team did not win the cup on Sunday.',2.0,'Touchable Earth Foundation (New Zealand)','','video',0,408,409,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','663fd107faa858bf9d428cd7601ed0b6');INSERT INTO "content_contentnode" VALUES('3411e398b06f5be2a942cb035910d13a','Ketshipile','4977bca843af5b36a2a61ba915d48e1e','000409f81dbe5d1ba67101cb9fed4530','Let’s make friends with Ketshapile. What would she like to be when she grows up?
TRANSCRIPT: Hello! My name is Ketshepile and I’m 13 years old. I live in Soweto in South Africa. I’m in Lakeview Full Service Primary School. My class teacher is Mr. Joe, and I would like to tell you about my family and me also. When I grow up I’d like to be a teacher, and even be a good singer because I know how to sing. (Sings) Thank you! Bye!',3.0,'Touchable Earth Foundation (New Zealand)','','video',0,410,411,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','663fd107faa858bf9d428cd7601ed0b6');INSERT INTO "content_contentnode" VALUES('8168815f3d7252848d5449b046ce2956','Liwa and Seya','b126708525945860b8fdfbe3de5e131d','000409f81dbe5d1ba67101cb9fed4530','Let’s make friends with Liwa and Seya. What animal do they love?
TRANSCRIPT: Hi! My name is Liwa and I am 8 years old and I live in South Africa and I love cheetahs because they’ve got nice tails and they run fast and they are cool and I love them. And my favorite hobby is eating, and I love swimming and sports. Bye! Seya: Hello! My name is Seya and I’m 8 years old. I like cheetahs because they run very fast and I like them because they are very cool and I like to race and play soccer. Bye!',4.0,'Touchable Earth Foundation (New Zealand)','','video',0,412,413,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','663fd107faa858bf9d428cd7601ed0b6');INSERT INTO "content_contentnode" VALUES('7f07259cebea587f8108a6a42fe102ce','Mbali','260f9ceb22d055cdaae3e689fd5dcc53','000409f81dbe5d1ba67101cb9fed4530','Let’s make friends with Mbali. What would she like to be when she grows up?
TRANSCRIPT: Hello! My name is Mbali. My favorite subject is natural science, technology, and maths, also English. Where I live, I live in Soweto. And, when I grow up I want to prepare myself for being a doctor and help other people, maybe the sick, and so I can take care of them. Bye!',5.0,'Touchable Earth Foundation (New Zealand)','','video',0,414,415,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','663fd107faa858bf9d428cd7601ed0b6');INSERT INTO "content_contentnode" VALUES('a8ff928e2d8257b59380308876f7a77c','Mbakakazi','a7b316f0f3375801b3a0aa2ba7447748','000409f81dbe5d1ba67101cb9fed4530','Let’s make friends with Mbasakazi. What does her name mean?
TRANSCRIPT: Hi! My name is Mbasakazi, I am 12 years old, and my name means ‘gold medal’. Okay, this is my school Lakeview Full Service Primary School. My favorite sport is tennis and I love hanging out with my friends. Bye!',6.0,'Touchable Earth Foundation (New Zealand)','','video',0,416,417,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','663fd107faa858bf9d428cd7601ed0b6');INSERT INTO "content_contentnode" VALUES('20d2257c540b56c7a651a46d3e8f9811','Micha','538947121de1545597a407675807bd32','000409f81dbe5d1ba67101cb9fed4530','Let’s make friends with Micha. What sport does she like?
TRANSCRIPT: Hi! I’m Micha, I’m in grade 6. I live in this school, my own school, I live in an apartment. I like my hobbies. They are hockey and netball. Sometimes I play tennis, it’s very fun. I’m 12 years old and I like my friends and everything. Thank you! Bye!',7.0,'Touchable Earth Foundation (New Zealand)','','video',0,418,419,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','663fd107faa858bf9d428cd7601ed0b6');INSERT INTO "content_contentnode" VALUES('e032c230d64856449e8c62ab1decc167','Nane','a2ba79420cc4511d8eec571d257bea7e','000409f81dbe5d1ba67101cb9fed4530','Let’s make friends with Nane. What is her favorite subject?
TRANSCRIPT: Hi! I’m Nane. I love math and I love all my teachers in school. My favorite subject is English, and my hobbies are dancing, tennis, netball and hockey. And I love to play with all my friends. Thank you! Bye!',8.0,'Touchable Earth Foundation (New Zealand)','','video',0,420,421,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','663fd107faa858bf9d428cd7601ed0b6');INSERT INTO "content_contentnode" VALUES('e76f8765997653faa40d5f2f5dcd62f9','Ngcebo','437152cfc7c25211a752224ddb5d08d7','000409f81dbe5d1ba67101cb9fed4530','Let’s make friends with Ngcebo. What does he want to be when he grows up?
TRANSCRIPT: Hi! My name is Ngcebo. I love football. Football I love is ‘Kaizer Chiefs’. ‘Kaizer Chiefs’ player I like is Tshabalala. When I grow up I like to be a pilot. Bye!
MORE INFO: Tshabalala is a left wing for the ‘Kaizer Chiefs’ Football Club. He is number 14.',9.0,'Touchable Earth Foundation (New Zealand)','','video',0,422,423,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','663fd107faa858bf9d428cd7601ed0b6');INSERT INTO "content_contentnode" VALUES('371b8383863f54b994ab78e381857a63','Promise','f26f609a39c75a179ba902005f2d761d','000409f81dbe5d1ba67101cb9fed4530','Let’s make friends with Promise. How many family members does she live with?
TRANSCRIPT: Hi everyone! My name is Promise. I live in a village in Soweto. My school is Lakeview Full Service Primary School and my principal is Semblam Ulu and my teacher is Sir Makhalima and Ma’am Konazi.I love this school because it is teaching too much. And, I love my teachers they are too beautiful. I live with my father, my mother, my aunty, my grandmother. Bye!',10.0,'Touchable Earth Foundation (New Zealand)','','video',0,424,425,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','663fd107faa858bf9d428cd7601ed0b6');INSERT INTO "content_contentnode" VALUES('cf786646764f5018a64b4c7fbdc4a16e','Wandile','a0a34a995bfc5a54b1f101569a9f7767','000409f81dbe5d1ba67101cb9fed4530','Let’s make friends with Wandile. Who is his favorite football team?
TRANSCRIPT: Hi my name is Wandile, my surname is Thom. I love ‘Chiefs’ (Soccer team) because he is winning everyday when they play. I love my school, my best subject is English.',11.0,'Touchable Earth Foundation (New Zealand)','','video',0,426,427,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','663fd107faa858bf9d428cd7601ed0b6');INSERT INTO "content_contentnode" VALUES('53ad0c4ff0c858c5a803edd10643128a','Wanelo','b93c2e56e7ee5073a82f309b6ec87452','000409f81dbe5d1ba67101cb9fed4530','Let’s make friends with Wanelo. Which town does he live in?
TRANSCRIPT: Hi my name is Wanelo. I live at Mpophomeni Township. My friends, they are playing ball there. How many nice things do you love? I love many things, to play with the other kids, to learn with other kids. I love my mother. I love my teacher. My school is very clean. My teachers, they are teaching us how our school is a very special place today because Nelson Mandela, it is his party today. Mandela have a party today. Thank you. Good bye! Bye bye!
MORE INFO: 18 of July is ‘Nelson Mandela Day’. It is the birthday of former South African President Nelson Mandela. Everyone in the country is asked to volunteer in their community or make a donation.',12.0,'Touchable Earth Foundation (New Zealand)','','video',0,428,429,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','663fd107faa858bf9d428cd7601ed0b6');INSERT INTO "content_contentnode" VALUES('04df1ef474325714ab748a498679e511','Zepasizi','ea1f42d7fcc555ecb5d50f7c2ae15e13','000409f81dbe5d1ba67101cb9fed4530','Let’s make friends with Zepaisizi. How does he shake hands with his friend?
TRANSCRIPT: Hi my name is Zepasizi and my surname is Lintil and I live in Mpophomeni township. I love my mother, dad, sister, children, teacher, sister.',13.0,'Touchable Earth Foundation (New Zealand)','','video',0,430,431,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','663fd107faa858bf9d428cd7601ed0b6');INSERT INTO "content_contentnode" VALUES('3b702e402a7158548c61d6b7dba2d7a8','Jaime and Friends','8ef62e2dfebf5db4bd368cb60152890e','000409f81dbe5d1ba67101cb9fed4530','Let’s make friends with Jamie, Mila, Eza, and Emma. What sports do they like?
TRANSCRIPT: Hi! My name is Jamie and I’m 10. And I live in South Africa, it’s such a cool country to live in. Mila: Hi! My name is Mila and I live in South Africa. And, what I like to do is play soccer, and play a little bit of rugby, plus Play Station with my little brother. And meet him now! Come Eza. Bye! Eza: Hello! My name is Eza. I love soccer and I like to play rugby and soccer. Me and my brother like to play. This is my friend Emma. Everyone: Come on Emma!… Bye!',14.0,'Touchable Earth Foundation (New Zealand)','','video',0,432,433,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','663fd107faa858bf9d428cd7601ed0b6');INSERT INTO "content_contentnode" VALUES('ff3b451bae1a5c96b0a7c808d8bb6820','Cans','c416dd0813a85ec49f5fc3f9a09540a4','000409f81dbe5d1ba67101cb9fed4530','Amanda is playing a came with cans. How many tins do the players need to stack to win?
TRANSCRIPT: My name is Amanda Mchunu, I live at Mpophomeni Township. The game we are about to play is mainly played by girls but boys can play it too.
MORE INFO: One team has to stack 3 tins and the other team throw the ball to hit the person who is trying to stack the tins. If the team is able to stack all 3 tins they get a point, but if all the members of the team have been hit without stacking all 3 tins they lose.',1.0,'Touchable Earth Foundation (New Zealand)','','video',0,436,437,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','3cc1d6a81a6e56069d33e5e65b4f833f');INSERT INTO "content_contentnode" VALUES('bcbb53d7d9735f5ab6bd427f9b3cbeff','Clapping','a2e0896b3e7257a9986751793551144d','000409f81dbe5d1ba67101cb9fed4530','Anele and her friends like a clapping game. Can you learn to do it?
TRANSCRIPT: Hi! My name is Anele Ndlovu. I like to play this game with my friends during breaktime. The name of this game is called Sdumo’. (Clap and sing song)',2.0,'Touchable Earth Foundation (New Zealand)','','video',0,438,439,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','3cc1d6a81a6e56069d33e5e65b4f833f');INSERT INTO "content_contentnode" VALUES('02d60d3e4ae751e3b02a4c0f09be22e0','Hockey','1c73fbab45b15b769c63905cf07116b1','000409f81dbe5d1ba67101cb9fed4530','Wiaan and Strauss like to play hockey. Did their team win their last game?
TRANSCRIPT: Both: Hello! Wiaan: I’m Wiaan. Strauss: I’m Strauss. Wiaan: We like playing hockey. Strauss: And we are both 12. Wiaan: We both play defenders, A team of the school. Strauss: We almost win yesterday, but we just lost. Wiaan: By five goals. Strauss: I’m going to tell you about the rules of hockey. This is a hockey stick. Once side is flat and the other side is round. You can only hit the ball with the flat side like this. The rules of hockey is there are only two teams in hockey, and you can’t lift the hockey stick above your shoulders, otherwise its another penalty. Wiaan: Hi guys! I’m gonna teach you some dribbling. (Cheers) Goal!',3.0,'Touchable Earth Foundation (New Zealand)','','video',0,440,441,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','3cc1d6a81a6e56069d33e5e65b4f833f');INSERT INTO "content_contentnode" VALUES('55baed4125b55d87989eea9e7fc77e09','Hopscotch','3ca7fa4ff4c55eefb4036f4d4ca1619c','000409f81dbe5d1ba67101cb9fed4530','Minenhle likes to play hopscotch. Does she win on her first try?
TRANSCRIPT: Hi! My name is Minenhle Ndlovu. I like to play hopscotch. I am 9 years old. The name of my school is Isibongo JP School. Bye!
MORE INFO: Throw the stone in circle, hop along and skip the circle where the stone is. When coming back, pick up the stone without getting inside the circle, then hop to get out of the scotch.',4.0,'Touchable Earth Foundation (New Zealand)','','video',0,442,443,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','3cc1d6a81a6e56069d33e5e65b4f833f');INSERT INTO "content_contentnode" VALUES('034dd95115d4574fa883065d6272f058','Karate','e9231d1d336f5e0885b6712ec2c54b4e','000409f81dbe5d1ba67101cb9fed4530','Mutu likes to learn Karate. What country was Karate invented in?
TRANSCRIPT: Hi! My name is Mutu. For fun I like to do Karate, I’ll show you.',5.0,'Touchable Earth Foundation (New Zealand)','','video',0,444,445,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','3cc1d6a81a6e56069d33e5e65b4f833f');INSERT INTO "content_contentnode" VALUES('1a586f9b6b1e5e27a021b6f1a90e0b15','Ropes','0d1d7f0e0eb653fd8559cb766827d751','000409f81dbe5d1ba67101cb9fed4530','Lebogang and her friend like playing this game using ropes. Can she finish the song without tripping?
TRANSCRIPT: Hi! My name is Lebogang and I am 11 years old. We are here to play ‘skusha’. In ‘skusha’ we talk about something like 4 people hold on, then 4 people will playing jump, jumping out jumping in, jumping out, jumping in. then, after that, if you win you will jump maybe 6 steps without tripping. Then thats over. So you can play so you can see what we are talking about. Ok let’s play! Group: Thankyou! (Play game).',6.0,'Touchable Earth Foundation (New Zealand)','','video',0,446,447,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','3cc1d6a81a6e56069d33e5e65b4f833f');INSERT INTO "content_contentnode" VALUES('648b9a9e68825a958059bf5349b506d9','Rubgy','6990b4be8645569aa682a660b4649c31','000409f81dbe5d1ba67101cb9fed4530','William and his friends love to play Rugby. How many times has South Africa won the world cup?
TRANSCRIPT: Hi! I’m William and I am 13 years old. I’m head boy and I like to play rugby. Let’s play! (Boys cheer and play)
MORE INFO: South Africa won the Rugby World Cup in 1995 and 2007.',7.0,'Touchable Earth Foundation (New Zealand)','','video',0,448,449,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','3cc1d6a81a6e56069d33e5e65b4f833f');INSERT INTO "content_contentnode" VALUES('bd9eac8bf56a5216a3ac0bc5c726ed0a','Stones','d7cf6934d170592ab69901499248a34c','000409f81dbe5d1ba67101cb9fed4530','Lofuno and Dakan like to play a game with stones. Can you learn to play it?
TRANSCRIPT: Both: Hi! My name is Lofuno. Dakan: My name is Dakan. Lufono: I am 8 years old and we are playing ‘ngethu’. You throw the stone in the air, and your pull the stones towards you. You throw the stone in the air again. You push back the stones in the circle, then you try to keep one. Let me show you how. Dakan: When we have pulled again the stones in the circle, and you have two stones, you have lost. And then the other one, when you don’t catch the stone and the stone falls down, you have lost.',8.0,'Touchable Earth Foundation (New Zealand)','','video',0,450,451,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','3cc1d6a81a6e56069d33e5e65b4f833f');INSERT INTO "content_contentnode" VALUES('3b49749b12b056edb7c94d79afa932fe','Tennis','b512456a2f425d7ba944a4d723a97c29','000409f81dbe5d1ba67101cb9fed4530','Jowri loves to play tennis. How many friends is she playing with today?
TRANSCRIPT: Hi! My name is Jowri. I live in South Africa. I’m 12 and I love to play tennis with my friends!',9.0,'Touchable Earth Foundation (New Zealand)','','video',0,452,453,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','3cc1d6a81a6e56069d33e5e65b4f833f');INSERT INTO "content_contentnode" VALUES('79edfbf601095cd6b97e9d62cae13466','School','81e41d35cb89560a9bca0383be950ce3','000409f81dbe5d1ba67101cb9fed4530','Joline welcomes you to her school. What time does school start?
TRANSCRIPT: Hi! My name is Joline and at school we have 800 children. And we get in at 8 o’clock and we get out at 2 o’clock. Our school is in Soweto, South Africa. And welcome to our school. Bye!
MORE INFO: The school motto is ’empowers the child, empowers the nation’.',1.0,'Touchable Earth Foundation (New Zealand)','','video',0,456,457,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','f2695fb6bb245c32a6de12f65c74846d');INSERT INTO "content_contentnode" VALUES('b22c72d0cf9c5af99cc7620323675c38','Assembly','7d1b73b652185e9e8734ed205f03ef2e','000409f81dbe5d1ba67101cb9fed4530','Obakeng is at school assembly. How many days a week is assembly?
TRANSCRIPT: My name is Obakeng. I am 5 years old. I am in grade R. I come to assembly Monday to Friday. Bye! (Teacher talking, children laugh and cheer).',2.0,'Touchable Earth Foundation (New Zealand)','','video',0,458,459,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','f2695fb6bb245c32a6de12f65c74846d');INSERT INTO "content_contentnode" VALUES('8fa6f1c9a5f65c4685eb2db498dbab6a','Classroom','1ae6321db38d5b2ab8c2bb5ffa93f8a6','000409f81dbe5d1ba67101cb9fed4530','Sangelo is in Grade 4. What subject is he studying today?
TRANSCRIPT: Hi! I’m Sangelo and I’m in Grade 4 and I’m in Lakeview Full Service Primary School and we are learning mathematics. Teacher: Alright Good morning class Class: Good morning Teacher and good morning classmates. Teacher: And how are you this morning? Class: We are fine thank you teacher, and how are you teacher? Class: I’m fine thank you. Alright, today we are going to learn about mathematics and multiplications. So before we start is anyone not feeling well today? Class: No. [Teacher] Are you all well? Class: Yes. Teacher: Good. Ok. Now let me start. Do you still remember yesterday we teach the multiplications and the breaking down of numbers? Do you still remember that? [Class] Yes. Teacher: Good. So we continue are lesson today by continuing with our previous lesson, ok? So for today we are leaning 14 multiply by 6. Can you also see that? Class: Yes. Teacher: Say so. Class: 14 multiply by 6. Teacher: Right, you know all the steps now, isn’t it? Class: Yes. Teacher: Right, what memory do you have if we have these two digits? Sangelo? Sangelo: You break down to the nearest tens Teacher: We break down. Can you repeat for us what we do from here? Sangelo: We break down to the nearest tens. Teacher: Either we break down to the nearest tens or we write to get tens. Okay, so for now we are going to break these two numbers. The tens and the? Class: Units Teacher: Good!',3.0,'Touchable Earth Foundation (New Zealand)','','video',0,460,461,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','f2695fb6bb245c32a6de12f65c74846d');INSERT INTO "content_contentnode" VALUES('527cd93628ee554882946105b3535aa4','Clas','2c5a04e7ccad5a29b2f4f22a627a1790','000409f81dbe5d1ba67101cb9fed4530','Linda is in Grade 4. What subject is she learning?
TRANSCRIPT: Hi! My name is Linda and I’m in grade 4. Today I’m learning English and my teacher is Miss Pewa. Teacher: Good morning learners. Class: Good morning teacher and good morning classmates! Teacher: Okay, as you know, today we are going to learn about jogging. OK? Class: Yes. Teacher: So we need to know how to survive jogging in the city. Alright? All of you read those Class: Pavements Teacher: Again Class: Pavements Teacher: Pavements. What are pavements? Student: That is the sides of the streets. Everyone: That is the sides of the street. Teacher: Who walks on the pavements? Student: You walk on the pavement when you go to school. Teacher: Whenever you’re going to school who walks on the pavement? Class: The pedestrians Teacher: The pedestrians must always walk on the what? Class: On the pavement. Teacher: The pedestrians, say it Together: The pedestrians must always walk on the pavements. Teacher: Okay, alright. Here’s another word.',4.0,'Touchable Earth Foundation (New Zealand)','','video',0,462,463,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','f2695fb6bb245c32a6de12f65c74846d');INSERT INTO "content_contentnode" VALUES('beb01ebb32845e93b963e37681f81859','Garden','be22e4bf0b0c5d04bc58611cae4faea3','000409f81dbe5d1ba67101cb9fed4530','Simphiwe and Nonkululeko help with the school garden. What vegetables do they grow?
TRANSCRIPT: Simphiwe: Hi! I’m Simphiwe. Nonkululeko: And I’m Nonkululeko. Simphiwe: And we are the member of the Soul Buddies of Lakeview Full Service Primary School. This is our garden and we look after all the plants here. The plants we have are spring onion, cabbage, carrots, and spinach. Both: Bye!',5.0,'Touchable Earth Foundation (New Zealand)','','video',0,464,465,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','f2695fb6bb245c32a6de12f65c74846d');INSERT INTO "content_contentnode" VALUES('cc13576a60c85dcfae21c16f40a7082e','Lunch','bdaf0cf0435c5378bed50aada5f59481','000409f81dbe5d1ba67101cb9fed4530','Bongiwe is having school lunch. What is she eating?
TRANSCRIPT: Hi my name is Bongiwe. I’m 5 years old. What we eats in the lunch, we eats pap and fish. Bye! Class: Thank you God for food to eat, for fresh clear water we can drink. We thank you too for rest and care, and little children everywhere! Amen. Teacher: Open your eyes Class: I open my eyes. Teacher: Enjoy your lunch. Class: Thank you teacher.
MORE INFO: Pap is ground maize/corn made into a porridge.',6.0,'Touchable Earth Foundation (New Zealand)','','video',0,466,467,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','f2695fb6bb245c32a6de12f65c74846d');INSERT INTO "content_contentnode" VALUES('9e580c1b296752ed8ce359b0ac657b30','Principal','ba9722f391dc5fcdbb071c2ab30db3a0','000409f81dbe5d1ba67101cb9fed4530','Samantha is with the school Principal. How many students go to the school?
TRANSCRIPT: Samantha: Hi! My name is Samantha and I’m in grade 7 in Lakeview Full Service Primary School. This is my Principal’s office and this is him. So, our Principal has been the Principal of our school since 2009 but has been with us from 1996. Principal: Hi my name is Mr. Victor Bilankulu and yes I have been the principal in Lakeview Full Service from 2009. And in this school we are accommodating learners behaving differently with challenges and barriers. And, we’re having 850 learners for 2012. And I worked when the school started in 1996 as a founder and deputy principal. Now I’m working for only three years as a principal from 2009. Hi! Samantha: Bye!',7.0,'Touchable Earth Foundation (New Zealand)','','video',0,468,469,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','f2695fb6bb245c32a6de12f65c74846d');INSERT INTO "content_contentnode" VALUES('6572888e8c8054a78d5fa2f5f3f2cc0a','Walking','accb26cf126d5b1392f1153eea9fdb6d','000409f81dbe5d1ba67101cb9fed4530','Mbasakazi and Noncedo walk to school every day. How far do they walk?
TRANSCRIPT: Both: Hello! Mbasakazi: Hello! My name is Mbasakazi. Noncedo and Mbasakazi: We’re 12 years old. Noncedo: We are from Lakeview Primary School. Mbasakazi: We walk all way from 5 km or 3 miles. We walk from school always. Noncedo: Which takes us 45 minutes. Both: Welcome to our school! Bye!
MORE INFO: 75% of the kids in the school walk over 8km (5 miles) each way to and from school.',8.0,'Touchable Earth Foundation (New Zealand)','','video',0,470,471,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','f2695fb6bb245c32a6de12f65c74846d');INSERT INTO "content_contentnode" VALUES('462a54aebd9855a3b52d34bdbd3d046c','Language','d5c0dcc775945480b69bd9d9901a47ec','000409f81dbe5d1ba67101cb9fed4530','Shreeyanti will teach you about the Nepali language. How do you say ‘hello’ in Nepali?
TRANSCRIPT: Namaste. My name is Shreeyanti, I read in class 6. Today I’m going to teach you how to count from one to ten in Nepali. ‘1’ is called ‘ek’. ‘2’ is called ‘due’. ‘3’ is called ‘tin’. ‘4’ is called ‘char’. ‘5’ is called ‘panch’. ‘6’ is called ‘chha’. ‘7’ is called ‘sat’. ‘8’ is called ‘aath’. ‘9’ is called ‘nau’. ’10’ is called ‘das’. Bye! Namaste. My name is Shreeyanti. I read in class 6. Today I’m going to teach you basic Nepali. ‘Hello’ is ‘Namaste’. ‘How are you’ is ‘Timi kastachhau’. ‘I am well’ is ‘Maa thik chhu’. ‘What is your name?’ is ‘Timro naam ke ho?’. ‘My name is Shreeyanti’ is ‘Mero naam Shreeyanti ho’. ‘Thankyou’ is ‘Dhanyabaad’. Thank you!. Bye bye!
MORE INFO: Nepali is the official language of Nepal. Two thirds of the country speak it as their mother tongue. It is also spoken in parts of Bhutan, India and Myanmar.',1.0,'Touchable Earth Foundation (New Zealand)','','video',0,476,477,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','6fc08e28c2845cfd9bee1c35eb505af5');INSERT INTO "content_contentnode" VALUES('04d837cecc6151e1b24aa95011180a68','Boys’ Clothes','669c67c501c55addb80a03d28abb0450','000409f81dbe5d1ba67101cb9fed4530','Subham will teach you about boys’ clothes in Nepal. What is the name of the Nepali hat?
TRANSCRIPT: Namaste. This is my ‘Dhaka topi’, this is my ‘stogod’, this is my ‘daura’ and this is my ‘suruwal’. These all are the national dress of Nepal. Bye bye!
MORE INFO: There are 3 main regions of Nepal. Each has their own type of traditional clothes for boys. This style is from the Hill region of Nepal.',2.0,'Touchable Earth Foundation (New Zealand)','','video',0,478,479,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','6fc08e28c2845cfd9bee1c35eb505af5');INSERT INTO "content_contentnode" VALUES('96871048743f5cc6affe163462bbce41','Drum','172396aa422f555d936920872c813d3f','000409f81dbe5d1ba67101cb9fed4530','Raunak will teach you about a traditional Nepali drum. What is his drum made of?
TRANSCRIPT: Hi my name is Raunak. I study in class 4 of Nagarjuna school. This is ‘Madal’ it is found only in Nepal. It is made of animal skin and it is made of wood. I am going to play this ‘Madal’. Bye!
MORE INFO: The ‘Madal’ Drum is usually made with buffalo hide. It is often used in processions through the streets during special holidays or events.',3.0,'Touchable Earth Foundation (New Zealand)','','video',0,480,481,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','6fc08e28c2845cfd9bee1c35eb505af5');INSERT INTO "content_contentnode" VALUES('047c2a4210e05539a825feb377d01203','Girls’ Clothes','ee917483e47a566ea44ea4bdf55f5f84','000409f81dbe5d1ba67101cb9fed4530','Divya will teach you about girls’ clothes in Nepal. What is the name of the red spot on her forehead?
TRANSCRIPT: Namaste. My name is Divya. I am 11 years old. All the women wear this type of dress in Nepal and I am going to explain this dress. This is ‘choli’, this is ‘dhoti’, this is ‘patuki’, this is ‘mala’, this is ‘sirbandi’, these are jewelery, and this is ‘Tika’. Thank you, bye!
MORE INFO: There are 3 main regions of Nepal. Each has their own type of traditional clothes for girls. These clothes are from the Hill region of Nepal.',4.0,'Touchable Earth Foundation (New Zealand)','','video',0,482,483,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','6fc08e28c2845cfd9bee1c35eb505af5');INSERT INTO "content_contentnode" VALUES('e6a42dc868665674a3f1daceaf6c0eee','Money','a5ba1ad66e0c5476975fc05b11176b7d','000409f81dbe5d1ba67101cb9fed4530','Divya will teach you about money in Nepal. What is the name of the currency?
TRANSCRIPT: Hello, in Nepal money is called ‘rupees’. Here we have 5 ‘rupees’. There is a King and there is a temple. On the backside there are 2 yaks. We have 10 ‘rupees’ here. Here is Mount Everest and here is a Goddess. On the backside here are 3 deer. Now we have 50 ‘rupees’. There is Mount Everest and on the backside there is Himalayan sheep. Here we have 100 ‘rupees’. There is Mount Everest and there is a temple. On the backside there is a rhino. Now here we have 500 ‘rupees’. Here is Mount Everest and on the backside there are two tigers. Last we have here 1000 ‘rupees’. Here is Mount Everest and on the backside there is a big fat elephant. Bye!
MORE INFO: Nepali people are very proud to have the highest mountain in the world, Mount Everest, so it is on all of their banknotes. They are also proud of the many rare animals that live in Nepal.',5.0,'Touchable Earth Foundation (New Zealand)','','video',0,484,485,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','6fc08e28c2845cfd9bee1c35eb505af5');INSERT INTO "content_contentnode" VALUES('2643abb8406c580a907cf683f9aa2116','Paper','aeb9a5683bd752a682bbfc3b81e8c2fd','000409f81dbe5d1ba67101cb9fed4530','Divya will teach you about traditional Nepali paper. What does it feel like?
TRANSCRIPT: This is a notebook made from handmade Nepali paper. It is prepared by an ancient method using the ‘Lokta paper’. It is quite thick and you can feel the bark of the tree. Thank you, bye bye!
MORE INFO: The bark from the ‘Lokta’ bush is used to make this traditional paper. It is very strong and does not fall apart if it gets wet. It is still used today for official Government documents.',6.0,'Touchable Earth Foundation (New Zealand)','','video',0,486,487,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','6fc08e28c2845cfd9bee1c35eb505af5');INSERT INTO "content_contentnode" VALUES('e0f5506ed63b54f496ef4803100969de','Symbols','969a6570a77e5775b4aa2c1e840fbdc3','000409f81dbe5d1ba67101cb9fed4530','Sushant will teach you about traditional Nepali symbols. What is the name of the mountain on the door?
TRANSCRIPT: Hi my name is Sushant. I read in class 4 at Nagarjuna Acadamy. This is a door, there are 8 pictures. These two pictures are of the biggest mountain of the world, it is Mt Everest. It is found in Nepal. This is a picture of the national bird of Nepal it is Lophophorus. This is a picture of the national flower of Nepal it is Rhododendron. This is a man carrying goods and going to sell it in the market. This is a woman farming. These are both yams, when we keep it on our door, when we are going out for a journey, it is beleived that our journey will be safe. Bye bye!
MORE INFO: The national flower of Nepal, Rhododendron, is bright red and found in places all over the world, maybe even where you live. The national bird has the scientific name ‘Lophophorus’ but you can call it a ‘Danphe’ for short. It is very colorful with many shades of blue and green.',7.0,'Touchable Earth Foundation (New Zealand)','','video',0,488,489,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','6fc08e28c2845cfd9bee1c35eb505af5');INSERT INTO "content_contentnode" VALUES('80a9be1687bc58f5a0f51f674d612d3c','Welcome','55927a7cd4675564adb370f927deae86','000409f81dbe5d1ba67101cb9fed4530','Isha and Birendra welcome you to Nepal! What is the population of Nepal?
TRANSCRIPT: Namaste and welcome to Nepal. My name is Isatap and I study in Grade 7. Nepal lies between the two biggest countries of the world, India and China. The population of Nepal is 27 million approximately. The capital city of Nepal is Kathmandu. Once again, welcome to Nepal. Group: Welcome to Nepal! Good morning! My name is Birendra.I am 13 years old. My country’s name is Nepal. Nepal is situated in between the two large countries China and India. Kathmandu is Capital city of Nepal. It has a 27 million person population. Lastly, our greetings and best wishes to all of you from Nepal. Bye!! Group: Welcome to Nepal!
MORE INFO: The red paint on the forehead is known as tikka and is worn for cultural purposes. The kids had it on today as it was ‘Teachers Day’ and the kids had a ceremony honoring their teachers.',1.0,'Touchable Earth Foundation (New Zealand)','','video',0,492,493,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','01784fa9abd45045b6a323a326dfd1a4');INSERT INTO "content_contentnode" VALUES('792a31075b725c6eb0d27b7b3605ab0c','Map','753067b32ed55c36934a7ea63c0f1f4b','000409f81dbe5d1ba67101cb9fed4530','Where is Nepal on the world map?
TRANSCRIPT: My name is Pritiupani. I study in class 6. I’m from Nepal. Nepal is a landlocked country it is famous for mountains. The highest peak in the world, Mt Everest, also lies in our country. It’s height is 8848 meters. Our Nepal in north it is bordered with China, whereas in south it is bordered with India. Thank you, Bye!',2.0,'Touchable Earth Foundation (New Zealand)','','video',0,494,495,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','01784fa9abd45045b6a323a326dfd1a4');INSERT INTO "content_contentnode" VALUES('7e6164b11ff65fc6978e21917f17fd4c','Capital','804334f9d62c5db9be1f3af49186c7a6','000409f81dbe5d1ba67101cb9fed4530','The capital of Nepal is Kathmandu. How many people live here?
TRANSCRIPT: Hi my name is Sichachapa. I study in class 4. This is our Kathmandu, the capital of Nepal which is 2000 years old. Almost 1 million people live here. Welcome to Kathmandu. Bye!
MORE INFO: This is where the Parliament sits. It is called the BICC building (Birendra International Conference Center).',3.0,'Touchable Earth Foundation (New Zealand)','','video',0,496,497,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','01784fa9abd45045b6a323a326dfd1a4');INSERT INTO "content_contentnode" VALUES('65f492db8ae05552ac4de9ad773e8763','Flag','f6c85c152c1a56fe898434012997423b','000409f81dbe5d1ba67101cb9fed4530','Sushant is holding the flag of Nepal. Why does it have two points on it?
TRANSCRIPT: Namaste. This is the flag of our Nepal it is composed with three colors. The red color indicates victory in the war. The blue borderline indicates peace and harmony. The two triangles indicate the two big religions, they are Hindu and Buddhist. While the sun and the moon exist our Nepal will exist. Thank you, bye bye.
MORE INFO: This is one of the few national flags in the world that is not a rectangle.',4.0,'Touchable Earth Foundation (New Zealand)','','video',0,498,499,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','01784fa9abd45045b6a323a326dfd1a4');INSERT INTO "content_contentnode" VALUES('42d55d36b9af5f599e0748b77f098382','Anthem','1fb9bdd2e7c7588ea8df02f480fef7e5','000409f81dbe5d1ba67101cb9fed4530','Antara and her classmates sing the national anthem every morning. What is it about?
TRANSCRIPT: Hi I am Antara. I am Nepali. We are going to sing national anthem. (Group sings anthem)
MORE INFO: The National Anthem is called ‘Sayaun Thunga Phool Ka’ which means ‘Made of hundreds of flowers’ and is about the unity of the Nepali people and their beautiful country.',5.0,'Touchable Earth Foundation (New Zealand)','','video',0,500,501,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','01784fa9abd45045b6a323a326dfd1a4');INSERT INTO "content_contentnode" VALUES('02ee7c4e92765f718f05f1d67bbeca6a','Pim’s Family','309e602b757a53ba9fabfd7fa3dedbdf','000409f81dbe5d1ba67101cb9fed4530','Pim wants to introduce you to his family. Where in Nepal do they live?
TRANSCRIPT: Hi and welcome my name is Pim Pariyar, I am eleven years old and I come from Pokhara. This is my mother she is thirty years old. This is my Aunty she is thirty-five years old. This is my mother’s brother’s wife and she is thirty-four years old, we are in Pokhara. Bye!
MORE INFO: Pim lives in Pokhara in north western Nepal. In the background you can see Phewa Lake and many hills. 3 of the 10 highest mountains in the world are close to Pokhara.',1.0,'Touchable Earth Foundation (New Zealand)','','video',0,504,505,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','36a3f6f8d88353a18a8c34d898274ddf');INSERT INTO "content_contentnode" VALUES('79452341f28e50a3aff31cd868aa9d2f','Pim’s Mother','b70b3616b5bb5a2cb69b3bb6eefe6a18','000409f81dbe5d1ba67101cb9fed4530','Pim is at his mother’s shop. What does she do?
TRANSCRIPT: Hi, this is my downstairs and sewing room. This is my mother and this is my mothers sewing machine. This is my mothers shop and she sews Nepali clothes.
MORE INFO: Pim’s mum set up her shop in the downstairs of the house. Many families in this area also have their living area upstairs and work places downstairs facing the street.',2.0,'Touchable Earth Foundation (New Zealand)','','video',0,506,507,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','36a3f6f8d88353a18a8c34d898274ddf');INSERT INTO "content_contentnode" VALUES('6e0a9081adf85fd984be19d1b794fbc2','Pim’s Street','b83ab9416cf35f06a78f19c59e99f197','000409f81dbe5d1ba67101cb9fed4530','Pim is standing by his front door. What is the weather like outside?
TRANSCRIPT: This is my street, now the ice is coming. This is my house street. (Sound of hail).
MORE INFO: Even in spring time it can start hailing at short notice. The Pokhara area has the highest rainfall per year in the whole of Nepal.',3.0,'Touchable Earth Foundation (New Zealand)','','video',0,508,509,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','36a3f6f8d88353a18a8c34d898274ddf');INSERT INTO "content_contentnode" VALUES('47144dd2e80059c499a612691fac7638','Pim’s Home','6313c438ee9d588f96bbe36816718b83','000409f81dbe5d1ba67101cb9fed4530','This is Pim’s home. What is his favorite toy?
TRANSCRIPT: Hi! This is my home and this is where my mother and I sleep. And here my brother sleeps. Here we do cooking, here eating, and this is my favorite toy.
MORE INFO: Pim loves Dragon Ball Z.',4.0,'Touchable Earth Foundation (New Zealand)','','video',0,510,511,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','36a3f6f8d88353a18a8c34d898274ddf');INSERT INTO "content_contentnode" VALUES('5d89e4e006ed5bb6a45792c3ad614c07','Ujan’s Family','be11c57cb7675cbcb374cccac62c0ae1','000409f81dbe5d1ba67101cb9fed4530','Ujan wants to introduce you to his family. Where in Nepal do they live?
TRANSCRIPT: My name is Ujan I am 12 years old and I’m a student. She is my sister, her name is Ashma and she is 5 years old. She is my mother her name is Anita and she is a housewife. This is my father he is a shopkeep and he is the husband of my mum.
MORE INFO: Ujan and his family live in the capital city Kathmandu.',5.0,'Touchable Earth Foundation (New Zealand)','','video',0,512,513,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','36a3f6f8d88353a18a8c34d898274ddf');INSERT INTO "content_contentnode" VALUES('0497a60a83a555a987ee618797ca99ee','Ujan’s Mother','018a5fc938635f869a544c3869c435a5','000409f81dbe5d1ba67101cb9fed4530','Ujan is in the kitchen with his mother. What does he like to help his mother with?
TRANSCRIPT: This is my kitchen where my mum cooks and I help my mom to cook the food, that’s all.
MORE INFO: Mum’s favorite thing to make for the kids is ‘momo’ which is a traditional spicy dumpling.',6.0,'Touchable Earth Foundation (New Zealand)','','video',0,514,515,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','36a3f6f8d88353a18a8c34d898274ddf');INSERT INTO "content_contentnode" VALUES('66fc9f551fd6551eaaa7cac4d32aab6b','Ujan’s Home','3744348130f75ac28773030673df2607','000409f81dbe5d1ba67101cb9fed4530','Ujan is in his home. Who else lives there?
TRANSCRIPT: This is the room my Uncle lives in and and my sister sleeps here. There is my Uncle’s kitchen. My Aunty cooks food. My Uncle helps and my sister also helps to cook food. And thats all for this room.
MORE INFO: Right outside is a UNESCO World Heritage site. This is also where Ujan plays football with his friends.',7.0,'Touchable Earth Foundation (New Zealand)','','video',0,516,517,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','36a3f6f8d88353a18a8c34d898274ddf');INSERT INTO "content_contentnode" VALUES('b9c4652e2b385d6bb6766f0c4a5ad7b0','Ujan’s Roof','fab20a7b58c3509d92e25e53d5d5049e','000409f81dbe5d1ba67101cb9fed4530','This is the view from Ujan’s roof. How long has his family lived here?
TRANSCRIPT: This is the roof of my house and my family has lived in the house for one hundred and fifty years. We fly kites on the roof of my house in ‘Dassain’, in the festival of Krishna’s birthday.There is the Krisha temple, the god of Krishna. That is Mahadev Siiva the god of all gods. That is Bhimsen temple.
MORE INFO: In the top right is the Krishna Temple. It was built in 1637. It has 3 floors and each is dedicated to a god.',8.0,'Touchable Earth Foundation (New Zealand)','','video',0,518,519,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','36a3f6f8d88353a18a8c34d898274ddf');INSERT INTO "content_contentnode" VALUES('1353ebb16dd05523a67a824b249e616a','Divya','d7a2d79a122156b788a7f0f0c943e563','000409f81dbe5d1ba67101cb9fed4530','Let’s make friends with Divya. What does she want to be when she grows up?
TRANSCRIPT: Hi! My name is Divya and I am 11 years old. I want to dance and I will dance 3 to 4 times in a week. In the future I want to be a scientist. Bye bye! Hi! I will like to teach you one poem. Please listen and look, okay? Butterfly, Butterfly, Flutter flutter here, flutter flutter there, flutter flutter here and everywhere! Thank you!',1.0,'Touchable Earth Foundation (New Zealand)','','video',0,522,523,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','d2a21d076000535daf08c4b56dfae2fb');INSERT INTO "content_contentnode" VALUES('65be8d405102527c89417da6dc641869','Isha','1d3625730d2b5a26a2aa8f2fce5878ac','000409f81dbe5d1ba67101cb9fed4530','Let’s make friends with Isha. What does she want to be when she grows up?
TRANSCRIPT: Namaste! I am Isha studying in grade 6. My aim in my life is to be a successful doctor. The reason behind it is people in my country are not getting proper health services in the rural areas. I want to provide them proper health service and do as many things as possible with all of my efforts. Bye bye!
MORE INFO: Isha is the head girl of her school.',2.0,'Touchable Earth Foundation (New Zealand)','','video',0,524,525,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','d2a21d076000535daf08c4b56dfae2fb');INSERT INTO "content_contentnode" VALUES('08e564cdf23e5f21a20c5defe3595854','Manjur','dfc0a072201c53feae8ea896ffb56ee3','000409f81dbe5d1ba67101cb9fed4530','Let’s make friends with Manjur. What is his favorite subject?
TRANSCRIPT: My name is Manjur. I am 12 years old. I live in Jyameri Ghat. My favorite subject is English. I like to speak with tourists and I love to come to tourists. My favorite subject is English. My dream in life is to be a doctor. Bye bye!
MORE INFO: Manjur lives in a village outside of Kathmandu. Many tourist buses stop near his village so he gets the chance to practice his english.',3.0,'Touchable Earth Foundation (New Zealand)','','video',0,526,527,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','d2a21d076000535daf08c4b56dfae2fb');INSERT INTO "content_contentnode" VALUES('6353af4d38c55e81a5c7eb07b9597205','Pasang','3450959a0f8f560ab8b4f4190fc846ec','000409f81dbe5d1ba67101cb9fed4530','Let’s make friends with Pasang. What game does he love?
TRANSCRIPT: My name is Pasang Lama. I live in Nepal. I am 14 years old. My favorite player is Cristiano Ronaldo. I love my football.',4.0,'Touchable Earth Foundation (New Zealand)','','video',0,528,529,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','d2a21d076000535daf08c4b56dfae2fb');INSERT INTO "content_contentnode" VALUES('6ca86de0115755f4a95eaf9fb844ebb8','Puran','25863428a14b576894f1019e4e58acbe','000409f81dbe5d1ba67101cb9fed4530','Let’s make friends with Puran. How old is he?
TRANSCRIPT: What is your name? My name is Puran Rai. My name is Paton Dhoka (Laughs). I live in Paton Dhoka. My father’s name is Kanchha Rai. My mother’s name is Sangita Rai. My age is 9 years old. Soccer! Soccer!
MORE INFO: The boys are all eating their favorite chewy caramel candy.',5.0,'Touchable Earth Foundation (New Zealand)','','video',0,530,531,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','d2a21d076000535daf08c4b56dfae2fb');INSERT INTO "content_contentnode" VALUES('e343af1fa14650688ed6e23e69abae3e','Sarina','13cfc60c174553fba4ba7276086c361c','000409f81dbe5d1ba67101cb9fed4530','Let’s make friends with Sarina. How many people are in her family?
TRANSCRIPT: Hi it’s me Sarina. I study in grade 7. My school name is Nagarjuna Academy. I love my school very much. My hobby is to dance, play games, etc. And, I have four members in my family. Mother, father, brother and me. My brother is studying in Rupak Secondary School. He loves to play instruments like guitar etc. He’s starting in Grade 10. Bye!',6.0,'Touchable Earth Foundation (New Zealand)','','video',0,532,533,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','d2a21d076000535daf08c4b56dfae2fb');INSERT INTO "content_contentnode" VALUES('d8bf6bddd3705fa0943c85be29024eea','Shreeyanti','e37ccddf0e975050998c9c16cdc68554','000409f81dbe5d1ba67101cb9fed4530','Let’s make friends with Shreeyanti. What does she want to do when she grows up?
TRANSCRIPT: Namaste! My name is Shreeyant. I read in class 6. Today, I am twelve years old. So my aim is to do a dance. I practice three times a week in dance. In future, I want to be a doctor. Thank you! Bye bye!',7.0,'Touchable Earth Foundation (New Zealand)','','video',0,534,535,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','d2a21d076000535daf08c4b56dfae2fb');INSERT INTO "content_contentnode" VALUES('0aa2e06214fd56b4803e38d0a0af6817','Shubhechchha','106ccec3100f57c48c6fbadd7e92e2d5','000409f81dbe5d1ba67101cb9fed4530','Let’s make friends with Shubhechchha. What would she like to be when she grows up?
TRANSCRIPT: Hi! My name is Subekchhya. I study in Grade 4. I like to dance and I practice 2-3 hours every day. Thank you! Hello! My name is Shubhechchha. I study in grade four. I am 9 years old. My aim is to be a doctor.',8.0,'Touchable Earth Foundation (New Zealand)','','video',0,536,537,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','d2a21d076000535daf08c4b56dfae2fb');INSERT INTO "content_contentnode" VALUES('b9a2011e492a50f6b9601eb03b7b8644','Sikchhya','0e68018394ce5a209787ff867a3638ba','000409f81dbe5d1ba67101cb9fed4530','Let’s make friends with Sikchhya. What is her favorite sport?
TRANSCRIPT: My name Sikchhya Thapa. I am 10 years old. My father name is Jinesh Thapa. My mother’s name is Gita Thapa. I study in class 4. My school name is Nagarjuna Academy. My principal’s name is Sunil Bikram Sijapati. I like to play football the most. My favorite subject is Nepalese. Thank you!
MORE INFO: Above Sikchhya is sign. It is a prayer to Sarsoti, the Goddess of education.',9.0,'Touchable Earth Foundation (New Zealand)','','video',0,538,539,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','d2a21d076000535daf08c4b56dfae2fb');INSERT INTO "content_contentnode" VALUES('7b8e949043da50eca6af3f21da31fdd0','Sony','fb3e7a30d17a58749ce8454bfc060ab6','000409f81dbe5d1ba67101cb9fed4530','Let’s make friends with Sony. What is his favorite sport?
TRANSCRIPT: Namaste! It’s me Sony. a student of grade 6. I am very fond of playing sports. My favorite sport is badminton. It helps us in physical training. There will be badminton contests in our school and I also took part in it. Bye bye!',10.0,'Touchable Earth Foundation (New Zealand)','','video',0,540,541,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','d2a21d076000535daf08c4b56dfae2fb');INSERT INTO "content_contentnode" VALUES('f45b2d14c9a8543d972e7922ee093f99','Subham','bd231bb4179459f58e641c04bcac27fc','000409f81dbe5d1ba67101cb9fed4530','Let’s make friends with Subham. What does he want to do when he grows up?
TRANSCRIPT: Good morning! My name is Subham. I study in grade 3. I like to play football and badminton. I want to be an Engineer in the future. Bye!
MORE INFO: Subham is in the traditional clothes of the Nepali people living in the Hill areas. You can learn more about his clothing in the culture section.',11.0,'Touchable Earth Foundation (New Zealand)','','video',0,542,543,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','d2a21d076000535daf08c4b56dfae2fb');INSERT INTO "content_contentnode" VALUES('f608211599915ab1906c11c78af61e3e','Sushant','cef33520ba6e551d9a471ea25dee13d9','000409f81dbe5d1ba67101cb9fed4530','Let’s make friends with Sushant. What is his father’s job?
TRANSCRIPT: Hi! My name is Sushant. I read in class 4 of Nagarjuna Academy. My hobby is to play ‘Carrom Board’ and Chess. There are 4 members in my family. They are my father, my mother, my sister and me. My father is 39 years old. He is a teacher. He teaches science, sociology and math. He’s a very nice father. My mother is a housewife. She cooks very delicious foods. I enjoy eating her delicious foods. My sister is a student. She reads in class nursery. She’s a very nice sister. Thank you! Bye bye!!!',12.0,'Touchable Earth Foundation (New Zealand)','','video',0,544,545,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','d2a21d076000535daf08c4b56dfae2fb');INSERT INTO "content_contentnode" VALUES('1f74f8076817569f89d14c1b4ddd9822','Tilak and Subash','3ba8737ecaca504e8b718a38ddac8749','000409f81dbe5d1ba67101cb9fed4530','Let’s make friends with Tilak and Subash. What does Tilak want to be when he grows up?
TRANSCRIPT: Hello my name is Subash Lama. I live in Kathmandu. My father name is Chandra. My mother’s name is Sussila. I live in Patan. My name is Tilak Lama. My father’s name is Bonju Lama, and my mother’s name is Durga Lama. I live in Patan Lalitpur. I want to be a football player when I grow up.',13.0,'Touchable Earth Foundation (New Zealand)','','video',0,546,547,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','d2a21d076000535daf08c4b56dfae2fb');INSERT INTO "content_contentnode" VALUES('2125b4a09bb65308816f586d84c2a68a','Sadikchhya','bf8b5f55f696549ead53e92dbf23184d','000409f81dbe5d1ba67101cb9fed4530','Let’s make friends with Sadikchhya.
TRANSCRIPT: Hi my name is Sadikchhya from Kopendule, Nepal. I am going to talk something about me. I am ten years old and I studied in class 5, I love singing and dance and my aim is to be a hopeful pilot in my future. Thank you. Bye!',14.0,'Touchable Earth Foundation (New Zealand)','','video',0,548,549,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','d2a21d076000535daf08c4b56dfae2fb');INSERT INTO "content_contentnode" VALUES('3b00f654d67454b99c70b80ea423cd0d','Badminton','7b45658993d75b848088bbdbf7a90850','000409f81dbe5d1ba67101cb9fed4530','Samin likes to play badminton. What would he like to do when he grows up?
TRANSCRIPT: My name is Samin. I am nine years old. I live in Katmandu and I like to play badminton.
MORE INFO: Samin lives in the Golden Temple. It was build in the 12th Century. He is a ‘Novice Monk’ which means he is training to be a Monk. The training can take up to 10 years.',1.0,'Touchable Earth Foundation (New Zealand)','','video',0,552,553,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','625d7f3de5a85f76a2f3db8f589341f2');INSERT INTO "content_contentnode" VALUES('c75640a3777b57cabc65fc1881d9d0e9','Chungi','62d0857fbe38506d930abced3e6fc255','000409f81dbe5d1ba67101cb9fed4530','Nisha likes to play chungi. Where in Nepal does she live?
TRANSCRIPT: My name is Nisha. I live in Pokhara, this is called chungi. [Boy] Can I do?
MORE INFO: A Chungi is made of rubber bands tied together. The object is to keep off the ground without using your hands.',2.0,'Touchable Earth Foundation (New Zealand)','','video',0,554,555,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','625d7f3de5a85f76a2f3db8f589341f2');INSERT INTO "content_contentnode" VALUES('13271e256eae5e3aa54ac301ef252385','Dancing','7ebc90dcde3b5782bf3bd481ca14bae9','000409f81dbe5d1ba67101cb9fed4530','Nihas likes to dance.
TRANSCRIPT: I am 9 years old. My name is Nihas. I read in Occidental Public School. I’d like to be a dancer in future. Come on dance with me! (Music plays)
MORE INFO: Nihas is at a wedding and wearing Kurta Pyajama traditional clothes. They are Indian influenced and often worn in the south of Nepal where it borders India.',3.0,'Touchable Earth Foundation (New Zealand)','','video',0,556,557,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','625d7f3de5a85f76a2f3db8f589341f2');INSERT INTO "content_contentnode" VALUES('b32754eb8cdf5cef8e556c4ff1588c9c','Football','42b3a20b3bf15b58a64f1781f95648a4','000409f81dbe5d1ba67101cb9fed4530','Imran and his friends like to play football. Who is Imran’s favourite player?
TRANSCRIPT: Hello! My name is Imran. I am 9 years old. I like football and I live in Patan. My favorite player is Cristiano Ronaldo and I like Real Madrid.
MORE INFO: The boys play soccer in the middle of a UNESCO Heritage site surrounded by 400 year old temples!',4.0,'Touchable Earth Foundation (New Zealand)','','video',0,558,559,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','625d7f3de5a85f76a2f3db8f589341f2');INSERT INTO "content_contentnode" VALUES('f349ae6f9f4151d3809a9e39c4bd3ee5','Table Tennis','46817c96b7d65a99b5bffba013e9af48','000409f81dbe5d1ba67101cb9fed4530','Roop likes to play table tennis. How old is he?
TRANSCRIPT: My name is Roop. I like to play table tennis, I am 12 years old and I live in Katmandu.
MORE INFO: Anyone in the neighbourhood can play table tennis here. They just need to bring their own bat and ball.',5.0,'Touchable Earth Foundation (New Zealand)','','video',0,560,561,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','625d7f3de5a85f76a2f3db8f589341f2');INSERT INTO "content_contentnode" VALUES('60e6a0d5a3d35a4fb6ec09d9dc99add9','Kabadi','5b75aa0fae2a56708d757974635db750','000409f81dbe5d1ba67101cb9fed4530','Pim and his friends like to play Kabadi. How many people are on each team?
TRANSCRIPT: My name is Pim. I live in Pokhara. I’m 11 years old. It is Nepal international game. It’s name is ‘Kabadi’. It has two teams of 6 people. 1 person crosses and touches the other people and we come back. The end.
MORE INFO: Rules of Kabadi: 6 people on each side with a line in the middle. 1 person crosses to the other side of the line and must touch an opponent then get back to their own side without getting caught. If you get touched and the other person gets back to the other side you are out.',6.0,'Touchable Earth Foundation (New Zealand)','','video',0,562,563,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','625d7f3de5a85f76a2f3db8f589341f2');INSERT INTO "content_contentnode" VALUES('d98c7a93f19e590cad73744ee1bc8801','Clapping','8fea5d8ae3035531bf31cf5c37b9f158','000409f81dbe5d1ba67101cb9fed4530','These girls like to play a clapping game.
TRANSCRIPT: We are going to show you this game very slowly. Now we are going to teach you this game with the alphabet. A-Mina, Captain Jiina, Harer gayo Merazona (Repeat). A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S, T, U, V, W, X, Y, Z. Jhamka vet momo khana hinda khet! This is the clapping game. Bye!
MORE INFO: The translation is: A-Mina Captain Jiina (person), lost and went to Merazona (place). Surprised to meet so lets go to eat momo!',7.0,'Touchable Earth Foundation (New Zealand)','','video',0,564,565,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','625d7f3de5a85f76a2f3db8f589341f2');INSERT INTO "content_contentnode" VALUES('588981353b4c57cdb8b4684e67b9aeee','Hopscotch','37968a7bcf4851e4a121e71465168d7f','000409f81dbe5d1ba67101cb9fed4530','Oshika likes to play hopscotch.
TRANSCRIPT: Hello! My name is Oshika, I study in Class 4 and my school is Nagarjuna Academy. I like to play Dhap mongoli and it goes like this. Bye!',8.0,'Touchable Earth Foundation (New Zealand)','','video',0,566,567,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','625d7f3de5a85f76a2f3db8f589341f2');INSERT INTO "content_contentnode" VALUES('91632149caae55aca95f05b4625d8d06','Stones','e682e9ab122b57fbb1936eae25af9da9','000409f81dbe5d1ba67101cb9fed4530','Pushpanjal likes to play a game with stones.
TRANSCRIPT: Hi my name is Pushpanjal, I like to play this stone game and it goes like this. Bye!',9.0,'Touchable Earth Foundation (New Zealand)','','video',0,568,569,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','625d7f3de5a85f76a2f3db8f589341f2');INSERT INTO "content_contentnode" VALUES('824144ea1f17519592ae48819d116524','Classrooom','844af6b35379582ba5bddb338b6ce9f9','000409f81dbe5d1ba67101cb9fed4530','Antara is in Grade 4. How does her class begin each day?
TRANSCRIPT: Hi! I’m Antara. I study in grade 4. These are all my friends. We are having extra curricular activities. Let’s go to our class. Teacher Good morning students. Class: Good morning ma’am. Teacher: Sit down everybody. Class: Thank you ma’am. Teacher: Now please stand up. Let’s be energized okay? Ready? Class and Teacher: (Sing song) Butterfly, butterfly, flutter flutter here, flutter flutter there, flutter flutter here and everywhere. Teacher: Got it? Sit down.
MORE INFO: Other classes include science, maths, and history. The grade 4 kids are in school from 9:15am to 3:30pm.',1.0,'Touchable Earth Foundation (New Zealand)','','video',0,572,573,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','3984aef512c352bca130ee71afd94f48');INSERT INTO "content_contentnode" VALUES('9981e71b5f295c36ab250d2c63216d91','English','b3406d3587ac57e7b9cf85d9fbc689b3','000409f81dbe5d1ba67101cb9fed4530','Shubhechchha is learning english. What famous book is her class studying today?
TRANSCRIPT: Hi my name is Shubhechchha. I study in Grade 4. We are studying English today. Let’s go inside the classroom. Teacher: The book is? Class: Aesop’s Fables. Teacher: So we have 2 characters. Especially we have 2 characters in this story. 1 is? Class: Fox.Teacher: That is very good. 1 is the Fox and the other is? Class: Stork. Teacher: Say Stork. Say, say! Class: S-T-O-R-K Teacher: Stork.
MORE INFO: All the classes are taught in English but students are able to study and learn Hindi, French, and German.',2.0,'Touchable Earth Foundation (New Zealand)','','video',0,574,575,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','3984aef512c352bca130ee71afd94f48');INSERT INTO "content_contentnode" VALUES('25819692e17656579bee128c79adee5f','Assembly','294fda409b795497bb47a52e1c900dfc','000409f81dbe5d1ba67101cb9fed4530','Prakati is at the school assembly. What instrument is played while the students return to class?
TRANSCRIPT: My name is Prakati. Every morning we come for assembly at 9:30. (drum plays)
MORE INFO: The students gather each morning to sing the National Anthem. The Principal and teachers address the students on school news and extra curricular activities.',3.0,'Touchable Earth Foundation (New Zealand)','','video',0,576,577,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','3984aef512c352bca130ee71afd94f48');INSERT INTO "content_contentnode" VALUES('0b7e8f1bf88b5eec9217d3734e15ebbe','Principal','877e9e2e91c556808b95c086e0d914b3','000409f81dbe5d1ba67101cb9fed4530','Isha will introduce you to the Principal. What is his motto for the school?
TRANSCRIPT: Namaste! He is the Principal of our school, Sunil Sijapati. He is the founder Principal of our school he has been here 18 years. He is very good to us. Principal: Namaste! My name is Sunil Bikram Sijapati, Principal of Nagarjuna Academy. We are a member of Global Schools Partner Program of UK. So, our motto is to make our students a global citizen. So we are working on that. Thank you! Welcome!
MORE INFO: Mr. Sijapati’s favorite part of the school day is the assembly time because he can give encouraging words to all his students and staff at once.',4.0,'Touchable Earth Foundation (New Zealand)','','video',0,578,579,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','3984aef512c352bca130ee71afd94f48');INSERT INTO "content_contentnode" VALUES('c2a0ad57029e5cc081057198ac304257','Bus','c954418f18dd5d34a64b9e9ac03822a8','000409f81dbe5d1ba67101cb9fed4530','Sushant takes the bus to school. How many student’s come to school by bus?
TRANSCRIPT: Namaste! This is my school bus. It comes and picks me up at 8 and it drops me off at 8:30. Around half of the students come by bus to school (Students cheer!)',5.0,'Touchable Earth Foundation (New Zealand)','','video',0,580,581,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','3984aef512c352bca130ee71afd94f48');INSERT INTO "content_contentnode" VALUES('3d66d935c1f658f69b3a303db84fa0f5','Lunch','d48bee949fa75d9fb570750c20c3450c','000409f81dbe5d1ba67101cb9fed4530','Aman is having his school lunch. What does he use to eat his lunch?
TRANSCRIPT: Hello! My name is Aman. This is my lunch time. Now I am eating ‘daal’, ‘bhat’, ‘tarkari’ and ‘achar’. This is rice, this is ‘banda ko curry’, this is ‘achar’, this is ‘daal’. Thank you!
MORE INFO: It is traditional in Nepal to eat with your right hand.',6.0,'Touchable Earth Foundation (New Zealand)','','video',0,582,583,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','3984aef512c352bca130ee71afd94f48');INSERT INTO "content_contentnode" VALUES('029eafb02f5f5a4290e0224eaa73fd19','Lunch 2','b21dcc6bed955956b78aa36284adec64','000409f81dbe5d1ba67101cb9fed4530','Kritka is having school lunch. Which fruit is she going to eat?
TRANSCRIPT: This is rice. This is ‘pulse’ (soup). This is vegetable. This is watermelon. This is pickle.
MORE INFO: Many kids in Nepal are vegetarians. Vegetable curry and rice is eaten for lunch most days.',7.0,'Touchable Earth Foundation (New Zealand)','','video',0,584,585,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','3984aef512c352bca130ee71afd94f48');INSERT INTO "content_contentnode" VALUES('e81829c945a153f795b9babe62657083','School','8cd2277c41c25ec1b95d8504fa3be672','000409f81dbe5d1ba67101cb9fed4530','Welcome to Nagarjuna Academy! What does Kritka love about her school?
TRANSCRIPT: Hi! My name is Kritka. I go to Nagarjuna Academy School. Here we can have more than 300 students from Grade 1 to 10. So I love my school because I can study and play with my friends. Welcome to our school. Bye!
MORE INFO: Nagarjuna Academy School is named after a philosopher who lived nearly 2000 years ago.',8.0,'Touchable Earth Foundation (New Zealand)','','video',0,586,587,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','3984aef512c352bca130ee71afd94f48');INSERT INTO "content_contentnode" VALUES('b6f438abfb915ea0bc0443e3d3407a38','Girls’ Clothing','fd89318ba532528599b7f22e0bbf4850','000409f81dbe5d1ba67101cb9fed4530','Andrea and Kristina are wearing traditional clothes for girls. Which piece of clothing is popular in all regions of Romania?
TRANSCRIPT: Hi! I’m Andrea. Kristina: Hey! I’m Kristina. Andrea: This is a Romanian national costume for girls. This is a skirt, this is a blouse, this is a apron and this is a belt. Both: Bye!
MORE INFO: There are 7 regions in Romania with different types of traditional clothes. The decorated aprons worn by Andrea and Kristina are popular in all of them.',1.0,'Touchable Earth Foundation (New Zealand)','','video',0,592,593,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','7c61031dd62f5440af42760f0c9b73dd');INSERT INTO "content_contentnode" VALUES('0c26c969ee9755de9c4780ea43048a86','Language','0eb72d0e3443595e84813e46cf67499e','000409f81dbe5d1ba67101cb9fed4530','Teodora will teach you some Romanian language. How do you say hello in Romanian?
TRANSCRIPT: Hi my name is Teodora. I am 12 years old. We’ll teach you counting.’1′ is ‘unu’. ‘2’ is ‘doi’. ‘3’ is ‘trei’. ‘4’ is ‘partu’. ‘5’ is ‘cinci’. ‘6’ is ‘sase’. ‘7’ is ‘sapte’. ‘8’ is ‘opt’. ‘9’ is ‘noua’. ’10’ is ‘zece’. Bye! Hi my name is Teodora. I will teach you in Romanian. ‘Hi’ , ‘Buna’. ‘My name is Teodora‘, ‘Numele meu este Teodora‘. ‘How are you’?, ‘Ce mai faci’?. ‘I’m fine thank you’, ‘foarte bine multumesc’. ‘Bye’!, ‘La revedere’!
MORE INFO: The official language is called ‘Romanian’. It is also an official language in The Republic of Moldova and regions of Serbia and Greece.',2.0,'Touchable Earth Foundation (New Zealand)','','video',0,594,595,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','7c61031dd62f5440af42760f0c9b73dd');INSERT INTO "content_contentnode" VALUES('81d6adfbf95353efa9d4444fd4542cd9','Money','7c9ececa7627548c998dfa79ef36867c','000409f81dbe5d1ba67101cb9fed4530','Sona has some Romanian money. What is the name of the currency?
TRANSCRIPT: Hi my name is Sona. This is the money of Romania. This is 100 ‘lei’ and this is Ion Luca Caragiale, a writer of Romania. This is 10 ‘lei’ and this is Nicolae Grigorescu. He’s a painter. And, this is 5 ‘lei’ and this is Georgie Inesko, a musical genius. Goodbye!
MORE INFO: In 2005 Romania had the highest number on a banknote in the world with 1,000,000 ‘Leu’. The money was changed that year to have lower values on it and to save space from all the zeros.',3.0,'Touchable Earth Foundation (New Zealand)','','video',0,596,597,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','7c61031dd62f5440af42760f0c9b73dd');INSERT INTO "content_contentnode" VALUES('59de63c3415755c2bf6781f770fea5f1','Dance','0798b28ea4b8582fb14127c161006a85','000409f81dbe5d1ba67101cb9fed4530','Emanuel performs a traditional dance in Romania.
TRANSCRIPT: Hello my name is Emanuel.Group: Hello!Emanuel: I am eleven years old and we are Romanians. We are dancing Alunelul.Group: Bye!',4.0,'Touchable Earth Foundation (New Zealand)','','video',0,598,599,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','7c61031dd62f5440af42760f0c9b73dd');INSERT INTO "content_contentnode" VALUES('e9476fde18b05a7da4a9b01111d3e09d','Dolls','0684175744a151ffba972ffe7e736ef1','000409f81dbe5d1ba67101cb9fed4530','Maria and friends teach about dolls in Romania
TRANSCRIPT: Hello my name is Maria. I’m nine years old and this is a doll in folk costume.Hello my name is Bogdan and I am seven years old. I live in Dej, I like winter season and I love to play in the snow.Hello my name is Madalina, I have a doll.',5.0,'Touchable Earth Foundation (New Zealand)','','video',0,600,601,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','7c61031dd62f5440af42760f0c9b73dd');INSERT INTO "content_contentnode" VALUES('1eff1d9b3ea851a285baf31912486c74','Song 2','a791ebaf99e55fe3b0623f29e741729e','000409f81dbe5d1ba67101cb9fed4530','Oana sings a traditional song from Romania.
TRANSCRIPT: Hi! My name is Oana I am eleven years old. I will sing a Romanian song Azi am sancrestez in grinda.',6.0,'Touchable Earth Foundation (New Zealand)','','video',0,602,603,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','7c61031dd62f5440af42760f0c9b73dd');INSERT INTO "content_contentnode" VALUES('13a4f2dd160d5cd1a72580129842f893','Welcome','3df23d1e96405eb0b30138a59a0d902c','000409f81dbe5d1ba67101cb9fed4530','Alex and Antonia welcome you to Romania. What is the population of Romania?
TRANSCRIPT: Hello! My name is Alex. I live in Romania. Romania is situated in Europe. Romania’s capital is Bucharest. Romania has 20 million people. Welcome to Romania! Group: Welcome to Romania! Hi! I am Antonia. I live in Romania. Romania is in Europe. It has around 20 million people and its capital is Bucharest. Welcome to Romania!
MORE INFO: The name ‘Romania’ is derived from a latin word meaning ‘citizen of Rome’.',1.0,'Touchable Earth Foundation (New Zealand)','','video',0,606,607,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','63e46e4c9c205216a4680b0604a52659');INSERT INTO "content_contentnode" VALUES('9390a75b697a568ba6a56cd9f4192300','Map','d365b22b522c54e1b9ab4d1bd388950b','000409f81dbe5d1ba67101cb9fed4530','Where is Romania on the world map?
TRANSCRIPT: Romania is bordered with 5 countries and the Black Sea. It has Bulgaria to it’s south, Hungary and Serbia to the west, Ukraine and Moldova to it’s northeast and east.',2.0,'Touchable Earth Foundation (New Zealand)','','html5',0,608,609,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','63e46e4c9c205216a4680b0604a52659');INSERT INTO "content_contentnode" VALUES('4151695101615714a4e45c7a5be3763c','Capital','037494ed5b3f5cbf8f41cf178d78ef52','000409f81dbe5d1ba67101cb9fed4530','The capital city of Romania is Bucharest. What is it’s nickname?
TRANSCRIPT: This is Bucharest, the capital of Romania. This is the palace of the people. This is one of the largest buildings in the world.
MORE INFO: Bucharest has been a town and city for over 500 years. It has the nickname ‘Little Paris’ due to it’s beautiful buildings.',3.0,'Touchable Earth Foundation (New Zealand)','','video',0,610,611,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','63e46e4c9c205216a4680b0604a52659');INSERT INTO "content_contentnode" VALUES('292702420dcb53d48102fa2142a79a0a','Flag','93e5295a0d5359e8acfb0fcb3d8ae0a7','000409f81dbe5d1ba67101cb9fed4530','Lorena is holding the Romanian flag. What does the color blue stand for?
TRANSCRIPT: Hello. My name is Lorena. This is the Romanian national flag. The Romanian flag is red, yellow and blue. Red is for the blood of the fighter, yellow is for the wind, blue is for the sky. This is the Romanian flag. Bye!
MORE INFO: The blue, yellow, and red colours have been used by people in the Romanian region for over 500 years.',4.0,'Touchable Earth Foundation (New Zealand)','','video',0,612,613,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','63e46e4c9c205216a4680b0604a52659');INSERT INTO "content_contentnode" VALUES('372fdd6652365bc690907de719596e4a','Anthem','962803e9cbf151e5a126474c7ae5cac4','000409f81dbe5d1ba67101cb9fed4530','Alina and her friends will sing the national anthem. In what year was it written?
TRANSCRIPT: Hello my name is Alina we are going to sing the Romanian national anthem, ‘De?teapt?-te, Române’.
MORE INFO: The name of the anthem is ‘De?teapt?-te, Române’ which means ‘awaken Romanian!’. It was written in 1848.',5.0,'Touchable Earth Foundation (New Zealand)','','video',0,614,615,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','63e46e4c9c205216a4680b0604a52659');INSERT INTO "content_contentnode" VALUES('793ee1624e8b5a5081de6d2f24bcfaa1','Lorena’s Family','a91cc2844eee5317b3c2273a04c10f3e','000409f81dbe5d1ba67101cb9fed4530','Lorena would like you to meet her family. How many people are in her family?
TRANSCRIPT: Hello my name is Lorena. This is my family. He is my father, his name is Sine. She my sister, her name is Anna. She’s my mother, her name is Ewana.
MORE INFO: Lorena and her older sister go to the same school.',1.0,'Touchable Earth Foundation (New Zealand)','','video',0,618,619,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','7b14adb57b125c67b568c803af1f6de2');INSERT INTO "content_contentnode" VALUES('2e8204c2cf6c5d758ee7fbcac0e71f1f','Lorena’s Mother','f44bc0913e4b5826aa308309b4dc7fb8','000409f81dbe5d1ba67101cb9fed4530','Lorena is with her mother. What do they like to do together?
TRANSCRIPT: She is my mother Ewana. She is an economist. She works in a company. I like shopping together.',2.0,'Touchable Earth Foundation (New Zealand)','','video',0,620,621,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','7b14adb57b125c67b568c803af1f6de2');INSERT INTO "content_contentnode" VALUES('609b17e619895c839d00f34f8f89158a','Lorena’s Father','199eaeccaae75028a3cab78d930f1b5e','000409f81dbe5d1ba67101cb9fed4530','This is Lorena’s father. What sport do they like to play together?
TRANSCRIPT: He’s my father. He is an inspector. He plays volleyball. He is travelling to Germany.
MORE INFO: Lorena and her dad loves volleyball and they practice together on weekends.',3.0,'Touchable Earth Foundation (New Zealand)','','video',0,622,623,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','7b14adb57b125c67b568c803af1f6de2');INSERT INTO "content_contentnode" VALUES('995f5eb65f61546cab4d5861eaea5c72','Lorena’s Home','7596370a0937569eb80b74480c867137','000409f81dbe5d1ba67101cb9fed4530','Lorena is in her home. Who is the author of her favorite book?
TRANSCRIPT: This is my cat. She is two months old. This is my doll Anna, she is three years old. This is my favourite book by Jules Verne.',4.0,'Touchable Earth Foundation (New Zealand)','','video',0,624,625,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','7b14adb57b125c67b568c803af1f6de2');INSERT INTO "content_contentnode" VALUES('dac2045ba3f15051853dc6b09b046ee1','Tiberio’s Family','9afcbaef797c5be6b96c3b37f32146d5','000409f81dbe5d1ba67101cb9fed4530','Tiberio wants you to meet his family. Which town do they live in?
TRANSCRIPT: Hi! My name is Tiberio. I live in Romania, Dej. This is my sister Andrea, this is my father Tiberio, this is my older sister Yanna, this is my mother Manrahena. Welcome to here, in Romania.
MORE INFO: Tiberio’s family lived in London while his father worked there. They recently moved back to Romania.',5.0,'Touchable Earth Foundation (New Zealand)','','video',0,626,627,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','7b14adb57b125c67b568c803af1f6de2');INSERT INTO "content_contentnode" VALUES('36b90049fd24505aa31cb4b6cb3bbd5c','Tiberio’s Mother','823f88cc5ea3578c81ca495c8721de5c','000409f81dbe5d1ba67101cb9fed4530','Tiberio is with his mother. Where does he like to help his mother?
TRANSCRIPT: Hello this is my mother. She work as an accountant. She work in a family business. Her hobby is in the garden and I help her.
MORE INFO: Tiberio’s mother loves gardening, her favorite flower is the rose.',6.0,'Touchable Earth Foundation (New Zealand)','','video',0,628,629,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','7b14adb57b125c67b568c803af1f6de2');INSERT INTO "content_contentnode" VALUES('10c6c1b7b3ae5c5c945219921660daa7','Tiberio’s Father','6e5a77f25e9d58919efe5bcb39b8f235','000409f81dbe5d1ba67101cb9fed4530','Tiberio is playing with his father. What game are they playing?
TRANSCRIPT: Hello this is my father. He is Tiberio. He is an engineer in the building. He is building the houses. We like tennis table.
MORE INFO: Tiberio can almost beat his dad at table tennis. They also play football together.',7.0,'Touchable Earth Foundation (New Zealand)','','video',0,630,631,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','7b14adb57b125c67b568c803af1f6de2');INSERT INTO "content_contentnode" VALUES('634f3ab223b251ce921930ef95b661b6','Tiberio’s Room','0b40f924d6d7542e9aea8be3e938209c','000409f81dbe5d1ba67101cb9fed4530','This is Tiberio’s room. What is his favorite type of car?
TRANSCRIPT: Hello. This is my room. I like to read. I have a lot of books. I like cars. This is a Formula One car.
MORE INFO: Tiberio likes Disney movies and building things with Lego.',8.0,'Touchable Earth Foundation (New Zealand)','','video',0,632,633,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','7b14adb57b125c67b568c803af1f6de2');INSERT INTO "content_contentnode" VALUES('9eb95bbdbb5453ce98549e0b9265ec3d','Alex','9df0e2af98d5502ba2962c6762ba1a60','000409f81dbe5d1ba67101cb9fed4530','Let’s make friends with Alex. What is his favorite sport?
TRANSCRIPT: Hi! My name is Alex. I live in Romania. My favourite sport is football. My favourite player is Neymar. Bye!',1.0,'Touchable Earth Foundation (New Zealand)','','video',0,636,637,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','fb9991e35a2d5df6ad834cf62f416990');INSERT INTO "content_contentnode" VALUES('638b7ee68b365fab9af841296fe2174a','Alina and Paula','6c39d984e2285f41bc153c2eb402db9e','000409f81dbe5d1ba67101cb9fed4530','Let’s make friends with Alina and Paula. What is their favorite sport?
TRANSCRIPT: Alina: Hi! My name is Alina. Paula: And my name is Paula. I am 12 years old. Both: We are twin sisters and I like basketball. Goodbye!',2.0,'Touchable Earth Foundation (New Zealand)','','video',0,638,639,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','fb9991e35a2d5df6ad834cf62f416990');INSERT INTO "content_contentnode" VALUES('d46714b2187c569f8ebd8205d166041d','Andrei','d4cc99288ed053f084f7a9251167b99e','000409f81dbe5d1ba67101cb9fed4530','Let’s make friends with Andrei. What do his parents do?
TRANSCRIPT: I am Andrei. I am from Dej, a town in Transsylvania. I learn at Alexandru Papiu Ilarian Highschool. My parents are farmers. I like to play volleyball. I have an elder sister, she’s 17, and she learns in the same school with me. Bye!',3.0,'Touchable Earth Foundation (New Zealand)','','video',0,640,641,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','fb9991e35a2d5df6ad834cf62f416990');INSERT INTO "content_contentnode" VALUES('e3139a0447d65f02a6f169fe6cf27197','Antonia','42978d439f845e19914d6109d6ba47a1','000409f81dbe5d1ba67101cb9fed4530','Let’s make friends with Antonia. How many people are in her family?
TRANSCRIPT: Hi! My name is Antonia. I live in Romania. I’m 11. My family is big, 10 people. I like volleyball. Bye!',4.0,'Touchable Earth Foundation (New Zealand)','','video',0,642,643,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','fb9991e35a2d5df6ad834cf62f416990');INSERT INTO "content_contentnode" VALUES('3eac301190ce5fb29b96fddb2b6a9937','Lorena','85600273f4c55d48a5ba1bc764e62926','000409f81dbe5d1ba67101cb9fed4530','Let’s make friends with Lorena. What sport does she like to play?
TRANSCRIPT: Hello! My name is Lorena. I live in Dej, Romania. I’m 11 years old. I play volleyball. My sister and my brother are playing volleyball. Bye!',5.0,'Touchable Earth Foundation (New Zealand)','','video',0,644,645,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','fb9991e35a2d5df6ad834cf62f416990');INSERT INTO "content_contentnode" VALUES('a3d6d03c3c6e5903ac8df16f69e02823','Tiberio','1595f680f4375a3787324cb11c2a6d4c','000409f81dbe5d1ba67101cb9fed4530','Let’s make friends with Tiberio. What is his hobby?
TRANSCRIPT: Hi! My name is Tiberio. I’m 11. I have 6 in family. My mother work in the accounting. My father work in the construction. My hobby is to play tennis. Bye!',6.0,'Touchable Earth Foundation (New Zealand)','','video',0,646,647,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','fb9991e35a2d5df6ad834cf62f416990');INSERT INTO "content_contentnode" VALUES('ab06d850163c523198c1465482fd7dc1','Bianca','7bec5e2765e55c08804a6788bacde812','000409f81dbe5d1ba67101cb9fed4530','Let’s make friends with Bianca.
TRANSCRIPT: Hi! My name is Bianca and I am eleven years old. I like to read and my favourite story is Snow White. Bye!',7.0,'Touchable Earth Foundation (New Zealand)','','video',0,648,649,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','fb9991e35a2d5df6ad834cf62f416990');INSERT INTO "content_contentnode" VALUES('85c3175c457c57beb8e5efeff5b58c69','Andrada','12e1ea58275f5817b3d22dd01a90125f','000409f81dbe5d1ba67101cb9fed4530','Let’s make friends in Andrada.
TRANSCRIPT: Hello! My name is Andrada. I am eleven years old and I love Justin Beiber. Goodbye!',8.0,'Touchable Earth Foundation (New Zealand)','','video',0,650,651,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','fb9991e35a2d5df6ad834cf62f416990');INSERT INTO "content_contentnode" VALUES('b919e228e9b35691b0e2ead2014e367c','Roxanna','e8f09dc6e0b5523bbcc2df02da3ee7b7','000409f81dbe5d1ba67101cb9fed4530','Let’s make friends with Roxanna.
TRANSCRIPT: Hello! I am Roxanna. I am eleven. I live in Dej. I like to be teacher in Romania. Bye!',9.0,'Touchable Earth Foundation (New Zealand)','','video',0,652,653,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','fb9991e35a2d5df6ad834cf62f416990');INSERT INTO "content_contentnode" VALUES('2ff76c10381a5ebc9e74f06bc21b2042','Eduard','1e128c073cb95837878e570f382f97cf','000409f81dbe5d1ba67101cb9fed4530','Let’s make friends with Eduard.
TRANSCRIPT: Hello! My name is Eduard. I like to play drums. I like rock bands especially AC/DC, Three Days Grace, Iron Maiden, Sepultura and many others. I like to play drums because I think they are something special. I mean, for guitar you only need to know the chords but here you need to know where to put your hands escpecially bongos or drums without sticks is very nice. You can get tons of different notes and with the guitar you can’t. So, that’s why. Bye!',10.0,'Touchable Earth Foundation (New Zealand)','','video',0,654,655,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','fb9991e35a2d5df6ad834cf62f416990');INSERT INTO "content_contentnode" VALUES('3068a15db45f5b37983c2ce4a313292f','Maria','2590e611b3a55f6db74dc4b9b8625f11','000409f81dbe5d1ba67101cb9fed4530','Let’s make friends with Maria.
TRANSCRIPT: Hello! I’m Maria. I am nine years old.',11.0,'Touchable Earth Foundation (New Zealand)','','video',0,656,657,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','fb9991e35a2d5df6ad834cf62f416990');INSERT INTO "content_contentnode" VALUES('5ad79de88b2357ee8b4330c27766ce4f','Emanuel','cf5ec548e4445e8190b5e00e2eaf02f0','000409f81dbe5d1ba67101cb9fed4530','Let’s make friends with Emanuel.
TRANSCRIPT: Hi guys! My name is Manuel. We are three brothers and one sister. Total is four. I like football. My favourite team is Chelsea. My favourite player is Drogba. My hobbies are playing football and league of legends on PC. Bye!',12.0,'Touchable Earth Foundation (New Zealand)','','video',0,658,659,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','fb9991e35a2d5df6ad834cf62f416990');INSERT INTO "content_contentnode" VALUES('25d273984c0a599ab19a62e8de916b88','Mihaela','77ee5f1ecfd15da4b8ab021742477057','000409f81dbe5d1ba67101cb9fed4530','Let’s make friends with Mihaela.
TRANSCRIPT: Hello! My name is Mihaela. I am eleven. My hobbies are classical music and rock. Bye!',13.0,'Touchable Earth Foundation (New Zealand)','','video',0,660,661,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','fb9991e35a2d5df6ad834cf62f416990');INSERT INTO "content_contentnode" VALUES('6cac69813adc5dccb96021c93d46225b','Mihai and Sebi','c86d4ba4c5d75fdbaa3131d6b89bbfcc','000409f81dbe5d1ba67101cb9fed4530','Let’s make friends with Mihai and Sebi.
TRANSCRIPT: Hi! My name is Mihai. I am eleven. I have a big family. My brother Flavio and my sister Beatrice have a family business. We make pizza. Bye! My name is Sebi. I am eleven. I practice karate. I prefer sports. Bye!',14.0,'Touchable Earth Foundation (New Zealand)','','video',0,662,663,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','fb9991e35a2d5df6ad834cf62f416990');INSERT INTO "content_contentnode" VALUES('e56c4aae65a0589a8cb01469e0c43ba6','Duck and Hunter','26d2372aab915d638cd4a45a65539712','000409f81dbe5d1ba67101cb9fed4530','Andrei is playing a game called ‘Duck and Hunter’. How many of his friends does he hit with the ball?
TRANSCRIPT: Hi! I am Andrei. The name of the game is ‘The ducks and the hunter’. I am the hunter and they are the ducks. When I hit a duck it gets out of the game and the last one who remains in the game replaces me.',1.0,'Touchable Earth Foundation (New Zealand)','','video',0,666,667,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','c0676e1af2595f6fb019d87431270386');INSERT INTO "content_contentnode" VALUES('3d3b2a7d3d3a51ffa0903a440674fe8e','Snowman','cc0b9730a72152998e700b59c8411e9a','000409f81dbe5d1ba67101cb9fed4530','Kuzmin builds a snowman.
TRANSCRIPT: Hi, my name is Kuzmin. I am eleven. We are building a snowman.',2.0,'Touchable Earth Foundation (New Zealand)','','video',0,668,669,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','c0676e1af2595f6fb019d87431270386');INSERT INTO "content_contentnode" VALUES('8c4924e88bc55faab32bf773f16dd306','Hopscotch','25ab81d174bb58e9bebaff3371fd8f6d','000409f81dbe5d1ba67101cb9fed4530','Antonia is playing hopscotch. How many hops does she do?
TRANSCRIPT: Hi my name is Antonia. I 11, 12. I like ‘shotron’. Game ‘shotron’.',3.0,'Touchable Earth Foundation (New Zealand)','','video',0,670,671,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','c0676e1af2595f6fb019d87431270386');INSERT INTO "content_contentnode" VALUES('10d9d8e6b78453c0b543bdebc558d03f','Circle','6e1c9612f08b592eb1077ad68677b363','000409f81dbe5d1ba67101cb9fed4530','Sebi plays a traditional game.
TRANSCRIPT: Hi! My name is Sebi. I am eleven years old. We are playing the game Taranjul e pe camp.
MORE INFO: The name of the game in English is ‘The peasant is on the field’',4.0,'Touchable Earth Foundation (New Zealand)','','video',0,672,673,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','c0676e1af2595f6fb019d87431270386');INSERT INTO "content_contentnode" VALUES('9a935ee7a55950509802921e339754e1','Snow','67734a9e2e7c5bd1985e69101149beea','000409f81dbe5d1ba67101cb9fed4530','Emanuel likes to play in the snow.
TRANSCRIPT: Hi! My name is Emanuel. I live in Dej and this is winter in Romania. We are playing with snowballs and we like it. We are so happy but it’s cold. Bye!',5.0,'Touchable Earth Foundation (New Zealand)','','video',0,674,675,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','c0676e1af2595f6fb019d87431270386');INSERT INTO "content_contentnode" VALUES('070c90dd38ae5a8c9164982d5dac58eb','Skipping','d2e489292df05b098345816b8cbdef66','000409f81dbe5d1ba67101cb9fed4530','Antonia is playing a skipping game. Can she finish without tripping?
TRANSCRIPT: Hello my name is Antonia. I like ‘elastico’.',6.0,'Touchable Earth Foundation (New Zealand)','','video',0,676,677,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','c0676e1af2595f6fb019d87431270386');INSERT INTO "content_contentnode" VALUES('62bd373d406c59649cd516dd35896815','School','24238d2c79a456c0acb56ec1bb9f7b13','000409f81dbe5d1ba67101cb9fed4530','Andrea welcomes you to her school. What time do classes start?
TRANSCRIPT: Hello my name is Andrea. This is my school Alexandru Papiu Ilarian High School. There are 1000 students learning in my school. They are from 11 up to 18 years old. We go school, we start classes at 8 and finish at 2. Welcome to my school!
MORE INFO: The school is named after Mr. Alexandru Papiu Ilarian. He is a hero who fought for the rights of the Romanian people in the 19th century.',1.0,'Touchable Earth Foundation (New Zealand)','','video',0,680,681,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','b875715e37af5f029268063727c27a61');INSERT INTO "content_contentnode" VALUES('fac44bb3d0e154b68f44ad62cdf3877f','Classroom 1','2f22f1fbebef56b3b8d8ceb3c3e43e47','000409f81dbe5d1ba67101cb9fed4530','Chippian introduces his classroom.
TRANSCRIPT: Hello! My name is Chippian. I am eleven. This is the French class. Bonjour. Je m’appelle Chippy. Ca va?Class: Como ca va?Chippy: Como ca va?Class: Comme ci, comme ci, comme ci, comme ca.Everyone: Bye!',2.0,'Touchable Earth Foundation (New Zealand)','','video',0,682,683,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','b875715e37af5f029268063727c27a61');INSERT INTO "content_contentnode" VALUES('266ca77b9adc5d9891f3bcc488503b35','Lunch','277c7ec5408b56be8a43852a8f1a5a83','000409f81dbe5d1ba67101cb9fed4530','Edward eats his lunch at school.
TRANSCRIPT: Hello my name is Edward and I am eleven years old. I like green. It is my favourite colour. I like to listen to rock. That’s my favourite kind of music. My teachers are great. I love them very much! They are teaching us everything. This is my milk. We are getting it free from school. This is my sandwich that I eat in breaks. Bye!',3.0,'Touchable Earth Foundation (New Zealand)','','video',0,684,685,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','b875715e37af5f029268063727c27a61');INSERT INTO "content_contentnode" VALUES('879749ba4cef5a17a2ab7bc1f2a28e93','Principal','d545ed0c1f915f688bb55ea10a64fd80','000409f81dbe5d1ba67101cb9fed4530','Eduard introduces his Principal.
TRANSCRIPT: Hello my name is Eduard and I am in grade 5 at Alexandru Papiu Ilarian. This is our principal and her name is Ms. Gherman.Principal: Hello my name is Dorina Gherman the Director of Alexandru Papiu Ilarian in Dej.Eduard: Bye!',4.0,'Touchable Earth Foundation (New Zealand)','','video',0,686,687,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','b875715e37af5f029268063727c27a61');INSERT INTO "content_contentnode" VALUES('ccb6b1bbfd4555b4ad2c82e9eee9a488','Classroom 3','deb7968e1a905585809cd1f8ed7209b0','000409f81dbe5d1ba67101cb9fed4530','Sona is in Grade 5. What is she studying today?
TRANSCRIPT: Hello my name is Sona. This is my English class. This is my teacher. Teacher: Well then, what are the mountains in the middle of Romania? The mountains are the? Carpathian. The Carpathian mountains. The Danube pours into the Black Sea and forms the Danube Delta.
MORE INFO: Other subjects the kids learn are maths, Romanian, English, French, geography, history, natural science, music, arts, sports, and computers.',5.0,'Touchable Earth Foundation (New Zealand)','','video',0,688,689,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','b875715e37af5f029268063727c27a61');INSERT INTO "content_contentnode" VALUES('0e81b4489a4b5f6faf94c8d5a7696c0a','Lunch 2','d0ab252169f2559c960c2192ebf94bb0','000409f81dbe5d1ba67101cb9fed4530','Tiberio is eating lunch. What is he eating?
TRANSCRIPT: I’m Tiberio, I’m in Grade 5. I’m eating a hamburger. Salad, meat, potato.',6.0,'Touchable Earth Foundation (New Zealand)','','video',0,690,691,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','b875715e37af5f029268063727c27a61');INSERT INTO "content_contentnode" VALUES('8e2c5a7fa7045929908307208b9ecc19','Girls’ clothing','483b6b85575a585097bc85e1b1a36997','000409f81dbe5d1ba67101cb9fed4530','Alice is wearing traditional clothes for girls. In which city does she live?
TRANSCRIPT: Hello! My name is Alice. I am 11 years old and I am Russian. I live in Moscow. These are our traditional clothes. It is kakoshnik and sarafan. It is a dress. Bye!',1.0,'Touchable Earth Foundation (New Zealand)','','video',0,696,697,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','58fcf30fc06b512b8c6a89868a0d5883');INSERT INTO "content_contentnode" VALUES('5888dcf02b175c1f8c5a8f866953e7e8','Boys’ clothing','20f11978e36851149560a6966f6f54c9','000409f81dbe5d1ba67101cb9fed4530','Kostya is wearing traditional clothing for boys. When would he wear these?
TRANSCRIPT: Hello, my name is Kostya. I live in Moscow, Russia. These are traditional clothes for boys. This is usually red and black. We wear it on special occasions. Goodbye!',2.0,'Touchable Earth Foundation (New Zealand)','','video',0,698,699,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','58fcf30fc06b512b8c6a89868a0d5883');INSERT INTO "content_contentnode" VALUES('a92c4f4aac8856629e3488a0cb3162a8','Doll','2b06a12fc4de55a790ef7cc348b6a80e','000409f81dbe5d1ba67101cb9fed4530','Sonya has a traditional matryoshka doll. How many dolls are inside it?
TRANSCRIPT: Hi! My name is Sonya. It is our national toy. We can open it, open it again, open it again, and open it again. Bye!!',3.0,'Touchable Earth Foundation (New Zealand)','','video',0,700,701,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','58fcf30fc06b512b8c6a89868a0d5883');INSERT INTO "content_contentnode" VALUES('75e03a5ce5c2554b94c45fe169ffdae6','Pancakes','b548439a46c9572fbbf26ef5992acc08','000409f81dbe5d1ba67101cb9fed4530','Dominica is eating pancakes. What are they made of?
TRANSCRIPT: Hello! My name is Dominica and I will tell you about pancakes. Pancakes are considered to be one of the favorite Russian dishes. How did they appear? This is one of the versions of their appearing. Once our ancestor cooked oatmeal kissel and quite forgot about it. And the kissel was fried and became brown. So the first pancake appeared. According to the tradition, you must eat pancakes with hands because they look like the sun. You mustn’t eat them with a knife or with a fork as it is believed that there will be trouble. People will be punished if they eat pancakes with a fork. Pancakes are also cooked abroad, but there are different methods in different countries. Some people eat them with cheese, some with fish, some with mushrooms. The best pancakes are with caviar. We have hundreds of recipes in Russia. Ah, goodbye! Goodbye.',4.0,'Touchable Earth Foundation (New Zealand)','','video',0,702,703,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','58fcf30fc06b512b8c6a89868a0d5883');INSERT INTO "content_contentnode" VALUES('050b3fd31ecb5d8cb3ff4c889c875fd5','Language','622b357ad8af5813ac240cb08cc98a45','000409f81dbe5d1ba67101cb9fed4530','Anton teaches some Russian words. How do you say hello?
TRANSCRIPT: Hello! My name is Anton. I live in Russia. Today I am gonna teach you a little bit of Russian. So, “Hello” in Russian means “Zdravstvuite” or “Privet”. “Thank you” means “Spasibo” in Russian. “How are you”? in Russian means “Kak dela”? or “Kak ty sebya chuvstvuiesh”? “Goodbye” means “Do svidaniya”. Do svidaniya!',5.0,'Touchable Earth Foundation (New Zealand)','','video',0,704,705,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','58fcf30fc06b512b8c6a89868a0d5883');INSERT INTO "content_contentnode" VALUES('fb0c048408ad50fa9dcc84e6bfa222bb','Dance','8c8a3d5c01bf543fa7ecdbb6794ff0de','000409f81dbe5d1ba67101cb9fed4530','Alice and her friends perform a traditional song and dance. Which type of bird is in the song?
TRANSCRIPT: Hi! I am Alice. Hi! Hi!! We are singing now. And dancing. Apple and pear trees were a-blooming, Mist (was) creeping on the river. Katyusha set out on the bank, On the steep and lofty bank. She was walking, singing a song about a grey eagle, About her true love, Whose letters she were her treasure. About her true love, Whose letters she were her treasure. Bye! Bye! Bye!',6.0,'Touchable Earth Foundation (New Zealand)','','video',0,706,707,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','58fcf30fc06b512b8c6a89868a0d5883');INSERT INTO "content_contentnode" VALUES('76d2eaaa207154ad914fd4781cb1a5cc','Welcome','482f07a18dfd5fcebd184db9280186f3','000409f81dbe5d1ba67101cb9fed4530','Anton and his friends welcome you to Russia! What is it’s population?
TRANSCRIPT: Welcome to Russia! Welcome! The capital is Moscow and the population is 147 million. Welcome! Welcome!',1.0,'Touchable Earth Foundation (New Zealand)','','video',0,710,711,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','cfee81fe7b7a57a2960ac2b0fd77f507');INSERT INTO "content_contentnode" VALUES('69b6ce4071fd54fd82fab705fc89797f','Map','4cf2617ebc515186a2cbf14b8364a1d5','000409f81dbe5d1ba67101cb9fed4530','Polina shows where Russia is on the world map. Which countries does it border?
TRANSCRIPT: Hello, I am Polina. My country is Russia. It is the biggest country in the world. Our capital is Moscow. This is Saint Petersburg. Welcome to Russia!',2.0,'Touchable Earth Foundation (New Zealand)','','video',0,712,713,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','cfee81fe7b7a57a2960ac2b0fd77f507');INSERT INTO "content_contentnode" VALUES('c9271bf6126c5ca4ade12a5d8c72cda4','Capital','27d89f4297275e5c89d362d04c04c7b6','000409f81dbe5d1ba67101cb9fed4530','Alex lives in Moscow, the capital city of Russia. What is it’s population?
TRANSCRIPT: Hello! My name is Alex, I am eleven. I live in Moscow. Moscow is the capital of Russia. I live in Moscow. It has 15 million people, and the president lives in Moscow. Moscow is a beautiful city. Bye!',3.0,'Touchable Earth Foundation (New Zealand)','','video',0,714,715,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','cfee81fe7b7a57a2960ac2b0fd77f507');INSERT INTO "content_contentnode" VALUES('aa89288e727b58af91028a21a47ad697','Flag','f91508121ed954ee9edd7a988cab7317','000409f81dbe5d1ba67101cb9fed4530','Tasya is holding the Russian flag. What does the colour white represent?
TRANSCRIPT: Hello! My name is Tasya. The Russian flag has three stripes on it. The stripes are white, blue, and red. These colors have always been symbolic in Russia. White noble and sincere. Blue wholeness and devotion. Red love and bravery. Bye-bye!',4.0,'Touchable Earth Foundation (New Zealand)','','video',0,716,717,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','cfee81fe7b7a57a2960ac2b0fd77f507');INSERT INTO "content_contentnode" VALUES('7fd74c1baf4e58e6863fcb0ce33c6f1e','Anthem','7e751028cc8e5887827b255c674f87ad','000409f81dbe5d1ba67101cb9fed4530','Sasha and her friends sing the national anthem of Russia.
TRANSCRIPT: Hello! My name is Sasha. This is our national anthem. Russia our sacred State, Russia our beloved country, A mighty will, a great glory Is your legacy for all time! Be glorious, our free Homeland, Fraternal peoples, a union for the ages, Common wisdom handed down by our forbears Be glorious, our country! We pride ourselves in you Bye! Bye!',5.0,'Touchable Earth Foundation (New Zealand)','','video',0,718,719,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','cfee81fe7b7a57a2960ac2b0fd77f507');INSERT INTO "content_contentnode" VALUES('31c2ba5caefb5951bbbc79ae76794dce','Arseny’s family','5f121a1740c4575abcf73b18f9147ba5','000409f81dbe5d1ba67101cb9fed4530','Arseny wants to introduce his family. How many people are in his family?
TRANSCRIPT: Hello! Hello! Hello! Welcome to Mias. It’s my home. It is my home. It is my mom. It is my dad. Hello! It is my sister. Hello! Goodbye! Goodbye!',1.0,'Touchable Earth Foundation (New Zealand)','','video',0,722,723,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','484dba1781875db88c1dbf864902884b');INSERT INTO "content_contentnode" VALUES('571c6a771d565fc4976fb690d8af18c5','Arseny’s mother','13000e32c21f58fa98a9016304d680c0','000409f81dbe5d1ba67101cb9fed4530','Arseny is with his mother. What is something she likes?
TRANSCRIPT: Hello! This is my mom. She can cook cakes and drive a car. She likes to drive a car. She likes flowers. I like my mom. Goodbye!',2.0,'Touchable Earth Foundation (New Zealand)','','video',0,724,725,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','484dba1781875db88c1dbf864902884b');INSERT INTO "content_contentnode" VALUES('efc81c34c0305ce3977ea46620a5bb5f','Arseny’s father','16a38ebcfa785797ba0c6ce7a6504e78','000409f81dbe5d1ba67101cb9fed4530','Arseny is with his father. What game do they like to play together?
TRANSCRIPT: Hello! Hello. This is my dad. We like the table football. [Playing table football] Yeah!!! ?, ???! [Playing table football] Yes!!! [Playing table football]',3.0,'Touchable Earth Foundation (New Zealand)','','video',0,726,727,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','484dba1781875db88c1dbf864902884b');INSERT INTO "content_contentnode" VALUES('99e46cbb76d15965871667fbd1e31137','Arseny’s home','377972bf696b5c9b95deff013df6298c','000409f81dbe5d1ba67101cb9fed4530','This is Arseny’s apartment block. In which city does he live?
TRANSCRIPT: Hello! Hello! Hello! I am Arseny. I am from Miass. This is my house. Welcome!',4.0,'Touchable Earth Foundation (New Zealand)','','video',0,728,729,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','484dba1781875db88c1dbf864902884b');INSERT INTO "content_contentnode" VALUES('7f5cccafbad151ebb64ff2cefc185d44','Arseny’s room','fae6ac68be5a556d9af37601b3f0e039','000409f81dbe5d1ba67101cb9fed4530','Arseny is in his room. What type of toys does he like?
TRANSCRIPT: Hello! I am Arseny. This is my room. This is my favorite toy. I like Lego, Angry Birds, and ride a bike. Bye-bye.',5.0,'Touchable Earth Foundation (New Zealand)','','video',0,730,731,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','484dba1781875db88c1dbf864902884b');INSERT INTO "content_contentnode" VALUES('264498b130b2500daf350c846929ba39','Sveta','200243ff1dc6597ca24ea61e2e540a36','000409f81dbe5d1ba67101cb9fed4530','Let’s make friends with Sveta. What is her favourite toy?
TRANSCRIPT: Hello! My name is Sveta. I’d like to tell you about my toys. It is Cheburashka. It is a character of a book. It was created by Eduard Uspensky. It is white and funny. It can sing and speak. ????? ?????? ??????. ?? ????????? ????. It is a leopard. It is a symbol of the Olympic Games in Sochi in 2014. I like my toys. Goodbye!',1.0,'Touchable Earth Foundation (New Zealand)','','video',0,734,735,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','7b501135b4815a968befb8da625511e4');INSERT INTO "content_contentnode" VALUES('2668857c63c35ac993792dcd0236a36c','Nikita','3f2da4b5405d5cddba677b30ffa5fe6a','000409f81dbe5d1ba67101cb9fed4530','Let’s make friends with Nikita. How old is she?
TRANSCRIPT: Hello! My name is Nikita. I am ten. I like to play tennis and computer games. I like English. Goodbye!',2.0,'Touchable Earth Foundation (New Zealand)','','video',0,736,737,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','7b501135b4815a968befb8da625511e4');INSERT INTO "content_contentnode" VALUES('d67733d8b7f057f5be704f0de2c3a1b2','Matvej','fb2b09ebc3aa572eb9e973b75ed024e9','000409f81dbe5d1ba67101cb9fed4530','Let’s make friends with Matvej. What are his hobbies?
TRANSCRIPT: Hi! My name is Matvej. I am 10. I like playing football. When I grow up, I want to be a football player. I like ice skating, biking and rollerblading. I like English and Maths. This term I want to get all As. Goodbye!',3.0,'Touchable Earth Foundation (New Zealand)','','video',0,738,739,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','7b501135b4815a968befb8da625511e4');INSERT INTO "content_contentnode" VALUES('ef0338cad48851a886db02250be79d34','Polina','e0cefce2533d59479122165dbe32bc9f','000409f81dbe5d1ba67101cb9fed4530','Let’s make friends with Polina. What type of pets does she have?
TRANSCRIPT: My name is Polina. I am 9 years old. I like riding a bike, dancing and singing. I have pets: two cats and a dog. When I grow up, I want to be a vet. I like Russian, Maths and English. Bye.',4.0,'Touchable Earth Foundation (New Zealand)','','video',0,740,741,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','7b501135b4815a968befb8da625511e4');INSERT INTO "content_contentnode" VALUES('20bf02522c575bf5bd65552180ab967e','Alice','2250736e6ff75ba897be7fba8d56cf18','000409f81dbe5d1ba67101cb9fed4530','Let’s make friends with Alice. What are her hobbies?
TRANSCRIPT: Hello! My name is Alice. I am 11 and I am Russian. My favorite hobby is riding a horse and dancing. When I grow up, I will be an actress. And my favorite movie is How to Train Your Dragon. Bye-bye!',5.0,'Touchable Earth Foundation (New Zealand)','','video',0,742,743,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','7b501135b4815a968befb8da625511e4');INSERT INTO "content_contentnode" VALUES('4053be99400152b28bfabbb94ee72f24','Sonya','32a5bd2343fb5bcdade3c6599f73fe90','000409f81dbe5d1ba67101cb9fed4530','Let’s make friends with Sonya. What has she drawn?
TRANSCRIPT: Hello! My name is Sonya. I am 11. I live in Russia. I like to draw. It is my favorite picture. It is a beach and it is a princess. Bye!',6.0,'Touchable Earth Foundation (New Zealand)','','video',0,744,745,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','7b501135b4815a968befb8da625511e4');INSERT INTO "content_contentnode" VALUES('aa4c001be90d5b7c83173262386a4434','Sasha','2f0c0d6992e95649b0ed3fb7eb672582','000409f81dbe5d1ba67101cb9fed4530','Let’s make friends with Sasha. How long has she played the flute?
TRANSCRIPT: Hello! I am Sasha. I am 11. I am from Moscow. I’ve played the flute for 5 years. I like to play the flute very much. I’ll play Irish March. [Playing the flute] Bye!',7.0,'Touchable Earth Foundation (New Zealand)','','video',0,746,747,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','7b501135b4815a968befb8da625511e4');INSERT INTO "content_contentnode" VALUES('8082bbc4711b5a188fde448754608d41','Ann','568283ae53c3527ba17c79a76776edff','000409f81dbe5d1ba67101cb9fed4530','Let’s make friends with Ann. What type of instrument does she play?
TRANSCRIPT: Hello! My name is Ann. I am 11. I am from Moscow. I like to play the violin. I’ve played the violin for 4 years. I will play this song. [Playing the violin] Bye!',8.0,'Touchable Earth Foundation (New Zealand)','','video',0,748,749,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','7b501135b4815a968befb8da625511e4');INSERT INTO "content_contentnode" VALUES('f642a78828055ee6af02d5e6bcac4854','Anton','182031741ae7543580df1526af011872','000409f81dbe5d1ba67101cb9fed4530','Let’s make friends with Artiom. What is his favourite instrument?
TRANSCRIPT: Hello! My name is Anton and I am Russian. I live in the capital of Russia, which is Moscow. Today I am gonna be talking about myself. A little. So, I was traveling about all the countries. It was China, it was India. That’s how I learned my English very well. I can talk to anyone basically. As for my future, I don’t really know, because I have too many options just a lot of stuff that I want to do. So, the main thing I am doing right now is drums, [inaudible], and just a lot of music right now. So, it was nice to meet you. Welcome to Russia! Goodbye!',9.0,'Touchable Earth Foundation (New Zealand)','','video',0,750,751,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','7b501135b4815a968befb8da625511e4');INSERT INTO "content_contentnode" VALUES('52ec820293f55df889d74d34ab53b8c2','Dima','c84f41ba131b514286589908325c8fe1','000409f81dbe5d1ba67101cb9fed4530','Let’s make friends with Dima. How old is he?
TRANSCRIPT: Hello! My name is Dima. I am 12. I like to play drums. [Drumming sound] Ahhh!!! Bye!',10.0,'Touchable Earth Foundation (New Zealand)','','video',0,752,753,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','7b501135b4815a968befb8da625511e4');INSERT INTO "content_contentnode" VALUES('a8a40f83fff2585ea54d2fb9abe7d29b','Robots','f7849cb71906536c8e27bb47b0a5dbc5','000409f81dbe5d1ba67101cb9fed4530','Vlad and Arseny make robots. Which one will be the champion?
TRANSCRIPT: Hi! My name is Vlad. My name is Arseny. At our school, we have classes of robot making. We learn the basic skills of construction and programming. Students of our school take part in many exhibitions and competitions. I am the winner of creative exhibition, and I am the winner of the city robot contest. We use [Inaudible] level. We construct different robots, solve different tasks and have competitions. This robot’s name is Dobrynia. This robot is Gorynia. One, two, three. No! Yeah!',1.0,'Touchable Earth Foundation (New Zealand)','','video',0,756,757,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','f5dcdc904047540f8b453bcd4c7bc586');INSERT INTO "content_contentnode" VALUES('4b4c2f1887175229a7d78192e34578e6','Ball game','cc097d21837c552c8789cab4ff152c75','000409f81dbe5d1ba67101cb9fed4530','Anton plays Pioneer Ball with his friends. What is another game that is played on the same court?
TRANSCRIPT: Hello! My name is Anton. I am nine. We play pioneer ball. [Children playing with the ball and shouting]',2.0,'Touchable Earth Foundation (New Zealand)','','video',0,758,759,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','f5dcdc904047540f8b453bcd4c7bc586');INSERT INTO "content_contentnode" VALUES('cd8f2f4e48a5563b80844035ef9ad9f2','Clapping','e186c5084d2454779bdd8d54eb5e950a','000409f81dbe5d1ba67101cb9fed4530','Xenia plays a clapping game with her friends. Can you learn to do it too?
TRANSCRIPT: Hi! Hello, my name is Xenia. We like clapping. [Clapping sound] Bye!!',3.0,'Touchable Earth Foundation (New Zealand)','','video',0,760,761,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','f5dcdc904047540f8b453bcd4c7bc586');INSERT INTO "content_contentnode" VALUES('6154977f119c5148b7d288a1c8ba8294','Streamlet','69551f89e4f85da0a3ed670b07d5823d','000409f81dbe5d1ba67101cb9fed4530','Vova plays Streamlet with his friends. Why does he like this game?
TRANSCRIPT: Hello! Hello! Hello, my name is Vova. I’d like to tell you about our national Russian game. It’s called Rucheyek or Streamlet. We play this game during the break. It’s a quiet game for all students. All participants must stand in pairs. And leader passes through the corridor and chooses a partner from any pair. This new pair stands at the end of the corridor. Participant without a partner goes to the beginning and passes through the column choosing a partner for himself. It is very fascinating when there are many participants. For children it is a chance to be in pair with an interesting person. Goodbye.',4.0,'Touchable Earth Foundation (New Zealand)','','video',0,762,763,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','f5dcdc904047540f8b453bcd4c7bc586');INSERT INTO "content_contentnode" VALUES('bcf6978237085f85a05107d7dc63c455','Museum','c62c7219fd1b5272ac067c481e3d1988','000409f81dbe5d1ba67101cb9fed4530','Sasha shows the museum at her school. Whose history does it include?
TRANSCRIPT: Hello! My name is Sasha. I go to school 4071. This is our school museum. We have history of school and of Russia. Bye-bye!',1.0,'Touchable Earth Foundation (New Zealand)','','video',0,766,767,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','24cf0fde9a9b5303a48495ad2c454097');INSERT INTO "content_contentnode" VALUES('72f5f5cd32a35a14916823f1ee995f53','Lunch','53b51e3d2bbe5a50bab574e6305ebc29','000409f81dbe5d1ba67101cb9fed4530','Nitsita shows what she eats for lunch. What does she drink with her lunch?
TRANSCRIPT: Hello! My name is Nitsita. This is school canteen. For lunch we have [Inaudible] or Druzhba, tea, kampot, and small pies. I love my school. Goodbye!',2.0,'Touchable Earth Foundation (New Zealand)','','video',0,768,769,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','24cf0fde9a9b5303a48495ad2c454097');INSERT INTO "content_contentnode" VALUES('365c30e66f4f5fb49916378f5bbc03a5','Flag','1fb635d4559559588f626b65699fd46a','000409f81dbe5d1ba67101cb9fed4530','Boris introduces the flag of his school. What is his school’s name?
TRANSCRIPT: Welcome to School 16! I like my school. My name is Boris. This is my school. This is school flag. Goodbye!',3.0,'Touchable Earth Foundation (New Zealand)','','video',0,770,771,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','24cf0fde9a9b5303a48495ad2c454097');INSERT INTO "content_contentnode" VALUES('002dd31687a75a5d9a999600b5158513','News','9dfc72c8fe775ff89e55f3fa8927d136','000409f81dbe5d1ba67101cb9fed4530','Alex makes the school news.How old is he?
TRANSCRIPT: Hello! My name is Alex. I am 11. I am an operator. This is a school camera. I like to make school news and movies. Bye!',4.0,'Touchable Earth Foundation (New Zealand)','','video',0,772,773,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','24cf0fde9a9b5303a48495ad2c454097');INSERT INTO "content_contentnode" VALUES('5451d67aa1285f8f8cda79497a1e722b','Uniform','008b2b035b8c5276b92b019eda4bf371','000409f81dbe5d1ba67101cb9fed4530','Maxim explains his school uniform. What colour shoes are part of the uniform?
TRANSCRIPT: Hello world! My name is Maxim. I am going to tell you about school uniform for boys. First, there is a blue, grey or white shirt with a collar. Then there is a grey boys’ coat with buttons and pockets on both sides. Trousers that we have to wear are also grey without any lines on them. Shoes must be black. Usually, official style. And, finally, a grey coat, but we wear it only when it’s cold. That’s all about our school uniform for boys. Thank you for your attention. Bye!',5.0,'Touchable Earth Foundation (New Zealand)','','video',0,774,775,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','24cf0fde9a9b5303a48495ad2c454097');INSERT INTO "content_contentnode" VALUES('cb6b03cf9c2d5c0fac53dca20dfe8ab0','Russian literature class','dd4f967fe598577c9441bf7b303e39a7','000409f81dbe5d1ba67101cb9fed4530','Vasya introduces her class.
TRANSCRIPT: Hi!!! I am Vasya. This is my teacher. We have Russian literature. Right now, let’s read chapter 3. We will take turns to read one after another. Let’s go. Starting with You Egor. It got really cold. Tiny snow was coming from the sky, wintery and dry. It was blown away by a dry and sharp wind.',6.0,'Touchable Earth Foundation (New Zealand)','','video',0,776,777,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','24cf0fde9a9b5303a48495ad2c454097');INSERT INTO "content_contentnode" VALUES('11b6ec7848ba5e6fa345cc00b1fafbee','English class','4386c7557ddd5ef5bb96f438ce70f375','000409f81dbe5d1ba67101cb9fed4530','Alice welcomes you to her class. What is she learning to describe?
TRANSCRIPT: Hello! I am Alice and I am in grade five. This is my teacher and now we are learning English. Welcome to the class! Welcome! What is the weather like today? Can you tell me? Cloudy, some clouds in the sky. It’s sunny, yes. Warm. Warm. Windy. Windy! Yes. Do you like such weather? Do you like such weather? Yes. Yes, of course! We like such weather. It is warm, sunny and windy.',7.0,'Touchable Earth Foundation (New Zealand)','','video',0,778,779,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','24cf0fde9a9b5303a48495ad2c454097');INSERT INTO "content_contentnode" VALUES('85309a61c7505a9688c748ffa6af9755','Song','1f2ac5b7b1fc5ee2979b391e41dd3dfb','000409f81dbe5d1ba67101cb9fed4530','Wafaa sings a song from Syria. Who is it about?
TRANSCRIPT: Hello! I am Wafa from Syria, and this is my family. I would like to sing to you, and the song is about Laila. Oh Laila! Why do you cry? Oh Laila! Please tell me. This hurts… Mother She told me to go. She told me your food is hidden in the basket. And be careful on the table… On the street do not talk to anybody. There is nobody in the house, but it is furnished with a huge back yard. Bye!',1.0,'Touchable Earth Foundation (New Zealand)','','video',0,784,785,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','fd70be3b008356078163c1aedd0744db');INSERT INTO "content_contentnode" VALUES('9a23d5ea10b953df969018abbe28b381','Girls’ clothing','0663ee20f46c5383b9a3d54cb361549d','000409f81dbe5d1ba67101cb9fed4530','Noor is wearing traditional clothes for girls. Who bought them for her?
TRANSCRIPT: Hello I am Noor Haan from Syria. I am 6 years old. I love to wear these clothes. My mother bought them for me. She loves all little children to wear clothes like these. Especially this jacket. Bye!',2.0,'Touchable Earth Foundation (New Zealand)','','video',0,786,787,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','fd70be3b008356078163c1aedd0744db');INSERT INTO "content_contentnode" VALUES('5ffed14d98c45d1ca6e4ec2cf5b0569e','Welcome','d359d56bc9ed52c999afeaec24046188','000409f81dbe5d1ba67101cb9fed4530','Habibu and friends are from Syria. What is the capital city?
TRANSCRIPT: Hi! My name is Habibu Allah. I am 13 years old, from Syria. I will tell you about Syria. Damascus is it’s capital, one of the oldest capitals in history. The very first letters originally came from here. Bye!',1.0,'Touchable Earth Foundation (New Zealand)','','video',1,790,791,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,1,'{}','0233cf204b65542e86f85983791b2ae1');INSERT INTO "content_contentnode" VALUES('46c4254a02075725a244db0250951c5b','Ali’s family','fc5bd1a85e225ac8b3a411f1671ef779','000409f81dbe5d1ba67101cb9fed4530','Ali introduces his family. How many brothers does he have?
TRANSCRIPT: Hi! My name is Ali, from Syria. I am 12 years old. This is my brother Darwish. … This is my second brother, his name is Mohammad. This is my sister Halima. This is my mother. This is my sister Mariam. This is my sister Yasmine. This is my father. Bye! Bye!',1.0,'Touchable Earth Foundation (New Zealand)','','video',0,794,795,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','76d8b3022705593ab8ccb0a76aff5012');INSERT INTO "content_contentnode" VALUES('8c6099c8d63e55c8a82fc50d550daf4f','Mohammad’s mother','a1d7d7323b8b56c48e11764415458d64','000409f81dbe5d1ba67101cb9fed4530','Mohammad introduces his mother. What does she help him with?
TRANSCRIPT: This is my mom. I love her so much. She does everything for us. She cooks, she cleans the dishes, washes our clothes. She take care of us and brings us new clothes and we love her so much and are happy with her. She does everything for us. We want to grow up we want to learn and be educated. We want to work as well. We want everything. Bye!',2.0,'Touchable Earth Foundation (New Zealand)','','video',0,796,797,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','76d8b3022705593ab8ccb0a76aff5012');INSERT INTO "content_contentnode" VALUES('2ed082b502475a42ac4ca13c419cc2b0','Darwish’s sister','26730c2248a5536a8b6701a45a20823c','000409f81dbe5d1ba67101cb9fed4530','Darwish introduces his sister. What type of work does she do?
TRANSCRIPT: Hi. I am Darwish and this is my sister Halima. I used to study in Syria and my sister works in harvesting potatoes. She also works as house cleaner. She helps my mother in cooking. Now she studies at school. Bye, Bye!',3.0,'Touchable Earth Foundation (New Zealand)','','video',0,798,799,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','76d8b3022705593ab8ccb0a76aff5012');INSERT INTO "content_contentnode" VALUES('6aee5618209a5b859f8cf0b37ff086a7','Walid’s family','133198424ac951d599678220c7efde6f','000409f81dbe5d1ba67101cb9fed4530','Walid introduces his family. Which country are they living in now?
TRANSCRIPT: Hi! I am Walid. I want to introduce my family to you. This is my mother and my father. Hi! This is my brother. I have my other brother at work. This is my youngest brother. We came from Syria to Lebanon. This is our home. We came here because of the war. We want to learn and go to school. Bye! Yes!',4.0,'Touchable Earth Foundation (New Zealand)','','video',0,800,801,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','76d8b3022705593ab8ccb0a76aff5012');INSERT INTO "content_contentnode" VALUES('0dca2c94fd0557bea6cd5dbcb732ccf3','Hakim’s mother','62f1b78dbeaf5fc39682502a010f6c03','000409f81dbe5d1ba67101cb9fed4530','Hakim is with his mother. What does she buy him in the market?
TRANSCRIPT: Hi! I am Hakim and this is my mother. Hi! She takes me with her to the market and gets us toys. She get us clothes as well. She get us clothes to wear and go to school. Bye! Bye!',5.0,'Touchable Earth Foundation (New Zealand)','','video',0,802,803,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','76d8b3022705593ab8ccb0a76aff5012');INSERT INTO "content_contentnode" VALUES('430120d418f658ba84e8b9c34fdc04bb','Darine’s father','357e957c433c5fdcac0d3f4d103428ac','000409f81dbe5d1ba67101cb9fed4530','Darine is with her father. What does he teach her?
TRANSCRIPT: Hi! This is Darine with you and here’s my father. He works in harvesting potatoes. Arabic potatoes. He taught me everything. He teaches me right things. I love to be in school and to be employed. Yes, I hope! My father helps me in everything. He gives us money to buy clothes. Bye!',6.0,'Touchable Earth Foundation (New Zealand)','','video',0,804,805,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','76d8b3022705593ab8ccb0a76aff5012');INSERT INTO "content_contentnode" VALUES('5ad4029a0d0a5e9bb5e635a3a19090a6','Darine’s family','32b268e41f7955178650e577edc9f71b','000409f81dbe5d1ba67101cb9fed4530','Darine wants you to meet her family. Which city are they from?
TRANSCRIPT: Hi, I am Darine. I am from Syria, Aleppo. This is my father and this is my sister Atari. This is my sister, Tahani. This is my sister Ritaj. My brother Mouhannad. My brother Alawi. This is my mother. Bye bye!',7.0,'Touchable Earth Foundation (New Zealand)','','video',0,806,807,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','76d8b3022705593ab8ccb0a76aff5012');INSERT INTO "content_contentnode" VALUES('5b2b382750c3573dbb8d999cb0bca698','Walid’s father','c15ef9a555205cfcadb70f6dcac207fd','000409f81dbe5d1ba67101cb9fed4530','Walid is with his father. Why does he want him to be a doctor?
TRANSCRIPT: Hi! This is my father. I am helping him because he is sick. He teaches me to be on the right path. Yes, he teaches me to be on the right path. Again, on the right path like this. When I am big he wants me to become a doctor and help people in need. All people in need. Bye!',8.0,'Touchable Earth Foundation (New Zealand)','','video',0,808,809,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','76d8b3022705593ab8ccb0a76aff5012');INSERT INTO "content_contentnode" VALUES('c21a60034227558f9a86f6224a4a3f22','Ali’s father','1df527a288ea578b85b7fc1ec596d1a1','000409f81dbe5d1ba67101cb9fed4530','Ali is with his father. What does he want to do after he finishes studying?
TRANSCRIPT: Hi! This is my father, He cannot work. We want to study and grow up to be able to work and help him. Dad cannot work because his leg hurts him. He is kind with us and I love him. Bye, Bye!',9.0,'Touchable Earth Foundation (New Zealand)','','video',0,810,811,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','76d8b3022705593ab8ccb0a76aff5012');INSERT INTO "content_contentnode" VALUES('00de3a5f196a570a9ae4fc0e7cd8c7ba','Adia’s mother','5e3be4969da35defb5fb619faf33c33c','000409f81dbe5d1ba67101cb9fed4530','Adia is with her mother. Where does her mother take her?
TRANSCRIPT: Hello! I am Adia, and this is my mother. I love her a lot. She cooks, cleans, and takes care of me. She gives me baths and feeds me. And keeps me busy. She takes me to school. She helps me put my bag on. She helps me put my clothes on. Bye!',10.0,'Touchable Earth Foundation (New Zealand)','','video',0,812,813,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','76d8b3022705593ab8ccb0a76aff5012');INSERT INTO "content_contentnode" VALUES('5031f23ec2aa5bc585dcec74a06904e1','Khoder’s family','8e3890a116d95f0598e59218f6d087e6','000409f81dbe5d1ba67101cb9fed4530','Khoder introduces his family. What does his mother help him with?
TRANSCRIPT: Hi. This is my mom. This is my brother Majad. This is my brother. I am Khoder, 14 years old. This is my mom. I always like to go to school. My mom gets us clothes, toys, and everything. Bye!!',11.0,'Touchable Earth Foundation (New Zealand)','','video',0,814,815,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','76d8b3022705593ab8ccb0a76aff5012');INSERT INTO "content_contentnode" VALUES('ba9b5b2ba5c25a9ca45a526c8ccae080','Sahar','d8af2d7ed80759fc82e50130789c89ec','000409f81dbe5d1ba67101cb9fed4530','Let’s make friends with Sahar. What does she love to do?
TRANSCRIPT: Hi! My name is Sahar, I am 12 years old. I love to teach kids and help them with all their problems. I like to help them. If I saw.. if I saw someone sinking or needs help, I do help them. And, if they want something, I mean, if they need anything from me, I give them. When they ask, I absolutely give. Bye!',1.0,'Touchable Earth Foundation (New Zealand)','','video',0,818,819,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','6393b1b0ed3554d89db9ad9bda194683');INSERT INTO "content_contentnode" VALUES('62c48d522fa1511197bed9dbecae92e9','Shahed','50b98424e7225252ba4b42e8a0b4b294','000409f81dbe5d1ba67101cb9fed4530','Let’s make friends with Shahed. What is her hobby?
TRANSCRIPT: Hi, my name is Shahed Abi Zaid. I am 12 years old. From Syria. Everyday I play with my siblings and paint. Also I would love to ask all the kids around the world to study hard for a good future. Bye!',2.0,'Touchable Earth Foundation (New Zealand)','','video',0,820,821,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','6393b1b0ed3554d89db9ad9bda194683');INSERT INTO "content_contentnode" VALUES('4fcc3fbc2e245ff6b132321ebdbc16fe','Khawla','ed804b1b799b5c8cae45f12c47df5ca1','000409f81dbe5d1ba67101cb9fed4530','Let’s make friends with Khawla. Who does she play with?
TRANSCRIPT: Hi! My name is Khawla, from Syria, I am 9 years old. I like to play with my friends and if some kids came from other camps, I play with them too. Bye!',3.0,'Touchable Earth Foundation (New Zealand)','','video',0,822,823,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','6393b1b0ed3554d89db9ad9bda194683');INSERT INTO "content_contentnode" VALUES('f455b414f1ef5b61a9590155aaa088f6','Wafaa','b4107d536b7d5feaba5eab4f6f47e346','000409f81dbe5d1ba67101cb9fed4530','Let’s make friends with Wafaa. What does she study?
TRANSCRIPT: Hello! My name is Wafaa, from Syria. We used to study in Syria.. but.. the war began. But I love to study here as well. Here I know, I know I study here. I like being here and study English and other things. But also I love Syria and I wish that there’s no war over there so we can go back to study there. Bye!',4.0,'Touchable Earth Foundation (New Zealand)','','video',0,824,825,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','6393b1b0ed3554d89db9ad9bda194683');INSERT INTO "content_contentnode" VALUES('3dfc5cad2c485450be6d29541dd1a597','Karim','0aa22b9bb16d5bd190e843e2c441d1e6','000409f81dbe5d1ba67101cb9fed4530','Let’s make friends with Karim. How old is he?
TRANSCRIPT: Hi! … My name is Abdel Karim. I am 11 years old. When I grow up I want to buy a car and have people work on it. Bye!',5.0,'Touchable Earth Foundation (New Zealand)','','video',0,826,827,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','6393b1b0ed3554d89db9ad9bda194683');INSERT INTO "content_contentnode" VALUES('9c6516cb3c5059dfb6d32cecc6c7c6ce','Ihab','bb0448660edf5494b7c48da7cd812e3e','000409f81dbe5d1ba67101cb9fed4530','Let’s make friends with Ihab. What does he want to do when he grows up?
TRANSCRIPT: Hi! My name is Ihab, from Syria, I am 10 years old. I want to work as a taxi driver. I’d like to be a teacher when i grow up too. I wish for Syria to be as it used to be and better. Bye!',6.0,'Touchable Earth Foundation (New Zealand)','','video',0,828,829,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','6393b1b0ed3554d89db9ad9bda194683');INSERT INTO "content_contentnode" VALUES('1cefeeb873ca5461a2824d55c16fb48e','Walid','cea2cf5085145a61b80e8897f4795f02','000409f81dbe5d1ba67101cb9fed4530','Let’s make friends with Walid. What does he want to when he grows up?
TRANSCRIPT: Hi! I am Walid, I am 11 years old. I am from Syria. My father is sick and I hope to be a doctor when I grow up and to work as a doctor to help people. And I am in school. I help my father and help all sick people. I love and hope that my father get well soon and walk again as he used to do. I give him medicine that he wants. I wish to have a big house. Bye!',7.0,'Touchable Earth Foundation (New Zealand)','','video',0,830,831,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','6393b1b0ed3554d89db9ad9bda194683');INSERT INTO "content_contentnode" VALUES('36983f2485455e318ef723388d6f8199','Hamzeh','fca070177e8c5222b95dcfdc9adede86','000409f81dbe5d1ba67101cb9fed4530','Let’s make friends with Hamzeh. What does he want to do when he grows up?
TRANSCRIPT: I am Hamzeh. I am from Syria, I am 9 years old. I love toys so much, but until now I don’t have a bike. When I am older I want to be a salesman and sell toys for kids. Bye!',8.0,'Touchable Earth Foundation (New Zealand)','','video',0,832,833,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','6393b1b0ed3554d89db9ad9bda194683');INSERT INTO "content_contentnode" VALUES('223c222720d35324aed29c56dd68bfee','Hakim','df66eb0585805858be888dcbfe317c4b','000409f81dbe5d1ba67101cb9fed4530','Let’s make friends with Hakim. What language does he want to learn?
TRANSCRIPT: Hi! my name is Abdul Hakim. I am 9 years old. I would like to move to another country and learn English. And give money to all the poor people. Bye!',9.0,'Touchable Earth Foundation (New Zealand)','','video',0,834,835,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','6393b1b0ed3554d89db9ad9bda194683');INSERT INTO "content_contentnode" VALUES('4a5c9283f1195b06a8ba31fa7b43d7ab','Football','da2bddb8aef15e51af4482d26b00eb5e','000409f81dbe5d1ba67101cb9fed4530','Habib is playing football with is friends. How many rounds do they play?
TRANSCRIPT: Hi I am Habib. I love playing football and behind me are my friends who play with me. We play football as two teams and two rounds. Bye. Bye! Start. Let Asna team wins. … Goal… no. Get away… Goal!',1.0,'Touchable Earth Foundation (New Zealand)','','video',0,838,839,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','5d7127a1a9355682ae0e00cbe8fc9284');INSERT INTO "content_contentnode" VALUES('09c4758a02aa585a92e8e13274d8768d','Hopscotch','4c83abf59c8757cd941c1ab8d03daf7b','000409f81dbe5d1ba67101cb9fed4530','Rajaa likes to play hopscotch. Can she win on this turn?
TRANSCRIPT: Hello! My name is Rajaa, I am from Syria. I want to show you a game. ( playing… ) I jump here too? Yes. Yes, like this. What are you doing? Playing a game. You’re still on the line. Bye… Bye!',2.0,'Touchable Earth Foundation (New Zealand)','','video',0,840,841,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','5d7127a1a9355682ae0e00cbe8fc9284');INSERT INTO "content_contentnode" VALUES('e90c73337d005492b9bc292354a818ae','Clapping','936137a094675b94a3e9b0916de0d03d','000409f81dbe5d1ba67101cb9fed4530','Wafaa and Khawla like to clap together. Who is their song about?
TRANSCRIPT: Hi. My name is Wafaa, from Syria. I am 10 years old and I want to sing a song for you. Hi. I am Khawla, I am 10 years old. I am from Syria and I want to sing a song for you. Seen Seen, hey girls, hey girls. Our father who, Our father Egyptian, Sitting on the chair, counting money, for his wife, who’s his wife? Daughter of a prince, Set el Seat, the most beautiful. Khawla its my turn. Wafaa its my turn. Khawla up. Wafaa up. Up.',3.0,'Touchable Earth Foundation (New Zealand)','','video',0,842,843,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','5d7127a1a9355682ae0e00cbe8fc9284');INSERT INTO "content_contentnode" VALUES('75f0d7e3885c5645b108203f2edf9935','Bike','162ee73f690055fcb1626f9f9c26a140','000409f81dbe5d1ba67101cb9fed4530','Karim is playing with his bike. Who does he share it with?
TRANSCRIPT: I am Karim from Syria. I am 10 years old. To drive a bike. (Laughs) Mr. I am. Go back… go back… Leave Hilal… Leave Hilal. Come on Hilal… Hilal. Me after Hilal.',4.0,'Touchable Earth Foundation (New Zealand)','','video',0,844,845,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','5d7127a1a9355682ae0e00cbe8fc9284');INSERT INTO "content_contentnode" VALUES('532d2bae176d501aa6c9d396a0a55a36','Skipping','3e429ff558095f0d802b2132c4243de6','000409f81dbe5d1ba67101cb9fed4530','Sahar likes skipping. How many jumps does she make?
TRANSCRIPT: I am 10 years old. To drive a bike. (Laughs) Mr. I am. Go back… go back… Leave Hilal… Leave Hilal. Come on Hilal… Hilal. Me after Hilal.',5.0,'Touchable Earth Foundation (New Zealand)','','video',0,846,847,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','5d7127a1a9355682ae0e00cbe8fc9284');INSERT INTO "content_contentnode" VALUES('28e15f1a7e7c5878bb91369d7ab1dfd4','English class','561ba3f4cf2f5686931c83dff5286aa1','000409f81dbe5d1ba67101cb9fed4530','Shahed is in English class. What is she learning today?
TRANSCRIPT: Hi my name is Shahed. I am from Syria, and I am 12 years old. And this is my teacher. Hi! I learn English. Like to my class. Welcome. Welcome to my class! Ok, please copy the words I am writing. Ok This is the letter “A” A What is this letter? A. OK. B. What’s this letter? B, B. A, B. What’s it’s name? We studied it earlier. Yes! A, B, A. Write underneath also. Bravo! Thank you! OK. Hi. In capital.',1.0,'Touchable Earth Foundation (New Zealand)','','video',0,850,851,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','3a252722578e567d96ee1998aa365043');INSERT INTO "content_contentnode" VALUES('192c9439ec345d958b35251b93ac51d6','Maths class','75b7cfd02dd85806aae80ba90f79e60f','000409f81dbe5d1ba67101cb9fed4530','Khawla is learning maths. How many numbers can she write?
TRANSCRIPT: Hi! My name is Khawla, from Syria, and I am 9 years old. This is the Math teacher. Hi! This is the Math class. These are the students. Welcome! Bye! Take it, write down from 1 to 5. Go ahead and write here. Here. Bravo. All of you write down these numbers. Bravo. Yes. Bravo. 5, 6. This is 5 and 6. Six, seven, eight, nine. Seven. Like this. Yes, down, bravo. Now 8. Two circles. Bravo. 9. Sahar, go back to your place Sahar. Bye! Bye!',2.0,'Touchable Earth Foundation (New Zealand)','','video',0,852,853,1,3,'en','Permission has been granted by Touchable Earth to distribute this content through Kolibri.','Special Permissions',0,0,0,'{}','3a252722578e567d96ee1998aa365043');CREATE TABLE "content_contentnode_has_prerequisite" ("id" integer NOT NULL PRIMARY KEY AUTOINCREMENT, "from_contentnode_id" char(32) NOT NULL REFERENCES "content_contentnode" ("id"), "to_contentnode_id" char(32) NOT NULL REFERENCES "content_contentnode" ("id"));CREATE TABLE "content_contentnode_related" ("id" integer NOT NULL PRIMARY KEY AUTOINCREMENT, "from_contentnode_id" char(32) NOT NULL REFERENCES "content_contentnode" ("id"), "to_contentnode_id" char(32) NOT NULL REFERENCES "content_contentnode" ("id"));CREATE TABLE "content_contentnode_tags" ("id" integer NOT NULL PRIMARY KEY AUTOINCREMENT, "contentnode_id" char(32) NOT NULL REFERENCES "content_contentnode" ("id"), "contenttag_id" char(32) NOT NULL REFERENCES "content_contenttag" ("id"));CREATE TABLE "content_contenttag" ("id" char(32) NOT NULL PRIMARY KEY, "tag_name" varchar(30) NOT NULL);CREATE TABLE "content_file" ("id" char(32) NOT NULL PRIMARY KEY, "preset" varchar(150) NOT NULL, "supplementary" bool NOT NULL, "thumbnail" bool NOT NULL, "priority" integer NULL, "contentnode_id" char(32) NOT NULL REFERENCES "content_contentnode" ("id"), "lang_id" varchar(14) NULL REFERENCES "content_language" ("id"), "local_file_id" varchar(32) NOT NULL REFERENCES "content_localfile" ("id"));INSERT INTO "content_file" VALUES('005421c4f0a14bea8323144a9bfa97ab','topic_thumbnail',1,1,1,'6d50cb759abe5c4a90734f791abdf613',NULL,'b9b59175f08e8134d95152dd73ce28fd');INSERT INTO "content_file" VALUES('92add95ccbc84d909a2b87463c49e46d','topic_thumbnail',1,1,1,'aad99e72b32e50f9aa8094b63ba3c8a3',NULL,'b9b59175f08e8134d95152dd73ce28fd');INSERT INTO "content_file" VALUES('f23a3e68b18c4c079bc444a6e6ca68cf','topic_thumbnail',1,1,1,'1d12a7a5e45d5db49a80fe5354f55f8c',NULL,'b9b59175f08e8134d95152dd73ce28fd');INSERT INTO "content_file" VALUES('28cd7b4a474b4f18b28cfefff01de875','topic_thumbnail',1,1,1,'8c30dc0f9dfd598d98ec990ef47bcf75',NULL,'b9b59175f08e8134d95152dd73ce28fd');INSERT INTO "content_file" VALUES('47f5968981054540a098cd0daca61702','topic_thumbnail',1,1,1,'660a484c265b59199e965b9a2a7928ff',NULL,'b9b59175f08e8134d95152dd73ce28fd');INSERT INTO "content_file" VALUES('5a15d3adf27140cd8cf30170f13daa41','topic_thumbnail',1,1,1,'477a8f303f3b580fa2a96609bab59a48',NULL,'b9b59175f08e8134d95152dd73ce28fd');INSERT INTO "content_file" VALUES('4ced5374ca1c4c93a5d72efc168ba2d6','topic_thumbnail',1,1,1,'693356e8d5b7583cb6d2a5f97340ec90',NULL,'b9b59175f08e8134d95152dd73ce28fd');INSERT INTO "content_file" VALUES('ce2671702fe84c2ba8dd1811a6cc6826','topic_thumbnail',1,1,1,'d6d03b1343c65d9684f4d9e6d179f5dd',NULL,'b9b59175f08e8134d95152dd73ce28fd');INSERT INTO "content_file" VALUES('43ad60c5d6fb49dea1848fe191519cd9','topic_thumbnail',1,1,1,'9098c819bc19582d8326f421be63510f',NULL,'b9b59175f08e8134d95152dd73ce28fd');INSERT INTO "content_file" VALUES('735db52909c848d79e77fc439055ce7d','topic_thumbnail',1,1,1,'bb2b8242947f5bd9b64d4dfdac2b8177',NULL,'b9b59175f08e8134d95152dd73ce28fd');INSERT INTO "content_file" VALUES('ff9a61e8c1304b2095039366cb42ff67','topic_thumbnail',1,1,1,'c317467867325d45930d50f350c27dd5',NULL,'b9b59175f08e8134d95152dd73ce28fd');INSERT INTO "content_file" VALUES('e02498a2412542fc85f7f02fde9c806a','topic_thumbnail',1,1,1,'a0f73f54122755ff80b8c49cca8dcf5b',NULL,'b9b59175f08e8134d95152dd73ce28fd');INSERT INTO "content_file" VALUES('9ed3dd419d7e4adda77d3cbd1b46987e','topic_thumbnail',1,1,1,'41def5ab07915c3ba360c0274526c21a',NULL,'b9b59175f08e8134d95152dd73ce28fd');INSERT INTO "content_file" VALUES('9bdcfecc0c8942f0be11ae0813b4249f','topic_thumbnail',1,1,1,'0735d129e92d5f5893e347ccb0d7c198',NULL,'b9b59175f08e8134d95152dd73ce28fd');INSERT INTO "content_file" VALUES('c5057672823e466e9321f33ad5e11376','topic_thumbnail',1,1,1,'1c6066b19c7a5f5b8c2998ec1a72f3c6',NULL,'b9b59175f08e8134d95152dd73ce28fd');INSERT INTO "content_file" VALUES('7c49d20aa1734b889f55920e2ab50bdf','topic_thumbnail',1,1,1,'9a452d6b796f558f852ba112a77ecab1',NULL,'b9b59175f08e8134d95152dd73ce28fd');INSERT INTO "content_file" VALUES('3f63d99d6be8468db81886d1cc0721b4','topic_thumbnail',1,1,1,'b3d04581fcb750c588e49baf47f88a81',NULL,'b9b59175f08e8134d95152dd73ce28fd');INSERT INTO "content_file" VALUES('728b109a7c5448148e2ec46a8ec7d5b3','topic_thumbnail',1,1,1,'a5a6e5b5d92e5e138c8604ca47a7212a',NULL,'b9b59175f08e8134d95152dd73ce28fd');INSERT INTO "content_file" VALUES('d1f8a39160f44f8b8a5d157c99ca2dd1','topic_thumbnail',1,1,1,'8c0e3b1d595a517b9d63e54f1b07a9cf',NULL,'b9b59175f08e8134d95152dd73ce28fd');INSERT INTO "content_file" VALUES('4c55216827ba437aadde9551440e5e73','topic_thumbnail',1,1,1,'587c8a5030a7500e9c86723d7a2cf27f',NULL,'b9b59175f08e8134d95152dd73ce28fd');INSERT INTO "content_file" VALUES('41eed6d708a642139fc3aff01151153a','topic_thumbnail',1,1,1,'b01a47cf980b51acac895f34f7a96750',NULL,'b9b59175f08e8134d95152dd73ce28fd');INSERT INTO "content_file" VALUES('d12181b1c7a84b61abd32f047dbc40b8','topic_thumbnail',1,1,1,'c586f8b63b545d4ca765179dfc926c20',NULL,'b9b59175f08e8134d95152dd73ce28fd');INSERT INTO "content_file" VALUES('42868e5ebefd445e856a54d984a2e3ef','topic_thumbnail',1,1,1,'cb80be11d336516c9a586cc5bb06e9e6',NULL,'b9b59175f08e8134d95152dd73ce28fd');INSERT INTO "content_file" VALUES('93959f764270436b9d313487f9eb426b','topic_thumbnail',1,1,1,'e402698d51a25f009cd7e9dd4afd16d1',NULL,'b9b59175f08e8134d95152dd73ce28fd');INSERT INTO "content_file" VALUES('963d410f2c804dbd94e8b2234cc0790a','topic_thumbnail',1,1,1,'5ee66344dcf859f0808eaa0977ce637d',NULL,'b9b59175f08e8134d95152dd73ce28fd');INSERT INTO "content_file" VALUES('1d35306218d34744a4254972784269bb','topic_thumbnail',1,1,1,'5ec11b22d6ad57968e137b5e5059853e',NULL,'b9b59175f08e8134d95152dd73ce28fd');INSERT INTO "content_file" VALUES('4e7244780e9f476692c628f4a4b07ac3','topic_thumbnail',1,1,1,'4d280750a32650f88f35feb15e7da3ca',NULL,'b9b59175f08e8134d95152dd73ce28fd');INSERT INTO "content_file" VALUES('e785be8c15754a4d8e7cc8818a51c970','topic_thumbnail',1,1,1,'c3d020736a3a5fde8f52fe60c66825f7',NULL,'b9b59175f08e8134d95152dd73ce28fd');INSERT INTO "content_file" VALUES('54ab1d27981c49328ccf146d6bc39ab3','topic_thumbnail',1,1,1,'99fd79e500ef5d328ee0da3b3768a502',NULL,'b9b59175f08e8134d95152dd73ce28fd');INSERT INTO "content_file" VALUES('25042c6ae2e94826b2255ca623038ebb','topic_thumbnail',1,1,1,'48ffc846802250b5ae7010fb9042c6f8',NULL,'b9b59175f08e8134d95152dd73ce28fd');INSERT INTO "content_file" VALUES('43bcd54c2f2241988548908f3a95fca7','topic_thumbnail',1,1,1,'84f121b5dd5d5f5092c7f41922130be2',NULL,'b9b59175f08e8134d95152dd73ce28fd');INSERT INTO "content_file" VALUES('21f0694e179b472bb06799b2b583bec5','topic_thumbnail',1,1,1,'dcc52b5b322b577d9d636359084c9e6d',NULL,'b9b59175f08e8134d95152dd73ce28fd');INSERT INTO "content_file" VALUES('8c50e57cb741493aad23c0b183bf66c7','topic_thumbnail',1,1,1,'7c81b50691c85f1fa4097fe932eaf80c',NULL,'b9b59175f08e8134d95152dd73ce28fd');INSERT INTO "content_file" VALUES('9f23889fac544577961bc4dc614642ad','topic_thumbnail',1,1,1,'d90e4c5a13cb500ea38cf5d7b3027a0d',NULL,'b9b59175f08e8134d95152dd73ce28fd');INSERT INTO "content_file" VALUES('84ad18cd5d004365ad8e3ad8086afbc6','topic_thumbnail',1,1,1,'663fd107faa858bf9d428cd7601ed0b6',NULL,'b9b59175f08e8134d95152dd73ce28fd');INSERT INTO "content_file" VALUES('5a775a2f063f4bed8a0206ffa0588aab','topic_thumbnail',1,1,1,'3cc1d6a81a6e56069d33e5e65b4f833f',NULL,'b9b59175f08e8134d95152dd73ce28fd');INSERT INTO "content_file" VALUES('3e2ca9a84c1b4ce7bbce14d70aed4b85','topic_thumbnail',1,1,1,'f2695fb6bb245c32a6de12f65c74846d',NULL,'b9b59175f08e8134d95152dd73ce28fd');INSERT INTO "content_file" VALUES('41bb85f032154d5ab34fd7217e61c444','topic_thumbnail',1,1,1,'6fc08e28c2845cfd9bee1c35eb505af5',NULL,'b9b59175f08e8134d95152dd73ce28fd');INSERT INTO "content_file" VALUES('67594cf5899e4d6ab82e612f8c038aa8','topic_thumbnail',1,1,1,'01784fa9abd45045b6a323a326dfd1a4',NULL,'b9b59175f08e8134d95152dd73ce28fd');INSERT INTO "content_file" VALUES('3d28d61198014162bfba6b8c30ec6194','topic_thumbnail',1,1,1,'36a3f6f8d88353a18a8c34d898274ddf',NULL,'b9b59175f08e8134d95152dd73ce28fd');INSERT INTO "content_file" VALUES('d27a23c6783a4656bd5b3b4e6d20a32f','topic_thumbnail',1,1,1,'d2a21d076000535daf08c4b56dfae2fb',NULL,'b9b59175f08e8134d95152dd73ce28fd');INSERT INTO "content_file" VALUES('bce4fdf951754b53b26918cc47eec396','topic_thumbnail',1,1,1,'625d7f3de5a85f76a2f3db8f589341f2',NULL,'b9b59175f08e8134d95152dd73ce28fd');INSERT INTO "content_file" VALUES('d7807679c8104dacadf979e96b77b570','topic_thumbnail',1,1,1,'3984aef512c352bca130ee71afd94f48',NULL,'b9b59175f08e8134d95152dd73ce28fd');INSERT INTO "content_file" VALUES('15486313f3564991be547fc9f3afd05e','topic_thumbnail',1,1,1,'7c61031dd62f5440af42760f0c9b73dd',NULL,'b9b59175f08e8134d95152dd73ce28fd');INSERT INTO "content_file" VALUES('a1f0a70f1c3447b3bffbe8850e9cde07','topic_thumbnail',1,1,1,'63e46e4c9c205216a4680b0604a52659',NULL,'b9b59175f08e8134d95152dd73ce28fd');INSERT INTO "content_file" VALUES('ad1b74d6a47f4ded803772aec4af2fc3','topic_thumbnail',1,1,1,'7b14adb57b125c67b568c803af1f6de2',NULL,'b9b59175f08e8134d95152dd73ce28fd');INSERT INTO "content_file" VALUES('365b48c53b7d4a15b224be32b5990181','topic_thumbnail',1,1,1,'fb9991e35a2d5df6ad834cf62f416990',NULL,'b9b59175f08e8134d95152dd73ce28fd');INSERT INTO "content_file" VALUES('b8b0ebc1272246ee83b24ed5bf932e76','topic_thumbnail',1,1,1,'c0676e1af2595f6fb019d87431270386',NULL,'b9b59175f08e8134d95152dd73ce28fd');INSERT INTO "content_file" VALUES('41b79d12b5094c4aa700e3ab4d1938e7','topic_thumbnail',1,1,1,'b875715e37af5f029268063727c27a61',NULL,'b9b59175f08e8134d95152dd73ce28fd');INSERT INTO "content_file" VALUES('87c8cef94aef45f19a5e0facdba2a4d0','topic_thumbnail',1,1,1,'58fcf30fc06b512b8c6a89868a0d5883',NULL,'b9b59175f08e8134d95152dd73ce28fd');INSERT INTO "content_file" VALUES('95257eabcd68437bacc2b81e5402a407','topic_thumbnail',1,1,1,'cfee81fe7b7a57a2960ac2b0fd77f507',NULL,'b9b59175f08e8134d95152dd73ce28fd');INSERT INTO "content_file" VALUES('adc91a558ca148ec9a4b588670e8a3cf','topic_thumbnail',1,1,1,'484dba1781875db88c1dbf864902884b',NULL,'b9b59175f08e8134d95152dd73ce28fd');INSERT INTO "content_file" VALUES('cd48cc9ae40744caab9cb959975d2334','topic_thumbnail',1,1,1,'7b501135b4815a968befb8da625511e4',NULL,'b9b59175f08e8134d95152dd73ce28fd');INSERT INTO "content_file" VALUES('6e66e293e3eb4fb08709dea6210ad1e5','topic_thumbnail',1,1,1,'f5dcdc904047540f8b453bcd4c7bc586',NULL,'b9b59175f08e8134d95152dd73ce28fd');INSERT INTO "content_file" VALUES('8c1eb4f3985a49608bc81adc823d8af7','topic_thumbnail',1,1,1,'24cf0fde9a9b5303a48495ad2c454097',NULL,'b9b59175f08e8134d95152dd73ce28fd');INSERT INTO "content_file" VALUES('3d8e6885c7f14eeba39e905b26953f7c','topic_thumbnail',1,1,1,'fd70be3b008356078163c1aedd0744db',NULL,'b9b59175f08e8134d95152dd73ce28fd');INSERT INTO "content_file" VALUES('f6259afc392e48b78e4bc155a5e8c307','topic_thumbnail',1,1,1,'0233cf204b65542e86f85983791b2ae1',NULL,'b9b59175f08e8134d95152dd73ce28fd');INSERT INTO "content_file" VALUES('e8523de51350431fbacc0228c44fadea','topic_thumbnail',1,1,1,'76d8b3022705593ab8ccb0a76aff5012',NULL,'b9b59175f08e8134d95152dd73ce28fd');INSERT INTO "content_file" VALUES('48bf24a63bf642749195d62c15225c9b','topic_thumbnail',1,1,1,'6393b1b0ed3554d89db9ad9bda194683',NULL,'b9b59175f08e8134d95152dd73ce28fd');INSERT INTO "content_file" VALUES('ff985838516e4ec892eeff491499e6b7','topic_thumbnail',1,1,1,'5d7127a1a9355682ae0e00cbe8fc9284',NULL,'b9b59175f08e8134d95152dd73ce28fd');INSERT INTO "content_file" VALUES('d24fc10a0e2447988c44622655fc1aca','topic_thumbnail',1,1,1,'3a252722578e567d96ee1998aa365043',NULL,'b9b59175f08e8134d95152dd73ce28fd');INSERT INTO "content_file" VALUES('76bdd57046ea4120a847e5d16519c132','video_thumbnail',1,1,3,'73c3fa2490575c7fb666677a5c9827e9',NULL,'9d523f8a736e372fbe10ac895085fce9');INSERT INTO "content_file" VALUES('854d4c31b9c14319a46ee90bfe93cf5a','video_subtitle',1,0,4,'73c3fa2490575c7fb666677a5c9827e9','fr','43acfdf3c3f89f941c132af94d029590');INSERT INTO "content_file" VALUES('ac75ebe37e72490f963f8813ed4bdcab','video_subtitle',1,0,4,'73c3fa2490575c7fb666677a5c9827e9','en','8555b45f5b4ac65c3f809c9e8d82d6db');INSERT INTO "content_file" VALUES('14c9f63cdaaa410c932323ded3c234bb','high_res_video',0,0,1,'73c3fa2490575c7fb666677a5c9827e9',NULL,'d8a8ed8f5e367c0501550e227bb8f648');INSERT INTO "content_file" VALUES('b332160577074df89b39445690bf3699','video_thumbnail',1,1,3,'1f9645d462705e3296862d7e9b64864b',NULL,'51fdd89e296ff4d823a2f92761168d07');INSERT INTO "content_file" VALUES('8c92621e62e74008894a253a72cf8e47','video_subtitle',1,0,4,'1f9645d462705e3296862d7e9b64864b','fr','d49acd3055bd37a9e49dfd3dcef9c056');INSERT INTO "content_file" VALUES('7d6119a5bc584bd6bd112d86a1532da5','video_subtitle',1,0,4,'1f9645d462705e3296862d7e9b64864b','en','aeccbfc9de24a4c69aeecac571d932d4');INSERT INTO "content_file" VALUES('fd92d421c3c04d7ab339292e7a529471','video_subtitle',1,0,4,'1f9645d462705e3296862d7e9b64864b','zh-CN','e871701dbcc012c3e2fd6f14ba96aa1e');INSERT INTO "content_file" VALUES('1d4caf2b895b461593c948a7cf0a54fd','high_res_video',0,0,1,'1f9645d462705e3296862d7e9b64864b',NULL,'98f9c9c0a51287e67af64c9d31466301');INSERT INTO "content_file" VALUES('8933021cf0cf4c2cb0baf466a53774d3','video_thumbnail',1,1,3,'8d04cf37798357a48dea25c6b7d6cbec',NULL,'81f5b75381aa41ce257922b408f079d9');INSERT INTO "content_file" VALUES('99b8a60f60da466c8bbfae4227f70387','video_subtitle',1,0,4,'8d04cf37798357a48dea25c6b7d6cbec','fr','109e7c147043176d52ac800a763b57ac');INSERT INTO "content_file" VALUES('4fecd40f647540c4bf6360fa32de593b','video_subtitle',1,0,4,'8d04cf37798357a48dea25c6b7d6cbec','en','e2022843a9fda4da620013db9d705a1f');INSERT INTO "content_file" VALUES('9f43ff024e7d4ac789fa4e9a4039a2ef','high_res_video',0,0,1,'8d04cf37798357a48dea25c6b7d6cbec',NULL,'028cf810221ef1f229429f6904e57d45');INSERT INTO "content_file" VALUES('686dde03b845454b919411ea8d65b356','video_thumbnail',1,1,3,'2a3196e7f1c55ad08cc922b4e6dc69c2',NULL,'2ca0bd0ea52c6fa5f30212cadef2d0ae');INSERT INTO "content_file" VALUES('6efa32a8bc8a4287a4b3b833de2af556','video_subtitle',1,0,4,'2a3196e7f1c55ad08cc922b4e6dc69c2','fr','713e94472243c6838ff96d420520e0f3');INSERT INTO "content_file" VALUES('8e49fa1dbb4d4092865decd75f964fe8','video_subtitle',1,0,4,'2a3196e7f1c55ad08cc922b4e6dc69c2','en','02f4de755ee4064332650d8892546c9e');INSERT INTO "content_file" VALUES('d674e7e637d842ab8ecb5b9c6c5910e9','high_res_video',0,0,1,'2a3196e7f1c55ad08cc922b4e6dc69c2',NULL,'1be4e9ef7aad2c90354a59027b4bce40');INSERT INTO "content_file" VALUES('3fcb3a8d893a47f09299c824524c138e','video_thumbnail',1,1,3,'901d5eb9d9e556fb897aea2add0a7f0c',NULL,'90ab2d126be4bd02e5ecb1132ee0f720');INSERT INTO "content_file" VALUES('00790eeaf9fe41eb9f44a758e725bafc','high_res_video',0,0,1,'901d5eb9d9e556fb897aea2add0a7f0c',NULL,'05cf2d16f880bf3ddf0bc51ce1a3bc3f');INSERT INTO "content_file" VALUES('70273ab3454f48e1af08598d47e1fe10','video_thumbnail',1,1,3,'e5ae6da3e6015e969b58472e69878343',NULL,'fae2bf5620c59629a79514f69535d211');INSERT INTO "content_file" VALUES('7f95e6d595e0404ca67b6c4476c5a38a','video_subtitle',1,0,4,'e5ae6da3e6015e969b58472e69878343','fr','c63161e0426b03fd2f9d226677281675');INSERT INTO "content_file" VALUES('a6e1c292cbda46c1891626f91832f56f','video_subtitle',1,0,4,'e5ae6da3e6015e969b58472e69878343','en','a3fd88354110709cd99ed895ae7386d8');INSERT INTO "content_file" VALUES('85a776abf80e4d5694a9dd047c2ccdf2','high_res_video',0,0,1,'e5ae6da3e6015e969b58472e69878343',NULL,'f09bac68c680e28a7827adcd0e42f119');INSERT INTO "content_file" VALUES('5c0d6c72580d4ad88fdb38d4a2a90d1d','video_thumbnail',1,1,3,'adf2f3c31e855091a138a742a8a922f5',NULL,'e789ddec9c4dce9d844daf5cfc9f7b34');INSERT INTO "content_file" VALUES('90f5002e53234d209a12b34d433d738c','video_subtitle',1,0,4,'adf2f3c31e855091a138a742a8a922f5','fr','a42c9c4f783f975ba04eb6caa2ac3dba');INSERT INTO "content_file" VALUES('3c31d5b64e7343aca5968d87942e762a','video_subtitle',1,0,4,'adf2f3c31e855091a138a742a8a922f5','en','46eaf9494aea81e6859a38697cef2e09');INSERT INTO "content_file" VALUES('964cf17b3153482ab1d36ac47878623a','high_res_video',0,0,1,'adf2f3c31e855091a138a742a8a922f5',NULL,'de75eb352b371d39413462795e7624bd');INSERT INTO "content_file" VALUES('18fa0701b91e45b283e341be9c398df1','video_thumbnail',1,1,3,'ef77b964fc31549790e2513c4c5f8a85',NULL,'53f006ae1568cf1cb5e792826dc93e87');INSERT INTO "content_file" VALUES('724b9ef34cad4359828b23ec5bc7ccdc','video_subtitle',1,0,4,'ef77b964fc31549790e2513c4c5f8a85','fr','048818576fad14850c9ce61cbff8f08b');INSERT INTO "content_file" VALUES('4736b2b4acac4392b897a3277b293e50','video_subtitle',1,0,4,'ef77b964fc31549790e2513c4c5f8a85','en','2893fb250ce7d65647df9f1e5cebaef9');INSERT INTO "content_file" VALUES('8af6df82d01d471383cf7b7687157e48','high_res_video',0,0,1,'ef77b964fc31549790e2513c4c5f8a85',NULL,'cff6daf23d0f5081be64fd91652790db');INSERT INTO "content_file" VALUES('63715296947c4b58a6006412258a922b','html5_thumbnail',1,1,2,'114ab24ec98e585dae3cd57559275394',NULL,'7e4f1a474c85adf267578ffe27c613e5');INSERT INTO "content_file" VALUES('d36b610300c54b0080643f0748333853','html5_zip',0,0,1,'114ab24ec98e585dae3cd57559275394',NULL,'22763decaf8d8911441d9ed95d5920aa');INSERT INTO "content_file" VALUES('2233b7aa8b8a47d5a83dc821acbcb9d5','html5_thumbnail',1,1,2,'9c7d1762c6b25bf98afbc27a5562a0e8',NULL,'73373c32519cba3c11173fee0bd05564');INSERT INTO "content_file" VALUES('b0d75660b0304c1abfba58c4ffb5906a','html5_zip',0,0,1,'9c7d1762c6b25bf98afbc27a5562a0e8',NULL,'f97eb00a45a99c5bdb815a2a21ccfd82');INSERT INTO "content_file" VALUES('756defaeaa594485bc9e0b4e6da24fc8','video_thumbnail',1,1,3,'bf5fa483b8b953f196751c2186e58485',NULL,'902b23bd568a5edd9ea910f3d962f12a');INSERT INTO "content_file" VALUES('fed9ab72045c41ddb686d549e3beef58','video_subtitle',1,0,4,'bf5fa483b8b953f196751c2186e58485','fr','faf5f83dbdfcef24c473ec7eb6dd54b6');INSERT INTO "content_file" VALUES('9260987f01644e1da131593b963e3a11','video_subtitle',1,0,4,'bf5fa483b8b953f196751c2186e58485','en','7c139c1fd9f6989ddf2afb29e7fe2b45');INSERT INTO "content_file" VALUES('724b0c706fd34e15ab7394e14f4a95c6','video_subtitle',1,0,4,'bf5fa483b8b953f196751c2186e58485','zh-CN','2a8adfb5cc73f89668db6168e54c2af2');INSERT INTO "content_file" VALUES('6a5f733b0e7d4436afadbc669b94121f','high_res_video',0,0,1,'bf5fa483b8b953f196751c2186e58485',NULL,'12061a5505d9aa1aee332e0867817e1b');INSERT INTO "content_file" VALUES('3d39b78faf6f49a3aeaac10e2de2b8ec','video_thumbnail',1,1,3,'ce034d1ba0c95a7894ed5b3704e32251',NULL,'692c77be17255fb7ac09d8e947953877');INSERT INTO "content_file" VALUES('114dc8b373734e1d9b08b847e89b2610','video_subtitle',1,0,4,'ce034d1ba0c95a7894ed5b3704e32251','fr','0bac46bbb94b6123e83cbc73981b7cc7');INSERT INTO "content_file" VALUES('35e99f0976bd4ddea6af056b9243842d','video_subtitle',1,0,4,'ce034d1ba0c95a7894ed5b3704e32251','en','97f701d6180c56a38bf6eb2ffbb41bea');INSERT INTO "content_file" VALUES('830a2fa50c70413b8b61d3116d63c591','video_subtitle',1,0,4,'ce034d1ba0c95a7894ed5b3704e32251','zh-CN','ffa6d4f6d91bf3669d4e0ead06f0e1d0');INSERT INTO "content_file" VALUES('0b9271101f77464da4db049b8be14cf5','high_res_video',0,0,1,'ce034d1ba0c95a7894ed5b3704e32251',NULL,'fc1ca148749b57fe5ea4e59a4dcf59e7');INSERT INTO "content_file" VALUES('71218da9413b48f59182d225f2bdfa58','video_thumbnail',1,1,3,'4d5fff91f0035fd7aa54f28779da1535',NULL,'aa3c99c3100fc18f1849ad3e9c580701');INSERT INTO "content_file" VALUES('ec138c2716654cd982c62e786430b843','video_subtitle',1,0,4,'4d5fff91f0035fd7aa54f28779da1535','fr','7d56764556823aaccb67f649e4fc8943');INSERT INTO "content_file" VALUES('e777b6309d4248309d7eaf15ab4e5896','video_subtitle',1,0,4,'4d5fff91f0035fd7aa54f28779da1535','en','30931349883e371db8b5bfbd60604136');INSERT INTO "content_file" VALUES('103aecb03a1d47798a30706a6ce24cda','high_res_video',0,0,1,'4d5fff91f0035fd7aa54f28779da1535',NULL,'dc665a4dd56d53541403cdf149c64e5c');INSERT INTO "content_file" VALUES('e98a15059e3442659120beac5bb7f180','video_thumbnail',1,1,3,'52e176a20b535104a9993de95d001c91',NULL,'7ce8192abadcc56cab061816403baf77');INSERT INTO "content_file" VALUES('6fc8364d25a24f55ada40bbf262b389a','video_subtitle',1,0,4,'52e176a20b535104a9993de95d001c91','fr','7e6eecce8634e7262da9fb02452a5d12');INSERT INTO "content_file" VALUES('a1a72c90ca39422991f5ffccd6924ba1','video_subtitle',1,0,4,'52e176a20b535104a9993de95d001c91','en','df017cf2c22a90ade576583898a6fcf2');INSERT INTO "content_file" VALUES('3a4e09fdc6af48d7b59e36f86ff3737d','high_res_video',0,0,1,'52e176a20b535104a9993de95d001c91',NULL,'2b670f18896fdfd76a43869841296b49');INSERT INTO "content_file" VALUES('07f807b195174ce5841fe52d7997c379','video_thumbnail',1,1,3,'ec9901684b055660bd069ee223a7acf1',NULL,'897cd278d2c8fb9a201846e188fce548');INSERT INTO "content_file" VALUES('2fa8ee9632e74673b520ef527b3a0e87','video_subtitle',1,0,4,'ec9901684b055660bd069ee223a7acf1','fr','6b27d3f9d82fd99f90b72b4a2b5f2adc');INSERT INTO "content_file" VALUES('72849ec50a824cc5b8474525c6db2e65','video_subtitle',1,0,4,'ec9901684b055660bd069ee223a7acf1','en','b97cec0c9564e35937bf0aa8f15c21d2');INSERT INTO "content_file" VALUES('e366ecfbb42e44b388137c368b334ff5','high_res_video',0,0,1,'ec9901684b055660bd069ee223a7acf1',NULL,'85856d6e24bb13ab9d5ace34112939f9');INSERT INTO "content_file" VALUES('248d5e8da9ba47a791058b4ec47960d7','video_thumbnail',1,1,3,'1e697b9aeb445990b950b70671508162',NULL,'6886ff67592775907a58296493c1667c');INSERT INTO "content_file" VALUES('156598d488cf44f192696747b3b4669e','video_subtitle',1,0,4,'1e697b9aeb445990b950b70671508162','fr','b2a47a5ebe4424b722c89b98f72fc1a7');INSERT INTO "content_file" VALUES('ec6003ff83ab40d4b9ab52e408764903','video_subtitle',1,0,4,'1e697b9aeb445990b950b70671508162','en','2d941884d7c54d38c2396c5ad1f8780f');INSERT INTO "content_file" VALUES('a5110d720abf4342ab6adc3b9863e2e5','high_res_video',0,0,1,'1e697b9aeb445990b950b70671508162',NULL,'c5e4d1471c787aed659ed3f23a4be220');INSERT INTO "content_file" VALUES('4024847e5fcd4603a1f1f6e53787de03','video_thumbnail',1,1,3,'6449e0720f7c5343b725fc652e88805d',NULL,'a0897b46c8795780790991e0c5259e01');INSERT INTO "content_file" VALUES('4f014f4063bb4cc484d4996ff6868412','video_subtitle',1,0,4,'6449e0720f7c5343b725fc652e88805d','fr','86a06e3b33185c338ac4d77e13c0dd48');INSERT INTO "content_file" VALUES('872c679a4e5148cd9e4038b439bdf474','video_subtitle',1,0,4,'6449e0720f7c5343b725fc652e88805d','en','b8d6d7fc1ab09b1b20508a4b62a6438e');INSERT INTO "content_file" VALUES('b51754af6c2a4a3a859f6b3f38f38c36','video_subtitle',1,0,4,'6449e0720f7c5343b725fc652e88805d','zh-CN','efd76a6793a897696f726acc78cb8d69');INSERT INTO "content_file" VALUES('23a37a52af1647738d0655171fd117b1','high_res_video',0,0,1,'6449e0720f7c5343b725fc652e88805d',NULL,'bf89e760715e2bc5c102a3824c16840d');INSERT INTO "content_file" VALUES('f9743c7907214c859250115cf7cc1cbc','video_thumbnail',1,1,3,'f6d5b003adbd532d99fba5a857ea4ccd',NULL,'8252c5fbe106c386c16336a8348f7cf5');INSERT INTO "content_file" VALUES('5282a1abe9614f3689f8dbd6144dcaf3','video_subtitle',1,0,4,'f6d5b003adbd532d99fba5a857ea4ccd','fr','01d079f3309f6fb0dbf4df6cb142d616');INSERT INTO "content_file" VALUES('fb93c25f98cd4b50ac3ecda9ce6191f8','video_subtitle',1,0,4,'f6d5b003adbd532d99fba5a857ea4ccd','en','f25feb2ef0a7cf949d6e6f23a97b4d77');INSERT INTO "content_file" VALUES('e6d8c698b0ae44629ad9466ac334c9e1','high_res_video',0,0,1,'f6d5b003adbd532d99fba5a857ea4ccd',NULL,'581cebd7676a154d569597ad90c3784e');INSERT INTO "content_file" VALUES('e0ddb80fe73c44daa8b66b24c9d398a1','video_thumbnail',1,1,3,'5d33e20820d75df3b3c2be3fb5dc87be',NULL,'cf92d3470b8b28d2fdf0d7c4591a5692');INSERT INTO "content_file" VALUES('b8b6b2f4fb424a2ea839d15d7af7f70a','video_subtitle',1,0,4,'5d33e20820d75df3b3c2be3fb5dc87be','fr','cbfcb0a53d2e5cfa1ca99e6e3ab65ea1');INSERT INTO "content_file" VALUES('8355fa384f704c3a98963dd97baab7d1','video_subtitle',1,0,4,'5d33e20820d75df3b3c2be3fb5dc87be','en','03840ffed7b0f229727c8fbabe7bd545');INSERT INTO "content_file" VALUES('055ef920e10747b98f87b00527615050','video_subtitle',1,0,4,'5d33e20820d75df3b3c2be3fb5dc87be','zh-CN','2aa0a170fe17800ac2afecd6a4615e8b');INSERT INTO "content_file" VALUES('91aeedb2afb34769a33df16707ed1e51','high_res_video',0,0,1,'5d33e20820d75df3b3c2be3fb5dc87be',NULL,'01acd2fc5819cbc1beb42055cb456fc4');INSERT INTO "content_file" VALUES('657282b6b2e846cfbeaef8302a22360d','video_thumbnail',1,1,3,'59f3a0d21e5d56d4816f3de1d310087c',NULL,'47a8ce05c62f21146206dc4e247b26e0');INSERT INTO "content_file" VALUES('749fb2367f604b91be24487b7356963b','video_subtitle',1,0,4,'59f3a0d21e5d56d4816f3de1d310087c','fr','94229ebedf54e94c3ff25484f13c42d8');INSERT INTO "content_file" VALUES('255894e90a964e7da58ceecabd9ab747','video_subtitle',1,0,4,'59f3a0d21e5d56d4816f3de1d310087c','en','27c4528c33b8cfa0e339d69383b6c2c5');INSERT INTO "content_file" VALUES('2a255646d44043b998c058743fd64c29','high_res_video',0,0,1,'59f3a0d21e5d56d4816f3de1d310087c',NULL,'8c78ce246941ae19e756f0839740f2ce');INSERT INTO "content_file" VALUES('c6eff3e392514dfaa8282339314b1eeb','video_thumbnail',1,1,3,'070f6dee721757808b0d4497d22e2402',NULL,'c0d6438499c381d29102515d87ec9a68');INSERT INTO "content_file" VALUES('6043710911654bb4af5e2edf46f9e687','video_subtitle',1,0,4,'070f6dee721757808b0d4497d22e2402','en','85def56b35922ac3ba0c181886ae8b8a');INSERT INTO "content_file" VALUES('928942cbe63643c19fb5ed382e266a51','high_res_video',0,0,1,'070f6dee721757808b0d4497d22e2402',NULL,'b455ccfc5a2306a19c96733261c359f1');INSERT INTO "content_file" VALUES('a48423032f2140e2adf819b37a0f1e51','video_thumbnail',1,1,3,'4de7693dddcb5c7a9fe91cd27b9633ce',NULL,'11a209533ed6d001e01a7492180e3d44');INSERT INTO "content_file" VALUES('fa29a013089f45e49b4e8005ef752697','video_subtitle',1,0,4,'4de7693dddcb5c7a9fe91cd27b9633ce','fr','6ba466a60438d25873fb0458392d9322');INSERT INTO "content_file" VALUES('2255be99cc764d6fb9e1dccbd99a9b2a','video_subtitle',1,0,4,'4de7693dddcb5c7a9fe91cd27b9633ce','en','9e794e3b6d1545b347b164e1db2442bc');INSERT INTO "content_file" VALUES('3890f81800164b3380db3b71b9a442f2','high_res_video',0,0,1,'4de7693dddcb5c7a9fe91cd27b9633ce',NULL,'d26e0f3dacdef621a1e24739158c1049');INSERT INTO "content_file" VALUES('489867eeb5074e1e82acb47aaf7a8069','video_thumbnail',1,1,3,'84d5365e3d0052f6b6a2b073ad5c51c0',NULL,'678b51f5e2ebe874d4952ca5c1e6d9bc');INSERT INTO "content_file" VALUES('a182ff8d52bd49759f798974a307a1d5','video_subtitle',1,0,4,'84d5365e3d0052f6b6a2b073ad5c51c0','zh-CN','c4de7835c32cd4ddd79250786be6f252');INSERT INTO "content_file" VALUES('aa1810151519415da7c0913ee03d8c8b','high_res_video',0,0,1,'84d5365e3d0052f6b6a2b073ad5c51c0',NULL,'418c58e3ff5e25a86ca36b89b1c75d44');INSERT INTO "content_file" VALUES('c8d517a2886d43a48de94a5fec48cc21','video_thumbnail',1,1,3,'2a3faf858a245a409721f6f77b829eb4',NULL,'fca9f7ce38d8f10fcc4ece7a36a113f6');INSERT INTO "content_file" VALUES('807e2b6e3184430cab85c4481c500852','video_subtitle',1,0,4,'2a3faf858a245a409721f6f77b829eb4','fr','356e7bbfaccc0c3b7acd9a1feee24568');INSERT INTO "content_file" VALUES('1b3a8635a7ab423fb0ffe2af910a49f8','video_subtitle',1,0,4,'2a3faf858a245a409721f6f77b829eb4','en','c3f0a42e8765663892c6b4e7a2944be7');INSERT INTO "content_file" VALUES('23cd4371397a4a2f97cb679028934db3','video_subtitle',1,0,4,'2a3faf858a245a409721f6f77b829eb4','zh-CN','4de68aac22f5f60a711cf054fa9488c8');INSERT INTO "content_file" VALUES('766c8788da0443d9ac568e134cd1b340','high_res_video',0,0,1,'2a3faf858a245a409721f6f77b829eb4',NULL,'7d259a2c20e59ad447916288192a496f');INSERT INTO "content_file" VALUES('68d8d045b51d458baa932dbf64970ef8','video_thumbnail',1,1,3,'a43dfa2aeccf5965a5d63d5d7f01d8d7',NULL,'b3730e867cd85184c9a3cbb9c236e367');INSERT INTO "content_file" VALUES('babd87e2d2924d49a40c8a18f7471ebd','video_subtitle',1,0,4,'a43dfa2aeccf5965a5d63d5d7f01d8d7','fr','9ef7100892776df798dc6d324e015f77');INSERT INTO "content_file" VALUES('b3abdd9762c74ca486404dc81db8c4e5','video_subtitle',1,0,4,'a43dfa2aeccf5965a5d63d5d7f01d8d7','en','7ebf1c66665ac4a355556e2497d3291d');INSERT INTO "content_file" VALUES('5163e9dfa41a495b8be1ba9653792faa','video_subtitle',1,0,4,'a43dfa2aeccf5965a5d63d5d7f01d8d7','zh-CN','20f8bfa0502ddc2d5ae30a90a937476f');INSERT INTO "content_file" VALUES('15879df460244e608d93d2ef59764d79','high_res_video',0,0,1,'a43dfa2aeccf5965a5d63d5d7f01d8d7',NULL,'c30cac70bcc094471e372cd2995eb0dc');INSERT INTO "content_file" VALUES('d65a01ecb45a458781838d4fdd5e9431','video_thumbnail',1,1,3,'6b5d07c826155a9cb973862b9ba94668',NULL,'537dd71616565255470eda6d02afa2ef');INSERT INTO "content_file" VALUES('804f71e6a570479f848c45fa0d1e92bd','video_subtitle',1,0,4,'6b5d07c826155a9cb973862b9ba94668','fr','906074296685813419b4718ef6a7a986');INSERT INTO "content_file" VALUES('0a132f42198d401396789908c25b70d6','video_subtitle',1,0,4,'6b5d07c826155a9cb973862b9ba94668','en','4fd9d6970486d0cbabe23d2bf93916c4');INSERT INTO "content_file" VALUES('f676bd771e9e430e90f5c9236832d035','video_subtitle',1,0,4,'6b5d07c826155a9cb973862b9ba94668','zh-CN','045408e2b2372556c5fea9139a6edae3');INSERT INTO "content_file" VALUES('a132a81fa84b4e748bc444350fbc169d','high_res_video',0,0,1,'6b5d07c826155a9cb973862b9ba94668',NULL,'0e11aa3f9013a5925d72a6a73253a4b3');INSERT INTO "content_file" VALUES('3c1448f5d8004a8ebee246020c3c6ef8','video_thumbnail',1,1,3,'6bb8c4eb81ac575cbb0b0cae6b0f2258',NULL,'13b51a18971c90fc9c3dcb70fbf8514a');INSERT INTO "content_file" VALUES('6230ed9875954c2b8ec39e15341b9bb1','video_subtitle',1,0,4,'6bb8c4eb81ac575cbb0b0cae6b0f2258','fr','92a52c283a7866af2c1e528bf587fd40');INSERT INTO "content_file" VALUES('288a5669020e4774806f1f2eb9c1df32','video_subtitle',1,0,4,'6bb8c4eb81ac575cbb0b0cae6b0f2258','en','38c0490ce7b832b0d58951c290f2896a');INSERT INTO "content_file" VALUES('a2c606e1c99241f7b351260adc6931bb','high_res_video',0,0,1,'6bb8c4eb81ac575cbb0b0cae6b0f2258',NULL,'950fe6c500670a275e744ba52d315cdf');INSERT INTO "content_file" VALUES('93895fd2cab049b185f77591eafdac33','video_thumbnail',1,1,3,'aaf9b1d1539e51e59c2685b27d1d7ed4',NULL,'444bd4a982f6cdbdb1b6acf7926032f6');INSERT INTO "content_file" VALUES('8e647e57809e40fbba073ad51de0d4a2','video_subtitle',1,0,4,'aaf9b1d1539e51e59c2685b27d1d7ed4','fr','04e15bca9832e73741cec3a80e8b2aa6');INSERT INTO "content_file" VALUES('a4f6976843274893985f816a11ec3375','video_subtitle',1,0,4,'aaf9b1d1539e51e59c2685b27d1d7ed4','en','aac8c87933a2657322c2ed42fad53854');INSERT INTO "content_file" VALUES('3dd839d92eb04b56bd73c6498e9ed4ea','high_res_video',0,0,1,'aaf9b1d1539e51e59c2685b27d1d7ed4',NULL,'96164cb385d4af2bffe7a7ebd8a4d9d4');INSERT INTO "content_file" VALUES('1340ba8b2da54438b0a08e04e9bbbb26','video_thumbnail',1,1,3,'fc9672e824f457e99d72e0e55954e64e',NULL,'2791e808ad8380492482c6960a7aad60');INSERT INTO "content_file" VALUES('896485324b4a410eba0ed790813aa70b','video_subtitle',1,0,4,'fc9672e824f457e99d72e0e55954e64e','fr','b14733b08796c9078fee2620b8ff15b5');INSERT INTO "content_file" VALUES('0726607863914cc3ae668339dd3bd701','video_subtitle',1,0,4,'fc9672e824f457e99d72e0e55954e64e','en','4e986f9326b24a4fb4fc301260a8b78c');INSERT INTO "content_file" VALUES('67091cd87dfd414584c2121fb24b3032','high_res_video',0,0,1,'fc9672e824f457e99d72e0e55954e64e',NULL,'b14d754627ba22d68219f1c1e5f6ca17');INSERT INTO "content_file" VALUES('600baaa433ea417c970b5b48f800219a','video_thumbnail',1,1,3,'587ef342615758f3a57d0764aba5919f',NULL,'3be41e7a261c153ca99adb62c9b1913c');INSERT INTO "content_file" VALUES('a104f57d8b734586a5e6735e9f253479','video_subtitle',1,0,4,'587ef342615758f3a57d0764aba5919f','fr','6915919f41a4a0a7143611d3a5e15a9b');INSERT INTO "content_file" VALUES('504b87b5df6f45c383be5f195afebc5b','video_subtitle',1,0,4,'587ef342615758f3a57d0764aba5919f','en','42c822015ae3f349804565f166b03b6d');INSERT INTO "content_file" VALUES('53adfe2c0d4c467f8f4cb5e3ca8fc4b2','high_res_video',0,0,1,'587ef342615758f3a57d0764aba5919f',NULL,'15649f2fd84c1fe3241c10c84885d931');INSERT INTO "content_file" VALUES('72a82416821a417ea23bb41269aafe83','video_thumbnail',1,1,3,'868f3c24dde4598eaeb015ae731092c8',NULL,'9d814607f2ccbfa8d76b6ae330cac1b5');INSERT INTO "content_file" VALUES('0ecae638dfd5486cb4de065bc647871b','video_subtitle',1,0,4,'868f3c24dde4598eaeb015ae731092c8','fr','a5d0b5ace41db4db660cfea647d14e6f');INSERT INTO "content_file" VALUES('1078284c3ce94b4f89e263bac0cc23d5','video_subtitle',1,0,4,'868f3c24dde4598eaeb015ae731092c8','en','e3673fd7e65204aa9fff3313f805a34a');INSERT INTO "content_file" VALUES('417afa9f80b246ffaa5abbe913915c3d','high_res_video',0,0,1,'868f3c24dde4598eaeb015ae731092c8',NULL,'c903dfc9dff8c5b28aea9051f58f71ad');INSERT INTO "content_file" VALUES('cc9fa06cb24b403a98a83c0d262449e5','video_thumbnail',1,1,3,'5c489d0dc22c54da933a53b57ec555d6',NULL,'01af55b143edbe836303e2ff2c58892c');INSERT INTO "content_file" VALUES('df54e3c928f946628cfee5dc0fe45988','video_subtitle',1,0,4,'5c489d0dc22c54da933a53b57ec555d6','fr','e594becc9119f653f22361c28bdd43f7');INSERT INTO "content_file" VALUES('ce6f31824d6c49a1806d9d572781d50c','video_subtitle',1,0,4,'5c489d0dc22c54da933a53b57ec555d6','en','1dc74ac0b17982990e4c0ae57610183d');INSERT INTO "content_file" VALUES('3cb60becc5d64072ae0eeb8dbed9823c','high_res_video',0,0,1,'5c489d0dc22c54da933a53b57ec555d6',NULL,'b42bcef177ce68fbde987e2992be4b2c');INSERT INTO "content_file" VALUES('fc7a64ef30f44c019e72f65f33d34b5c','video_thumbnail',1,1,3,'53e7f1077d1e594ba774251f5bf1ffa0',NULL,'9f391c5d60874aae9b34b1d62dbb769f');INSERT INTO "content_file" VALUES('0ef91608586845bfb792289509144410','video_subtitle',1,0,4,'53e7f1077d1e594ba774251f5bf1ffa0','fr','0b18278b1669f77cce59f78c5e3f733b');INSERT INTO "content_file" VALUES('f4b62b7a03ab4182a431ab7b9d3875b5','video_subtitle',1,0,4,'53e7f1077d1e594ba774251f5bf1ffa0','en','527e245988f22a8d782b6236e93943f5');INSERT INTO "content_file" VALUES('08c945315de64116b95f780594cdaa8c','high_res_video',0,0,1,'53e7f1077d1e594ba774251f5bf1ffa0',NULL,'bf128df653796d69c5eaf5546d0bb39b');INSERT INTO "content_file" VALUES('61f84e10c5554f709ec3ff7e388b9b0d','video_thumbnail',1,1,3,'80f7566ddf205e39808dde8f33a94a76',NULL,'72025b3ca27ef87b243f106a25869c3f');INSERT INTO "content_file" VALUES('25033bc0f9904a09ab0ca733c1a9041c','video_subtitle',1,0,4,'80f7566ddf205e39808dde8f33a94a76','fr','6ef2c6aa37579310dbe3fbdfc5511b1d');INSERT INTO "content_file" VALUES('3e56b2fc060446dbbeca557cbce47ca5','video_subtitle',1,0,4,'80f7566ddf205e39808dde8f33a94a76','en','0ec5da31b5387c7594ed373ece1ea74c');INSERT INTO "content_file" VALUES('35b89c5098054d188d1c31a02ebde1a1','high_res_video',0,0,1,'80f7566ddf205e39808dde8f33a94a76',NULL,'11a4c955fc800049d7755489da9ce7f5');INSERT INTO "content_file" VALUES('eaee04e0809549d69a1d7aefd26e807b','video_thumbnail',1,1,3,'698a9d8e8eef589c8ae258cf3be146f4',NULL,'e539dfd0f7059b1e0811358ff32e5e04');INSERT INTO "content_file" VALUES('d3e9afe2206c461f904d327aa86e82ca','video_subtitle',1,0,4,'698a9d8e8eef589c8ae258cf3be146f4','hi','bdab907169a4c8cbba0cc719bc489187');INSERT INTO "content_file" VALUES('d436e88382334d6eac8a5632465881bd','video_subtitle',1,0,4,'698a9d8e8eef589c8ae258cf3be146f4','fr','aa45dca4559c62fffd2d5e894db227fa');INSERT INTO "content_file" VALUES('189e1155f5164c6c9677e7919053ed5d','video_subtitle',1,0,4,'698a9d8e8eef589c8ae258cf3be146f4','en','5a6361ab623f0639af241579c6219518');INSERT INTO "content_file" VALUES('94c07b213d6b4bf99308f4e2e219a455','high_res_video',0,0,1,'698a9d8e8eef589c8ae258cf3be146f4',NULL,'c7f0a038e86a11946922feec05df9d68');INSERT INTO "content_file" VALUES('30b0d32974774ff6bfc44fdc342e46d7','video_thumbnail',1,1,3,'822fbfafcc5a5a1d8ad8bc2f823c75d6',NULL,'9824ece203f6eecdf484808ce1b5f0af');INSERT INTO "content_file" VALUES('9a1860c4393a425689a985ddc133146f','video_subtitle',1,0,4,'822fbfafcc5a5a1d8ad8bc2f823c75d6','fr','3009b8411c4d69524139edee76e39ac5');INSERT INTO "content_file" VALUES('2dcaef4853f641efa49ad26b983493af','video_subtitle',1,0,4,'822fbfafcc5a5a1d8ad8bc2f823c75d6','en','6dc1ef470535d2db767a212f313e7383');INSERT INTO "content_file" VALUES('43340220e7d24ba2b35e98ea68a103f0','high_res_video',0,0,1,'822fbfafcc5a5a1d8ad8bc2f823c75d6',NULL,'7cdb426f051677c893cde33630406822');INSERT INTO "content_file" VALUES('638dc85fc51f45e4b509512758b4dc5b','html5_thumbnail',1,1,2,'09298be9288d50949d9cf3deb20b1f12',NULL,'a6f7fabd5a0e6b3f5c401ad3cd85ba38');INSERT INTO "content_file" VALUES('2db64082b92343ddb6ea679a55f2157b','html5_zip',0,0,1,'09298be9288d50949d9cf3deb20b1f12',NULL,'a1e9926d43f43d0adcd16e0b6a58298a');INSERT INTO "content_file" VALUES('33b435bccb024a9f84211635a9e91284','video_thumbnail',1,1,3,'5e43d269693d5c69a4c06029067df8ce',NULL,'7b38117db02542649056a3d3c8631808');INSERT INTO "content_file" VALUES('bdbf748093324909a50bba6e03636eb2','video_subtitle',1,0,4,'5e43d269693d5c69a4c06029067df8ce','fr','517139b89c32a7c2ccea6203de339bcb');INSERT INTO "content_file" VALUES('c361d860e6b14a0280a92be8b4f8c343','video_subtitle',1,0,4,'5e43d269693d5c69a4c06029067df8ce','en','c28c6e0deffa77a71126dc69ff76c547');INSERT INTO "content_file" VALUES('2891b22cb3684c7d8f984315edb0ac32','high_res_video',0,0,1,'5e43d269693d5c69a4c06029067df8ce',NULL,'236a2ec2e692e45c6c9828e750a59281');INSERT INTO "content_file" VALUES('30fc128039fd4e84aded1f02579b7138','video_thumbnail',1,1,3,'c5a44629cdc45c13981f8b18679adc46',NULL,'800035c61e58bffe3d73630630de468f');INSERT INTO "content_file" VALUES('60a4e146463343c7ac8bd397bc9631de','video_subtitle',1,0,4,'c5a44629cdc45c13981f8b18679adc46','fr','80f062b4d47f0211518a70f309a28a07');INSERT INTO "content_file" VALUES('bdca47458f2b4b728646143b28c2baf1','video_subtitle',1,0,4,'c5a44629cdc45c13981f8b18679adc46','en','2c04f921962e6e0985a9d68c43483e1b');INSERT INTO "content_file" VALUES('4a5b12fe94f84e83a9ab4a296e22c25c','high_res_video',0,0,1,'c5a44629cdc45c13981f8b18679adc46',NULL,'d425f1f0e6a04fdd2d0bbc66b990a1c7');INSERT INTO "content_file" VALUES('a2901e9a274449e683c474ed732ee3a0','video_thumbnail',1,1,3,'e702c2feeed85b9ab8597152ea8f2fa6',NULL,'999869c3d5d8a05502ad848a1ff5899e');INSERT INTO "content_file" VALUES('11e9ad78d2384ba1b0eebb9980912046','video_subtitle',1,0,4,'e702c2feeed85b9ab8597152ea8f2fa6','hi','6239a38083ab0e178db8062cb6e78351');INSERT INTO "content_file" VALUES('d129735145074c9db25ba7f0ba4a65ba','video_subtitle',1,0,4,'e702c2feeed85b9ab8597152ea8f2fa6','fr','cfadce3655f3ff7b5181680721de90a9');INSERT INTO "content_file" VALUES('58266e6a238b46bd8e4870147ace0999','video_subtitle',1,0,4,'e702c2feeed85b9ab8597152ea8f2fa6','en','ec34a71cc78b09c68baca04d53fb0229');INSERT INTO "content_file" VALUES('7877146963f145ad9423e6db0e85c999','high_res_video',0,0,1,'e702c2feeed85b9ab8597152ea8f2fa6',NULL,'3d0e48105552518339aba84efba89606');INSERT INTO "content_file" VALUES('2c04d711ff3d4e029143d4933d63a067','video_thumbnail',1,1,3,'d158e1faa2875d4c8ab59d40a20993c1',NULL,'3e65753e260341e382c9b6bd60e7221e');INSERT INTO "content_file" VALUES('886d81a9b59647209f682534587e30b4','video_subtitle',1,0,4,'d158e1faa2875d4c8ab59d40a20993c1','fr','04a1371405aea68b25c8fe89a5359fd1');INSERT INTO "content_file" VALUES('962fb80ae1e949509d43762f1f5eb167','video_subtitle',1,0,4,'d158e1faa2875d4c8ab59d40a20993c1','en','0e2421f99b52bcb73fe46f9bd2021e60');INSERT INTO "content_file" VALUES('12897528277d405fa22981c79d44e8f2','high_res_video',0,0,1,'d158e1faa2875d4c8ab59d40a20993c1',NULL,'ab38194a7cd07ed6063f4a2cbadfca3f');INSERT INTO "content_file" VALUES('418ed41708c6412280ac838a47dfe1f8','video_thumbnail',1,1,3,'abdc8821c75c5e3c98402ed5542ef611',NULL,'2c602231db2747113262cacc9a648614');INSERT INTO "content_file" VALUES('b4208f1b58154157bab048abfb03cdff','video_subtitle',1,0,4,'abdc8821c75c5e3c98402ed5542ef611','fr','427e2082c12ab781a38df088a08b1d01');INSERT INTO "content_file" VALUES('1cebc23ed9834d58a5f72abe3b9bbadd','video_subtitle',1,0,4,'abdc8821c75c5e3c98402ed5542ef611','en','ab55ef994cf8b2f3bfdac2e500c0a4cf');INSERT INTO "content_file" VALUES('2923659150764a3eb4aa7c2e0ec4e4bb','high_res_video',0,0,1,'abdc8821c75c5e3c98402ed5542ef611',NULL,'5a26f594f8ff68e67028b0799d6e2fc5');INSERT INTO "content_file" VALUES('61cf65ae25e94b0b9b5f1c44669fe5fa','video_thumbnail',1,1,3,'88b43798fd4b57ee9d2e1727d78f5e9a',NULL,'5e8f1e8ad1ae0bda6f1d90e0c2c0de86');INSERT INTO "content_file" VALUES('921f9f71554f43998a68da05f4793e71','video_subtitle',1,0,4,'88b43798fd4b57ee9d2e1727d78f5e9a','fr','51cbe1abfd056619d633f82253da8766');INSERT INTO "content_file" VALUES('1ff43aeb55fe4739bddae84a6b0e967a','video_subtitle',1,0,4,'88b43798fd4b57ee9d2e1727d78f5e9a','en','7cc395879e73b49e712b8739ca426070');INSERT INTO "content_file" VALUES('c2efd71954c74c509ce674ae35acdf54','high_res_video',0,0,1,'88b43798fd4b57ee9d2e1727d78f5e9a',NULL,'7aad98e0afdc86f820fcc63fb822006e');INSERT INTO "content_file" VALUES('456a08d392f342b39615f5a9795f7e48','video_thumbnail',1,1,3,'b5b99c81582758fb9179749848795440',NULL,'fda66ee959e1436686cadf7cbb3fe096');INSERT INTO "content_file" VALUES('72649626854f485088fd6fefc6e55ceb','video_subtitle',1,0,4,'b5b99c81582758fb9179749848795440','fr','48e9450e29cb245d86137f39b0dcbd0f');INSERT INTO "content_file" VALUES('8621c7e992f54591a934154b2eba8a64','video_subtitle',1,0,4,'b5b99c81582758fb9179749848795440','en','4305285b90c9274cf3b230b7949663de');INSERT INTO "content_file" VALUES('cb1d88c909fd4a28ae56e3c19befa2ca','high_res_video',0,0,1,'b5b99c81582758fb9179749848795440',NULL,'5f7db280ba8d327f962268ff2c4d2734');INSERT INTO "content_file" VALUES('1f7d71811b974045afe7691f982d3ec7','video_thumbnail',1,1,3,'05e7c2f1a6ae56e4b0101c18933f5f4a',NULL,'8891a884b9a7d544a782e4215a0fdd79');INSERT INTO "content_file" VALUES('c96f49ba57664033ab6c8ab9a31dfdd9','video_subtitle',1,0,4,'05e7c2f1a6ae56e4b0101c18933f5f4a','fr','7f1165ef59e74ce854018114a6cf695f');INSERT INTO "content_file" VALUES('1fb711a5e3e54268bdd72378d4e0919c','video_subtitle',1,0,4,'05e7c2f1a6ae56e4b0101c18933f5f4a','en','18389392fce2c6d0b84250e9a0ce12d3');INSERT INTO "content_file" VALUES('1fc32a4d421b47fb824ba1d1e590595e','high_res_video',0,0,1,'05e7c2f1a6ae56e4b0101c18933f5f4a',NULL,'195aa142c9aee5ec7c46c870602f8568');INSERT INTO "content_file" VALUES('d8658e024470499c8dfd3aa9205f43d0','video_thumbnail',1,1,3,'a4da79d2862351de9b6dfc6e6bacd2b8',NULL,'4eafc1e5b179cc9748474e1999475804');INSERT INTO "content_file" VALUES('c33c0e3ef42b4745942c6feaa364dc5b','video_subtitle',1,0,4,'a4da79d2862351de9b6dfc6e6bacd2b8','fr','6790ac43dd8146fc122c24699ffe3207');INSERT INTO "content_file" VALUES('d16850d17aa9455b8f22ac8dd3f0de24','video_subtitle',1,0,4,'a4da79d2862351de9b6dfc6e6bacd2b8','en','f0066bb0c64f97f805a43426db62de07');INSERT INTO "content_file" VALUES('355f1d55c0e3472198e812a90c8039ce','high_res_video',0,0,1,'a4da79d2862351de9b6dfc6e6bacd2b8',NULL,'fd0d16209734ee97cd3b307ba448cb3a');INSERT INTO "content_file" VALUES('65709ea312734cfeaae6cc3db73b1b06','video_thumbnail',1,1,3,'d443731e5e9f5074ad1f73d89ef71f8a',NULL,'5b5b8cc404c9a27b5b7c8025aa475424');INSERT INTO "content_file" VALUES('f6a64b6d625746b581b3e62b2769bc6d','video_subtitle',1,0,4,'d443731e5e9f5074ad1f73d89ef71f8a','fr','f7c5621606d3d49d1f39890ecca64e96');INSERT INTO "content_file" VALUES('a62f739e712142978457642b9ff1e345','video_subtitle',1,0,4,'d443731e5e9f5074ad1f73d89ef71f8a','en','08e16093a3b13832b22626121ebf89d5');INSERT INTO "content_file" VALUES('d3ed390137044f5580ce95ce7998264c','high_res_video',0,0,1,'d443731e5e9f5074ad1f73d89ef71f8a',NULL,'eec46d8eabcde38de6b777e27b120275');INSERT INTO "content_file" VALUES('978ac34b5ec14efea9765b8f31d13300','video_thumbnail',1,1,3,'9bd5b6e227b05432968e1ce55d2525f9',NULL,'9dce317b1a432a90c39def8ad05fb25d');INSERT INTO "content_file" VALUES('10f911a2ac7e4316afe3fa9f8fd845b7','video_subtitle',1,0,4,'9bd5b6e227b05432968e1ce55d2525f9','fr','122f9ae5b4a1c8bd68cbb18dcef2c35a');INSERT INTO "content_file" VALUES('1ecc8134578842fa99a70c0c49125ba5','video_subtitle',1,0,4,'9bd5b6e227b05432968e1ce55d2525f9','en','c3b13764acf996ed1370b2b58804899a');INSERT INTO "content_file" VALUES('7ce7d555ab6148058525057b15f13432','high_res_video',0,0,1,'9bd5b6e227b05432968e1ce55d2525f9',NULL,'1a15ab77316deefe65a31bd369a46c79');INSERT INTO "content_file" VALUES('69dcf624db394c968a229e693278ed95','video_thumbnail',1,1,3,'01dba91a77f751d8a1524de9c5d6838f',NULL,'4176b70db593c216250434567f1df8ae');INSERT INTO "content_file" VALUES('d48b2be920ab48e2bdd64885c5a6a9e8','video_subtitle',1,0,4,'01dba91a77f751d8a1524de9c5d6838f','fr','9e194bac33a5bf2c42683c430a44d92e');INSERT INTO "content_file" VALUES('ccd8395d38754ede91faed464c92aaf3','video_subtitle',1,0,4,'01dba91a77f751d8a1524de9c5d6838f','en','39cff265a962aa6da37141786f959e03');INSERT INTO "content_file" VALUES('34f4eb472ca341a68bac941544e2ffe1','high_res_video',0,0,1,'01dba91a77f751d8a1524de9c5d6838f',NULL,'8689dc9cbc2996371942328675f9f5e4');INSERT INTO "content_file" VALUES('52754e5fa80b425b911bc336d49f3e86','video_thumbnail',1,1,3,'9c484f9d16bc5e71a2fa02695b238307',NULL,'e128efabd2eac966271e0f953a1b1cc2');INSERT INTO "content_file" VALUES('9257b5e0d0eb4dd89553962c1f283602','video_subtitle',1,0,4,'9c484f9d16bc5e71a2fa02695b238307','fr','7c112724c6eab15c63d97478e52f86a7');INSERT INTO "content_file" VALUES('be2e116db98a4a5c99629bb20985451b','video_subtitle',1,0,4,'9c484f9d16bc5e71a2fa02695b238307','en','bdbdd4938584cfe7e1e5d3489020e2da');INSERT INTO "content_file" VALUES('9865b179879b46019284b17ceb984720','high_res_video',0,0,1,'9c484f9d16bc5e71a2fa02695b238307',NULL,'60042f40d7a1459186913de7d5a5acf9');INSERT INTO "content_file" VALUES('38fbd32a21db40d0974dce97af227565','video_thumbnail',1,1,3,'0d57172b3cc4520c95f1cd460ac72914',NULL,'4958fcdd87f25821a5e010cd1d006654');INSERT INTO "content_file" VALUES('523b5090317d4b5cb94e586e6208ab01','video_subtitle',1,0,4,'0d57172b3cc4520c95f1cd460ac72914','fr','b7dc9346011da8831eab6d195c756b1c');INSERT INTO "content_file" VALUES('097c16eb203947b8a08edb46a62d5d19','video_subtitle',1,0,4,'0d57172b3cc4520c95f1cd460ac72914','en','d7354b6cd850e85d20c04c4a217b91df');INSERT INTO "content_file" VALUES('c01649b2cfc94dbfa0f680779499346b','high_res_video',0,0,1,'0d57172b3cc4520c95f1cd460ac72914',NULL,'5c897de806ee230bd13b2477484b8992');INSERT INTO "content_file" VALUES('be3df5be42f94f96a1f56c3714dfd8ed','video_thumbnail',1,1,3,'a7f2ef1a7fec5c27a97ede2f2e9cc8a4',NULL,'b4fff8bd4817be663cf3112e2dd731d0');INSERT INTO "content_file" VALUES('66e6aaea56584c11b206686c27e22ad8','video_subtitle',1,0,4,'a7f2ef1a7fec5c27a97ede2f2e9cc8a4','fr','de1b85ac0ca8ea6fe7bbd7f3d7136c5c');INSERT INTO "content_file" VALUES('9594b6545bb344d99f53fb0ff2f6df14','video_subtitle',1,0,4,'a7f2ef1a7fec5c27a97ede2f2e9cc8a4','en','14fb5b08e956a42b1d6726ea4f4b2110');INSERT INTO "content_file" VALUES('0089f4c408054c398d224532321da19f','high_res_video',0,0,1,'a7f2ef1a7fec5c27a97ede2f2e9cc8a4',NULL,'9c015a68b379668b79120081e34a3a32');INSERT INTO "content_file" VALUES('3119fe7b834f429391258b95738296d0','video_thumbnail',1,1,3,'e2401a5b848158fa9b605c4a68094690',NULL,'454a020af11b5f26b46c637981c973ab');INSERT INTO "content_file" VALUES('f4151864849041a2854601887043f6d5','video_subtitle',1,0,4,'e2401a5b848158fa9b605c4a68094690','fr','2ea2bad7104d2632a96c740489575182');INSERT INTO "content_file" VALUES('8767e9d1788d408d99bdee7f4b3a6b46','video_subtitle',1,0,4,'e2401a5b848158fa9b605c4a68094690','en','309f95a05bb914a5625ee421c59180a9');INSERT INTO "content_file" VALUES('172b5d4912bb460cb39d984368e12759','high_res_video',0,0,1,'e2401a5b848158fa9b605c4a68094690',NULL,'fa780507102dbcd0888ec3f428b44347');INSERT INTO "content_file" VALUES('e1b42d30deb94f2484272a28e223b048','video_thumbnail',1,1,3,'db5093935e4e53b79ebc88437b5c3230',NULL,'d1dc8c45ee9b23e9038740277dbaf44d');INSERT INTO "content_file" VALUES('d2dab181f6ae40c98d038c6aee8d0861','video_subtitle',1,0,4,'db5093935e4e53b79ebc88437b5c3230','fr','7103f8d36da6b6069939482968e1291a');INSERT INTO "content_file" VALUES('1e4e037c0c5d453e9aac1e240a7f7254','video_subtitle',1,0,4,'db5093935e4e53b79ebc88437b5c3230','en','6653846e58639503ee9283adeea8bac1');INSERT INTO "content_file" VALUES('7d75f377079242b1a77e516027a9ca1d','high_res_video',0,0,1,'db5093935e4e53b79ebc88437b5c3230',NULL,'3cbeb401da2885c716c35c3fb02649e3');INSERT INTO "content_file" VALUES('fa134f2b0cb440299482560d1ce53b22','video_thumbnail',1,1,3,'1153b49a469d5c0ebb7ef3fd9e258314',NULL,'f24c78832637f22a245ebdd02a027d48');INSERT INTO "content_file" VALUES('40017cf810f94b26b9be92ecbd3b037e','video_subtitle',1,0,4,'1153b49a469d5c0ebb7ef3fd9e258314','fr','efcc19cce65b33a6fceac0f583d1d1c9');INSERT INTO "content_file" VALUES('d5c361a4fc3a4c52b20b1cf41fff3803','video_subtitle',1,0,4,'1153b49a469d5c0ebb7ef3fd9e258314','en','0956700c264543a11156be04d5a8c4a7');INSERT INTO "content_file" VALUES('9b8380528f934a298a3f1f0ee640508d','high_res_video',0,0,1,'1153b49a469d5c0ebb7ef3fd9e258314',NULL,'53f601112e6976cc267a81752edf7e56');INSERT INTO "content_file" VALUES('6234ddc5356c4575a777622bd81e4592','video_thumbnail',1,1,3,'7e8836f5c3bb5ad5a056f9e5563f250f',NULL,'045379ef98465974a76910af60deb7b6');INSERT INTO "content_file" VALUES('0b55e1a069ab4dbc9ac4264d4ea1e9a8','video_subtitle',1,0,4,'7e8836f5c3bb5ad5a056f9e5563f250f','fr','5c5662db87c334476a4f7b82b7a0b88e');INSERT INTO "content_file" VALUES('d3e88849bfab4ca5a37e88ab7f4c57a7','video_subtitle',1,0,4,'7e8836f5c3bb5ad5a056f9e5563f250f','en','8a91625de1831b6063f605f80170f094');INSERT INTO "content_file" VALUES('4b257863cc5846f28059477ca2185fa2','high_res_video',0,0,1,'7e8836f5c3bb5ad5a056f9e5563f250f',NULL,'c0ace29e311d4cf1118b3bcad67890ad');INSERT INTO "content_file" VALUES('1098c4cb96934eab82c0ea96890ce547','video_thumbnail',1,1,3,'82b5e8803735517d91553325163e1ecc',NULL,'009c79c2e9378787201feef40be0fed9');INSERT INTO "content_file" VALUES('447df3c4bc974e16ad1f9ebbd6c0c060','video_subtitle',1,0,4,'82b5e8803735517d91553325163e1ecc','fr','0f7dcf8407d7e0c8b55da8c4f482e9c7');INSERT INTO "content_file" VALUES('b89e8f42b00b4674be5d9c0a1058aeb4','video_subtitle',1,0,4,'82b5e8803735517d91553325163e1ecc','en','6dde666e9bb9c29cd9bd8e15bf921676');INSERT INTO "content_file" VALUES('dd533a418a264609a8ca231dc6f9d7bf','high_res_video',0,0,1,'82b5e8803735517d91553325163e1ecc',NULL,'0e7458f08bfd1f8f7798c035689eeb09');INSERT INTO "content_file" VALUES('77cf90b6a60147279b6b76393bf703a8','video_thumbnail',1,1,3,'992328c8436254f8a56fb775ba9404dd',NULL,'36947fbe661b7798db77049fc767aed5');INSERT INTO "content_file" VALUES('c2b5114392ac4d4a806b5f3cf8c32efc','video_subtitle',1,0,4,'992328c8436254f8a56fb775ba9404dd','fr','c9529315b2c3347afbdcb53a5df10c9e');INSERT INTO "content_file" VALUES('e31b750394f148be8a1c16ec99270c73','video_subtitle',1,0,4,'992328c8436254f8a56fb775ba9404dd','en','918791b4121dc8b649f3d4ca4962749d');INSERT INTO "content_file" VALUES('f00328e532a74dfbb0d5bbbcbfac8b11','high_res_video',0,0,1,'992328c8436254f8a56fb775ba9404dd',NULL,'a8826f8a4ae618d2bedb5edeaafd6596');INSERT INTO "content_file" VALUES('e0d578d4e76d49299230156736d5c18e','video_thumbnail',1,1,3,'ed2982c7b22d5cb1bbee09d5a140c8fd',NULL,'c06201059e88b8a8d4056f99f0dfb2be');INSERT INTO "content_file" VALUES('82b8598002384c8293021eaba1eca0d8','video_subtitle',1,0,4,'ed2982c7b22d5cb1bbee09d5a140c8fd','fr','a8d617df89920ca94ca3e0e81e360d12');INSERT INTO "content_file" VALUES('06096d176444480b91fa661fea6e0028','video_subtitle',1,0,4,'ed2982c7b22d5cb1bbee09d5a140c8fd','en','ca640aa10350ee426888128d1667473c');INSERT INTO "content_file" VALUES('f8bddf599cd94fab90f96b2be99453af','high_res_video',0,0,1,'ed2982c7b22d5cb1bbee09d5a140c8fd',NULL,'3d8a2df23f15d3d77dff0ccb8534e7b8');INSERT INTO "content_file" VALUES('286be5c1955749d5b94e833198ab963d','video_thumbnail',1,1,3,'aa175ada2254542090ab1df5768abe19',NULL,'45d3d03801c7466f0c374832aac55c80');INSERT INTO "content_file" VALUES('45b5a34c2afd4776b1e7215ab94c270d','video_subtitle',1,0,4,'aa175ada2254542090ab1df5768abe19','fr','37584c5d7ef4b08c8a6b760f2b7d704b');INSERT INTO "content_file" VALUES('17bb8ee6c4844e9da67562022db09e49','video_subtitle',1,0,4,'aa175ada2254542090ab1df5768abe19','en','1724c086bc7b7e519eccc76e336b99f4');INSERT INTO "content_file" VALUES('f41f6723271d4a3cbf461d4e58d468af','high_res_video',0,0,1,'aa175ada2254542090ab1df5768abe19',NULL,'ce706c6d287eaa7ed8d86ba15ffbba6d');INSERT INTO "content_file" VALUES('75c97b3fce694da08914ab0a60ed5d3c','video_thumbnail',1,1,3,'31f2234f2263528eb83ff00d72ff54bc',NULL,'6758894f8f882944d5fb248fce6c5b9f');INSERT INTO "content_file" VALUES('15216c87b4f5463b984ee9c5f4e92f23','video_subtitle',1,0,4,'31f2234f2263528eb83ff00d72ff54bc','fr','834ce36b1ec6a7e813c391d7694e4379');INSERT INTO "content_file" VALUES('b68575e886e2491481207506f373dde4','video_subtitle',1,0,4,'31f2234f2263528eb83ff00d72ff54bc','en','0e45a32ce503585b8ee90d9f263b7778');INSERT INTO "content_file" VALUES('14397c0f6e154062806b9a475d5abc3e','high_res_video',0,0,1,'31f2234f2263528eb83ff00d72ff54bc',NULL,'e55c905a5ff283b797bac8e4fe719791');INSERT INTO "content_file" VALUES('d8d1ebdc464247ca89cfb3e7a66ad446','video_thumbnail',1,1,3,'b7d9d2a8c8585a78bb5f9f82f6aff9ea',NULL,'46f0421fb07ba54d80be2a63e8e8538d');INSERT INTO "content_file" VALUES('a28a12c0fb9b4721bf8b35ffab1f0bde','video_subtitle',1,0,4,'b7d9d2a8c8585a78bb5f9f82f6aff9ea','fr','777cc9356310743ef54c5a64f2069af5');INSERT INTO "content_file" VALUES('697c750c743e46b5a141d000f5ff4933','video_subtitle',1,0,4,'b7d9d2a8c8585a78bb5f9f82f6aff9ea','en','d86f63078d2113c3c4c45bdf3f21110d');INSERT INTO "content_file" VALUES('50c3518926a6458989babc60e53a4fbf','high_res_video',0,0,1,'b7d9d2a8c8585a78bb5f9f82f6aff9ea',NULL,'9209d90f006d2ffec74bbd77ed0adc97');INSERT INTO "content_file" VALUES('da7f3565e14f429994cadc32f26b923a','video_thumbnail',1,1,3,'d1d15b7380905e8a9c5a49f5cb919982',NULL,'6fb80f3f97b47b7249915bdcf8fd7a73');INSERT INTO "content_file" VALUES('0895f17ff4e5464ca95834664e8e1de5','video_subtitle',1,0,4,'d1d15b7380905e8a9c5a49f5cb919982','fr','1ccf2ad257c22328f7f28aa0c04cfe4a');INSERT INTO "content_file" VALUES('43a58a33ce2747629d828eef3ba2cdf0','video_subtitle',1,0,4,'d1d15b7380905e8a9c5a49f5cb919982','en','84f66f8d532b7b9dc8fb1ebf72249eb7');INSERT INTO "content_file" VALUES('ad483418b7f64f4eb5f1f93df3bbedab','high_res_video',0,0,1,'d1d15b7380905e8a9c5a49f5cb919982',NULL,'0316b3a6383b7581f0673352b3bfd6e8');INSERT INTO "content_file" VALUES('803a5d7e279b4c4d801b5536cdf558fe','video_thumbnail',1,1,3,'23e41ce6f7b451c9aae47af84d1def89',NULL,'91bf1f27048029b6a05f61a7ed07570d');INSERT INTO "content_file" VALUES('b91ea2d7e647416da6d4294e1701a7a3','video_subtitle',1,0,4,'23e41ce6f7b451c9aae47af84d1def89','fr','a0f98d28249b7bcd60d9c8c49d7c6d95');INSERT INTO "content_file" VALUES('efd4bcf0f663488e84058837e7fe0f79','video_subtitle',1,0,4,'23e41ce6f7b451c9aae47af84d1def89','en','7fdff5307f00dc83cf36ebf4931173c1');INSERT INTO "content_file" VALUES('4673318f8f9a40378948a10e0abfb66b','high_res_video',0,0,1,'23e41ce6f7b451c9aae47af84d1def89',NULL,'6f3ce2089c8d8eea96be170c4b55985c');INSERT INTO "content_file" VALUES('19735078342c4b1d8069265691ad909e','video_thumbnail',1,1,3,'e5dc7e5002485673b2662016cd272132',NULL,'eaaf8b7522d071a2c7a66005a08d863b');INSERT INTO "content_file" VALUES('a2d27c6a9093412f9e14a71b2d535461','video_subtitle',1,0,4,'e5dc7e5002485673b2662016cd272132','fr','aa028a73d9860d09fa3f413e21a6b2d7');INSERT INTO "content_file" VALUES('64984e0159614c97a3220bb9c71b3e3e','video_subtitle',1,0,4,'e5dc7e5002485673b2662016cd272132','en','72f64d5a04a11eb04afa75ac3903136f');INSERT INTO "content_file" VALUES('fea663e42b2b428c8881ce685ec664b8','high_res_video',0,0,1,'e5dc7e5002485673b2662016cd272132',NULL,'f6cb19bc10ba48866470a995e9df768f');INSERT INTO "content_file" VALUES('46a946c18ef14407a75abf0921684f63','video_thumbnail',1,1,3,'ce87d458015a5245a5fa82fad37995f8',NULL,'01af55b143edbe836303e2ff2c58892c');INSERT INTO "content_file" VALUES('ae9eaa09a5984b7b8ca296ca39ab5154','video_subtitle',1,0,4,'ce87d458015a5245a5fa82fad37995f8','fr','e594becc9119f653f22361c28bdd43f7');INSERT INTO "content_file" VALUES('654e5d3ce1084640b11f54390d20feaf','video_subtitle',1,0,4,'ce87d458015a5245a5fa82fad37995f8','en','1dc74ac0b17982990e4c0ae57610183d');INSERT INTO "content_file" VALUES('720d0cd7218244f9bee588bb3bc1fa96','high_res_video',0,0,1,'ce87d458015a5245a5fa82fad37995f8',NULL,'b42bcef177ce68fbde987e2992be4b2c');INSERT INTO "content_file" VALUES('44aff9e99e46483d952dff226293b6fe','video_thumbnail',1,1,3,'a216c39d35f45f5c99862f4f9cc3f84b',NULL,'37c57074e61a6cde1f47e5848498df45');INSERT INTO "content_file" VALUES('ae3ae0b753c04b619ca628a9b0bfbd79','video_subtitle',1,0,4,'a216c39d35f45f5c99862f4f9cc3f84b','fr','80d034093f2bab0026df7cd4ed0a7dae');INSERT INTO "content_file" VALUES('9ddab6bb63f545c49e8fcd8a94b6e175','video_subtitle',1,0,4,'a216c39d35f45f5c99862f4f9cc3f84b','en','3297d5fdb88827576b94d01206b50b7f');INSERT INTO "content_file" VALUES('b31b96c68036479994f231767c741751','high_res_video',0,0,1,'a216c39d35f45f5c99862f4f9cc3f84b',NULL,'08723210b8a44222a6bef173f8e4f608');INSERT INTO "content_file" VALUES('ff5cf8475afe4479a80d3480f4fa4239','video_thumbnail',1,1,3,'221f9736f7b3569fb3100a7f9ef6a751',NULL,'4214062135942035cfa0c2544f2843b6');INSERT INTO "content_file" VALUES('38a69fdbd74f4226be071fe7828f7c34','video_subtitle',1,0,4,'221f9736f7b3569fb3100a7f9ef6a751','fr','7601127c2c0930ce962781058f3a2fbd');INSERT INTO "content_file" VALUES('eda1a2c5d239481c964f775385240a23','video_subtitle',1,0,4,'221f9736f7b3569fb3100a7f9ef6a751','en','2a9aabb15a4ae64d2367a41973b2e045');INSERT INTO "content_file" VALUES('b2e73f8e8ea74acba2ad674ea982ec3f','high_res_video',0,0,1,'221f9736f7b3569fb3100a7f9ef6a751',NULL,'56c90a941c5551a0fc0f6cbd9c8507ec');INSERT INTO "content_file" VALUES('ac8369bf5e0b4f0c956615dc670a889e','video_thumbnail',1,1,3,'8264bde608725ddca31c2d1ddef47250',NULL,'ef1f87149b4be8c64b13d6411dd9fab6');INSERT INTO "content_file" VALUES('2a271ee9adca4a9dbd7f26eb8d4e0aa8','video_subtitle',1,0,4,'8264bde608725ddca31c2d1ddef47250','fr','2eb9a15b2a0adf2716827aa485cea923');INSERT INTO "content_file" VALUES('80da81d4081e4966b08b0d30199d0d8a','video_subtitle',1,0,4,'8264bde608725ddca31c2d1ddef47250','en','341e43b68e068a1925c97fe6f90ca17f');INSERT INTO "content_file" VALUES('654d597b7d6945bf96989244018d1804','high_res_video',0,0,1,'8264bde608725ddca31c2d1ddef47250',NULL,'d2b74bb8a9bf9fdd71770505291b4e4f');INSERT INTO "content_file" VALUES('d1a6deef00be4b38ab045015699f4e42','video_thumbnail',1,1,3,'570f20c2dc91538da3a7104555976530',NULL,'fa20139b79ca59eb24b17c448d6f1d23');INSERT INTO "content_file" VALUES('44e7cfa5de544f51aff0fa7c2bbfe0a0','video_subtitle',1,0,4,'570f20c2dc91538da3a7104555976530','fr','6506a3ad7a1394ce0e5fd903d7f2ab5f');INSERT INTO "content_file" VALUES('30d19167565146c08f8d9c03737eef49','video_subtitle',1,0,4,'570f20c2dc91538da3a7104555976530','en','2e87f6039125b8dbf453408820ff33b5');INSERT INTO "content_file" VALUES('b58dc4877dc543e3afe58c412422cea4','high_res_video',0,0,1,'570f20c2dc91538da3a7104555976530',NULL,'b6dec0c82967b97c56aaaec3302862c3');INSERT INTO "content_file" VALUES('6fc386a05ec84d8cb08eb8dc4c27f412','video_thumbnail',1,1,3,'9b0ed89f3cf5529f99bbb257ee9b0201',NULL,'9605edbb056653e66acb02c730299529');INSERT INTO "content_file" VALUES('3f235db9b2d24393b0f4e7bb1ff611bf','video_subtitle',1,0,4,'9b0ed89f3cf5529f99bbb257ee9b0201','fr','a2b57e6647f91d9ef24c6efe2b6f6092');INSERT INTO "content_file" VALUES('ab3bfc9865c549a1b58a9e45c61ab1b9','video_subtitle',1,0,4,'9b0ed89f3cf5529f99bbb257ee9b0201','en','969020f4fe443918e0fded277baf09b3');INSERT INTO "content_file" VALUES('bb1ea73132a34c2380d50decd8e18613','high_res_video',0,0,1,'9b0ed89f3cf5529f99bbb257ee9b0201',NULL,'1519b96297a2e97faf2a791d420f3503');INSERT INTO "content_file" VALUES('7f9419ec90a24a68b9d47c677f1a87dd','video_thumbnail',1,1,3,'ae1ebab2530657e9a629b1b8207a5817',NULL,'cc252d34e51633bea89fd672a6104412');INSERT INTO "content_file" VALUES('a4be9b35322c4353979c67a5445d1648','video_subtitle',1,0,4,'ae1ebab2530657e9a629b1b8207a5817','fr','5a906fe826655619d1fbadd7c70a13ae');INSERT INTO "content_file" VALUES('817a8e93a0324820881f069e5ebf246e','video_subtitle',1,0,4,'ae1ebab2530657e9a629b1b8207a5817','en','cdf1b5f6f141e091caa1488e8add73dc');INSERT INTO "content_file" VALUES('d36e5a1f1fa74def91bf62718a1cbd81','high_res_video',0,0,1,'ae1ebab2530657e9a629b1b8207a5817',NULL,'d0ce062d0ad71199b9a719058b25aa55');INSERT INTO "content_file" VALUES('f84470a735cc4fefa5a22f69bfe58bac','video_thumbnail',1,1,3,'6a3ab428ef6a5d64941edb1f28e0f75a',NULL,'e21cbebff8407f214663b3cb18a83404');INSERT INTO "content_file" VALUES('a39cd1f1e5ab434dadb0525c1b466f39','video_subtitle',1,0,4,'6a3ab428ef6a5d64941edb1f28e0f75a','fr','40fe1fd86a1b630ed3f7ec73dbc751c9');INSERT INTO "content_file" VALUES('58ab12cd8919413dabb5411134d86b3d','video_subtitle',1,0,4,'6a3ab428ef6a5d64941edb1f28e0f75a','en','af4aa151a6ea1f4d85c36e9dc201920a');INSERT INTO "content_file" VALUES('8d147c39345c485e8437969138fa4fcf','high_res_video',0,0,1,'6a3ab428ef6a5d64941edb1f28e0f75a',NULL,'b3e0fdad0e3a6ee63f351d498de607fb');INSERT INTO "content_file" VALUES('e58126c2bc084883ac079b602ea24c52','video_thumbnail',1,1,3,'720e92a156a158b1ab4483f026edefd6',NULL,'0d4db27240fe23ba489293159a5e74cf');INSERT INTO "content_file" VALUES('71f33a9c07944e58b4d992cf79ad3405','high_res_video',0,0,1,'720e92a156a158b1ab4483f026edefd6',NULL,'069d3905a557984ddc6cdded8edb7cdd');INSERT INTO "content_file" VALUES('0dd696408ed34009aeab95087aade7e1','video_thumbnail',1,1,3,'f7f8daaf372756268a274682cbbc25a7',NULL,'cacb0ca2c1511d9160d2ed32b8cd6f8c');INSERT INTO "content_file" VALUES('1b4452f8c3b749179f9c4c610e784ab4','video_subtitle',1,0,4,'f7f8daaf372756268a274682cbbc25a7','fr','258ae25bc2b9b2995c7ed232efbddb17');INSERT INTO "content_file" VALUES('187945119e2144449766d499c15ff8e4','video_subtitle',1,0,4,'f7f8daaf372756268a274682cbbc25a7','en','d77d6619ec0e68746ec417250458f19d');INSERT INTO "content_file" VALUES('7e021ac6ab7a40beb77ef699db8d7421','high_res_video',0,0,1,'f7f8daaf372756268a274682cbbc25a7',NULL,'068836e234eb495f79b60da8c9a8b9f5');INSERT INTO "content_file" VALUES('e78ac2174cc8446cbeb4a816febc0234','video_thumbnail',1,1,3,'1c80eda3b797598b8a7e7d48a1a3d3bb',NULL,'0e27952c304d69f23297e763fcb46624');INSERT INTO "content_file" VALUES('f548edc9c09747feb5cd428993bef361','video_subtitle',1,0,4,'1c80eda3b797598b8a7e7d48a1a3d3bb','fr','107202cc281beacfd25d0f06f5c82f23');INSERT INTO "content_file" VALUES('f3da641bd8d24d969451ccf9270e0f38','video_subtitle',1,0,4,'1c80eda3b797598b8a7e7d48a1a3d3bb','en','aa47cd9182afffbd91ee01145fedb8fe');INSERT INTO "content_file" VALUES('ac607b66190c4b2680dd93408dcedef4','high_res_video',0,0,1,'1c80eda3b797598b8a7e7d48a1a3d3bb',NULL,'f5f116602962c3853a8a24ec4178e76a');INSERT INTO "content_file" VALUES('602788f48dc5471d8379d51ad3d08f7e','video_thumbnail',1,1,3,'12b420eab237592d9f2fedbfab446e20',NULL,'42a325e59e268dd1547e83787e9ef1ef');INSERT INTO "content_file" VALUES('50485e99fadd4d4889ee060ef81c0ce8','video_subtitle',1,0,4,'12b420eab237592d9f2fedbfab446e20','ku','27bfa677d40c66d406881a1193f44340');INSERT INTO "content_file" VALUES('9ca0fc400d8f4e81b361ef42275b59c6','high_res_video',0,0,1,'12b420eab237592d9f2fedbfab446e20',NULL,'f33fec5ba65abf2bc2c9fff3f853a1e8');INSERT INTO "content_file" VALUES('376fd678e2da4d589054ee26cf87c446','video_thumbnail',1,1,3,'2668f899b3915f1499f6b72b1b327722',NULL,'3d132e4fdc41e7cf50eee801917ab7b4');INSERT INTO "content_file" VALUES('99a9bb8fa36c44b9bc3e52f4407399da','video_subtitle',1,0,4,'2668f899b3915f1499f6b72b1b327722','fr','473a1bb993a1536cc4c3333a0bde27c9');INSERT INTO "content_file" VALUES('889905b37203452784bd0e832bee89f0','video_subtitle',1,0,4,'2668f899b3915f1499f6b72b1b327722','en','a747c4f40dbdd7f90d7cedb65c96a782');INSERT INTO "content_file" VALUES('a77bbf764bb04fda81bae3a59d5ed346','high_res_video',0,0,1,'2668f899b3915f1499f6b72b1b327722',NULL,'cdb6e4019bb7fd7b6f4eb9ae89e8f119');INSERT INTO "content_file" VALUES('62239f7454c944a9845d30b70bc69019','video_thumbnail',1,1,3,'8d07e8da09cc568bae067b5ab62dddf6',NULL,'54114b44097b0c87a14ef0466f315d5a');INSERT INTO "content_file" VALUES('3d6096eca5b944d19ae5ddd8971912ba','video_subtitle',1,0,4,'8d07e8da09cc568bae067b5ab62dddf6','fr','6ece7569b5b9a6960ba13d4da9d0542e');INSERT INTO "content_file" VALUES('12f68fb3e1c043f7aed8a65dc97cf73a','video_subtitle',1,0,4,'8d07e8da09cc568bae067b5ab62dddf6','en','dc71e63b9bdc22cce89dc235d78a6669');INSERT INTO "content_file" VALUES('12541b9e93be4e4181286f2c3feb41af','high_res_video',0,0,1,'8d07e8da09cc568bae067b5ab62dddf6',NULL,'94eaff62c1d9aa835b1949d0f583267f');INSERT INTO "content_file" VALUES('4a8b997b97524afdb3f44c73a8c456ec','html5_thumbnail',1,1,2,'58a378aaa6ad527b83066605f312f010',NULL,'b12fd532b5266dc418f9e7d4bb8e5e89');INSERT INTO "content_file" VALUES('0972be92ede648b19a74e045a935f513','html5_zip',0,0,1,'58a378aaa6ad527b83066605f312f010',NULL,'0c234afbc1ff58a3cb875462bb3641c0');INSERT INTO "content_file" VALUES('fb3e3b52802644e5980e2ed919ec2ca0','video_thumbnail',1,1,3,'310f39599509579a8cb110f3f92a3ee7',NULL,'3dcba3708c00bc226dcc7e7c41d17792');INSERT INTO "content_file" VALUES('6dc44494bd0541d18e90bdae8d1b57d6','video_subtitle',1,0,4,'310f39599509579a8cb110f3f92a3ee7','fr','39a387c58f2becd8a7637f46a0810348');INSERT INTO "content_file" VALUES('f2b286cc375b46609b015fc0f277fb41','video_subtitle',1,0,4,'310f39599509579a8cb110f3f92a3ee7','en','35818433cae393bbfdf2e6723da7686f');INSERT INTO "content_file" VALUES('a1bf0cbe28cc4485909b79ed09e4c0d5','high_res_video',0,0,1,'310f39599509579a8cb110f3f92a3ee7',NULL,'549ae7d4a169a92fc07731dde67055e2');INSERT INTO "content_file" VALUES('f793694d6bde4c7288fad99fa7c1e4ad','video_thumbnail',1,1,3,'7b3476e84df7510a9380a62d8dde2278',NULL,'2973e4052ac6bef20e5855b9a79acfac');INSERT INTO "content_file" VALUES('ae4867ccd9624dd1945b853f814d83bf','video_subtitle',1,0,4,'7b3476e84df7510a9380a62d8dde2278','fr','a86debd349f97558d254b89e1a2fdbf4');INSERT INTO "content_file" VALUES('e5da2d0f75084f83883126fad34207ec','video_subtitle',1,0,4,'7b3476e84df7510a9380a62d8dde2278','en','6bf96a7aff70a7fdbbb93e2cd6defe9b');INSERT INTO "content_file" VALUES('d6d4f955ee6d43219cf713d5f17830fa','high_res_video',0,0,1,'7b3476e84df7510a9380a62d8dde2278',NULL,'601f770d2ae01256399ecf1d520722dd');INSERT INTO "content_file" VALUES('384a29d09d3544efa7de7f4cc080a916','video_thumbnail',1,1,3,'400ed4fab92e5775bb7161b6be227128',NULL,'3538622dfe2c4e899e17d50f72ad85c4');INSERT INTO "content_file" VALUES('e9686d717c384635b22882a7fc847522','high_res_video',0,0,1,'400ed4fab92e5775bb7161b6be227128',NULL,'ffe86dba690bf94d8b301f49e9f9bf23');INSERT INTO "content_file" VALUES('a9bc352a1c564f93bceac27eafe9af9d','video_thumbnail',1,1,3,'8684737f548752099ec8a8cd9737fe56',NULL,'f8dcaa712268f68e1d57c9cfc85abc87');INSERT INTO "content_file" VALUES('0bf439d325a14213b634774d070e20d5','video_subtitle',1,0,4,'8684737f548752099ec8a8cd9737fe56','ku','d3ac404e958750e1d8cf09c39231b6eb');INSERT INTO "content_file" VALUES('c049ac5d0a0a491d932b88ba5b313f42','high_res_video',0,0,1,'8684737f548752099ec8a8cd9737fe56',NULL,'e451f5e6afe6b95ffb12ef0621bf490f');INSERT INTO "content_file" VALUES('a0e2200a2b1547d9ac372c4fd9ab9fde','video_thumbnail',1,1,3,'0a72a983a6955783875532bc3612dc9f',NULL,'27b23e65550d547728bf07069009691a');INSERT INTO "content_file" VALUES('29405c2757af418f87e05140b9fbdb03','video_subtitle',1,0,4,'0a72a983a6955783875532bc3612dc9f','ku','4e6ac0d68513951c499e58d11fafe0bb');INSERT INTO "content_file" VALUES('90a4f9c727d640eb982a9ef55ac58c48','high_res_video',0,0,1,'0a72a983a6955783875532bc3612dc9f',NULL,'9576361134431fbc0a71ee8e0f833d85');INSERT INTO "content_file" VALUES('007fa48cb00c43da8e4c5f2d26061ce1','video_thumbnail',1,1,3,'a684a3997efc5089bb7d8595ad5a7d4b',NULL,'d8afac8a2312f88c5724fecebf2fe400');INSERT INTO "content_file" VALUES('e846a0fb5a2b42b38ad48e5862129544','video_subtitle',1,0,4,'a684a3997efc5089bb7d8595ad5a7d4b','ku','8f3c6290e39e981ea20d99ba0d890ce1');INSERT INTO "content_file" VALUES('43894aa1a03541a8af8b7b3108777065','high_res_video',0,0,1,'a684a3997efc5089bb7d8595ad5a7d4b',NULL,'ef5d5c33197aa7ada2dfbd13655be683');INSERT INTO "content_file" VALUES('9807418006504d6fb6dfbe6b1d4f4ad0','video_thumbnail',1,1,3,'aff730dcd8f858cf926122fce761f0ec',NULL,'7e0e1362eff4583f086b2e6f8b8bcb47');INSERT INTO "content_file" VALUES('a99feaadcdd84863b5e292022e50e486','video_subtitle',1,0,4,'aff730dcd8f858cf926122fce761f0ec','ku','e16e8fc93be62d3dca1c0f18770393c2');INSERT INTO "content_file" VALUES('0112bc5c165a4a52905b9abc3bb742c5','high_res_video',0,0,1,'aff730dcd8f858cf926122fce761f0ec',NULL,'2e0f2c16f36c67b662bffed8b1da7661');INSERT INTO "content_file" VALUES('e967d71c84554d8c8d362228ad42911d','video_thumbnail',1,1,3,'45c8f4e8752a56529cf6d54b0f664140',NULL,'aa3c99c3100fc18f1849ad3e9c580701');INSERT INTO "content_file" VALUES('d34cbe95458b41e8afffa3d7b513f39d','video_subtitle',1,0,4,'45c8f4e8752a56529cf6d54b0f664140','fr','7d56764556823aaccb67f649e4fc8943');INSERT INTO "content_file" VALUES('909b1504230349f89b5c37c641ffdeea','video_subtitle',1,0,4,'45c8f4e8752a56529cf6d54b0f664140','en','30931349883e371db8b5bfbd60604136');INSERT INTO "content_file" VALUES('b052221f3dba4ec3a10b0f6ddef5cad6','high_res_video',0,0,1,'45c8f4e8752a56529cf6d54b0f664140',NULL,'dc665a4dd56d53541403cdf149c64e5c');INSERT INTO "content_file" VALUES('1f4ed1fdb65142ac82c035eeed086711','video_thumbnail',1,1,3,'907542296a165386b8114ee193f2e692',NULL,'e2d461d5f15341a479ee8f0f883271fc');INSERT INTO "content_file" VALUES('c505b4c23c9c4b2eb2bc4001ea93e889','video_subtitle',1,0,4,'907542296a165386b8114ee193f2e692','fr','fc9fcf620796fb1d9e2a9a0238e9d841');INSERT INTO "content_file" VALUES('06618c4fa40641f9ba426723f21d21c6','video_subtitle',1,0,4,'907542296a165386b8114ee193f2e692','en','5e1be447a30854e4465ce75c55655b3b');INSERT INTO "content_file" VALUES('da9b548474ea43cbadee936d17bf12ad','high_res_video',0,0,1,'907542296a165386b8114ee193f2e692',NULL,'e6f4941f87ef461f02ee3538c1dbd0b8');INSERT INTO "content_file" VALUES('dac91acac2eb425e8fc2e3268c3f8133','video_thumbnail',1,1,3,'d9291a36b6f15a1e88a6c4462c7df8ed',NULL,'812e10c121991b38f098b44bd8e0431c');INSERT INTO "content_file" VALUES('3b1b57f50bf8428294f50ade4d17f7ff','video_subtitle',1,0,4,'d9291a36b6f15a1e88a6c4462c7df8ed','fr','34e802dd155156da7ff2afa56b03d50c');INSERT INTO "content_file" VALUES('f51ef83b7d914d10ae87b91134241230','video_subtitle',1,0,4,'d9291a36b6f15a1e88a6c4462c7df8ed','en','504f9383496f2cf26d875e1bb9b86a6f');INSERT INTO "content_file" VALUES('e42f00e6fb5945b6a7926058132df887','high_res_video',0,0,1,'d9291a36b6f15a1e88a6c4462c7df8ed',NULL,'7f3f4897e6d9f3a13b4e55a58fa44d50');INSERT INTO "content_file" VALUES('fbd88de93d99403f9e39a965646f71aa','video_thumbnail',1,1,3,'908ed84d655f5d09b07678d091010bb9',NULL,'b093d2f26621255c982dac119c0b3811');INSERT INTO "content_file" VALUES('94f88f1661aa4d58bd01e96ba6b7ef50','video_subtitle',1,0,4,'908ed84d655f5d09b07678d091010bb9','fr','23a800281351cf7b0dea3ac748c11db9');INSERT INTO "content_file" VALUES('6d62ac9e33f745b79b3b32a430be22d7','video_subtitle',1,0,4,'908ed84d655f5d09b07678d091010bb9','en','f2ce27dd8df416ba1679929b3fa136dd');INSERT INTO "content_file" VALUES('7542828d87f74524a8cfdb519cb90f67','high_res_video',0,0,1,'908ed84d655f5d09b07678d091010bb9',NULL,'7f44473e3766c00015e53f8416907609');INSERT INTO "content_file" VALUES('71a4946896fa46599a0a28c5b02a1e20','video_thumbnail',1,1,3,'9af91108e56e57b09c0efeaa0eebf812',NULL,'96b9d81dc4d5226eddfba0f832647bbe');INSERT INTO "content_file" VALUES('953de012c7b74e7581b47703ad163f4c','video_subtitle',1,0,4,'9af91108e56e57b09c0efeaa0eebf812','fr','f089a944bb6133c5254c1a329067684f');INSERT INTO "content_file" VALUES('15f678b63c504464b66c949a956472a0','video_subtitle',1,0,4,'9af91108e56e57b09c0efeaa0eebf812','en','d0408d459d80e0b7b772c5c83df79fe5');INSERT INTO "content_file" VALUES('85c58f619ead44cf8cc6064be977b7f3','high_res_video',0,0,1,'9af91108e56e57b09c0efeaa0eebf812',NULL,'a134e998e9c612d1239d257a1ffbf7ab');INSERT INTO "content_file" VALUES('61ae6ae42821499baff690786d82a87e','video_thumbnail',1,1,3,'8b42cc27de3e576b82f98d57d2ebb2b3',NULL,'a561e98bc2d6a23f2f55a52b76a34ee4');INSERT INTO "content_file" VALUES('288e4e019af2461dac7ef8e655694833','video_subtitle',1,0,4,'8b42cc27de3e576b82f98d57d2ebb2b3','fr','2dcb257537fdf8d31bb7997d69b55d0d');INSERT INTO "content_file" VALUES('1a332f25fb0d47b893563abb077957a0','video_subtitle',1,0,4,'8b42cc27de3e576b82f98d57d2ebb2b3','en','c4d05ce2b643dbaaa27a66bc4abe3684');INSERT INTO "content_file" VALUES('74a50699efeb4c36894492302d7de44b','high_res_video',0,0,1,'8b42cc27de3e576b82f98d57d2ebb2b3',NULL,'f74c46adc2db09f68133108132f9719b');INSERT INTO "content_file" VALUES('213500b31752454589cdfa939defc224','video_thumbnail',1,1,3,'dcb2e07822c85c1e8b6d5d67dc9194aa',NULL,'edc819864dc10b6ef4e0124d73277f6d');INSERT INTO "content_file" VALUES('18447abb0cbc4ce3883aaae0cb30ae36','video_subtitle',1,0,4,'dcb2e07822c85c1e8b6d5d67dc9194aa','ku','19ac50b7ac18eb6ad7ffcf3dca26aed5');INSERT INTO "content_file" VALUES('9807337783e749268eb78711114bbda2','high_res_video',0,0,1,'dcb2e07822c85c1e8b6d5d67dc9194aa',NULL,'f8714797b5333dc25fc7ecbc8f1331d4');INSERT INTO "content_file" VALUES('7b1b9d5d1ee7414bb3ca3de9c63268d1','video_thumbnail',1,1,3,'412c0443f9f157f5b8ac0d5aec038215',NULL,'5954f5743bc2427e994b8c5ee1b909ac');INSERT INTO "content_file" VALUES('05ecf053021d45ac956c15f44d37859a','video_subtitle',1,0,4,'412c0443f9f157f5b8ac0d5aec038215','fr','90b2e656a6aecd7d1102bacf4aa112ef');INSERT INTO "content_file" VALUES('fb315e8dbdc7424caeb38c5e2f899906','video_subtitle',1,0,4,'412c0443f9f157f5b8ac0d5aec038215','en','5d296914a77514d255c626631a599fa8');INSERT INTO "content_file" VALUES('d77dfa6d02554da0ac02e70cae06fd02','high_res_video',0,0,1,'412c0443f9f157f5b8ac0d5aec038215',NULL,'1e9bb1014e2f6f6dcf0c941d421a4ef4');INSERT INTO "content_file" VALUES('1513ff66109c41be8fc7894c7cf00836','video_thumbnail',1,1,3,'bc502f76e9ff5c459989a02de27093f7',NULL,'eaf3da1b1b488fd5bac20cb6453ae6e6');INSERT INTO "content_file" VALUES('9ff4b067e36a44c5b2ba3043c7deb1f0','high_res_video',0,0,1,'bc502f76e9ff5c459989a02de27093f7',NULL,'d6dcf03fdc2d157004704a74187964f7');INSERT INTO "content_file" VALUES('8937957e93614abfae2468aa2aaf805b','video_thumbnail',1,1,3,'288902c01d49531fa9dc9cf51b131f20',NULL,'1b332377e888dcfee0d5efd2b3f96d5d');INSERT INTO "content_file" VALUES('3687e310c1074827bb58058bf797d906','video_subtitle',1,0,4,'288902c01d49531fa9dc9cf51b131f20','ku','c95747312f6b21d333f788d66adbadde');INSERT INTO "content_file" VALUES('d5f308a033224f1ca722cbd1a0d62377','high_res_video',0,0,1,'288902c01d49531fa9dc9cf51b131f20',NULL,'3aa5c76fb40f0d553838f64380f8adc3');INSERT INTO "content_file" VALUES('278f344254e347be84f2298162572698','video_thumbnail',1,1,3,'7c718d9c1efe585a9f7bf266a7656c6d',NULL,'2b5e001e3e0b8e9ea43b45ca2e269d80');INSERT INTO "content_file" VALUES('3a815671732748a8b791d3e9fea90725','video_subtitle',1,0,4,'7c718d9c1efe585a9f7bf266a7656c6d','fr','d5c60a7e3fc869297ff2e28631a0fdb3');INSERT INTO "content_file" VALUES('c218cbe0e62648b1b6cf364ce826a18c','video_subtitle',1,0,4,'7c718d9c1efe585a9f7bf266a7656c6d','en','7e2a2061676a53b85f2c4245180fc158');INSERT INTO "content_file" VALUES('fae787b9739b40138f77ddb2ef387c1f','high_res_video',0,0,1,'7c718d9c1efe585a9f7bf266a7656c6d',NULL,'fbb857e4f1ef0528e2f7c4b306467959');INSERT INTO "content_file" VALUES('e4a131cb288e41ab998d8b9e1c514211','video_thumbnail',1,1,3,'4a4d7ffda0ce51c7b4da1147cfe89492',NULL,'8595c83706e5f92acc3cfb3bcec12931');INSERT INTO "content_file" VALUES('ea8132fdafbe4389af2ce2edde96ba04','video_subtitle',1,0,4,'4a4d7ffda0ce51c7b4da1147cfe89492','ku','a2de0566667ab5f296db68d9dc13b06f');INSERT INTO "content_file" VALUES('8cc51e97eff74f51941a034082b613d1','high_res_video',0,0,1,'4a4d7ffda0ce51c7b4da1147cfe89492',NULL,'ad913b40b168357f489d287e4cc56193');INSERT INTO "content_file" VALUES('548eedfffef2469bbefe2e2bcf43be40','video_thumbnail',1,1,3,'95af8e7ab48b56a88d640e2f41ee53e2',NULL,'dc7ba5528c488ae69e4cbdb95a377d5d');INSERT INTO "content_file" VALUES('255496e59c2f45eb915c451c13a3db22','video_subtitle',1,0,4,'95af8e7ab48b56a88d640e2f41ee53e2','ku','5ab8a2a7963a6a232d335ec0ecbf873b');INSERT INTO "content_file" VALUES('4490de0508104408b289ff206ad525a6','high_res_video',0,0,1,'95af8e7ab48b56a88d640e2f41ee53e2',NULL,'f12d9c37b56b48beb2a4b67dbd8952be');INSERT INTO "content_file" VALUES('fa9a52cd453f46c59026c345c480d682','video_thumbnail',1,1,3,'2d3f4015e29c56d49af725ff5a07afea',NULL,'6886ff67592775907a58296493c1667c');INSERT INTO "content_file" VALUES('ca4e821052dd4f32b9a2a5fdebb10a43','video_subtitle',1,0,4,'2d3f4015e29c56d49af725ff5a07afea','fr','b2a47a5ebe4424b722c89b98f72fc1a7');INSERT INTO "content_file" VALUES('ce19b38835ee4e029b1862aa4b378462','video_subtitle',1,0,4,'2d3f4015e29c56d49af725ff5a07afea','en','2d941884d7c54d38c2396c5ad1f8780f');INSERT INTO "content_file" VALUES('0ff534055341433284f384583f2ab863','high_res_video',0,0,1,'2d3f4015e29c56d49af725ff5a07afea',NULL,'c5e4d1471c787aed659ed3f23a4be220');INSERT INTO "content_file" VALUES('02e702c28a4747c0858727a3099a32ff','video_thumbnail',1,1,3,'cf5a9c39714959b6951c6d744259e19d',NULL,'cf8a70dce95a1ee828f896a71bf49abc');INSERT INTO "content_file" VALUES('d6728caab06844b59e7f1ad4571b4311','video_subtitle',1,0,4,'cf5a9c39714959b6951c6d744259e19d','ku','5144044e00f378201f9b93f13f855416');INSERT INTO "content_file" VALUES('c3473610c4ab489f928a1f088636dbcf','high_res_video',0,0,1,'cf5a9c39714959b6951c6d744259e19d',NULL,'db474ccfaaf20bf036b0307d87bd989c');INSERT INTO "content_file" VALUES('f435f76ee81543b9878803a058e6cf58','video_thumbnail',1,1,3,'349915f2414d5a9aa0aff390469843b6',NULL,'cd2295febbed6cb49096e33c5822fa49');INSERT INTO "content_file" VALUES('f8941ca9c89948c8a9382983aea0119e','video_subtitle',1,0,4,'349915f2414d5a9aa0aff390469843b6','ku','8853170f97036ec92d45d50f09a585cc');INSERT INTO "content_file" VALUES('00e325b0af554eababe50797761a37bb','high_res_video',0,0,1,'349915f2414d5a9aa0aff390469843b6',NULL,'b812b60e49cac55d63ffb699511d70a0');INSERT INTO "content_file" VALUES('eefc9d4a07854881b683c112653b813b','video_thumbnail',1,1,3,'aca5eeba47fe5e798c556b94b5a251a2',NULL,'3db984ec9ba07292179d01e285c6285a');INSERT INTO "content_file" VALUES('d6532a7ef9194cb8b86965e41edf499a','video_subtitle',1,0,4,'aca5eeba47fe5e798c556b94b5a251a2','ku','76cfce81ba6bce66e87f6d2beb17e31f');INSERT INTO "content_file" VALUES('694b9ad6ca7e454fa11737967d0c8638','high_res_video',0,0,1,'aca5eeba47fe5e798c556b94b5a251a2',NULL,'dc30a0a1a185c7c6231f3992a94bb2f9');INSERT INTO "content_file" VALUES('97fc463425c3462fab33a48cf6ad96c0','video_thumbnail',1,1,3,'60830d1024905736822bf2bb8b9716a8',NULL,'df9bad028633d6fca80721ffae23ca8b');INSERT INTO "content_file" VALUES('67fcd2458d61423c9971a62411b812d6','video_subtitle',1,0,4,'60830d1024905736822bf2bb8b9716a8','fr','1653e88ec0693b966add8db8a1994deb');INSERT INTO "content_file" VALUES('e4b527d069644ffe91016f8b9a8634f8','video_subtitle',1,0,4,'60830d1024905736822bf2bb8b9716a8','en','2a8599c8192deef9ba687b5c4ac1a628');INSERT INTO "content_file" VALUES('ecb53cceadee42cb98d3b9462ea94b7e','high_res_video',0,0,1,'60830d1024905736822bf2bb8b9716a8',NULL,'2e26a93b2dab68e676b2882f50f8e21b');INSERT INTO "content_file" VALUES('e746cd924f304b5089bd63cfc9d2a5bd','video_thumbnail',1,1,3,'3bb32ea8061f5cff9879205fba8f7901',NULL,'5291d89d8e505bcdeeb7048a21a9fe07');INSERT INTO "content_file" VALUES('b9785972563345fb831d51c0d907de84','video_subtitle',1,0,4,'3bb32ea8061f5cff9879205fba8f7901','fr','885294850629d6dbf5cbbd22f4ea640a');INSERT INTO "content_file" VALUES('451df53359604d40b439ced430e13921','video_subtitle',1,0,4,'3bb32ea8061f5cff9879205fba8f7901','en','b08994273331894a6d0586bbb9763e94');INSERT INTO "content_file" VALUES('beb045b368d84a5abaec6d611e3feb10','high_res_video',0,0,1,'3bb32ea8061f5cff9879205fba8f7901',NULL,'3a270ac226d53f7d26f9a5b502ab9e4c');INSERT INTO "content_file" VALUES('742d9d301c0d46ad9a051818e663806d','video_thumbnail',1,1,3,'51a2725885845850af53370c5736e61e',NULL,'ac901da9f8831bdd6a580a9501e217bc');INSERT INTO "content_file" VALUES('e1709352e6834205840101d5d68f4ee0','video_subtitle',1,0,4,'51a2725885845850af53370c5736e61e','ku','72e571b69298a9b98dc425c9e4b02c57');INSERT INTO "content_file" VALUES('29e0efb0c951403a9e3cae38295d0bc9','high_res_video',0,0,1,'51a2725885845850af53370c5736e61e',NULL,'acae00ac2679bc3a2b2709e5b7447c38');INSERT INTO "content_file" VALUES('d325d32a3aec4958a93e22c53983df4e','video_thumbnail',1,1,3,'838287c9faf75347af1a2f7c15925143',NULL,'33f21d6834ded950f71cbb331be803d6');INSERT INTO "content_file" VALUES('d01cf6928a474a33805829c3dd431331','video_subtitle',1,0,4,'838287c9faf75347af1a2f7c15925143','ku','235f346151f190e70abce0b0d4a3601e');INSERT INTO "content_file" VALUES('3c094d4224d041b9a178514f42a8e886','high_res_video',0,0,1,'838287c9faf75347af1a2f7c15925143',NULL,'1f7395de1c6e8df177a811f76ec633cf');INSERT INTO "content_file" VALUES('bc367634804941229628c71224f6e839','video_thumbnail',1,1,3,'cacac815e2b35479a982f5ed3f7f71b9',NULL,'27fbdd87b990396170c38b7bfd8a65b5');INSERT INTO "content_file" VALUES('466a96caec3e4aec89b99cc7cedc4466','video_subtitle',1,0,4,'cacac815e2b35479a982f5ed3f7f71b9','ku','f3b5697879a20bc91ce801d0a383e43a');INSERT INTO "content_file" VALUES('fae543ea15804c22ae9765963c60549b','high_res_video',0,0,1,'cacac815e2b35479a982f5ed3f7f71b9',NULL,'72894f25760e9c11f1235a9213f80335');INSERT INTO "content_file" VALUES('aa890a476f944f4e99d77c99b4fc1808','video_thumbnail',1,1,3,'d9ba05a780135f6a9555fb24727a7835',NULL,'27c184837bac4b6c969f4070a4551ca4');INSERT INTO "content_file" VALUES('7f6e392daf0b4e52bcbca4122215721d','video_subtitle',1,0,4,'d9ba05a780135f6a9555fb24727a7835','ku','2462c29e4841bda9c863597394c0ace5');INSERT INTO "content_file" VALUES('0720640287284e9ea83c5ad0257838be','high_res_video',0,0,1,'d9ba05a780135f6a9555fb24727a7835',NULL,'9bc163c93fc886c328bef95d387db4f8');INSERT INTO "content_file" VALUES('9c9f5ea7759e4ef49f5aa146ec6f300c','video_thumbnail',1,1,3,'43ef8d38ff9053fea2a2eea4e9085f83',NULL,'cdacca79c27c95245188f77c1b26731b');INSERT INTO "content_file" VALUES('00fcc2bcb04e4134ad9f102a93018604','video_subtitle',1,0,4,'43ef8d38ff9053fea2a2eea4e9085f83','ku','50645a7957cbbee0f2acb25f5cce7a8c');INSERT INTO "content_file" VALUES('b4601409ff9e43368ee2103546ee38f8','high_res_video',0,0,1,'43ef8d38ff9053fea2a2eea4e9085f83',NULL,'7bfa18af7c89176cec1316786b4116fa');INSERT INTO "content_file" VALUES('4d5c3a50c4af49afa8872bb7ba62943f','video_thumbnail',1,1,3,'4a9a563ca89851e9b9904807541640eb',NULL,'22abe4c35ceb573b0560977584096334');INSERT INTO "content_file" VALUES('326d5a1b06044fda92aab0480f572ac2','video_subtitle',1,0,4,'4a9a563ca89851e9b9904807541640eb','fr','bf117ac4358e52e38b24fcc1f2ef10e4');INSERT INTO "content_file" VALUES('af281bb8fb24487c9ad6076ee2b984de','video_subtitle',1,0,4,'4a9a563ca89851e9b9904807541640eb','en','8b8c4e771941f169cbcd05fa82ec89ca');INSERT INTO "content_file" VALUES('549db2b252fc44d78403ef7a8baa8bae','high_res_video',0,0,1,'4a9a563ca89851e9b9904807541640eb',NULL,'858e0e107a54694b29f0d269ba0feb2b');INSERT INTO "content_file" VALUES('f121bbfb073b4d34a6357c05f2bc3da7','video_thumbnail',1,1,3,'73140166d70c57198d8bef149ec85ccd',NULL,'4ec4a7f2082860bdae813e130935db00');INSERT INTO "content_file" VALUES('a9067253a396403da9acaaf3090f3c96','video_subtitle',1,0,4,'73140166d70c57198d8bef149ec85ccd','fr','1f23bfdc92fc96c2f0756ac873fce338');INSERT INTO "content_file" VALUES('e492b2d5a1194b6e8b15644646e11098','video_subtitle',1,0,4,'73140166d70c57198d8bef149ec85ccd','en','2af5a51bc69b22245d6c0d7e3c53fb3f');INSERT INTO "content_file" VALUES('ad26f3cb49cd4963a5940d344b248705','high_res_video',0,0,1,'73140166d70c57198d8bef149ec85ccd',NULL,'be63b0194e7fcd108b62e0ec3e94f1a7');INSERT INTO "content_file" VALUES('a947cf8be0c64f62ab6d2961bd15c6df','video_thumbnail',1,1,3,'e6cade037ea6563ba4ccf08338346aea',NULL,'fca9f7ce38d8f10fcc4ece7a36a113f6');INSERT INTO "content_file" VALUES('fde0cc51a829422e9166f4dd8c0ebf5e','video_subtitle',1,0,4,'e6cade037ea6563ba4ccf08338346aea','fr','356e7bbfaccc0c3b7acd9a1feee24568');INSERT INTO "content_file" VALUES('02e91466d41c4dcea036d194f7583ad8','video_subtitle',1,0,4,'e6cade037ea6563ba4ccf08338346aea','en','c3f0a42e8765663892c6b4e7a2944be7');INSERT INTO "content_file" VALUES('005154b9d96947be9221438402b126e0','video_subtitle',1,0,4,'e6cade037ea6563ba4ccf08338346aea','zh-CN','4de68aac22f5f60a711cf054fa9488c8');INSERT INTO "content_file" VALUES('c8b3087481cf4b90aa4307b644d34e80','high_res_video',0,0,1,'e6cade037ea6563ba4ccf08338346aea',NULL,'7d259a2c20e59ad447916288192a496f');INSERT INTO "content_file" VALUES('3b40690dac264cd381145eae820b9e09','video_thumbnail',1,1,3,'5df1f4c470cf5ad68c4a50f2400b24d5',NULL,'c6782cdbd814e6d33eaa713b41e047d6');INSERT INTO "content_file" VALUES('b3c3fb2193904bf797a4bbb49dd68a32','video_subtitle',1,0,4,'5df1f4c470cf5ad68c4a50f2400b24d5','fr','8f3d6cbeb1f8381810478bf91968e852');INSERT INTO "content_file" VALUES('489ac678b4e948e5862c392a72e62601','video_subtitle',1,0,4,'5df1f4c470cf5ad68c4a50f2400b24d5','en','84b2d6bf0590bda17719f8a8f294d49c');INSERT INTO "content_file" VALUES('acee564a29de4daebe774f51a8002fd0','high_res_video',0,0,1,'5df1f4c470cf5ad68c4a50f2400b24d5',NULL,'cf5c4d6a0a6f7112f14a23227e327616');INSERT INTO "content_file" VALUES('14563a3f952c42ed998df0ab6bc4dcba','video_thumbnail',1,1,3,'30413371d1925c169db9cf3fd7a08697',NULL,'b2395f70378b86c10f7510111e29dcb8');INSERT INTO "content_file" VALUES('44df871d98174bfa9f234acd31733cee','video_subtitle',1,0,4,'30413371d1925c169db9cf3fd7a08697','fr','0a6f2314b4dbeaab7e94934114ea30f3');INSERT INTO "content_file" VALUES('a5bb2d03ae4f4407b0aec678cbef1b6e','video_subtitle',1,0,4,'30413371d1925c169db9cf3fd7a08697','en','7af6498b6ab13de6c5c1172e58b2facb');INSERT INTO "content_file" VALUES('89da94f505704ff8a48c4407a8856198','high_res_video',0,0,1,'30413371d1925c169db9cf3fd7a08697',NULL,'a73378a5e96d82e5e2165007ad7c6594');INSERT INTO "content_file" VALUES('3aec33781dda46389963486f3dfa1947','video_thumbnail',1,1,3,'a5a7f44ba224555cab50af3799f1a6d9',NULL,'7d70d6f52016883fb7b7b13f570a20b9');INSERT INTO "content_file" VALUES('a1fa77ea5ab14d1ea8f4cbbe6e39661a','video_subtitle',1,0,4,'a5a7f44ba224555cab50af3799f1a6d9','fr','5bfcef55667b5bbb21d9b9fe263ffb16');INSERT INTO "content_file" VALUES('8b83a3872ff145ed943e89f78c985b61','video_subtitle',1,0,4,'a5a7f44ba224555cab50af3799f1a6d9','en','f5271ffaa55adf42908799c0258f68ca');INSERT INTO "content_file" VALUES('c8c41334a85145bb9f8904b75cd45f14','high_res_video',0,0,1,'a5a7f44ba224555cab50af3799f1a6d9',NULL,'404ced6ece5a503a4049767da8e874d5');INSERT INTO "content_file" VALUES('3fe76209b1b44e79a91803ba3da4129f','video_thumbnail',1,1,3,'63c6fea9aacd55ed856f656848f1cf22',NULL,'6124826c097818e2d4ac2165bf73fd41');INSERT INTO "content_file" VALUES('c47b2f7b975443df94e47d148d2c7827','video_subtitle',1,0,4,'63c6fea9aacd55ed856f656848f1cf22','fr','dfddafa8bb317c90503df4ef6c7cc2c7');INSERT INTO "content_file" VALUES('921254c3b47a428f983546983b41b2fa','video_subtitle',1,0,4,'63c6fea9aacd55ed856f656848f1cf22','en','54effad5458711f8f4f8a888bef9205b');INSERT INTO "content_file" VALUES('121b35e1564c4e6db0b4a4a260e72f2f','high_res_video',0,0,1,'63c6fea9aacd55ed856f656848f1cf22',NULL,'fcb0faa883755f76ae8cfe7cf049cf50');INSERT INTO "content_file" VALUES('d7757cc0f30f4e1ead8d3f4b78e3f67b','video_thumbnail',1,1,3,'f8b64484d9215b589360920fe91ba19a',NULL,'64522d66d66ecd869830f5e8fb861e94');INSERT INTO "content_file" VALUES('8e0f7635e4ca449baf45df459b640412','video_subtitle',1,0,4,'f8b64484d9215b589360920fe91ba19a','fr','b7b76ff37ea97d5398a03d002109b2b0');INSERT INTO "content_file" VALUES('71a8d1dd419b43e38c86b28d4b8e9963','video_subtitle',1,0,4,'f8b64484d9215b589360920fe91ba19a','en','e61b8d5226efd7dfabebece8e1efa2a0');INSERT INTO "content_file" VALUES('adfe3cc73a604b3f9e5848aad6080afb','high_res_video',0,0,1,'f8b64484d9215b589360920fe91ba19a',NULL,'be963ed55b921bf92ee3afac583589f7');INSERT INTO "content_file" VALUES('51bcb1d28ff543fcb1214efe6e317205','video_thumbnail',1,1,3,'be380ba7c49e5c0eb9d0809abd185bee',NULL,'6e03fea954cbf5bb94c1fabe4873ef45');INSERT INTO "content_file" VALUES('466d73eb7ef04e83a5b1381ecacbbee0','video_subtitle',1,0,4,'be380ba7c49e5c0eb9d0809abd185bee','fr','8b0f368e72c08821966506565dd999d6');INSERT INTO "content_file" VALUES('85e53303e2d241cb80edc20c94c6c5d2','video_subtitle',1,0,4,'be380ba7c49e5c0eb9d0809abd185bee','en','fc52e2171e07930769eaa79148ba404d');INSERT INTO "content_file" VALUES('f45bd0f91ddd438aa7f5adda310badb9','high_res_video',0,0,1,'be380ba7c49e5c0eb9d0809abd185bee',NULL,'b7a372bf154fe78fca0be227586894a6');INSERT INTO "content_file" VALUES('bd11cd4d411e4a56a8fb5f192afe5a85','video_thumbnail',1,1,3,'f55375d51cb45cd3bc68b2c684ba8aa4',NULL,'a026d2b38d2aaff898ccce6bfc62aebc');INSERT INTO "content_file" VALUES('0b8f41f4aeb3445b891f112478c130bd','video_subtitle',1,0,4,'f55375d51cb45cd3bc68b2c684ba8aa4','fr','97ca6c698782a18bdffa0805677547ac');INSERT INTO "content_file" VALUES('128f0dffbe09434f9bbaabb6a79405b3','video_subtitle',1,0,4,'f55375d51cb45cd3bc68b2c684ba8aa4','en','a9c2791935efdeb8be5585b661d25641');INSERT INTO "content_file" VALUES('9cea92a2950746a39b3f197ad42050d9','high_res_video',0,0,1,'f55375d51cb45cd3bc68b2c684ba8aa4',NULL,'f198ce820f06c5d243e14e39ab55a124');INSERT INTO "content_file" VALUES('b2fab8a266f94e0a8a0729c7dba0b46b','video_thumbnail',1,1,3,'838e818a6cf352d2b937fb23bdeb7f89',NULL,'307f5b5772ed796e23e5c079b7450e6e');INSERT INTO "content_file" VALUES('608126272bb847dcb9cd4fbc3f0dd2d8','video_subtitle',1,0,4,'838e818a6cf352d2b937fb23bdeb7f89','fr','96b2f4d7844696f28b59d12df67de5ac');INSERT INTO "content_file" VALUES('6e4a5bd89d314aedbf8039f4c389bff9','video_subtitle',1,0,4,'838e818a6cf352d2b937fb23bdeb7f89','en','08befa3481936452ad7cdddadba0b1cf');INSERT INTO "content_file" VALUES('fdf5f1d0d2d041efbcc454711c3da042','high_res_video',0,0,1,'838e818a6cf352d2b937fb23bdeb7f89',NULL,'fe0e3fba35b98d8d84ed83b59b7e4715');INSERT INTO "content_file" VALUES('25bf0c7401684bffad14eba97fefd073','video_thumbnail',1,1,3,'af72c1d15db15d118587c91bfd6974b1',NULL,'f73c4d6f09c0667769dfbfe504ec2e70');INSERT INTO "content_file" VALUES('faf9e1a737b74ebc9f3cdd6dbce31265','video_subtitle',1,0,4,'af72c1d15db15d118587c91bfd6974b1','fr','a579a70416adaaeccec2f2ced526b235');INSERT INTO "content_file" VALUES('0562ad1428e6411f9682c459f97aae91','video_subtitle',1,0,4,'af72c1d15db15d118587c91bfd6974b1','en','bd30d686df1e507ce5b7e887222ae9f2');INSERT INTO "content_file" VALUES('d891c9dd522746638f28a0fefebf2e94','high_res_video',0,0,1,'af72c1d15db15d118587c91bfd6974b1',NULL,'8406413809460eebbbc8c367035488a7');INSERT INTO "content_file" VALUES('7463d92ea8ef4318a40455f732bdc32b','video_thumbnail',1,1,3,'3fc99140bc4a5f0c90be65d0d385b0cf',NULL,'31af8c6c8af7342eb27e507c66899625');INSERT INTO "content_file" VALUES('38fc713d727f4042bed776b41033b915','video_subtitle',1,0,4,'3fc99140bc4a5f0c90be65d0d385b0cf','fr','3966bd7d2242fc1d145ea40855a72576');INSERT INTO "content_file" VALUES('b8776f6c80284296ae624911ca0eeb60','video_subtitle',1,0,4,'3fc99140bc4a5f0c90be65d0d385b0cf','en','820bac3afc22394e3052eff9a9bcdf88');INSERT INTO "content_file" VALUES('d288a59df63a4634b03774cbae51fcd2','high_res_video',0,0,1,'3fc99140bc4a5f0c90be65d0d385b0cf',NULL,'2846e5b35ecdf52902947adb7a00b0f4');INSERT INTO "content_file" VALUES('8a0f11cb8920469eb6fba4d622824bf6','video_thumbnail',1,1,3,'f75e02d6c60a55cda65bb602ad821bd6',NULL,'5eb031aba97c45e0c2ea6a83e59b3c8f');INSERT INTO "content_file" VALUES('562622bb2dd54909ab36f84b656100aa','video_subtitle',1,0,4,'f75e02d6c60a55cda65bb602ad821bd6','fr','0e3433d7fa9d88ad293097944d228971');INSERT INTO "content_file" VALUES('11809ccab4764945b9a4cfe1124b6d9f','video_subtitle',1,0,4,'f75e02d6c60a55cda65bb602ad821bd6','en','3b60c6eee860fb67ec1c719dd0d4a0c3');INSERT INTO "content_file" VALUES('3df028b63dcf46dca4fcfd5076bca63a','high_res_video',0,0,1,'f75e02d6c60a55cda65bb602ad821bd6',NULL,'094298bf67cc8c9e8ba095bee4cea250');INSERT INTO "content_file" VALUES('7b4924cb21664166803f65b9fe80bca1','video_thumbnail',1,1,3,'35991a7d265f5ffaae549a374472373b',NULL,'dceb410970a006a99c5dddfd3f3d7335');INSERT INTO "content_file" VALUES('9f829c48cf8a4b698f4e94df5cac435a','video_subtitle',1,0,4,'35991a7d265f5ffaae549a374472373b','fr','4853efe69d3371184b6d7ace0377252f');INSERT INTO "content_file" VALUES('cf383d58ffa34c3bbcc71252ffc5f44d','video_subtitle',1,0,4,'35991a7d265f5ffaae549a374472373b','en','b369d3746d333222c0c35218ce15b8c5');INSERT INTO "content_file" VALUES('83f453fb2f904780acb8c3f6f6fa4fb6','high_res_video',0,0,1,'35991a7d265f5ffaae549a374472373b',NULL,'50664fcfa846d6e1adb132806839ed91');INSERT INTO "content_file" VALUES('297fb4d46ac94aca884ad08477847be9','video_thumbnail',1,1,3,'ae9380f0aa88505583f301ee363bb4b5',NULL,'12f6caeea50ec1995af7c1a9ca02f8b8');INSERT INTO "content_file" VALUES('ab7a4f554be34b5dafb7bb586113fc1d','video_subtitle',1,0,4,'ae9380f0aa88505583f301ee363bb4b5','mn','be2c3325fa87942b0af2f2073cff8b3d');INSERT INTO "content_file" VALUES('e88a1bbbdf354346bd2bef70992927dd','video_subtitle',1,0,4,'ae9380f0aa88505583f301ee363bb4b5','fr','beb29d9d08d0efa1c19c3dcf9609b18c');INSERT INTO "content_file" VALUES('1939923bcd2d48f39c1608f4f31f9217','video_subtitle',1,0,4,'ae9380f0aa88505583f301ee363bb4b5','en','b7cb1880c3dbde4318d3d2d24f12fb5d');INSERT INTO "content_file" VALUES('0fc065f6f4004ba8a527534c0a62e9d4','high_res_video',0,0,1,'ae9380f0aa88505583f301ee363bb4b5',NULL,'c53a114e083622bbea41269995b5e2e9');INSERT INTO "content_file" VALUES('aa432625b3014401ba412d83bb4e0ee6','video_thumbnail',1,1,3,'5531b0ef3266516c98662134369c06f3',NULL,'c8d7fff79ae3a60e7ac8151e6111bf50');INSERT INTO "content_file" VALUES('0a00470373a64746a7106150ae2ff7ac','video_subtitle',1,0,4,'5531b0ef3266516c98662134369c06f3','mn','eaba658cfa5ecb7f12254defee468cc2');INSERT INTO "content_file" VALUES('4fc98f017cb3471994b0345c3af023d2','video_subtitle',1,0,4,'5531b0ef3266516c98662134369c06f3','fr','d79563f971b64b1a5df3edb632e3386b');INSERT INTO "content_file" VALUES('187f4aba38a74a42a5b2f43515b5abd0','video_subtitle',1,0,4,'5531b0ef3266516c98662134369c06f3','en','00650c2dde1674ff73efb7152392e8a8');INSERT INTO "content_file" VALUES('1db983ad3e5947948be8f298f70c110f','high_res_video',0,0,1,'5531b0ef3266516c98662134369c06f3',NULL,'c5a8b718c9ae3c58f0668edc7688f77c');INSERT INTO "content_file" VALUES('a75e29257a224111ba2b93be2768e422','video_thumbnail',1,1,3,'2dfd9617a0cc55fcaec3e1f641847dfe',NULL,'03301a07691a08c2f38a169833cd8f84');INSERT INTO "content_file" VALUES('26a8365856314210a965a97d705f35a4','video_subtitle',1,0,4,'2dfd9617a0cc55fcaec3e1f641847dfe','mn','b3eab942ecced248cfecc27bd192b737');INSERT INTO "content_file" VALUES('a5214bfd1d174b4b8a2d5635c6db89d5','video_subtitle',1,0,4,'2dfd9617a0cc55fcaec3e1f641847dfe','fr','c18bead9341364ef0b3f9e426f2a2953');INSERT INTO "content_file" VALUES('abd96f61464547f7b835c38c34f9b536','video_subtitle',1,0,4,'2dfd9617a0cc55fcaec3e1f641847dfe','en','70ff39e0c55732d5d7d7175a8466502b');INSERT INTO "content_file" VALUES('2e91c0da38b142cf844ee05f36cc4d1d','high_res_video',0,0,1,'2dfd9617a0cc55fcaec3e1f641847dfe',NULL,'de7b3abf5c51188da109da5a9fc7b16c');INSERT INTO "content_file" VALUES('2397088faa804b4daee1f9e98efab7b9','video_thumbnail',1,1,3,'fa84422bd9005686a5bbb02a0cae0732',NULL,'f1c0c426a1d718170690acfb8373cb94');INSERT INTO "content_file" VALUES('31b12e931dbc447d8dd8ec06d4142057','video_subtitle',1,0,4,'fa84422bd9005686a5bbb02a0cae0732','fr','0675a050c3c644598cf48a9cda67f861');INSERT INTO "content_file" VALUES('8b933e4adeaa412fa38ce294872f38d5','video_subtitle',1,0,4,'fa84422bd9005686a5bbb02a0cae0732','en','82f75328797541e72c240ac3f26afdbb');INSERT INTO "content_file" VALUES('3f9091bed5734a1ba5a8cfb35733947c','high_res_video',0,0,1,'fa84422bd9005686a5bbb02a0cae0732',NULL,'a4a3532ce70ee94c478a45bcc911bbd9');INSERT INTO "content_file" VALUES('480c3cf3b5ba4e20b00a01cd6fede222','video_thumbnail',1,1,3,'a180ef3b4b8f55fc9183587f25012fe2',NULL,'6e1d148b6f17c3230c9dca281c8c8f80');INSERT INTO "content_file" VALUES('fcdd7d787d7e4c2d99f6f9ae13705680','video_subtitle',1,0,4,'a180ef3b4b8f55fc9183587f25012fe2','fr','fb528568a8955e02c252d926dda22c31');INSERT INTO "content_file" VALUES('bc290698ff064c37bbcf1787a63cf1d4','video_subtitle',1,0,4,'a180ef3b4b8f55fc9183587f25012fe2','en','8c48f38e814849d22932943f4189a7e8');INSERT INTO "content_file" VALUES('84a26cc107c344c49b69466ecc9718e0','high_res_video',0,0,1,'a180ef3b4b8f55fc9183587f25012fe2',NULL,'e4fcd64302dbd257d6af1a324c6807e6');INSERT INTO "content_file" VALUES('e7cd74fee9714176b52f1251c0fb69b0','video_thumbnail',1,1,3,'ee9fe4c9d8b753a790efb6d8fde79340',NULL,'a73414ca93c8f64823cadc30f59f0c7e');INSERT INTO "content_file" VALUES('f1273e61a500448f9ac82026bf2b7fd6','video_subtitle',1,0,4,'ee9fe4c9d8b753a790efb6d8fde79340','fr','b4bcf7e2f6ec4a72a5113330fc6f128a');INSERT INTO "content_file" VALUES('40f556db0d304e639a8e4398b527cb75','video_subtitle',1,0,4,'ee9fe4c9d8b753a790efb6d8fde79340','en','320bf1a5f938a69a5fcfe43651858b57');INSERT INTO "content_file" VALUES('58c73eb2ce1b46158d0b963ab5ecc25c','high_res_video',0,0,1,'ee9fe4c9d8b753a790efb6d8fde79340',NULL,'3c0a7e77e0a128d978fe8cccd6df0ce1');INSERT INTO "content_file" VALUES('b34ddc9139c940348cf4e421301f714a','video_thumbnail',1,1,3,'b62e8f12746c51c7a6c449d25d64ef39',NULL,'dc675bee9630330496605ac24c8c3147');INSERT INTO "content_file" VALUES('0443b43530c646499d5fe5b246ad2eaa','video_subtitle',1,0,4,'b62e8f12746c51c7a6c449d25d64ef39','fr','c674eb399071b975ffee9b1bc829948b');INSERT INTO "content_file" VALUES('8ba03dd1cf7943e58b50b19425cd9c5b','video_subtitle',1,0,4,'b62e8f12746c51c7a6c449d25d64ef39','en','966ffd3de667b55a97fc7550f64ae054');INSERT INTO "content_file" VALUES('ea0202baa3754803b672dd6ef9dfab58','high_res_video',0,0,1,'b62e8f12746c51c7a6c449d25d64ef39',NULL,'672681032e402434d01787add681005e');INSERT INTO "content_file" VALUES('698b4e8b1c1b451ebb9a5ce1e7b44241','video_thumbnail',1,1,3,'8545895016185c3da6ab04de13c542ae',NULL,'453a593510a338b079c348feb699f2df');INSERT INTO "content_file" VALUES('f5b68f52b56d40df939d3597a47dc430','video_subtitle',1,0,4,'8545895016185c3da6ab04de13c542ae','fr','705e7a01d26221e25f906f902f5672a8');INSERT INTO "content_file" VALUES('4ed3dfa7da86406088f9ba0bd035e199','video_subtitle',1,0,4,'8545895016185c3da6ab04de13c542ae','en','79e756c12b4d96c895a5a861e8c78603');INSERT INTO "content_file" VALUES('c26f3507d0c34dd9a8399ca119151cea','high_res_video',0,0,1,'8545895016185c3da6ab04de13c542ae',NULL,'4a3dd95d512ea320bd84325c67494542');INSERT INTO "content_file" VALUES('a986bd07e0fd43829fb2ba28389328b6','video_thumbnail',1,1,3,'5e48998ae40b5127ad6b7ec002b9c955',NULL,'d76d810db809fc0cdf272e1ef5b076a6');INSERT INTO "content_file" VALUES('3d63d7f3feb6481ab63c4944c54185c7','video_subtitle',1,0,4,'5e48998ae40b5127ad6b7ec002b9c955','mn','9363b1fdca499e6177b6c3fe485a956d');INSERT INTO "content_file" VALUES('31ea86df4829497db917f77b88175f07','video_subtitle',1,0,4,'5e48998ae40b5127ad6b7ec002b9c955','fr','24462cf7ca2dded2b92cf84c12d9afd9');INSERT INTO "content_file" VALUES('2168b86dd5d446eeb4c632d0ad67c20b','video_subtitle',1,0,4,'5e48998ae40b5127ad6b7ec002b9c955','en','af58de826a47d1b2d848ed52d5b21d12');INSERT INTO "content_file" VALUES('b8e6b6e1ab114fdc8d77cdc82f25f53c','high_res_video',0,0,1,'5e48998ae40b5127ad6b7ec002b9c955',NULL,'2dfb41979bead0993e8c33f04e3f2336');INSERT INTO "content_file" VALUES('aeec35cc46074ab4a9733ab222eae2d2','video_thumbnail',1,1,3,'bbb054cdefb55aa38ede7d0704c9d802',NULL,'d3c4024e3578f40e4202a2935d40846c');INSERT INTO "content_file" VALUES('81f06fa80ecf4d729b3642dc4658ca45','video_subtitle',1,0,4,'bbb054cdefb55aa38ede7d0704c9d802','mn','db27e0aaee03f548a9e245b465c1534d');INSERT INTO "content_file" VALUES('0052b1e750b34f38a75fbdfc4286106b','video_subtitle',1,0,4,'bbb054cdefb55aa38ede7d0704c9d802','fr','74adef32fff725b16de500b0ceb8752f');INSERT INTO "content_file" VALUES('f6d98efa101c4f2a9d43bd07a7e78c4f','video_subtitle',1,0,4,'bbb054cdefb55aa38ede7d0704c9d802','en','7c7511084f178ff3999e223be2be5e50');INSERT INTO "content_file" VALUES('c860e3c55ea844afb3bf3b79278bb76f','high_res_video',0,0,1,'bbb054cdefb55aa38ede7d0704c9d802',NULL,'aab194854433da800c6a7f973becdd4b');INSERT INTO "content_file" VALUES('9f248bafca7542dd8acba334d094d378','video_thumbnail',1,1,3,'ac18b7ca004a5564829b6bba4ea2cca6',NULL,'0605f1199f0da51558562492d809abbc');INSERT INTO "content_file" VALUES('0d41ea5df1f447a0ba4b59fbcba48343','video_subtitle',1,0,4,'ac18b7ca004a5564829b6bba4ea2cca6','mn','dcf55791ff8710610d85cff89f1b91bf');INSERT INTO "content_file" VALUES('4eb731dfd0f046eeafd765f139e765d2','video_subtitle',1,0,4,'ac18b7ca004a5564829b6bba4ea2cca6','fr','12ca092266cb64fa2f2d11f893a80f40');INSERT INTO "content_file" VALUES('f7ebb0717a7e4fc8a39bdb1e4bccfd3d','video_subtitle',1,0,4,'ac18b7ca004a5564829b6bba4ea2cca6','en','45cabfd36bea58ee98a43835b4212049');INSERT INTO "content_file" VALUES('10bf8f762f974ca2b4b7ffaad5e201b0','high_res_video',0,0,1,'ac18b7ca004a5564829b6bba4ea2cca6',NULL,'07c4d74bbd8a554643945fd20f9ddd56');INSERT INTO "content_file" VALUES('46ef9883fcfa40119010432d308bad33','video_thumbnail',1,1,3,'792516f054575a99bf5943df65b3f3d9',NULL,'b4cb09503575d413730e66b130dd628c');INSERT INTO "content_file" VALUES('9cdb5758a16648de90b80c95f13d4e00','video_subtitle',1,0,4,'792516f054575a99bf5943df65b3f3d9','mn','ff877fef80c4fbcfebab1a5abc16a901');INSERT INTO "content_file" VALUES('ecbd8f9f7cc4403babee495e0082e055','video_subtitle',1,0,4,'792516f054575a99bf5943df65b3f3d9','fr','a0a92a7b82ab8aadb4134050060b87ca');INSERT INTO "content_file" VALUES('af4fda9a5fec46e0a8fc94c6142e2db6','video_subtitle',1,0,4,'792516f054575a99bf5943df65b3f3d9','en','79b1d633d82679af846ffb9f39f6e0aa');INSERT INTO "content_file" VALUES('0342a7bc4644460184d069255d444351','high_res_video',0,0,1,'792516f054575a99bf5943df65b3f3d9',NULL,'327b3c347abef074d1352e377b47aa05');INSERT INTO "content_file" VALUES('b6141e9c9b244d30b30eae945eb8ec78','video_thumbnail',1,1,3,'41e26c97491d5b6cbced0ba07870c2c4',NULL,'47a04dca863373024d3576cd9b6ef8d2');INSERT INTO "content_file" VALUES('18b285fc86424154b64632033e90dc05','video_subtitle',1,0,4,'41e26c97491d5b6cbced0ba07870c2c4','mn','9e8ebd517205ad6ca8fa71e8f24a5be1');INSERT INTO "content_file" VALUES('8e3018c8dca7433ca0b46dd80af60e4d','video_subtitle',1,0,4,'41e26c97491d5b6cbced0ba07870c2c4','fr','bed20e28018c99e9c9054caeb74101a0');INSERT INTO "content_file" VALUES('70d25b8afef24932816d1664287a8e3c','video_subtitle',1,0,4,'41e26c97491d5b6cbced0ba07870c2c4','en','c8382d26ad634fa4a4351abde0875dc2');INSERT INTO "content_file" VALUES('986db6022388426f8eb249453d657be6','high_res_video',0,0,1,'41e26c97491d5b6cbced0ba07870c2c4',NULL,'ca72508d9e32600f7167669f7e8d44f7');INSERT INTO "content_file" VALUES('acb8d52bae274ead83bfd5483f56c04f','video_thumbnail',1,1,3,'6ac284890afe5e8f895eba4896e73797',NULL,'5070b77601c969b05be2d4184d584ac9');INSERT INTO "content_file" VALUES('2a834003916a434a8fc87448328905fa','video_subtitle',1,0,4,'6ac284890afe5e8f895eba4896e73797','mn','1e126111bded671edc6b3128dd1dda5b');INSERT INTO "content_file" VALUES('c4116f39775040d0bbcc3fd4d02d995a','video_subtitle',1,0,4,'6ac284890afe5e8f895eba4896e73797','fr','adf33f1047f7303b0505509ff18bae9c');INSERT INTO "content_file" VALUES('f93b41df2b404b6ca6bfddbedb01c59b','video_subtitle',1,0,4,'6ac284890afe5e8f895eba4896e73797','en','2185e8a5e16db68969b9c68a6ebf3b1d');INSERT INTO "content_file" VALUES('cc11e8753042473199fcaf4c7f08ccc8','high_res_video',0,0,1,'6ac284890afe5e8f895eba4896e73797',NULL,'d6195cca0d081c6f0838739ca2566df5');INSERT INTO "content_file" VALUES('87b6edca249d499facc59504ca583385','video_thumbnail',1,1,3,'817ae32641e45ca08691014c3d51b14c',NULL,'71715d147c3d92f1330dba71e2475ab2');INSERT INTO "content_file" VALUES('7849e47558954ab0bc54e3d01db1e5b8','video_subtitle',1,0,4,'817ae32641e45ca08691014c3d51b14c','fr','8b5f524a7259086a956c6e2ec5141f01');INSERT INTO "content_file" VALUES('b051548f7c394a6d98b7f089af3586d5','video_subtitle',1,0,4,'817ae32641e45ca08691014c3d51b14c','en','3aead6df85266bb9eda64a836ad14ddb');INSERT INTO "content_file" VALUES('f3e483279665488a8c2b3e3944926745','high_res_video',0,0,1,'817ae32641e45ca08691014c3d51b14c',NULL,'d4f7d7af720ad8aa926b2ea82fddb43b');INSERT INTO "content_file" VALUES('19627c0c6b0243f8bc600844e1cf6deb','video_thumbnail',1,1,3,'55b6e54df3b75e9fb8c0ff650e852990',NULL,'9f0f601bd082c68f9174a753271e5870');INSERT INTO "content_file" VALUES('23cf89583ff747e98dde46e640bde038','video_subtitle',1,0,4,'55b6e54df3b75e9fb8c0ff650e852990','fr','184cd4abef928ac368f805c0575ab779');INSERT INTO "content_file" VALUES('78e198fe2c534eec91e491141d37fcd4','video_subtitle',1,0,4,'55b6e54df3b75e9fb8c0ff650e852990','en','c2b4ef73460338551c1ab108504fea50');INSERT INTO "content_file" VALUES('6191a2c4d9c24e9c8e3ae7ecb85d190e','high_res_video',0,0,1,'55b6e54df3b75e9fb8c0ff650e852990',NULL,'ee517caccb5ed8b030dae0fc6e48dcf8');INSERT INTO "content_file" VALUES('87f185f1bf0c4f63a698758d81bb9e41','video_thumbnail',1,1,3,'90d2401c65d45660b1323b7387be079b',NULL,'8d736392e0f0905fb52d71722bc8bcb2');INSERT INTO "content_file" VALUES('bbac6bacefda4d08849a221d408254b0','video_subtitle',1,0,4,'90d2401c65d45660b1323b7387be079b','mn','00363b03d8d8a07af576af6f05641efb');INSERT INTO "content_file" VALUES('8d72a57192544044a94bd89b07a360e9','video_subtitle',1,0,4,'90d2401c65d45660b1323b7387be079b','fr','82d5fce7a5baf17d112e83b00a06d203');INSERT INTO "content_file" VALUES('7ab72c21c5bb4c17967773d8d645c5a5','video_subtitle',1,0,4,'90d2401c65d45660b1323b7387be079b','en','cbd49bc2b675226a1211be85bf61bf65');INSERT INTO "content_file" VALUES('9426ee5c83294ec6a15f518a588b9ad0','high_res_video',0,0,1,'90d2401c65d45660b1323b7387be079b',NULL,'0524ea2f61a8f4336027e8dd165de6ed');INSERT INTO "content_file" VALUES('32682913f2ad4e54b218e95000bfca26','video_thumbnail',1,1,3,'6c85ab792d635dd4ba468fe834f0ea28',NULL,'20b24df1abffdc203979784dbb11d7a4');INSERT INTO "content_file" VALUES('c4e31f41ad55463d95b95554336ec7ef','video_subtitle',1,0,4,'6c85ab792d635dd4ba468fe834f0ea28','fr','113ba7ccee35963151bc21d5cf287fa6');INSERT INTO "content_file" VALUES('437f7be47ac743be92fa366f7e7bac53','video_subtitle',1,0,4,'6c85ab792d635dd4ba468fe834f0ea28','en','0d0ccb9288423b7752d710eeff6a021c');INSERT INTO "content_file" VALUES('dd818d47840f499dad5485b4313d4c0a','high_res_video',0,0,1,'6c85ab792d635dd4ba468fe834f0ea28',NULL,'0e87e156b1ad4ada62e769dae3177d66');INSERT INTO "content_file" VALUES('c132967cd82b4be6986ee3a0ee8a55f4','video_thumbnail',1,1,3,'da0ac10c63ea57eea709106490d6e2ef',NULL,'3c269e2a0cb926d3cbbca3ed1b69da79');INSERT INTO "content_file" VALUES('1827b4147d104d1aa4ea9e16195b3b54','video_subtitle',1,0,4,'da0ac10c63ea57eea709106490d6e2ef','fr','1d71becde278fe2c3991013261888288');INSERT INTO "content_file" VALUES('803ab33689f44b5693efaee0e78e1404','video_subtitle',1,0,4,'da0ac10c63ea57eea709106490d6e2ef','en','cf5a76c1ac3c03da60f97e53e64ca9e8');INSERT INTO "content_file" VALUES('a76456605ebd4eb3b9858eb833d03cb6','high_res_video',0,0,1,'da0ac10c63ea57eea709106490d6e2ef',NULL,'ea7767fd96f68b201d77e3d97663080a');INSERT INTO "content_file" VALUES('e39bfcb36b1943e895621625ad7745b7','video_thumbnail',1,1,3,'5cbfa5ae78d25f4a977c4d88f4fec037',NULL,'7bc8ad48048553ef82665960784ee337');INSERT INTO "content_file" VALUES('ee1ea26a11a44c4bb148ddb795bdca85','video_subtitle',1,0,4,'5cbfa5ae78d25f4a977c4d88f4fec037','fr','9d2534449629a6c85e52da4c74205e90');INSERT INTO "content_file" VALUES('512965a3ef6a4b97a222f04027fe3c15','video_subtitle',1,0,4,'5cbfa5ae78d25f4a977c4d88f4fec037','en','7a588e72d69f7d631e4184cee69628a0');INSERT INTO "content_file" VALUES('aba67a89989547e69262c1ab123b6b1a','high_res_video',0,0,1,'5cbfa5ae78d25f4a977c4d88f4fec037',NULL,'4e0b5632daa39d858ecc985bff46da1b');INSERT INTO "content_file" VALUES('70498160da63436c97bd50537fe7e8d1','video_thumbnail',1,1,3,'5d8a55b965865c11827b127c2abd8918',NULL,'558c6456f5ceb8fcc55434367818427d');INSERT INTO "content_file" VALUES('73654c13154549218a6be02b31f66a97','video_subtitle',1,0,4,'5d8a55b965865c11827b127c2abd8918','mn','d0811c1493f5bfec818a39123a802ca8');INSERT INTO "content_file" VALUES('ec9fbfe8260b47bea64f23576891acee','video_subtitle',1,0,4,'5d8a55b965865c11827b127c2abd8918','fr','cb92812036fe061ee8c1f5a30dfd2603');INSERT INTO "content_file" VALUES('4770c0d047174b639336d6f864563a66','video_subtitle',1,0,4,'5d8a55b965865c11827b127c2abd8918','en','404e09b822537a8ea97eaa3a2914ae1c');INSERT INTO "content_file" VALUES('6d5b0e09942049dfb3ff33f2fe8cffe2','high_res_video',0,0,1,'5d8a55b965865c11827b127c2abd8918',NULL,'1685cd30371a2582048c3ca18ad701b9');INSERT INTO "content_file" VALUES('5af60ed71bb44609bf4ed12247b58559','video_thumbnail',1,1,3,'1bb8e094390e5412831d8c950248f26b',NULL,'99ca043d3ef13d12ddfe742652d19e7e');INSERT INTO "content_file" VALUES('9738a703e25d4ecbb45da99b199b64c6','video_subtitle',1,0,4,'1bb8e094390e5412831d8c950248f26b','mn','8a769260ccfdf13dacfff9f6fb6d3521');INSERT INTO "content_file" VALUES('b6659645f40640f8983d8e8ec2419c9d','video_subtitle',1,0,4,'1bb8e094390e5412831d8c950248f26b','fr','4582b5d727b41e33a74f398c06670012');INSERT INTO "content_file" VALUES('b262c84371f64893a85b18e60b70b55a','video_subtitle',1,0,4,'1bb8e094390e5412831d8c950248f26b','en','016451159833587e136ab111af592714');INSERT INTO "content_file" VALUES('374d8598b6e944a6bb7e1d13b4e0b2f2','high_res_video',0,0,1,'1bb8e094390e5412831d8c950248f26b',NULL,'8ec0061468ff0905c859b154a26cc3ab');INSERT INTO "content_file" VALUES('9d56158761ce4e0690612b96831de6c0','video_thumbnail',1,1,3,'16dd022236ba5e11a45ad5639da08ee4',NULL,'c78461822cf69a1a063fa3554a3a7808');INSERT INTO "content_file" VALUES('4a642dd95c444ce294828886d5a43212','video_subtitle',1,0,4,'16dd022236ba5e11a45ad5639da08ee4','fr','46fd54167fba23aaad165b87d5b1cc73');INSERT INTO "content_file" VALUES('bee8a3d508694596b7666d66bb45f065','video_subtitle',1,0,4,'16dd022236ba5e11a45ad5639da08ee4','en','ac2ef99d05ce4c2de348a4a6dd0b1146');INSERT INTO "content_file" VALUES('d3f8cf991a8f4c00a1bb6fb538e3dd08','high_res_video',0,0,1,'16dd022236ba5e11a45ad5639da08ee4',NULL,'153e70921da6faa6cd919e7a49b6a0dc');INSERT INTO "content_file" VALUES('d5d6406320ec4916a072e65b1047efa7','video_thumbnail',1,1,3,'b1bcae20d0b75a0e993ab69abcb640bd',NULL,'b0b7a7f1ffaddc9d6687d6f5b8f35aab');INSERT INTO "content_file" VALUES('c8aebca5b4604aa8b2162e4780c11b64','video_subtitle',1,0,4,'b1bcae20d0b75a0e993ab69abcb640bd','fr','411a774a2b3af4cf129e7649bce4b20c');INSERT INTO "content_file" VALUES('989efb52fcc0459ba9a91e492a36a8ad','video_subtitle',1,0,4,'b1bcae20d0b75a0e993ab69abcb640bd','en','7041ea5db7290b2b03abe695aa021b45');INSERT INTO "content_file" VALUES('0486b251d2364699b383c0a4cc10186c','high_res_video',0,0,1,'b1bcae20d0b75a0e993ab69abcb640bd',NULL,'3bbb86fcec1264ef6a368088532d7a8e');INSERT INTO "content_file" VALUES('47269b300fa34ca4a89df9b4d47a9eb5','video_thumbnail',1,1,3,'296c4ce338f15f08a11e88717a9111dd',NULL,'c26d1647dbfed9e35c0d948e8d2f306d');INSERT INTO "content_file" VALUES('1fc2d964e55c45c7bfcee15a46424001','video_subtitle',1,0,4,'296c4ce338f15f08a11e88717a9111dd','fr','37515751118ae638e7ef45d1fc17f43d');INSERT INTO "content_file" VALUES('19f4f6472e5b4e4eb58071bc421d4568','video_subtitle',1,0,4,'296c4ce338f15f08a11e88717a9111dd','en','d09b789b75095b3ab669b80c8e17c31d');INSERT INTO "content_file" VALUES('5bfcc5b41ecc4ac0b1d114e8df55bfa1','high_res_video',0,0,1,'296c4ce338f15f08a11e88717a9111dd',NULL,'cd1f22f4b9ed80eb63e7c583313d008d');INSERT INTO "content_file" VALUES('2a0c818c6f424be6a691e5ce2c20e21f','video_thumbnail',1,1,3,'22ca355b401a5b24b2379fd21907ffa8',NULL,'575bec2607ba715480dacbfa37301ae3');INSERT INTO "content_file" VALUES('9e9c8d20383f421bb5ee311e3a4b2fd2','video_subtitle',1,0,4,'22ca355b401a5b24b2379fd21907ffa8','fr','138b3616305b15cb9404f5e2e564b1c4');INSERT INTO "content_file" VALUES('e88b00b4170840419fdc9c6cd1252a69','video_subtitle',1,0,4,'22ca355b401a5b24b2379fd21907ffa8','en','c85fb72cc6ed5cb8920a70affa89293c');INSERT INTO "content_file" VALUES('4fc509616fdb4d34a3bea95281ddd1bc','high_res_video',0,0,1,'22ca355b401a5b24b2379fd21907ffa8',NULL,'3c96f28415c274e7dd055c0c6d016a34');INSERT INTO "content_file" VALUES('bef44ff8d3054bae92d9de90ab9ef0e2','video_thumbnail',1,1,3,'249c1b59e861580ab5850988d90d1aff',NULL,'8899c396d8fdccfd1cff73797644ffae');INSERT INTO "content_file" VALUES('0f2c0d698ba64a9d82d57476690cd455','video_subtitle',1,0,4,'249c1b59e861580ab5850988d90d1aff','fr','bfb5006b182f60819f1ad3fc604f2098');INSERT INTO "content_file" VALUES('66c97fd1919e4c1c862c22dc95412eef','video_subtitle',1,0,4,'249c1b59e861580ab5850988d90d1aff','en','989671deb36ad63a5099d07b02f29745');INSERT INTO "content_file" VALUES('3fcf97f6debe4761a29d711e68599549','high_res_video',0,0,1,'249c1b59e861580ab5850988d90d1aff',NULL,'7a83e6d58bc9f291e6b210b8a770b443');INSERT INTO "content_file" VALUES('c3a2a9acfd184a3e913bc9a7748e4be0','video_thumbnail',1,1,3,'9a7e8032c9a45ac9bfb9410c8df32041',NULL,'97043f78580bfd8e7c5e44aabef00d8e');INSERT INTO "content_file" VALUES('9e7f3f8f0aea4dd3a2b4f1a971a20ff9','video_subtitle',1,0,4,'9a7e8032c9a45ac9bfb9410c8df32041','fr','5d4edcacc44630601b2a66f9426f3af6');INSERT INTO "content_file" VALUES('d1647bdc6f5141ed849fa87ec4dff611','video_subtitle',1,0,4,'9a7e8032c9a45ac9bfb9410c8df32041','en','779f70ea0b33293edb1045d722e544fa');INSERT INTO "content_file" VALUES('b6c4f0813f8c4945b86c4a2ef31879b5','high_res_video',0,0,1,'9a7e8032c9a45ac9bfb9410c8df32041',NULL,'3c5c3d0a00a5c354295bc58bd756c4c7');INSERT INTO "content_file" VALUES('2f3f8800de4241fc9b9bc627cf766626','video_thumbnail',1,1,3,'d615edd946fd564eb786b1b95ef97a19',NULL,'dae51d439ca1d7d4112c6b7cc5216e8c');INSERT INTO "content_file" VALUES('f3b58ad4e9b344aaa1749d92f3c8d0e2','high_res_video',0,0,1,'d615edd946fd564eb786b1b95ef97a19',NULL,'c3e450daa631265ca232b379156f5dac');INSERT INTO "content_file" VALUES('4cc0e76ec3b4411594d22fb8b2731887','video_thumbnail',1,1,3,'5555a18e9214595cb2ee3318f01bc822',NULL,'c8594b387c2db0d467d28356079bd49e');INSERT INTO "content_file" VALUES('34ca0497b7f543c3933426fd3adc4869','video_subtitle',1,0,4,'5555a18e9214595cb2ee3318f01bc822','fr','c20d55663379938a8e1414e2fbb6ea48');INSERT INTO "content_file" VALUES('9da3b99cb7ab4c62838a54a824e651aa','video_subtitle',1,0,4,'5555a18e9214595cb2ee3318f01bc822','en','91ddbdae2f6c8dccb005325d6cbcd2d8');INSERT INTO "content_file" VALUES('13bcf1a5d13d483a82aa2c1d7217d8ba','high_res_video',0,0,1,'5555a18e9214595cb2ee3318f01bc822',NULL,'2f484fb4dcbd06a8f89b64ee8578a9bd');INSERT INTO "content_file" VALUES('c8e07366f25643c1abb505716dfa304e','video_thumbnail',1,1,3,'28ce23c5701b54169b878f84e2092b66',NULL,'4ddffd12646c37878ba400eba9829c7a');INSERT INTO "content_file" VALUES('79053c9c55f14ce0b5186e5ecd4c35e4','video_subtitle',1,0,4,'28ce23c5701b54169b878f84e2092b66','fr','255b8f3e7d3439f5a6dbcca34918e02e');INSERT INTO "content_file" VALUES('34e2feae81df4a9e905a1136e0a3fbe7','video_subtitle',1,0,4,'28ce23c5701b54169b878f84e2092b66','en','1d1029eb725c1e49deafc3374e59a842');INSERT INTO "content_file" VALUES('e2a20fa3a6714b91ac3c0ade9d5d9b71','high_res_video',0,0,1,'28ce23c5701b54169b878f84e2092b66',NULL,'d22b64885d9683859a9ad4dada25cbc2');INSERT INTO "content_file" VALUES('127dc20c97bd433ebcfcfdf5ddbb3f86','video_thumbnail',1,1,3,'b2926e00dbd75cc3a4f140a91efee5b6',NULL,'d6cb455889a2fa6bca6b60923eec261a');INSERT INTO "content_file" VALUES('9f479731f4354de9941f8f01a279b6c7','video_subtitle',1,0,4,'b2926e00dbd75cc3a4f140a91efee5b6','fr','524c08b2a813c1db31b659f563db8f73');INSERT INTO "content_file" VALUES('93fac7dd28fa4da6bdf6392eacba5d03','video_subtitle',1,0,4,'b2926e00dbd75cc3a4f140a91efee5b6','en','ea46e262432ba6d83ea8ee77a79a46e1');INSERT INTO "content_file" VALUES('493b5e2d2b05467083cbd230f6adfae8','high_res_video',0,0,1,'b2926e00dbd75cc3a4f140a91efee5b6',NULL,'66bc50369ba39b7e49dfabdd4319203c');INSERT INTO "content_file" VALUES('76c804f0ae774fa0b395751e5c2406b7','video_thumbnail',1,1,3,'468e52361b6656e6a1cc39be2d25add5',NULL,'56307eb674c2d5d690100147ed0903b5');INSERT INTO "content_file" VALUES('2abeb0da8149442d9033b64813b55490','video_subtitle',1,0,4,'468e52361b6656e6a1cc39be2d25add5','fr','bd94c79ff4d6b040d729dd0378c279ab');INSERT INTO "content_file" VALUES('a190f23ee1a047508d0265a431e4cc68','video_subtitle',1,0,4,'468e52361b6656e6a1cc39be2d25add5','en','3e0c7f4e22978f5ba31794f13299abaa');INSERT INTO "content_file" VALUES('7cc6acf746cf4555b75fe7917b285462','high_res_video',0,0,1,'468e52361b6656e6a1cc39be2d25add5',NULL,'16aa9ff7057e7c2bb13c275e85784eb9');INSERT INTO "content_file" VALUES('77bfee74f5784910aa914b4574616418','html5_thumbnail',1,1,2,'422ea0fb26a456afb7f1280baf7f1dee',NULL,'3fad219d3bbdf99a2bca49e5c58ae81c');INSERT INTO "content_file" VALUES('9aa77dfb458149bdbbc66ef278650028','html5_zip',0,0,1,'422ea0fb26a456afb7f1280baf7f1dee',NULL,'736a92d42c826149f4d9e12560a0930a');INSERT INTO "content_file" VALUES('f3a5b2209a2e4a0eb8847b515d6b67d2','video_thumbnail',1,1,3,'3134a09b6195572f9497f9ca161b1b9a',NULL,'fb49cbb97cd18865a7d8a1a8c73fa411');INSERT INTO "content_file" VALUES('8214d32e95604fd9b345a040358484b7','video_subtitle',1,0,4,'3134a09b6195572f9497f9ca161b1b9a','fr','8ca3bb373d89d7f14c69882d86a06b77');INSERT INTO "content_file" VALUES('4204e0cf82a04cceb62bde215a860ecf','video_subtitle',1,0,4,'3134a09b6195572f9497f9ca161b1b9a','en','7b981b40ded11ce06144940070d148b3');INSERT INTO "content_file" VALUES('0e37cf86273449f2af4a2cd9c19b95b1','high_res_video',0,0,1,'3134a09b6195572f9497f9ca161b1b9a',NULL,'1dccc0d10d5476ecf84355844f0e362b');INSERT INTO "content_file" VALUES('1d6edc97502b43ef8829189e92ee95bb','video_thumbnail',1,1,3,'1993b73a914b55bea210ea1e6721e6fb',NULL,'6b370fcd873eb8c4079b17750b71b53f');INSERT INTO "content_file" VALUES('0251d760b5f14561835442f05a58fbbc','high_res_video',0,0,1,'1993b73a914b55bea210ea1e6721e6fb',NULL,'a1b8ac5116018ca7daadfdc523301075');INSERT INTO "content_file" VALUES('539603b97bf641859702540319289918','video_thumbnail',1,1,3,'9128019503f85c2bb09cc468a9c7c964',NULL,'139ca9933097e6a236441f6cbbc0d81c');INSERT INTO "content_file" VALUES('016812378b6747928fa6c328684ab61f','video_subtitle',1,0,4,'9128019503f85c2bb09cc468a9c7c964','fr','6ed461d705dc7a41dff82bf83e72bed4');INSERT INTO "content_file" VALUES('7842991d76eb42ecbcfc7f8a788f961a','video_subtitle',1,0,4,'9128019503f85c2bb09cc468a9c7c964','en','d0fe408c02ee5e933909efa806a129f6');INSERT INTO "content_file" VALUES('e09ae0f595cd446b9ed04c387d913091','video_subtitle',1,0,4,'9128019503f85c2bb09cc468a9c7c964','af','a91dd27c8f3db310f0693b1e221c7255');INSERT INTO "content_file" VALUES('4e8b6e8d648d482fba2d9bcdacf685f6','high_res_video',0,0,1,'9128019503f85c2bb09cc468a9c7c964',NULL,'17cf5bf4e3169d69e8f31dc7d4483c92');INSERT INTO "content_file" VALUES('9452edbc5b6940c9b3d05c997104f713','video_thumbnail',1,1,3,'899887ffdf5e5f0e8cb3dff0d656ce16',NULL,'76b4c6740afa62d8640bc3e3c35d02d7');INSERT INTO "content_file" VALUES('c8c56aab4ed54b42abc2888dff908ec2','video_subtitle',1,0,4,'899887ffdf5e5f0e8cb3dff0d656ce16','fr','3f7acb74a488695aa17958a991ebd896');INSERT INTO "content_file" VALUES('bf8c90bd58fd460097902d7574fa3d05','video_subtitle',1,0,4,'899887ffdf5e5f0e8cb3dff0d656ce16','en','5f4395b15a281d5a0051e2f1700ea4d5');INSERT INTO "content_file" VALUES('ba263208aee64d0397f62c603c5e6e64','video_subtitle',1,0,4,'899887ffdf5e5f0e8cb3dff0d656ce16','af','544a4062a60413b181445ee02790cd0d');INSERT INTO "content_file" VALUES('a72d263e4a80431eabfe0c3a33781dca','high_res_video',0,0,1,'899887ffdf5e5f0e8cb3dff0d656ce16',NULL,'ca01eadc651c2d210976d9c9c76b1dc9');INSERT INTO "content_file" VALUES('a92b996865ec4cbdbcedf9725353316c','video_thumbnail',1,1,3,'e344b62dd8d05d0f86f9c5f38dc2f7ef',NULL,'977a35853d68b8a99b9459d4a00db9a4');INSERT INTO "content_file" VALUES('1eac37c82de64d55bed9bdbc41a48514','video_subtitle',1,0,4,'e344b62dd8d05d0f86f9c5f38dc2f7ef','fr','283a3e1e9f55048ff93c316aeadfb6ae');INSERT INTO "content_file" VALUES('f55858e9dda447b29ba7715d4b5b4971','video_subtitle',1,0,4,'e344b62dd8d05d0f86f9c5f38dc2f7ef','en','736b1cb9ee3191e27216e61b15082b76');INSERT INTO "content_file" VALUES('63b089902a6843bc95f4827a142c26f6','video_subtitle',1,0,4,'e344b62dd8d05d0f86f9c5f38dc2f7ef','af','2208715dab5b6b3cc7f778cba0efe95a');INSERT INTO "content_file" VALUES('9429afc1e3044e149c6fc1d42de7377c','high_res_video',0,0,1,'e344b62dd8d05d0f86f9c5f38dc2f7ef',NULL,'f48a69937b6acb42abac616bc591e185');INSERT INTO "content_file" VALUES('5ca684009fd14b3e95cf094614e0bcfe','video_thumbnail',1,1,3,'90ce8dff005d5f218cbf4588f5593793',NULL,'e3f5e47fce54c075e8eb6a52b5c79ae4');INSERT INTO "content_file" VALUES('784abcef6a4a4f2fa4147a925bf815e0','video_subtitle',1,0,4,'90ce8dff005d5f218cbf4588f5593793','fr','76c4d324f3644b9a1c2fb0860e1cd8e9');INSERT INTO "content_file" VALUES('e40ca58fb0c749c397267692dbf4c713','video_subtitle',1,0,4,'90ce8dff005d5f218cbf4588f5593793','en','6eb27b1eec8b2594e9c77fba3003370f');INSERT INTO "content_file" VALUES('d3060caa3acc442981fa0ae79c3d927e','video_subtitle',1,0,4,'90ce8dff005d5f218cbf4588f5593793','af','e9d243d216086599e081a9b27fe57bf4');INSERT INTO "content_file" VALUES('0eead279454f4eaeb0a678f9910ff1d6','high_res_video',0,0,1,'90ce8dff005d5f218cbf4588f5593793',NULL,'717d1baf484d9c2769cac00343b59270');INSERT INTO "content_file" VALUES('0fe6aa806eb54d498d5a57abff05db89','video_thumbnail',1,1,3,'737372353257531b9f1e5a4be9122074',NULL,'8c2f1e77476c01cdcaf73272be8fe561');INSERT INTO "content_file" VALUES('3bb847ee9f9b4df3bb2220d7cc1d51e0','video_subtitle',1,0,4,'737372353257531b9f1e5a4be9122074','fr','bf9afd8d4cc81e2418ecec81ec838077');INSERT INTO "content_file" VALUES('ef79f1e5f6ff4a0e9868b9e52f07637f','video_subtitle',1,0,4,'737372353257531b9f1e5a4be9122074','en','cb16207c5330c8a6b7b4e721d96c6a94');INSERT INTO "content_file" VALUES('3400cde82a054484aff5741f23755c32','video_subtitle',1,0,4,'737372353257531b9f1e5a4be9122074','af','acee720db7a66e5c7cb5e44caf6a894f');INSERT INTO "content_file" VALUES('976a992fed1646aab5738d2d72f016af','high_res_video',0,0,1,'737372353257531b9f1e5a4be9122074',NULL,'1105a5821e620d3004707964e22449f5');INSERT INTO "content_file" VALUES('5f551d006320443f8c437c0e8ec44531','video_thumbnail',1,1,3,'d541a4e18e325e37b956b5a2a74c8e37',NULL,'cd58809413e00a523f91e9b94d306374');INSERT INTO "content_file" VALUES('82cccf6973b54f43a7e53a4790c26243','video_subtitle',1,0,4,'d541a4e18e325e37b956b5a2a74c8e37','fr','d8472ed0f540e7778df5bcf469d4ed35');INSERT INTO "content_file" VALUES('7d3edc6ac6bd46f9935e609ba4192e8a','video_subtitle',1,0,4,'d541a4e18e325e37b956b5a2a74c8e37','en','1f97bcba18b0bb8ad2584bfe5163390d');INSERT INTO "content_file" VALUES('f3e2586147864bad87a90060c2a0b506','high_res_video',0,0,1,'d541a4e18e325e37b956b5a2a74c8e37',NULL,'ed52b5f9ae943a5e471ae8f765f38cc1');INSERT INTO "content_file" VALUES('22284474f0e74a42b22e95c21e4afec2','video_thumbnail',1,1,3,'0a562405b6c25b42bd070638e18d00c0',NULL,'a57ba42a8a113e5c82486985ba3f5103');INSERT INTO "content_file" VALUES('243327949ad543cea65480b6e7a2a0a3','video_subtitle',1,0,4,'0a562405b6c25b42bd070638e18d00c0','fr','9ffeda86483adfef4ddc9f1e05a14bba');INSERT INTO "content_file" VALUES('ad8aa677950c4625946aaa4b55d1abd1','video_subtitle',1,0,4,'0a562405b6c25b42bd070638e18d00c0','en','f14228ff5886feff0730bf426549a950');INSERT INTO "content_file" VALUES('125d3cf7a4ff4689bd588cfa0d6ca353','high_res_video',0,0,1,'0a562405b6c25b42bd070638e18d00c0',NULL,'7b07f8b48271636597fd746b5516f12a');INSERT INTO "content_file" VALUES('a9073ed4daf7405fb31ed49ba97f5e00','video_thumbnail',1,1,3,'ca4befb7ce625deba6732a694a314380',NULL,'015b1e7fbec025d2d7bc9bb71af9d9cc');INSERT INTO "content_file" VALUES('9922b83288d148a0add8bcda2bcae883','video_subtitle',1,0,4,'ca4befb7ce625deba6732a694a314380','fr','39c6766a911d65a8086470677d6bd7cd');INSERT INTO "content_file" VALUES('d26022d5d9f44d68b2d5147757896939','video_subtitle',1,0,4,'ca4befb7ce625deba6732a694a314380','en','995db320b7d841ee2bd115865988ab81');INSERT INTO "content_file" VALUES('fce86c7bac684bdca862a52fb8798f78','high_res_video',0,0,1,'ca4befb7ce625deba6732a694a314380',NULL,'6788c697a205a28f3058add895292e06');INSERT INTO "content_file" VALUES('bb0e250b6f394be0b0952cc3cdc3d525','video_thumbnail',1,1,3,'82825db5ebf55262a1100ebecf171465',NULL,'a2ec3eefe3b412e9c67bbd1ba38e2d4c');INSERT INTO "content_file" VALUES('e7bf682d5b9849409be3f2264009edd2','video_subtitle',1,0,4,'82825db5ebf55262a1100ebecf171465','fr','9708b358ee29e369da44623c62e1c71c');INSERT INTO "content_file" VALUES('d7c4b377f7da43b4b22cd179abdf8acb','video_subtitle',1,0,4,'82825db5ebf55262a1100ebecf171465','en','8537d4b82a99170844636213f055bc6f');INSERT INTO "content_file" VALUES('ed3f5dc72d484f279bd582549d5278a1','high_res_video',0,0,1,'82825db5ebf55262a1100ebecf171465',NULL,'cc9821b64c3798b4507bbd610e9eb8ad');INSERT INTO "content_file" VALUES('3b65e3bc450f48b29b9880f884369a50','video_thumbnail',1,1,3,'e79c03f32db7561696870012dbffc5cf',NULL,'a79d0ae05f216a85245375d02b25f33f');INSERT INTO "content_file" VALUES('fac7e0aed50c462cbe7d45614f40f575','video_subtitle',1,0,4,'e79c03f32db7561696870012dbffc5cf','fr','da08c5ddce6adc9f2375059201e87ac7');INSERT INTO "content_file" VALUES('4b5e5654d75c4355a1b6d1d5004b1cac','video_subtitle',1,0,4,'e79c03f32db7561696870012dbffc5cf','en','648cc5997d673a5125eb83e6692f5c3a');INSERT INTO "content_file" VALUES('1248106078be45c2aa62928d42cb6df8','high_res_video',0,0,1,'e79c03f32db7561696870012dbffc5cf',NULL,'122e10bd9a4e95378afc407762a86a34');INSERT INTO "content_file" VALUES('7caa95b32eb7474a8dabad02424e8f0a','video_thumbnail',1,1,3,'3c61905381bb5c05ab03a477b0cf83ed',NULL,'8516025b6e0535d7e0165e45a6c82fa9');INSERT INTO "content_file" VALUES('03737b9785aa4aa492a51e6c14fd6d8a','video_subtitle',1,0,4,'3c61905381bb5c05ab03a477b0cf83ed','fr','92972ca01b1f103ca73f66a9df51d79a');INSERT INTO "content_file" VALUES('ad2a939fb6024eacb166b8ba375ee424','video_subtitle',1,0,4,'3c61905381bb5c05ab03a477b0cf83ed','en','94ae0f6581b72b36e70bcccf0483ba95');INSERT INTO "content_file" VALUES('6acea34d6036477f93724391fa84c0d0','high_res_video',0,0,1,'3c61905381bb5c05ab03a477b0cf83ed',NULL,'e189f6fe4d1d5b4b06f18a8f61c5b20a');INSERT INTO "content_file" VALUES('256d7e1c9fb14287af7f34c29a39ce1e','video_thumbnail',1,1,3,'638830ee2aca5590b2404029f6ae9b9b',NULL,'aa001b4593c1fc31c7dd747a611c708d');INSERT INTO "content_file" VALUES('30d2636e96d24f99a6e246f1b523e667','video_subtitle',1,0,4,'638830ee2aca5590b2404029f6ae9b9b','fr','5bd070a371f9d19a0e03bb0643abd80f');INSERT INTO "content_file" VALUES('ff01c0e2787c4c64828161f2c54870d9','video_subtitle',1,0,4,'638830ee2aca5590b2404029f6ae9b9b','en','625c574fd4ec8493fa86f51453e9f749');INSERT INTO "content_file" VALUES('ea07665969194c769ff5e3a1889f95eb','high_res_video',0,0,1,'638830ee2aca5590b2404029f6ae9b9b',NULL,'4533617df1c4de49fd6afc2f09e49e16');INSERT INTO "content_file" VALUES('9dfce9be885647ddb6b8c490eb955d90','video_thumbnail',1,1,3,'3411e398b06f5be2a942cb035910d13a',NULL,'89ee4aa69785fe864be6c5fe34aea702');INSERT INTO "content_file" VALUES('67e9a54f30cc441ab9788e5095285d7a','video_subtitle',1,0,4,'3411e398b06f5be2a942cb035910d13a','fr','541cc3758046dbadac25e7a37f8e9db6');INSERT INTO "content_file" VALUES('7837d4ec2c924c26bfc949950f8a7cd9','video_subtitle',1,0,4,'3411e398b06f5be2a942cb035910d13a','en','4bbae95fbe0838c5093937277bfec9f8');INSERT INTO "content_file" VALUES('45e599d6e5c643348dcccaf3dff9e705','high_res_video',0,0,1,'3411e398b06f5be2a942cb035910d13a',NULL,'0fc70fa89b60511ea8eed5398eed2dc5');INSERT INTO "content_file" VALUES('1caafc17dd2e4c71bcbcf3abd4e66dca','video_thumbnail',1,1,3,'8168815f3d7252848d5449b046ce2956',NULL,'52b1ff6590012f4050f0b54ba2f3b070');INSERT INTO "content_file" VALUES('b6b0e3ce67674c3db6368b7e6ed92d3b','high_res_video',0,0,1,'8168815f3d7252848d5449b046ce2956',NULL,'824845a4feb8cceb7db7f5e585fafb05');INSERT INTO "content_file" VALUES('1f8ca469f5d44107884400afec9545ef','video_thumbnail',1,1,3,'7f07259cebea587f8108a6a42fe102ce',NULL,'acb47851d6013108b4390fa8a63412bf');INSERT INTO "content_file" VALUES('761db96a12a248f89627f2f24fe79908','video_subtitle',1,0,4,'7f07259cebea587f8108a6a42fe102ce','fr','055fee222568166e64111b8dc4a56340');INSERT INTO "content_file" VALUES('d5eb0874d2404656acf4fb0a700a74de','video_subtitle',1,0,4,'7f07259cebea587f8108a6a42fe102ce','en','9c246edad116ced3ef1a125567d6ccce');INSERT INTO "content_file" VALUES('db110b6c485e48719ef4e815f2df6417','high_res_video',0,0,1,'7f07259cebea587f8108a6a42fe102ce',NULL,'673879e7d9a6cb4e0aa980ddcca8635d');INSERT INTO "content_file" VALUES('cf16c0d3d1ba47839b1cd4a5a1c0fdc9','video_thumbnail',1,1,3,'a8ff928e2d8257b59380308876f7a77c',NULL,'917fd996b280a844d9e73fab29dcf264');INSERT INTO "content_file" VALUES('902c5bdff3124e098b0c8499bc2fd8b0','video_subtitle',1,0,4,'a8ff928e2d8257b59380308876f7a77c','fr','08bba1c6f689a58929f5a1232c9a073a');INSERT INTO "content_file" VALUES('f4ff330f5c5849008c0e787946c04f6d','video_subtitle',1,0,4,'a8ff928e2d8257b59380308876f7a77c','en','24a66e78eeb9d8a6eedf3e6d0ce4cbf6');INSERT INTO "content_file" VALUES('118acf544f5448739dab8b9ffc4b739d','high_res_video',0,0,1,'a8ff928e2d8257b59380308876f7a77c',NULL,'88f59b7b57612cad0086b586593967bb');INSERT INTO "content_file" VALUES('fb3fe29dd4e14c13bea5c4fc108e6ea4','video_thumbnail',1,1,3,'20d2257c540b56c7a651a46d3e8f9811',NULL,'820520b34b068ff891fe331e8aee4b5b');INSERT INTO "content_file" VALUES('bdec1698ba6e47728e59cc3b1af45db7','video_subtitle',1,0,4,'20d2257c540b56c7a651a46d3e8f9811','fr','f56cf710e5eee280ed50ac00a0882ce1');INSERT INTO "content_file" VALUES('6c3cc3e45faa44d7a1f0c13fafd70ee2','video_subtitle',1,0,4,'20d2257c540b56c7a651a46d3e8f9811','en','1e0afa22081c370315856a35f4d3a55b');INSERT INTO "content_file" VALUES('90f78c8b0d75495eb89cb94df04af29b','high_res_video',0,0,1,'20d2257c540b56c7a651a46d3e8f9811',NULL,'2ceee878ee277a54a4ca3be79961abbf');INSERT INTO "content_file" VALUES('cc02837ce3ff4e05a99a1d29ce9b78c9','video_thumbnail',1,1,3,'e032c230d64856449e8c62ab1decc167',NULL,'d2b3d8bb2d00381ebd1886cbccaff599');INSERT INTO "content_file" VALUES('3b3328dd47664b5984314a4ff504e336','video_subtitle',1,0,4,'e032c230d64856449e8c62ab1decc167','fr','2ad40b60e7984279b04bad5f13a1d279');INSERT INTO "content_file" VALUES('ea3936bbb7e14b499d48c85c68270228','video_subtitle',1,0,4,'e032c230d64856449e8c62ab1decc167','en','30b359ae2062b6ec983708d9979470ee');INSERT INTO "content_file" VALUES('4afa469822214b319c3da6063ec9fdf8','high_res_video',0,0,1,'e032c230d64856449e8c62ab1decc167',NULL,'262e706cd967cec58ea2f39bb0c8d71d');INSERT INTO "content_file" VALUES('1a19db4a876a417cbf8e62a0fb895b08','video_thumbnail',1,1,3,'e76f8765997653faa40d5f2f5dcd62f9',NULL,'e9d02d197f6cce96c19e663f318ddf7d');INSERT INTO "content_file" VALUES('0b0738673c8a4c03903208632d7c1084','video_subtitle',1,0,4,'e76f8765997653faa40d5f2f5dcd62f9','fr','d9a0f21c02e5d2316c03b0e4c37088f2');INSERT INTO "content_file" VALUES('d56c8d867b354e1f99b9d3940da4e9cd','video_subtitle',1,0,4,'e76f8765997653faa40d5f2f5dcd62f9','en','06ed63f22614610966af0f11a798d62a');INSERT INTO "content_file" VALUES('871d2f60c67f4e27a743d523082f849f','high_res_video',0,0,1,'e76f8765997653faa40d5f2f5dcd62f9',NULL,'45e69c8850c22cb567bcd7ca21cb4c34');INSERT INTO "content_file" VALUES('7e6293f91d654842beb8784caad7ed81','video_thumbnail',1,1,3,'371b8383863f54b994ab78e381857a63',NULL,'393fb853d0dacacf6c0c23795cb37ada');INSERT INTO "content_file" VALUES('16d4519d64fc42b186e10597d476256e','video_subtitle',1,0,4,'371b8383863f54b994ab78e381857a63','fr','02cf2721d6ed3c3d6bbfe6bbf1f80df2');INSERT INTO "content_file" VALUES('44deaa087a0641b2894260b9af64dcce','video_subtitle',1,0,4,'371b8383863f54b994ab78e381857a63','en','9b67efac5d2d6fcc9c7bbd8d46dbfffe');INSERT INTO "content_file" VALUES('7833c2776bbe4453ba076fe3ed4c4c34','high_res_video',0,0,1,'371b8383863f54b994ab78e381857a63',NULL,'379f3683d7b5075c00e62cfcf70a3b6b');INSERT INTO "content_file" VALUES('a0991786ff984e9fb75eb096ca620be2','video_thumbnail',1,1,3,'cf786646764f5018a64b4c7fbdc4a16e',NULL,'2c06d06ab0ddb39aa9330d9c4b81a570');INSERT INTO "content_file" VALUES('21bd7c8c5f5f4ea082232f7becd2d14a','video_subtitle',1,0,4,'cf786646764f5018a64b4c7fbdc4a16e','fr','a5a71ebbfabd3ac54dd28a1fe3d3dd78');INSERT INTO "content_file" VALUES('fd1b1622d83d44169b9024b1d32c7ff6','video_subtitle',1,0,4,'cf786646764f5018a64b4c7fbdc4a16e','en','e59507d5caacf8e4662775720a10eedc');INSERT INTO "content_file" VALUES('f67986eed623483e90ace416edc53dbf','high_res_video',0,0,1,'cf786646764f5018a64b4c7fbdc4a16e',NULL,'13e51d0bc15162857d5ce87d66052e93');INSERT INTO "content_file" VALUES('a79328c0cf414cce80b140b524f069ee','video_thumbnail',1,1,3,'53ad0c4ff0c858c5a803edd10643128a',NULL,'1902d0f7997d0ff82591509296cabd78');INSERT INTO "content_file" VALUES('9ad17ed414464af9b8fcbff5ac834112','video_subtitle',1,0,4,'53ad0c4ff0c858c5a803edd10643128a','fr','53bfd8093b2975fc754458e928d84b6c');INSERT INTO "content_file" VALUES('076f4dac20b1469dae1c455bd7e9dd38','video_subtitle',1,0,4,'53ad0c4ff0c858c5a803edd10643128a','en','d520ddd46ac254f7ba6a7975b8b427ad');INSERT INTO "content_file" VALUES('0391ab7e9e224346a15395b53601f5ba','high_res_video',0,0,1,'53ad0c4ff0c858c5a803edd10643128a',NULL,'9e60631cbe4d17cacac59578172f21b8');INSERT INTO "content_file" VALUES('e1012c41454d401a95406545748969e6','video_thumbnail',1,1,3,'04df1ef474325714ab748a498679e511',NULL,'42b1802b6acd311947eb2fafa99acf29');INSERT INTO "content_file" VALUES('5fc94c82db864be689c2bac21e51a943','video_subtitle',1,0,4,'04df1ef474325714ab748a498679e511','fr','cca0addc36b26a3351522115ce551a06');INSERT INTO "content_file" VALUES('7a5c80239c03493b95d088d1e685cf9a','video_subtitle',1,0,4,'04df1ef474325714ab748a498679e511','en','f933b22c9fb785ce16a133c2cd19936f');INSERT INTO "content_file" VALUES('a42cc3c94873422abec2cc43da4a2b26','high_res_video',0,0,1,'04df1ef474325714ab748a498679e511',NULL,'b806467f9a09d0b5390c8927d502436d');INSERT INTO "content_file" VALUES('01c8166fed514c04986f8b19cf19e6fe','video_thumbnail',1,1,3,'3b702e402a7158548c61d6b7dba2d7a8',NULL,'07326a92f856f017278a2d83070b72cd');INSERT INTO "content_file" VALUES('a729d47320c2480aa19175f4704d53bf','video_subtitle',1,0,4,'3b702e402a7158548c61d6b7dba2d7a8','fr','9ea17586b3f2f0ca8bc7ab899ec8f055');INSERT INTO "content_file" VALUES('629572fb65fb43caba8b0bd20d2b1923','video_subtitle',1,0,4,'3b702e402a7158548c61d6b7dba2d7a8','en','2dee4c9740626449845933bcfcdf6b51');INSERT INTO "content_file" VALUES('253175c5048e439b9ec089b0e21564e9','high_res_video',0,0,1,'3b702e402a7158548c61d6b7dba2d7a8',NULL,'90d52d993335c5001f7b015d21c4fd50');INSERT INTO "content_file" VALUES('5aa0391365da42f6b5e504b42bbe3293','video_thumbnail',1,1,3,'ff3b451bae1a5c96b0a7c808d8bb6820',NULL,'7c3c59f0322ab97b586a0a1384d08343');INSERT INTO "content_file" VALUES('fab26f7cc24b4fc1910485edd7ce0370','video_subtitle',1,0,4,'ff3b451bae1a5c96b0a7c808d8bb6820','zul','a1477da82f45e776b7f889b67358e761');INSERT INTO "content_file" VALUES('7b8d5db642e54d61ae7392659eb05031','video_subtitle',1,0,4,'ff3b451bae1a5c96b0a7c808d8bb6820','fr','99d24a5240d64e505a6343f50f851d2e');INSERT INTO "content_file" VALUES('54b1e55a9efc438a80da5b30dfb1c819','video_subtitle',1,0,4,'ff3b451bae1a5c96b0a7c808d8bb6820','en','f589321457f81efd035bb72cb57a1b3b');INSERT INTO "content_file" VALUES('1f27f40a85674f6b9afd46b3f49c51d7','high_res_video',0,0,1,'ff3b451bae1a5c96b0a7c808d8bb6820',NULL,'43287b7a3a8b2d08eaece310eb943884');INSERT INTO "content_file" VALUES('25cb923fa0394b708a785742814363be','video_thumbnail',1,1,3,'bcbb53d7d9735f5ab6bd427f9b3cbeff',NULL,'b447700e286bc336eb57212f734dc413');INSERT INTO "content_file" VALUES('f5297fa3ad094edc8e9a34db62473c76','video_subtitle',1,0,4,'bcbb53d7d9735f5ab6bd427f9b3cbeff','zul','379bac76460188eddb558c12c7b5afff');INSERT INTO "content_file" VALUES('209dc54470b1455eb4086529707fb460','video_subtitle',1,0,4,'bcbb53d7d9735f5ab6bd427f9b3cbeff','fr','c0628c218ae4ead94cf60d318899c01c');INSERT INTO "content_file" VALUES('65555cc85d1840b594106e98c36392d1','video_subtitle',1,0,4,'bcbb53d7d9735f5ab6bd427f9b3cbeff','en','f227c5f14c07ffbdb0c03e6dcff0f333');INSERT INTO "content_file" VALUES('cb81f5caf5664bebb9963fa6d63b8c15','high_res_video',0,0,1,'bcbb53d7d9735f5ab6bd427f9b3cbeff',NULL,'860d0006adde0f80163e114347d29fe3');INSERT INTO "content_file" VALUES('3dd289adf927426798886998b31bf9ec','video_thumbnail',1,1,3,'02d60d3e4ae751e3b02a4c0f09be22e0',NULL,'d7b89874da2cc22efca48fd44de25f1f');INSERT INTO "content_file" VALUES('3c9a2978007c4c2cb78d380cb45f73ec','video_subtitle',1,0,4,'02d60d3e4ae751e3b02a4c0f09be22e0','fr','f796aaddd76eb886398af08284319913');INSERT INTO "content_file" VALUES('e358014d6c724cf6adf4b17d095047a3','video_subtitle',1,0,4,'02d60d3e4ae751e3b02a4c0f09be22e0','en','e2f3843f08b160dff90b6b052f4ecb3c');INSERT INTO "content_file" VALUES('e556968a1cc049c192e446cdc053e12f','high_res_video',0,0,1,'02d60d3e4ae751e3b02a4c0f09be22e0',NULL,'778cfd0f1daf4f5d1fbd7bb2cb8b42b7');INSERT INTO "content_file" VALUES('62defa7651aa4cf39ddb93623b30abcd','video_thumbnail',1,1,3,'55baed4125b55d87989eea9e7fc77e09',NULL,'664c3495b09976541c1e45dc70188b46');INSERT INTO "content_file" VALUES('529da72ed58249da9162b3ef78edc9d2','video_subtitle',1,0,4,'55baed4125b55d87989eea9e7fc77e09','zul','ebce0d741b4aaa50b53eeb42102f6046');INSERT INTO "content_file" VALUES('5ce367f96cc047fc951c952fcfae40a1','video_subtitle',1,0,4,'55baed4125b55d87989eea9e7fc77e09','fr','ffe1cd1bb6edf3afed4a7efcaf90dbee');INSERT INTO "content_file" VALUES('deb25bbf27004cf49f7f082b46117865','video_subtitle',1,0,4,'55baed4125b55d87989eea9e7fc77e09','en','4b528aad231db69741e98342f5a71643');INSERT INTO "content_file" VALUES('98abeb69124942de9068095ebfcb4049','high_res_video',0,0,1,'55baed4125b55d87989eea9e7fc77e09',NULL,'37e7e637ba7f180beebe1f72d9f9fa44');INSERT INTO "content_file" VALUES('93a8a82a0d8c4d0ba8ab68110278b839','video_thumbnail',1,1,3,'034dd95115d4574fa883065d6272f058',NULL,'acf5ec6b9957812bb28fb6b96592ed03');INSERT INTO "content_file" VALUES('2f144f3f801440b489af0a4064faa025','video_subtitle',1,0,4,'034dd95115d4574fa883065d6272f058','fr','61f783dfed81170670344fddbbc6a1ec');INSERT INTO "content_file" VALUES('d46d5e2b05bb425e87da83788a172163','video_subtitle',1,0,4,'034dd95115d4574fa883065d6272f058','en','e137a03a650b31f9aca8bf5832d76c6e');INSERT INTO "content_file" VALUES('ca077abe1c3848a79b3d556b869f5140','high_res_video',0,0,1,'034dd95115d4574fa883065d6272f058',NULL,'3a3bfb03da74bd934c834776ee937bdc');INSERT INTO "content_file" VALUES('e6f1134e66f54486905b4180a63c6913','video_thumbnail',1,1,3,'1a586f9b6b1e5e27a021b6f1a90e0b15',NULL,'22c32d10504b39251edfbf31244ec344');INSERT INTO "content_file" VALUES('1e7bb9a35e434319804c6a90d42d1d98','video_subtitle',1,0,4,'1a586f9b6b1e5e27a021b6f1a90e0b15','fr','b52492b257b65ae5cfd15e229cbd5e3a');INSERT INTO "content_file" VALUES('0835a60b22e74e9eabae8453a0eade54','video_subtitle',1,0,4,'1a586f9b6b1e5e27a021b6f1a90e0b15','en','ba61250365885af1ade648eee32ce661');INSERT INTO "content_file" VALUES('20b35d8895174210a5fac0edfd84af2c','high_res_video',0,0,1,'1a586f9b6b1e5e27a021b6f1a90e0b15',NULL,'820f007c2a7bea299e246bf69490164a');INSERT INTO "content_file" VALUES('09cfeb53a7964c9abf493f3b4f593479','video_thumbnail',1,1,3,'648b9a9e68825a958059bf5349b506d9',NULL,'63cacf5f05e6e1a336b5033c85853677');INSERT INTO "content_file" VALUES('434638ee3f674f549044557bd58ab81c','video_subtitle',1,0,4,'648b9a9e68825a958059bf5349b506d9','fr','fed199e843edee09f258bee97b1a0864');INSERT INTO "content_file" VALUES('15a527967743421fbaba15d60493fbc6','video_subtitle',1,0,4,'648b9a9e68825a958059bf5349b506d9','en','c3d4e72ab447d6021cada4819b1834bf');INSERT INTO "content_file" VALUES('e64add1e60a2444788e07be588ca8b80','high_res_video',0,0,1,'648b9a9e68825a958059bf5349b506d9',NULL,'e22a29ba67935b7d765fd6ee77d002a2');INSERT INTO "content_file" VALUES('07717facf1264093b929c387f8ee62b4','video_thumbnail',1,1,3,'bd9eac8bf56a5216a3ac0bc5c726ed0a',NULL,'b8bc3031215b3be9ef9ab9a51e0c4948');INSERT INTO "content_file" VALUES('872cd58bbefc42779e75c7e5f4bb6786','video_subtitle',1,0,4,'bd9eac8bf56a5216a3ac0bc5c726ed0a','fr','0c7c9491d196c3eb94093f3ed74b8f74');INSERT INTO "content_file" VALUES('0e4499817c444311947ccef0bc939161','video_subtitle',1,0,4,'bd9eac8bf56a5216a3ac0bc5c726ed0a','en','956b37f9112b692d01ce49ee0101273e');INSERT INTO "content_file" VALUES('62fa95703ecd4e4daff84b6c3a15eb4b','high_res_video',0,0,1,'bd9eac8bf56a5216a3ac0bc5c726ed0a',NULL,'49dbd8e067c460f317689495867b68eb');INSERT INTO "content_file" VALUES('17c026b522034f308e4a4943c36b7c4f','video_thumbnail',1,1,3,'3b49749b12b056edb7c94d79afa932fe',NULL,'87e36616c7757c10c4b478829a415a9a');INSERT INTO "content_file" VALUES('d3f0e014dd5944fe9a337a04308eee34','video_subtitle',1,0,4,'3b49749b12b056edb7c94d79afa932fe','fr','2a5dc2b507139b9e937be106c68f26e9');INSERT INTO "content_file" VALUES('4629da6295d747328f5336e2ad627c7b','video_subtitle',1,0,4,'3b49749b12b056edb7c94d79afa932fe','en','e894efe08cfd8c69ec8e1ffb927dc421');INSERT INTO "content_file" VALUES('603435cea42741589dade77cc941ba2f','high_res_video',0,0,1,'3b49749b12b056edb7c94d79afa932fe',NULL,'5ebe60363081b0eb0368756fed27f72a');INSERT INTO "content_file" VALUES('2938cc2d984642c1a623423e6eb1ef38','video_thumbnail',1,1,3,'79edfbf601095cd6b97e9d62cae13466',NULL,'3c76795e7f619dce0715555bda249b34');INSERT INTO "content_file" VALUES('bd8427906c34481fb6be42ba2ce8ed02','video_subtitle',1,0,4,'79edfbf601095cd6b97e9d62cae13466','fr','0a14298746617794df4d46f7e9199573');INSERT INTO "content_file" VALUES('216f954e1da74e949cc7d19cc76ff69f','video_subtitle',1,0,4,'79edfbf601095cd6b97e9d62cae13466','en','e5cf39b4f3fecea15c3e924b5708fa6c');INSERT INTO "content_file" VALUES('d8c151cd135b4ad092d2b96a6da4aa9a','high_res_video',0,0,1,'79edfbf601095cd6b97e9d62cae13466',NULL,'001f35d125c16f6ac1069f6ee87d5cdc');INSERT INTO "content_file" VALUES('49e3889fedb8456fb9e69e3944d43697','video_thumbnail',1,1,3,'b22c72d0cf9c5af99cc7620323675c38',NULL,'8ed983d2b28a5d7d9c7be37acc6b60b4');INSERT INTO "content_file" VALUES('eb9c971cc8d84317b8dac07b8c3871f5','video_subtitle',1,0,4,'b22c72d0cf9c5af99cc7620323675c38','fr','82dfa6e1767445b3d20c943cc5688f1e');INSERT INTO "content_file" VALUES('e12d4cb51fd94a5e8a699479f900cfbe','video_subtitle',1,0,4,'b22c72d0cf9c5af99cc7620323675c38','en','c5d9cd48648c78205c3c2c290bb839a8');INSERT INTO "content_file" VALUES('99a5a05092464329af07f95cd2c3a9d7','high_res_video',0,0,1,'b22c72d0cf9c5af99cc7620323675c38',NULL,'37a40f56df7714c57f527588a45a22ac');INSERT INTO "content_file" VALUES('ed2f0e0b31e947be953b339f0314cfd0','video_thumbnail',1,1,3,'8fa6f1c9a5f65c4685eb2db498dbab6a',NULL,'c9b54ae34297b931c96773f204a65ab4');INSERT INTO "content_file" VALUES('7c906400fd394a409dad2862cf9d97b1','video_subtitle',1,0,4,'8fa6f1c9a5f65c4685eb2db498dbab6a','fr','a504cbe385271662ebea158d8c89cfcc');INSERT INTO "content_file" VALUES('d4eb8d8227a0430aa997516dbee437c6','video_subtitle',1,0,4,'8fa6f1c9a5f65c4685eb2db498dbab6a','en','8e35b766ea7899fa2d1cf9cebea93935');INSERT INTO "content_file" VALUES('b5b23e9d14e74fe9abd1f51d034cab42','high_res_video',0,0,1,'8fa6f1c9a5f65c4685eb2db498dbab6a',NULL,'dd882c1eb87e736d2131b992cbb397c0');INSERT INTO "content_file" VALUES('01ab432322194443997e758f40b6fe9a','video_thumbnail',1,1,3,'527cd93628ee554882946105b3535aa4',NULL,'e92775a08ba1dab1ca97323623e95f5a');INSERT INTO "content_file" VALUES('ae5ccc5b5c9745058c127d9486ba7eda','video_subtitle',1,0,4,'527cd93628ee554882946105b3535aa4','fr','2eade12efb2a408b6c7640d1caead4d8');INSERT INTO "content_file" VALUES('ff367949af174ded890db98ce66e126e','video_subtitle',1,0,4,'527cd93628ee554882946105b3535aa4','en','c207172a51f24be79e5baaebf05b8d1a');INSERT INTO "content_file" VALUES('9923879b95814fb391b85455888c7c29','high_res_video',0,0,1,'527cd93628ee554882946105b3535aa4',NULL,'a3a7754d4b0c540b1a02bf15d9c0e595');INSERT INTO "content_file" VALUES('9ca675d558f743adac24ecb296410bbe','video_thumbnail',1,1,3,'beb01ebb32845e93b963e37681f81859',NULL,'799b3d3488aa2bb799126a9dbc3ca9a0');INSERT INTO "content_file" VALUES('bd253db3b5964992bec82c0abb6d2cc3','video_subtitle',1,0,4,'beb01ebb32845e93b963e37681f81859','fr','4e7d6baecbabab6940a09839879e3e75');INSERT INTO "content_file" VALUES('2794abed94ba450bbf62ee844bb43bba','video_subtitle',1,0,4,'beb01ebb32845e93b963e37681f81859','en','49f9860d41185a1073bb1e56946c3e60');INSERT INTO "content_file" VALUES('c612d4572a714effa4fb292dc4b20a41','high_res_video',0,0,1,'beb01ebb32845e93b963e37681f81859',NULL,'d420c1759ad2139479e9f882558481f2');INSERT INTO "content_file" VALUES('e16209329a174c6ea246c46826752487','video_thumbnail',1,1,3,'cc13576a60c85dcfae21c16f40a7082e',NULL,'03db23b177fda12e5c53586246b60170');INSERT INTO "content_file" VALUES('c862cd37d05a40bc8dc6c91394204651','video_subtitle',1,0,4,'cc13576a60c85dcfae21c16f40a7082e','fr','5f15f5f9b0b0c872aaca5395a98427f7');INSERT INTO "content_file" VALUES('b4ff15fae29e4d6d88287abf12d6d96c','video_subtitle',1,0,4,'cc13576a60c85dcfae21c16f40a7082e','en','fb3bef4012596b16013aa256574a0e06');INSERT INTO "content_file" VALUES('57df4cdc30f2444686337f2208e88716','high_res_video',0,0,1,'cc13576a60c85dcfae21c16f40a7082e',NULL,'2a24ae5ced2cad4478856d2b4799c6e6');INSERT INTO "content_file" VALUES('c186ebbc27b54b59aa2d9a66ae6eca22','video_thumbnail',1,1,3,'9e580c1b296752ed8ce359b0ac657b30',NULL,'007f546932912572c9291e61bc0e4f49');INSERT INTO "content_file" VALUES('72a67bc9f7b04824925fd82948446ee2','video_subtitle',1,0,4,'9e580c1b296752ed8ce359b0ac657b30','fr','b65475aa1f759775c7444f4d87a5fe5c');INSERT INTO "content_file" VALUES('ad452f0500b849aeb18a2d706c9e9d45','video_subtitle',1,0,4,'9e580c1b296752ed8ce359b0ac657b30','en','ae252fd81b9508d17dc1e7a99f6e954c');INSERT INTO "content_file" VALUES('727f5006af3b496b8157fe194311960c','high_res_video',0,0,1,'9e580c1b296752ed8ce359b0ac657b30',NULL,'a6febf4007f2f69f67597eaafcff9e3f');INSERT INTO "content_file" VALUES('f68de0eaf8bb452bb4d6708780278d0e','video_thumbnail',1,1,3,'6572888e8c8054a78d5fa2f5f3f2cc0a',NULL,'48635095d7fc6df5aefed7f3b8406d31');INSERT INTO "content_file" VALUES('ce6dd5fe119e44cba55bd7c3a04a9ac3','video_subtitle',1,0,4,'6572888e8c8054a78d5fa2f5f3f2cc0a','fr','253d333a7a5ce00a925e4238b467bb88');INSERT INTO "content_file" VALUES('1aa1417f87e4424294415ee8e52f22ea','video_subtitle',1,0,4,'6572888e8c8054a78d5fa2f5f3f2cc0a','en','ed6bac8848a23dee16e9ff573cd70562');INSERT INTO "content_file" VALUES('75689998bacb4a64922b586c027d7348','high_res_video',0,0,1,'6572888e8c8054a78d5fa2f5f3f2cc0a',NULL,'9b77c78164d7ce8477cfa56718ea3659');INSERT INTO "content_file" VALUES('348ccb800bf0479db3eeb708f2c4236a','video_thumbnail',1,1,3,'462a54aebd9855a3b52d34bdbd3d046c',NULL,'b1d15c5ec34651e5672a5d731978ab9d');INSERT INTO "content_file" VALUES('38b9831bbcc145d6994176d4a701a8fd','video_subtitle',1,0,4,'462a54aebd9855a3b52d34bdbd3d046c','fr','e8955b3464238306446f6333dc3d8ef2');INSERT INTO "content_file" VALUES('86bf270e5a3441f0969b1387d6116c25','video_subtitle',1,0,4,'462a54aebd9855a3b52d34bdbd3d046c','en','9cf67b57b11e441119328abe25dd3756');INSERT INTO "content_file" VALUES('b0fa636547ea42ed8feb1c1c5bd22631','high_res_video',0,0,1,'462a54aebd9855a3b52d34bdbd3d046c',NULL,'e786932a825cdee3a6e514b63453d44f');INSERT INTO "content_file" VALUES('51f864208bf747fa81c31e271bba2ab9','video_thumbnail',1,1,3,'04d837cecc6151e1b24aa95011180a68',NULL,'f73b12c5dbc8dff8119306f7d20f6157');INSERT INTO "content_file" VALUES('8facccb6f568455aabf240749941f677','video_subtitle',1,0,4,'04d837cecc6151e1b24aa95011180a68','fr','b69830730a52f616245d13ac4db29f28');INSERT INTO "content_file" VALUES('756ab742a5564497bc6559c4ccf44a18','video_subtitle',1,0,4,'04d837cecc6151e1b24aa95011180a68','en','c851b7918302ff525d1adae7d7adc562');INSERT INTO "content_file" VALUES('bab34d3fb95b4da48c41b5e0943a7ece','high_res_video',0,0,1,'04d837cecc6151e1b24aa95011180a68',NULL,'5bbbb5d02dfebc79d328aa4e15cce70b');INSERT INTO "content_file" VALUES('8cbbb43c6eb0421e9419d04bd92fd4fa','video_thumbnail',1,1,3,'96871048743f5cc6affe163462bbce41',NULL,'7a04db7fd04d33059fe46304e4e2be11');INSERT INTO "content_file" VALUES('636b1e04ceb642dcb35838ba6fdf30ef','video_subtitle',1,0,4,'96871048743f5cc6affe163462bbce41','fr','d5adea7e173146ba7aa7f7d5a707bcd3');INSERT INTO "content_file" VALUES('0358fce3fa1b41368bbdafcbdf19cc90','video_subtitle',1,0,4,'96871048743f5cc6affe163462bbce41','en','0f8b3730e1cd231d156e1b08bdb32abf');INSERT INTO "content_file" VALUES('8b9a97488b3b446eb6a1207a123e9a53','high_res_video',0,0,1,'96871048743f5cc6affe163462bbce41',NULL,'ac144026163c25366d346b4989ee608c');INSERT INTO "content_file" VALUES('5c74e03bbf91420d896878f6e70b1e82','video_thumbnail',1,1,3,'047c2a4210e05539a825feb377d01203',NULL,'08fa710a783d2d6b722ab5686848dbba');INSERT INTO "content_file" VALUES('181ea10a82724a5c8d7fc4a80f96de47','video_subtitle',1,0,4,'047c2a4210e05539a825feb377d01203','fr','46639b7306a4ae73d376ebb8996b0275');INSERT INTO "content_file" VALUES('fa1be88ea59d4f12b3d6483b7ec8c93b','video_subtitle',1,0,4,'047c2a4210e05539a825feb377d01203','en','562bbaab5824cf744e579acd0aeb108b');INSERT INTO "content_file" VALUES('539308edf8214025863903b618df689e','high_res_video',0,0,1,'047c2a4210e05539a825feb377d01203',NULL,'8a8e94342ec596b47c70887b12ab21cb');INSERT INTO "content_file" VALUES('cefa1ecf066a4f96ab934434a56cdbe9','video_thumbnail',1,1,3,'e6a42dc868665674a3f1daceaf6c0eee',NULL,'b7587b4a5074030fbf05d87f26f698d4');INSERT INTO "content_file" VALUES('18fadfe619664640817c6188bce38b65','video_subtitle',1,0,4,'e6a42dc868665674a3f1daceaf6c0eee','fr','eb52c672f2cf244a2cab5ff2638d4585');INSERT INTO "content_file" VALUES('2e7193b0f213469b840858ce9404578e','video_subtitle',1,0,4,'e6a42dc868665674a3f1daceaf6c0eee','en','b93a2b7561764baaa160a87bd98f3c2e');INSERT INTO "content_file" VALUES('d9183f77b4ea432aa9ba99ed8b32148c','high_res_video',0,0,1,'e6a42dc868665674a3f1daceaf6c0eee',NULL,'98ee1f28243dc27fb55caedbee244101');INSERT INTO "content_file" VALUES('bb3babc184b3416797d02dabb9e74aed','video_thumbnail',1,1,3,'2643abb8406c580a907cf683f9aa2116',NULL,'f3be0eb178cc81e6b002aef8306a9957');INSERT INTO "content_file" VALUES('7eaa2313cee7489ab07e2bf7c68a5773','video_subtitle',1,0,4,'2643abb8406c580a907cf683f9aa2116','fr','bf52f66666b974179b4818c1d0ba2d65');INSERT INTO "content_file" VALUES('c908d628078342a7810d0c7985324ca4','video_subtitle',1,0,4,'2643abb8406c580a907cf683f9aa2116','en','1ceeeef0205fa6b193f5f2f1cfae5b24');INSERT INTO "content_file" VALUES('a659de5910c849a7a17d6f6b8cdfc7c8','high_res_video',0,0,1,'2643abb8406c580a907cf683f9aa2116',NULL,'19f8c099c233710aa1e1193d72c80019');INSERT INTO "content_file" VALUES('c00cdee11c8b4dd3bc86b95640d40179','video_thumbnail',1,1,3,'e0f5506ed63b54f496ef4803100969de',NULL,'94d706e24b7ef5ec0f86f7116db57f2a');INSERT INTO "content_file" VALUES('bdc0f27dd4f74c85b235c49f4ab8e734','video_subtitle',1,0,4,'e0f5506ed63b54f496ef4803100969de','fr','7decc6e38241ca3e9d4a81cb71adc822');INSERT INTO "content_file" VALUES('179b4794ae5541ef87436638c759ed17','video_subtitle',1,0,4,'e0f5506ed63b54f496ef4803100969de','en','f0217d94c258d30f5fe7c3d63bd152ec');INSERT INTO "content_file" VALUES('ee2a45b210334b62884f9842870f4897','high_res_video',0,0,1,'e0f5506ed63b54f496ef4803100969de',NULL,'3e2a7b906330d40efaf0b18426a77266');INSERT INTO "content_file" VALUES('d1c009fa699e4a309974781343de5c09','video_thumbnail',1,1,3,'80a9be1687bc58f5a0f51f674d612d3c',NULL,'10c580f5b83e833706c9df8a6642d23d');INSERT INTO "content_file" VALUES('749fa9a3082345c69b78105387d68f8f','video_subtitle',1,0,4,'80a9be1687bc58f5a0f51f674d612d3c','ne','2bd7f8266faa43fd04b210ef7c5a20bb');INSERT INTO "content_file" VALUES('9bf96b2e290d48feac2c523294e5f9a2','video_subtitle',1,0,4,'80a9be1687bc58f5a0f51f674d612d3c','fr','95a5744be477b1ae39175c7d6a47a680');INSERT INTO "content_file" VALUES('c1a8f858889e4ef4ba13d9507b317142','video_subtitle',1,0,4,'80a9be1687bc58f5a0f51f674d612d3c','en','8159cad5c30270965dfb3de7e18e674a');INSERT INTO "content_file" VALUES('da01ea35e47445efa3b3662c19917cd0','high_res_video',0,0,1,'80a9be1687bc58f5a0f51f674d612d3c',NULL,'41196a4e7047a2c0c829aea3a717c0b3');INSERT INTO "content_file" VALUES('419214ea0a8645af80ba72cf164db75c','video_thumbnail',1,1,3,'792a31075b725c6eb0d27b7b3605ab0c',NULL,'f1cd5db2c69c62351c356a0ec138101d');INSERT INTO "content_file" VALUES('2c0626142f0c4259b0b55646de16b61b','video_subtitle',1,0,4,'792a31075b725c6eb0d27b7b3605ab0c','fr','b85648159abb1e850b09184812718ff2');INSERT INTO "content_file" VALUES('737553a1204a421b8e5a8f34570c7707','video_subtitle',1,0,4,'792a31075b725c6eb0d27b7b3605ab0c','en','7c427b73e0c92fb76a73dbedf4352eaf');INSERT INTO "content_file" VALUES('dc5e36863ebf46c9a353033e09276b80','high_res_video',0,0,1,'792a31075b725c6eb0d27b7b3605ab0c',NULL,'46c03e30c6a2846d9416ea925887440a');INSERT INTO "content_file" VALUES('b0519739ace04bf6b18fb0f3ca2427b1','video_thumbnail',1,1,3,'7e6164b11ff65fc6978e21917f17fd4c',NULL,'59d8b938b75eb34068fb0b1d39784b65');INSERT INTO "content_file" VALUES('3ab6bec336a1406bad5c00250e491a15','video_subtitle',1,0,4,'7e6164b11ff65fc6978e21917f17fd4c','fr','e3960659955ff00cb6c657b46c7fdf4e');INSERT INTO "content_file" VALUES('a910a07912ce4c02b84955b633300eb6','video_subtitle',1,0,4,'7e6164b11ff65fc6978e21917f17fd4c','en','fbcc37ceec34eab1f8e4832053634302');INSERT INTO "content_file" VALUES('09383354b79340849f6b950c58b0186a','high_res_video',0,0,1,'7e6164b11ff65fc6978e21917f17fd4c',NULL,'deee3369d48d904d0835e01c4e5243e6');INSERT INTO "content_file" VALUES('8f6d93a8343d493f99f2e323fc3e7f8e','video_thumbnail',1,1,3,'65f492db8ae05552ac4de9ad773e8763',NULL,'efd9a114cd7aa620b4d11a3a7d845375');INSERT INTO "content_file" VALUES('dd0aeac84e144ad2be42c28a15faa9d5','video_subtitle',1,0,4,'65f492db8ae05552ac4de9ad773e8763','fr','039232061b935e98e43450d26076a5d2');INSERT INTO "content_file" VALUES('1c8798a790f64863bcd7d3b1147f6662','video_subtitle',1,0,4,'65f492db8ae05552ac4de9ad773e8763','en','c84fdebcf02c25867e934911e960b6a9');INSERT INTO "content_file" VALUES('8ced6bac4ff5441eaf766fb47afc5e4b','high_res_video',0,0,1,'65f492db8ae05552ac4de9ad773e8763',NULL,'eb9a35e7cf71d83e587b07686360aeeb');INSERT INTO "content_file" VALUES('a3e59d6ab4ab4d50bf66d781e061d746','video_thumbnail',1,1,3,'42d55d36b9af5f599e0748b77f098382',NULL,'fce24d5da4f30a4d3aa3b6b2e83c7be9');INSERT INTO "content_file" VALUES('3f3a349d4d554a29b578d0fbf73c78fa','video_subtitle',1,0,4,'42d55d36b9af5f599e0748b77f098382','ne','a482a1750b10c6cef3cdc9010c38130a');INSERT INTO "content_file" VALUES('80f58bb01bff41e0b5b49a848d1568b0','video_subtitle',1,0,4,'42d55d36b9af5f599e0748b77f098382','fr','6ee4f391d8cf17a998901fb6138ce6f4');INSERT INTO "content_file" VALUES('5bd473e56d8b47c7bfb38c2fe2d5b2cf','video_subtitle',1,0,4,'42d55d36b9af5f599e0748b77f098382','en','2cc11060fdf5e6d046adf2e1af2bf650');INSERT INTO "content_file" VALUES('8fe627319b144002ad64653b27622f57','high_res_video',0,0,1,'42d55d36b9af5f599e0748b77f098382',NULL,'54b3eb04d623fa233bc32771a8095ab7');INSERT INTO "content_file" VALUES('db49557996464e58aad0fc81d96e1314','video_thumbnail',1,1,3,'02ee7c4e92765f718f05f1d67bbeca6a',NULL,'dd347455df8fe810f05afafe6f5890d3');INSERT INTO "content_file" VALUES('51896e595c9a47a08fe13531100b18db','video_subtitle',1,0,4,'02ee7c4e92765f718f05f1d67bbeca6a','fr','268cf36c7d44d081c9019f904bbb6f24');INSERT INTO "content_file" VALUES('6f4696a745f64ad8b2e0d7bb59565ae6','video_subtitle',1,0,4,'02ee7c4e92765f718f05f1d67bbeca6a','en','e0a0851133abbba390ad22bf698da4b2');INSERT INTO "content_file" VALUES('7e38df1d5bff4ff48f244057e1a5c9a9','high_res_video',0,0,1,'02ee7c4e92765f718f05f1d67bbeca6a',NULL,'97eb0bd326ca22e4578401b86daa3bf5');INSERT INTO "content_file" VALUES('325fccba80454eeca4d74ee5f592ccfa','video_thumbnail',1,1,3,'79452341f28e50a3aff31cd868aa9d2f',NULL,'68f8993747e8c9243857e59325d4b197');INSERT INTO "content_file" VALUES('b6ad1265d2604cf0af492bc53c6e7a9c','video_subtitle',1,0,4,'79452341f28e50a3aff31cd868aa9d2f','fr','babba9db07d309f74f5feb3b751238f0');INSERT INTO "content_file" VALUES('cfa695f3b37846b49450ca54b50c2a01','video_subtitle',1,0,4,'79452341f28e50a3aff31cd868aa9d2f','en','51799f0c787dfc4495ea045eb42d97d2');INSERT INTO "content_file" VALUES('03ee7f143944456580dda9877df1fbc4','high_res_video',0,0,1,'79452341f28e50a3aff31cd868aa9d2f',NULL,'69095d453311fa82a87aa14230735177');INSERT INTO "content_file" VALUES('b334192d041b47fa88523365ee6e32db','video_thumbnail',1,1,3,'6e0a9081adf85fd984be19d1b794fbc2',NULL,'1ad6cdf2a24c3287a2c5d01f091f9979');INSERT INTO "content_file" VALUES('26f7a0a06c94499d92f68262974f5c41','video_subtitle',1,0,4,'6e0a9081adf85fd984be19d1b794fbc2','fr','97cc8a23d4b3cb7c8901106180b0a17f');INSERT INTO "content_file" VALUES('355d9e2a4e9841a883c8be139110b952','video_subtitle',1,0,4,'6e0a9081adf85fd984be19d1b794fbc2','en','e6ee0a1a6d60735679e3ecc7bd435575');INSERT INTO "content_file" VALUES('ab1fe2763a724d1ab4b7be1bf2f53b79','high_res_video',0,0,1,'6e0a9081adf85fd984be19d1b794fbc2',NULL,'edc8aefbee3f77f0608828f6ae46977c');INSERT INTO "content_file" VALUES('6c7593607e414e7685fad38f4a017500','video_thumbnail',1,1,3,'47144dd2e80059c499a612691fac7638',NULL,'339805974469d2bc51925a520a4bdaa6');INSERT INTO "content_file" VALUES('cb9339254afc41a096e0368a08d022d4','video_subtitle',1,0,4,'47144dd2e80059c499a612691fac7638','fr','1f2469c07778b1ceba0eb8ce59d4dddc');INSERT INTO "content_file" VALUES('1538df4e44974a45b4e07eec17bc63c3','video_subtitle',1,0,4,'47144dd2e80059c499a612691fac7638','en','57c16cee50e411fdf7b9de633467e591');INSERT INTO "content_file" VALUES('92f0e6fb5f814540bcad0af2b44763bc','high_res_video',0,0,1,'47144dd2e80059c499a612691fac7638',NULL,'64e5ee7461a533f651facc69787cd471');INSERT INTO "content_file" VALUES('ebcb0026d1be46bdba7032556c511029','video_thumbnail',1,1,3,'5d89e4e006ed5bb6a45792c3ad614c07',NULL,'ea0ff770258534b20958cd1ac5ba761a');INSERT INTO "content_file" VALUES('9d1d771a64704f859377f85dce9feb6b','video_subtitle',1,0,4,'5d89e4e006ed5bb6a45792c3ad614c07','fr','e63ef3101758460328fafbaac4fec3fc');INSERT INTO "content_file" VALUES('af6303ecc4774e259abca3ae27a3e64e','video_subtitle',1,0,4,'5d89e4e006ed5bb6a45792c3ad614c07','en','cea481fc1425b9cd8908493ac6eb6467');INSERT INTO "content_file" VALUES('56a08418c7d44dd2bad5b35cf1fd0844','high_res_video',0,0,1,'5d89e4e006ed5bb6a45792c3ad614c07',NULL,'ccb2d5312730f6dbfa594156bc721923');INSERT INTO "content_file" VALUES('c21d39d5dfcd4008b80ebfb0d35c467e','video_thumbnail',1,1,3,'0497a60a83a555a987ee618797ca99ee',NULL,'424c8a79ffd0c9605b02dcc25d6622d7');INSERT INTO "content_file" VALUES('022ad6b77b2440ce88ba3a0e72298c51','video_subtitle',1,0,4,'0497a60a83a555a987ee618797ca99ee','fr','9a25b11f4ae8cc1750f280f87df26938');INSERT INTO "content_file" VALUES('4b4a23bdd6374dc788c752e97f6aefc0','video_subtitle',1,0,4,'0497a60a83a555a987ee618797ca99ee','en','046145c3e11c2cf7a0d10329b5d89ae1');INSERT INTO "content_file" VALUES('cdbe69c67a644954abf25322b9f7e589','high_res_video',0,0,1,'0497a60a83a555a987ee618797ca99ee',NULL,'ee51dc00b20c28dbc4e96b7f134806f2');INSERT INTO "content_file" VALUES('24d51dcf77374d7c84b1635a761a094e','video_thumbnail',1,1,3,'66fc9f551fd6551eaaa7cac4d32aab6b',NULL,'f73de9fa9222d591e694d9bef3a52f7e');INSERT INTO "content_file" VALUES('31e559a5b2674b7d952c57fe1e972c61','video_subtitle',1,0,4,'66fc9f551fd6551eaaa7cac4d32aab6b','fr','a2fc3bcf2cd7bac1562e35619324983f');INSERT INTO "content_file" VALUES('49e6385237684562bc11abc0676df0d7','video_subtitle',1,0,4,'66fc9f551fd6551eaaa7cac4d32aab6b','en','347ff0f5d68df8ad49f7ccc05dff583d');INSERT INTO "content_file" VALUES('6dd0d6db61614c198353956a3dec7ba6','high_res_video',0,0,1,'66fc9f551fd6551eaaa7cac4d32aab6b',NULL,'e47992245922f3c70ede499f3c7ecbbf');INSERT INTO "content_file" VALUES('aa281d0fa8fa439ca6c16350d4f09c90','video_thumbnail',1,1,3,'b9c4652e2b385d6bb6766f0c4a5ad7b0',NULL,'8a12b8f13c905d29dff2210eec7b4195');INSERT INTO "content_file" VALUES('519b91e082b64184a0847782fe6eddd1','video_subtitle',1,0,4,'b9c4652e2b385d6bb6766f0c4a5ad7b0','fr','26b44cee4902a0b2ad29b36766fe3654');INSERT INTO "content_file" VALUES('651c43762c7c4f29adab18f77aa22e61','video_subtitle',1,0,4,'b9c4652e2b385d6bb6766f0c4a5ad7b0','en','e7caabd6ca0be8cf4c4075d36c70048f');INSERT INTO "content_file" VALUES('994d71726e4a4c20ae8d38410cfd6a62','high_res_video',0,0,1,'b9c4652e2b385d6bb6766f0c4a5ad7b0',NULL,'690d608b77d6b8b5f756b4f17a28db71');INSERT INTO "content_file" VALUES('dde6cfc8fea54a2db9ee0ba75e6c0ab7','video_thumbnail',1,1,3,'1353ebb16dd05523a67a824b249e616a',NULL,'d0a38fbe877a8c7d4e66cfe5d498f2db');INSERT INTO "content_file" VALUES('75cfcc96e760439e9e61098c1f926741','video_subtitle',1,0,4,'1353ebb16dd05523a67a824b249e616a','fr','3ce42ace2bb33574c54d173065a44941');INSERT INTO "content_file" VALUES('9fac96cecb3f4a9e86be9c8a89e42266','video_subtitle',1,0,4,'1353ebb16dd05523a67a824b249e616a','en','c55dcf1dc6ac445f16ea4d63bff61906');INSERT INTO "content_file" VALUES('0a7fdc024b5e43ab831fa808744ed3e4','high_res_video',0,0,1,'1353ebb16dd05523a67a824b249e616a',NULL,'8ccf1b432bd3dbcc98867704618343dc');INSERT INTO "content_file" VALUES('548d27e11dad45d9a74fdb79158d0083','video_thumbnail',1,1,3,'65be8d405102527c89417da6dc641869',NULL,'e89a03956c1207876d43493118ccac16');INSERT INTO "content_file" VALUES('0076517f3f4249599a6cf4c33dbb9d01','video_subtitle',1,0,4,'65be8d405102527c89417da6dc641869','fr','89ea1acc1755987d8b6a504b0da6730a');INSERT INTO "content_file" VALUES('e3c7028f0f6645e9b6c0190f18ddeeb1','video_subtitle',1,0,4,'65be8d405102527c89417da6dc641869','en','2010fd6e5de6b1ec29eb3ad16db29d91');INSERT INTO "content_file" VALUES('dbfa3f9f59004bc596c17bef4053248a','high_res_video',0,0,1,'65be8d405102527c89417da6dc641869',NULL,'a2d3504862aedf34143ca88d9d50427d');INSERT INTO "content_file" VALUES('3ea0c07912e94a319fde83087248a76b','video_thumbnail',1,1,3,'08e564cdf23e5f21a20c5defe3595854',NULL,'ce6c8c96245dadad8bf6124c2cb31d0e');INSERT INTO "content_file" VALUES('e725e90754864995908b68b9fd05f5eb','video_subtitle',1,0,4,'08e564cdf23e5f21a20c5defe3595854','fr','4b615c2acd1b1eca41432bc03215a5fd');INSERT INTO "content_file" VALUES('d148ed4d82ee45e685ccd61c72321d7a','video_subtitle',1,0,4,'08e564cdf23e5f21a20c5defe3595854','en','940cb73d919e3c929ade0253057f826b');INSERT INTO "content_file" VALUES('4d9be94d88f646f89a3f80ba925dc101','high_res_video',0,0,1,'08e564cdf23e5f21a20c5defe3595854',NULL,'b362789de2648dff35801335deeeadcf');INSERT INTO "content_file" VALUES('603cd9a4a99b4abdb5799c054a30d196','video_thumbnail',1,1,3,'6353af4d38c55e81a5c7eb07b9597205',NULL,'24232e9b3cf518f7c9b5b6bfc12eba9c');INSERT INTO "content_file" VALUES('68a0a348068c41d5a7fb8c19cf44f107','video_subtitle',1,0,4,'6353af4d38c55e81a5c7eb07b9597205','fr','b27946a105f59ee04c6e3ee1d1256a7c');INSERT INTO "content_file" VALUES('5db772cbf44c4f26a3876494f5679723','video_subtitle',1,0,4,'6353af4d38c55e81a5c7eb07b9597205','en','57fd7d5f454460140aa13900b11d5abb');INSERT INTO "content_file" VALUES('0f4a9481e1574d18bba054907aa2c564','high_res_video',0,0,1,'6353af4d38c55e81a5c7eb07b9597205',NULL,'803c9569e2c57e537b3a86dfd40f629f');INSERT INTO "content_file" VALUES('b363c80a54f040e18d119f0ab4aea7c4','video_thumbnail',1,1,3,'6ca86de0115755f4a95eaf9fb844ebb8',NULL,'2672d203d642b8cf62a4e1c61b1d7b42');INSERT INTO "content_file" VALUES('231a6244c0df47ffaad956edac8a5067','video_subtitle',1,0,4,'6ca86de0115755f4a95eaf9fb844ebb8','fr','1801de583a68312bc165150020bb2b4c');INSERT INTO "content_file" VALUES('1d46e8534ef941f0943d7bab6245a0b7','video_subtitle',1,0,4,'6ca86de0115755f4a95eaf9fb844ebb8','en','a7ee1c0c1f9439e8c365e0735a993576');INSERT INTO "content_file" VALUES('52bc4951cc9c4587afa67e4247484f8e','high_res_video',0,0,1,'6ca86de0115755f4a95eaf9fb844ebb8',NULL,'75c8d672fc459d4fa3b2aaa8fdee3f83');INSERT INTO "content_file" VALUES('cdc06b4bd8b949a288b33075825e0289','video_thumbnail',1,1,3,'e343af1fa14650688ed6e23e69abae3e',NULL,'4dffd6102ae4137fbd803dba6c058ef0');INSERT INTO "content_file" VALUES('5bdfb687d8294c5c9fdaa2e76bbd4f7b','video_subtitle',1,0,4,'e343af1fa14650688ed6e23e69abae3e','fr','4b70889beb7e79fc9b59973b203f75cf');INSERT INTO "content_file" VALUES('8a185652ffae4b72be7e504e8a58800e','video_subtitle',1,0,4,'e343af1fa14650688ed6e23e69abae3e','en','82d5d1fa719f66618f1d65957d6e5a56');INSERT INTO "content_file" VALUES('b16eed2a7c3744728386c7c21667bebd','high_res_video',0,0,1,'e343af1fa14650688ed6e23e69abae3e',NULL,'3797c16153cae6703c0e066aec67d926');INSERT INTO "content_file" VALUES('21ad2444752a40fda8efe0f66a58934a','video_thumbnail',1,1,3,'d8bf6bddd3705fa0943c85be29024eea',NULL,'117839e8021300c01bf8fe6c7df74f9a');INSERT INTO "content_file" VALUES('e3b15caa73fd4b39801e71ef22b06f0c','video_subtitle',1,0,4,'d8bf6bddd3705fa0943c85be29024eea','fr','d8946c49dfa18f07af0d2c55de96aac0');INSERT INTO "content_file" VALUES('185ec46e0f124e88a4280152c88d36c7','video_subtitle',1,0,4,'d8bf6bddd3705fa0943c85be29024eea','en','853ca4cf22b64d1d62fb077f9a945a7a');INSERT INTO "content_file" VALUES('95de4919bb824c7da5d3dbc9c800e334','high_res_video',0,0,1,'d8bf6bddd3705fa0943c85be29024eea',NULL,'fee6f6306ba8104b2e2f1b3de07799b9');INSERT INTO "content_file" VALUES('effca9f825064a46af9acc47c268c920','video_thumbnail',1,1,3,'0aa2e06214fd56b4803e38d0a0af6817',NULL,'185d3e7baf5c7fc43bd825ff22a4190d');INSERT INTO "content_file" VALUES('80acf41ea1714598a727ca083fa17077','video_subtitle',1,0,4,'0aa2e06214fd56b4803e38d0a0af6817','ne','ad097a4071604e91a9d7d4acdf773e1a');INSERT INTO "content_file" VALUES('05f8aa88b7664c458a942790f660074e','video_subtitle',1,0,4,'0aa2e06214fd56b4803e38d0a0af6817','fr','489468f6132588f690403f1a2724b009');INSERT INTO "content_file" VALUES('5a9cf0492df44d36abfb11aef9ad0b4b','video_subtitle',1,0,4,'0aa2e06214fd56b4803e38d0a0af6817','en','335239509afaa02fa5155af8d1c4c590');INSERT INTO "content_file" VALUES('79ddf5d8bdcf4db0b3556644772653c4','high_res_video',0,0,1,'0aa2e06214fd56b4803e38d0a0af6817',NULL,'af0f2cf67f119ef9efb80d5176fa9b33');INSERT INTO "content_file" VALUES('f720d89c77b644c48c29fd666266fe6f','video_thumbnail',1,1,3,'b9a2011e492a50f6b9601eb03b7b8644',NULL,'c97425a6530dac4f154557fd2f99d768');INSERT INTO "content_file" VALUES('200ee6809f734e28b40d01bf2a705f53','video_subtitle',1,0,4,'b9a2011e492a50f6b9601eb03b7b8644','fr','587de0be5bd56f14d0e9bc4bd5c8d1c2');INSERT INTO "content_file" VALUES('46ea0a3225d6449a88dd30fd99469ee6','video_subtitle',1,0,4,'b9a2011e492a50f6b9601eb03b7b8644','en','3b5a9b94a8e2b3af63fef26afdd2bdda');INSERT INTO "content_file" VALUES('2b27d09cff594b18b9023d45530014d0','high_res_video',0,0,1,'b9a2011e492a50f6b9601eb03b7b8644',NULL,'1667e86831117b1c5e2bcec9cb390c68');INSERT INTO "content_file" VALUES('52304b02bf2746d88f1a096914128f8d','video_thumbnail',1,1,3,'7b8e949043da50eca6af3f21da31fdd0',NULL,'da9a4ea26fbe820ed4c4f27c621e8ae8');INSERT INTO "content_file" VALUES('3f0d942fd6bf48538eca1b501f45c457','video_subtitle',1,0,4,'7b8e949043da50eca6af3f21da31fdd0','fr','d9edd57e62b54a10e3e44e412e5ca55f');INSERT INTO "content_file" VALUES('eb692f2f10a1402fb4ff432185d855d5','video_subtitle',1,0,4,'7b8e949043da50eca6af3f21da31fdd0','en','a9f9a292ec2edfdca675c2d818481c65');INSERT INTO "content_file" VALUES('66bf7532457740b1995f2f59f46bd86f','high_res_video',0,0,1,'7b8e949043da50eca6af3f21da31fdd0',NULL,'fff7460e068d5d36de2c9419de014c92');INSERT INTO "content_file" VALUES('4bc7e010400c4032b5958324c5c1ecbc','video_thumbnail',1,1,3,'f45b2d14c9a8543d972e7922ee093f99',NULL,'b4fb851274c495dfdbce07cd82eff0a4');INSERT INTO "content_file" VALUES('eb4dd171630e47d2b44f09bc966fa19e','video_subtitle',1,0,4,'f45b2d14c9a8543d972e7922ee093f99','ne','8868e5314f39e6354f25163f866e901e');INSERT INTO "content_file" VALUES('eb03afbaf7de447e9a3c18b50b0cbe7e','video_subtitle',1,0,4,'f45b2d14c9a8543d972e7922ee093f99','fr','426ed0f7249c95689b9e8d95bef9f1b0');INSERT INTO "content_file" VALUES('b444f20354104c2d954cdff106645291','video_subtitle',1,0,4,'f45b2d14c9a8543d972e7922ee093f99','en','0817ea04ea5a1924fe4f5a8bbf84c11b');INSERT INTO "content_file" VALUES('2708438d365b466a8b18df0d858893c5','high_res_video',0,0,1,'f45b2d14c9a8543d972e7922ee093f99',NULL,'7b78d67c346ab29cde5af352f4c219c4');INSERT INTO "content_file" VALUES('570f84cc124049cf99b4a9b3bc5cb663','video_thumbnail',1,1,3,'f608211599915ab1906c11c78af61e3e',NULL,'c97425a6530dac4f154557fd2f99d768');INSERT INTO "content_file" VALUES('69404ebff388446e88cb8e29d118c673','video_subtitle',1,0,4,'f608211599915ab1906c11c78af61e3e','fr','c4843212d1160124e9d4ce7ad78c81d1');INSERT INTO "content_file" VALUES('801bf38e379e418294fc0dfa7ecedc9b','video_subtitle',1,0,4,'f608211599915ab1906c11c78af61e3e','en','88fdb28177ebeb9c089620e28821c533');INSERT INTO "content_file" VALUES('dcd0c5e1722b40b78ebd0168580519f4','high_res_video',0,0,1,'f608211599915ab1906c11c78af61e3e',NULL,'2aba7488618b49fe192eff214af423f1');INSERT INTO "content_file" VALUES('6f303d23f3b94af9ab2d6d193a6b6f7f','video_thumbnail',1,1,3,'1f74f8076817569f89d14c1b4ddd9822',NULL,'e89a03956c1207876d43493118ccac16');INSERT INTO "content_file" VALUES('d61a7731aa404e87b4bb9de49cace5b7','video_subtitle',1,0,4,'1f74f8076817569f89d14c1b4ddd9822','fr','51ba62ab8f6e2fef9474987313810eb8');INSERT INTO "content_file" VALUES('aa59795dec7d4c2c804ee153313f0c45','video_subtitle',1,0,4,'1f74f8076817569f89d14c1b4ddd9822','en','688d0105e16dd6fbdbc2c6c3c9d4d271');INSERT INTO "content_file" VALUES('61411126959b4464892439f844a5b250','high_res_video',0,0,1,'1f74f8076817569f89d14c1b4ddd9822',NULL,'0a89fb206b0091837d5ca00853cadaff');INSERT INTO "content_file" VALUES('eafec9e0eae7410cab67c545b8a2ba98','video_thumbnail',1,1,3,'2125b4a09bb65308816f586d84c2a68a',NULL,'44b8380d8a4c2ab83779dfc251f6f069');INSERT INTO "content_file" VALUES('c2ba3903ad9c4a638d043e7030f1dc82','video_subtitle',1,0,4,'2125b4a09bb65308816f586d84c2a68a','fr','fa07b071d105face1dac582e5dc8e6f9');INSERT INTO "content_file" VALUES('6157638f0e4e4f2497710026ddc1ff01','video_subtitle',1,0,4,'2125b4a09bb65308816f586d84c2a68a','en','7e412d142afaba04cb76f660722b256a');INSERT INTO "content_file" VALUES('be72ef39e5914405b73f37e497e832b8','high_res_video',0,0,1,'2125b4a09bb65308816f586d84c2a68a',NULL,'531d21db6d678c039fedc55dc2abe311');INSERT INTO "content_file" VALUES('328acbec2b1d4929b00fed7490497402','video_thumbnail',1,1,3,'3b00f654d67454b99c70b80ea423cd0d',NULL,'1b0e99036758800df1fa19f87b449066');INSERT INTO "content_file" VALUES('e9b8801bd37f41fcadcbbf455712aab6','video_subtitle',1,0,4,'3b00f654d67454b99c70b80ea423cd0d','fr','10bdc873decbd98fca9cab02067de7f9');INSERT INTO "content_file" VALUES('f9e020a0644e4675ae16554408ef2d17','video_subtitle',1,0,4,'3b00f654d67454b99c70b80ea423cd0d','en','ec0b66e418fcff263fe04e27f9c9444a');INSERT INTO "content_file" VALUES('16ded25f46c643a4aba277491a2c305b','high_res_video',0,0,1,'3b00f654d67454b99c70b80ea423cd0d',NULL,'bfe36a1fb6b84e576921f3a981e7634e');INSERT INTO "content_file" VALUES('c9cbf1d6f5574f8f86d29a2a4468c9fd','video_thumbnail',1,1,3,'c75640a3777b57cabc65fc1881d9d0e9',NULL,'eb44ab279c4cf373634ff9a8edb5761f');INSERT INTO "content_file" VALUES('7c81cfbea6c44460980a14061c9d77ae','video_subtitle',1,0,4,'c75640a3777b57cabc65fc1881d9d0e9','fr','6f885c56a873102c058c1e9dee9cfcf9');INSERT INTO "content_file" VALUES('ecf656628c864d048150bc09d309c194','video_subtitle',1,0,4,'c75640a3777b57cabc65fc1881d9d0e9','en','853c45aafd9858fe0ce1010e59b5e8b5');INSERT INTO "content_file" VALUES('1ddca9fcdc004345bc2f8e410e0f94b3','high_res_video',0,0,1,'c75640a3777b57cabc65fc1881d9d0e9',NULL,'856ddcdd1a9a40c075945e66fc6901dd');INSERT INTO "content_file" VALUES('2e33adcdee2f41da8ab2194fef7fa11a','video_thumbnail',1,1,3,'13271e256eae5e3aa54ac301ef252385',NULL,'f8ebe474d9bfa3669e8597a6f132750c');INSERT INTO "content_file" VALUES('41dee322c71a46428ed0edce57fa53f2','video_subtitle',1,0,4,'13271e256eae5e3aa54ac301ef252385','fr','c35b610fb6623f33aade0272dc83f0da');INSERT INTO "content_file" VALUES('2164f5c343e54dc9a8a91ef839d30e2f','video_subtitle',1,0,4,'13271e256eae5e3aa54ac301ef252385','en','63593f7ae8354b89caffc108a4268e30');INSERT INTO "content_file" VALUES('07473d435272474991ffedf37f5ab37c','high_res_video',0,0,1,'13271e256eae5e3aa54ac301ef252385',NULL,'0af9fa420f42feb95c959a040407a4e4');INSERT INTO "content_file" VALUES('016f2fb134204bfbaa76a16a12050ffd','video_thumbnail',1,1,3,'b32754eb8cdf5cef8e556c4ff1588c9c',NULL,'a16f6be15a8cfbaa4f1588ab27238b38');INSERT INTO "content_file" VALUES('c7fd7e2d8dd747fc82c93473b4c4b0df','video_subtitle',1,0,4,'b32754eb8cdf5cef8e556c4ff1588c9c','fr','e9e4e4de2e0a9eb5c869ad6fb34b07b0');INSERT INTO "content_file" VALUES('d2d4b9961a714689a39872b0a37d94f6','video_subtitle',1,0,4,'b32754eb8cdf5cef8e556c4ff1588c9c','en','0f9cf152e42336f37325b350c8847504');INSERT INTO "content_file" VALUES('5cc0e0a6e65e427584efaaaf4033b5bb','high_res_video',0,0,1,'b32754eb8cdf5cef8e556c4ff1588c9c',NULL,'5a8a61cb35c75352c71b72ea01c46f0a');INSERT INTO "content_file" VALUES('ed9cf398ab064055a7ca631c9874c2ae','video_thumbnail',1,1,3,'f349ae6f9f4151d3809a9e39c4bd3ee5',NULL,'91777c592c20d2ebcb322c5ce734f4af');INSERT INTO "content_file" VALUES('bb47cee37d784c7fb42b92faf9e8a52e','video_subtitle',1,0,4,'f349ae6f9f4151d3809a9e39c4bd3ee5','fr','b728cb2e638e14099cf504dd42b5804e');INSERT INTO "content_file" VALUES('9e8c3894a73a4e89ace54ff7da6416eb','video_subtitle',1,0,4,'f349ae6f9f4151d3809a9e39c4bd3ee5','en','6ba27a84ffec2579702670f2da694ffd');INSERT INTO "content_file" VALUES('691224867df4401cba775d2cbbe56f0b','high_res_video',0,0,1,'f349ae6f9f4151d3809a9e39c4bd3ee5',NULL,'558951c13ecf6c7421b819c2f24ea57b');INSERT INTO "content_file" VALUES('e62e8b452c904633a164b97d7462c2e6','video_thumbnail',1,1,3,'60e6a0d5a3d35a4fb6ec09d9dc99add9',NULL,'6c7429d3cfa5923d2fc2c579aa99eec8');INSERT INTO "content_file" VALUES('3140dd7f9b6a4d73bb863fedfaa62945','video_subtitle',1,0,4,'60e6a0d5a3d35a4fb6ec09d9dc99add9','fr','25eb2881912d2563fd7c073b08b13a73');INSERT INTO "content_file" VALUES('b6b227d4f3104c01be5455443d07bee5','video_subtitle',1,0,4,'60e6a0d5a3d35a4fb6ec09d9dc99add9','en','e2a9cc5c4c8a945b3d290afc5647eca7');INSERT INTO "content_file" VALUES('45399eb484944bc9829b928952e1bf21','high_res_video',0,0,1,'60e6a0d5a3d35a4fb6ec09d9dc99add9',NULL,'110aad59f1c8ef6db2a70ae455242dd3');INSERT INTO "content_file" VALUES('6127cb88b52643b09cb7945a89998bbb','video_thumbnail',1,1,3,'d98c7a93f19e590cad73744ee1bc8801',NULL,'2126d5c0f9e395714ecb375a6b027d61');INSERT INTO "content_file" VALUES('c998f3006c224af1bf3e46a4b5d36ccf','video_subtitle',1,0,4,'d98c7a93f19e590cad73744ee1bc8801','fr','795f1a282f24b0fbd9fa8cfd33e8ad6c');INSERT INTO "content_file" VALUES('4ed3cfdd02a6487e9d65553bd9e5886e','video_subtitle',1,0,4,'d98c7a93f19e590cad73744ee1bc8801','en','b0b41e83763dd4ecaa6d382ce7bcb408');INSERT INTO "content_file" VALUES('406acb448cfa4e1dbcadf00ae4f25564','high_res_video',0,0,1,'d98c7a93f19e590cad73744ee1bc8801',NULL,'ce5af3b6885eb814e5b337855d6fc326');INSERT INTO "content_file" VALUES('9c75ec872cb945afbbed4caaf4ae79c1','video_thumbnail',1,1,3,'588981353b4c57cdb8b4684e67b9aeee',NULL,'1d18c06dc0603e7583e0b9733bd359c5');INSERT INTO "content_file" VALUES('7cd992f1d45e4547961c7ae7d3de52f1','video_subtitle',1,0,4,'588981353b4c57cdb8b4684e67b9aeee','fr','f7a005d96d5c683ac229935ecc4ac05c');INSERT INTO "content_file" VALUES('1cb1d9e83a1a4623983dd80abbcfe776','video_subtitle',1,0,4,'588981353b4c57cdb8b4684e67b9aeee','en','d94f982db777cf8c346ee86bddbfbd9d');INSERT INTO "content_file" VALUES('7e99d3ffcdfe433bb6db051fcd3024da','high_res_video',0,0,1,'588981353b4c57cdb8b4684e67b9aeee',NULL,'d38022220ba2956775ee093f6c82d779');INSERT INTO "content_file" VALUES('2b611951ea64459e896e48a787f7c378','video_thumbnail',1,1,3,'91632149caae55aca95f05b4625d8d06',NULL,'01ef1e07f892bc2a51440070b9fb9a2b');INSERT INTO "content_file" VALUES('553a5362d6dd4d3f9930b7f04dddb364','video_subtitle',1,0,4,'91632149caae55aca95f05b4625d8d06','fr','ad418da4396a0e7198c091a2eb481d95');INSERT INTO "content_file" VALUES('70362b6ccd934cd4a46b0876ddd7cc19','video_subtitle',1,0,4,'91632149caae55aca95f05b4625d8d06','en','21ecca08bb3ce5d387e1bb28ab465723');INSERT INTO "content_file" VALUES('7326a1701c97443f8ad2dd523c3cb8ef','high_res_video',0,0,1,'91632149caae55aca95f05b4625d8d06',NULL,'5ad1d1a033ecdada13ca812ea2562c5f');INSERT INTO "content_file" VALUES('34461383cd03400a8c205a60814ae278','video_thumbnail',1,1,3,'824144ea1f17519592ae48819d116524',NULL,'31a575a6b77b08f199e5e695d981ddd5');INSERT INTO "content_file" VALUES('3ffa082a89b648fdbd4f1e2368f3a3b6','video_subtitle',1,0,4,'824144ea1f17519592ae48819d116524','fr','63a46941fa03c637117e7b33e078396b');INSERT INTO "content_file" VALUES('eb66e1a2ef634ee78a9924212809728b','video_subtitle',1,0,4,'824144ea1f17519592ae48819d116524','en','1009a21a1e5a06a5e8baf03b96bb7386');INSERT INTO "content_file" VALUES('a308b054ae5f49239a6b0319aa9986f3','high_res_video',0,0,1,'824144ea1f17519592ae48819d116524',NULL,'62e0c241e822e91ed73123d8adc560b2');INSERT INTO "content_file" VALUES('28b69f7a0bb64238a4d872d7ee0da35a','video_thumbnail',1,1,3,'9981e71b5f295c36ab250d2c63216d91',NULL,'bd4f3fbd4bb515279160468564387d53');INSERT INTO "content_file" VALUES('b19d206fc6c541f78138b89c1fabcd06','video_subtitle',1,0,4,'9981e71b5f295c36ab250d2c63216d91','fr','e51928cd5d1b792023a64022bcf6a4fb');INSERT INTO "content_file" VALUES('d2b3f38d55864d5a8fa46112d97086cc','video_subtitle',1,0,4,'9981e71b5f295c36ab250d2c63216d91','en','ddee79e276b5a0b50e7945774522bd1c');INSERT INTO "content_file" VALUES('2da1064194094bd28d59a8342a467eac','high_res_video',0,0,1,'9981e71b5f295c36ab250d2c63216d91',NULL,'a6038327397de2a94ba89a1c1648f848');INSERT INTO "content_file" VALUES('4ad2bec0e6904c418977239b0ece49f7','video_thumbnail',1,1,3,'25819692e17656579bee128c79adee5f',NULL,'ad29937dacd9c24cbf8c2fd85ad0238a');INSERT INTO "content_file" VALUES('8a66e01ac95c4f608cf7ce064e220ecd','video_subtitle',1,0,4,'25819692e17656579bee128c79adee5f','fr','3407d28a1f0cbddb84d287f1a9e30179');INSERT INTO "content_file" VALUES('14fe8765b7d64900bf915e94d8cb871b','video_subtitle',1,0,4,'25819692e17656579bee128c79adee5f','en','6e76e0f1a3ef4060f30847d9752f6cf7');INSERT INTO "content_file" VALUES('88263b44991f41f8b62c0ea75fcdfba9','high_res_video',0,0,1,'25819692e17656579bee128c79adee5f',NULL,'4c25fc601b03b1e78ea4ec72cad982d2');INSERT INTO "content_file" VALUES('8204fc28e7c446e5a2b671508258387d','video_thumbnail',1,1,3,'0b7e8f1bf88b5eec9217d3734e15ebbe',NULL,'e2e0a4df6c23208f542bcb496c593077');INSERT INTO "content_file" VALUES('9769624696744fed9ee0df2fc6dd656e','video_subtitle',1,0,4,'0b7e8f1bf88b5eec9217d3734e15ebbe','fr','0a4fd5677040a073dcf67f71101b0fb3');INSERT INTO "content_file" VALUES('7803475cfa15491889bd5ca35210d1f5','video_subtitle',1,0,4,'0b7e8f1bf88b5eec9217d3734e15ebbe','en','cff2cec2560e1f3fc1a000f7d7a5c056');INSERT INTO "content_file" VALUES('15283365be104964926984d8e1b63e1c','high_res_video',0,0,1,'0b7e8f1bf88b5eec9217d3734e15ebbe',NULL,'a2082e1b35fb1fdc294416f429f954ac');INSERT INTO "content_file" VALUES('eebc11b00fa04a2895c50f2044ad93a3','video_thumbnail',1,1,3,'c2a0ad57029e5cc081057198ac304257',NULL,'1f46a5ad5e83f85ffc54a7886382d926');INSERT INTO "content_file" VALUES('2127040dc29d4a61964351aba706cbcb','video_subtitle',1,0,4,'c2a0ad57029e5cc081057198ac304257','fr','c8464c3751216624d4bfb941c92b4172');INSERT INTO "content_file" VALUES('5d0fb68cd02a4e98ade5c3ca24bcef4a','video_subtitle',1,0,4,'c2a0ad57029e5cc081057198ac304257','en','cf87bacaa64d7f8ebe98dab724475d67');INSERT INTO "content_file" VALUES('9b296fae75fc467cbd7b657dd7fab15f','high_res_video',0,0,1,'c2a0ad57029e5cc081057198ac304257',NULL,'1e0e84457162f5a5d35870cf2b0b4686');INSERT INTO "content_file" VALUES('4c940b3bef25403783804ce7de28f604','video_thumbnail',1,1,3,'3d66d935c1f658f69b3a303db84fa0f5',NULL,'1ab0542cc6871c0a8cd1f24907994e7c');INSERT INTO "content_file" VALUES('8341c63955a74da7895562f7da67e47b','video_subtitle',1,0,4,'3d66d935c1f658f69b3a303db84fa0f5','fr','8a7c5a9d3a4ee0600288f8f588522f3f');INSERT INTO "content_file" VALUES('b979a23412f641e1813854a9c8667d09','video_subtitle',1,0,4,'3d66d935c1f658f69b3a303db84fa0f5','en','d47a9949097492c0368b8cf112e8b58b');INSERT INTO "content_file" VALUES('f43b47a46a6140efab6f2d0181a9407c','high_res_video',0,0,1,'3d66d935c1f658f69b3a303db84fa0f5',NULL,'0f8d446e6c0a86f066826620975865b6');INSERT INTO "content_file" VALUES('c5d8b41a61ee4c6cae94a2eaa8d2be0c','video_thumbnail',1,1,3,'029eafb02f5f5a4290e0224eaa73fd19',NULL,'a29279a2630fdf7dafaab75d26c89c2c');INSERT INTO "content_file" VALUES('39a4e5d0855449edb88e8f4e45f09b1d','video_subtitle',1,0,4,'029eafb02f5f5a4290e0224eaa73fd19','fr','16fb651042325581251d14d2390f860a');INSERT INTO "content_file" VALUES('0ffa372406314ed4a4dcdbe8eac5e402','video_subtitle',1,0,4,'029eafb02f5f5a4290e0224eaa73fd19','en','24daadaa4b66dd830c0e1a761415568a');INSERT INTO "content_file" VALUES('eabe3cfe157d4d51a12feef69864ee2d','high_res_video',0,0,1,'029eafb02f5f5a4290e0224eaa73fd19',NULL,'6ef543d4a05248f351c8a04e1075c20e');INSERT INTO "content_file" VALUES('c9d24ac6eb814d04a5b61a8b45d74a90','video_thumbnail',1,1,3,'e81829c945a153f795b9babe62657083',NULL,'c71310676f227ff94727a5846929f63e');INSERT INTO "content_file" VALUES('32afea5b30704ea198f7067408cb4c07','video_subtitle',1,0,4,'e81829c945a153f795b9babe62657083','fr','b3879e789a3edf33a53af92fba338c98');INSERT INTO "content_file" VALUES('5646069f563548c1ac21ac7086339045','video_subtitle',1,0,4,'e81829c945a153f795b9babe62657083','en','5e0b01bc699373f401e59431ffec8d10');INSERT INTO "content_file" VALUES('6dcfab4031314cd4a5b64988953747bf','high_res_video',0,0,1,'e81829c945a153f795b9babe62657083',NULL,'363cd7020e2f97d5373992da408d6774');INSERT INTO "content_file" VALUES('91db00ee09154eb69bac34d8afadb80e','video_thumbnail',1,1,3,'b6f438abfb915ea0bc0443e3d3407a38',NULL,'6aeab0951dd882b344801d645be340f4');INSERT INTO "content_file" VALUES('b856c85c11f84fdb91c8522dfe4953ba','video_subtitle',1,0,4,'b6f438abfb915ea0bc0443e3d3407a38','fr','04cfa8243c2e7b53775cbf86fd640663');INSERT INTO "content_file" VALUES('b72cd02a35be4141890cab42ba277310','video_subtitle',1,0,4,'b6f438abfb915ea0bc0443e3d3407a38','en','e41f8e7e15fc694e6e79b638664cb990');INSERT INTO "content_file" VALUES('8522f69c8eb04025b08b625dfe2fc483','high_res_video',0,0,1,'b6f438abfb915ea0bc0443e3d3407a38',NULL,'109cd46c4757b6aa5ba46e06924904b6');INSERT INTO "content_file" VALUES('e333fe68b0384fb4b84b372a1101704d','video_thumbnail',1,1,3,'0c26c969ee9755de9c4780ea43048a86',NULL,'2ce046ae5075e734f787aa04797c91c9');INSERT INTO "content_file" VALUES('aab2585f3bff4f1db9dc5eafd4ae987d','video_subtitle',1,0,4,'0c26c969ee9755de9c4780ea43048a86','fr','5224a786d1456cc61fb805abe51ea88f');INSERT INTO "content_file" VALUES('1c1120908bee432ebf84fc4d57f617e9','video_subtitle',1,0,4,'0c26c969ee9755de9c4780ea43048a86','en','58ff9d35322e10b073505ea6d24fb2db');INSERT INTO "content_file" VALUES('0406f5e7e5014bacbb024b8522bb7b6d','high_res_video',0,0,1,'0c26c969ee9755de9c4780ea43048a86',NULL,'debbdcb86e6a59af70ee0a67d863a1d3');INSERT INTO "content_file" VALUES('8e7f0b4400884221ac1579e51e157f19','video_thumbnail',1,1,3,'81d6adfbf95353efa9d4444fd4542cd9',NULL,'f78aa7aee3fadb53537d90f7e2a12c26');INSERT INTO "content_file" VALUES('50cc6c04ec0a4c1f8cfb58a6f820cdf0','video_subtitle',1,0,4,'81d6adfbf95353efa9d4444fd4542cd9','fr','17381f9f807b790b14e98eea2c3073fa');INSERT INTO "content_file" VALUES('ec890fb2ae9c4a568cba16dc63ed8f2d','video_subtitle',1,0,4,'81d6adfbf95353efa9d4444fd4542cd9','en','b4fd439347e8e25eb561b581964fca6f');INSERT INTO "content_file" VALUES('9e35b2324a79405183f9abecb6bb499c','high_res_video',0,0,1,'81d6adfbf95353efa9d4444fd4542cd9',NULL,'59ae1019b3d3101fe7c27502df1739e9');INSERT INTO "content_file" VALUES('3e4b833234054f8c981804d479f796d0','video_thumbnail',1,1,3,'59de63c3415755c2bf6781f770fea5f1',NULL,'f26c0af525d7bdb16d0b415fb96a2747');INSERT INTO "content_file" VALUES('523ad0a4905643a0af17a2a241b6d65d','video_subtitle',1,0,4,'59de63c3415755c2bf6781f770fea5f1','ro','a507d00520c1ff0115be8374c448f58d');INSERT INTO "content_file" VALUES('8ae844b2dd0548c3859f5a996bf2077b','video_subtitle',1,0,4,'59de63c3415755c2bf6781f770fea5f1','fr','f812826e4b321873d92517a6b2a864af');INSERT INTO "content_file" VALUES('0d908333f8ff417b8b29a6e51dd21060','video_subtitle',1,0,4,'59de63c3415755c2bf6781f770fea5f1','en','f3cc6412817fcd2f9458a60d75c47141');INSERT INTO "content_file" VALUES('cd1b2018de4440b5b650c62afc549bf7','high_res_video',0,0,1,'59de63c3415755c2bf6781f770fea5f1',NULL,'daf65ce9359eb59d92d18e6d61b58172');INSERT INTO "content_file" VALUES('740dc5a5939640249a16267479f20d42','video_thumbnail',1,1,3,'e9476fde18b05a7da4a9b01111d3e09d',NULL,'f613323430b8461b739cb8779c5a3ec8');INSERT INTO "content_file" VALUES('6bf028e748b7401bad353ca850453371','video_subtitle',1,0,4,'e9476fde18b05a7da4a9b01111d3e09d','fr','11e7bf1d5ab690ce4d08cadeb2be43e0');INSERT INTO "content_file" VALUES('32ca32cb982f41dfb97fecf3bacac959','video_subtitle',1,0,4,'e9476fde18b05a7da4a9b01111d3e09d','en','27b21d9be69fba04181747838ddd64c6');INSERT INTO "content_file" VALUES('647a2fa803ba4c7893a2759561bc5a60','high_res_video',0,0,1,'e9476fde18b05a7da4a9b01111d3e09d',NULL,'ef58a21b2f742ea63393918a11aeb04c');INSERT INTO "content_file" VALUES('360b7c1c54cf46018bd8695d6936319a','video_thumbnail',1,1,3,'1eff1d9b3ea851a285baf31912486c74',NULL,'cc0343f75c2cdeff1a59d357ecb13419');INSERT INTO "content_file" VALUES('9598e54642204997bc18e9a87d4c8d43','video_subtitle',1,0,4,'1eff1d9b3ea851a285baf31912486c74','ro','257b675888f898cde7bca7d7c535f450');INSERT INTO "content_file" VALUES('27951989e014415da1cc3852a01ae9c3','video_subtitle',1,0,4,'1eff1d9b3ea851a285baf31912486c74','fr','680c3946fd274a1f9296b3140aac7280');INSERT INTO "content_file" VALUES('8d07ef4630ec456d900223ecfcaff819','video_subtitle',1,0,4,'1eff1d9b3ea851a285baf31912486c74','en','ef24c1b9c21b7a3bb9512ef1b2d6eb20');INSERT INTO "content_file" VALUES('058160f70c88431db83ee594086d841a','high_res_video',0,0,1,'1eff1d9b3ea851a285baf31912486c74',NULL,'e9a7c58fb86ad610a4c9eaf83e3424cc');INSERT INTO "content_file" VALUES('a89acc5009d348fc8a47bb89717c8be2','video_thumbnail',1,1,3,'13a4f2dd160d5cd1a72580129842f893',NULL,'edf50faa30aa06a020996f193ac923ba');INSERT INTO "content_file" VALUES('6f390a0c99dc4b7583bde68c9e231876','video_subtitle',1,0,4,'13a4f2dd160d5cd1a72580129842f893','ro','ee750836025424b56a723c0b532c5f2e');INSERT INTO "content_file" VALUES('4cd2a40301c6453b842a914770ccb4aa','video_subtitle',1,0,4,'13a4f2dd160d5cd1a72580129842f893','fr','f47460f05b4e39ddc3b29513cc16d94b');INSERT INTO "content_file" VALUES('e00f0ccc1ea24c7d90ab4d7fa0949d52','video_subtitle',1,0,4,'13a4f2dd160d5cd1a72580129842f893','en','3456b331ec2bf94585560d47bea89651');INSERT INTO "content_file" VALUES('dd7a54862db14417be06abbd96546c1d','high_res_video',0,0,1,'13a4f2dd160d5cd1a72580129842f893',NULL,'187874cc26d92bd31851fb76575907ad');INSERT INTO "content_file" VALUES('a4553ba17c4c4c11ba7e77205c40669a','html5_thumbnail',1,1,2,'9390a75b697a568ba6a56cd9f4192300',NULL,'b8624fd68e837912a8e3669134ee1494');INSERT INTO "content_file" VALUES('56c672a80b2a46d2a5a20327629bab48','html5_zip',0,0,1,'9390a75b697a568ba6a56cd9f4192300',NULL,'7486158c10271e208b9cdf4fba5dab65');INSERT INTO "content_file" VALUES('8b693be0ab1d40049f2a97e1581411cb','video_thumbnail',1,1,3,'4151695101615714a4e45c7a5be3763c',NULL,'e57b67153bcb10fac16576464788f9a5');INSERT INTO "content_file" VALUES('7d5cb1e8433c4bd6b71d4403722a209b','video_subtitle',1,0,4,'4151695101615714a4e45c7a5be3763c','fr','1f90a9ef1be6c18aab68597342975d78');INSERT INTO "content_file" VALUES('3c20ffe409c745b8a665b2574f6f572b','video_subtitle',1,0,4,'4151695101615714a4e45c7a5be3763c','en','ec8d7ec9faa1b8d72dc4b3095bf57468');INSERT INTO "content_file" VALUES('d30b417d33a94507926984254301feac','high_res_video',0,0,1,'4151695101615714a4e45c7a5be3763c',NULL,'b32f1d82c3d766ad581ab94e85a05924');INSERT INTO "content_file" VALUES('fa61e99758b14ce99df59bc84fdfcb4d','video_thumbnail',1,1,3,'292702420dcb53d48102fa2142a79a0a',NULL,'683255a9012960012e898c843957915b');INSERT INTO "content_file" VALUES('b9139e794c144b23bf267fadf2e11430','video_subtitle',1,0,4,'292702420dcb53d48102fa2142a79a0a','fr','c17644d92cf7466c3bea120562be56fd');INSERT INTO "content_file" VALUES('5f80bcf37dbf4903be6decf18e2e405b','video_subtitle',1,0,4,'292702420dcb53d48102fa2142a79a0a','en','0bb29929dbafb8504cdb0e0d00fdd185');INSERT INTO "content_file" VALUES('1286984ac45e49bd89eec94f677a8053','high_res_video',0,0,1,'292702420dcb53d48102fa2142a79a0a',NULL,'fdbf2bf5f66377926c08509f6243b331');INSERT INTO "content_file" VALUES('3457c845824544f0997e9de0b1319534','video_thumbnail',1,1,3,'372fdd6652365bc690907de719596e4a',NULL,'9e7ce4f79d8157f06db1178dd4176466');INSERT INTO "content_file" VALUES('7c19e7adbd7248e481226b0eb47cc179','video_subtitle',1,0,4,'372fdd6652365bc690907de719596e4a','ro','776b4b2880716acd4144fde1bc45469f');INSERT INTO "content_file" VALUES('0f17c19316324dd59eb569539b2b8766','video_subtitle',1,0,4,'372fdd6652365bc690907de719596e4a','fr','96550ba714365b51331ebaf25e6d5d3c');INSERT INTO "content_file" VALUES('07531f3728bd4eaf9116dd8ba35c341a','video_subtitle',1,0,4,'372fdd6652365bc690907de719596e4a','en','b282592bffbf06076f68b6bb5011b882');INSERT INTO "content_file" VALUES('5cdeba43a5d04dd6b30c66bb6d62d0a8','high_res_video',0,0,1,'372fdd6652365bc690907de719596e4a',NULL,'05a75d69342f08e74003d0aefd923a1d');INSERT INTO "content_file" VALUES('baab30a55cf34b50a297b2e2bea27a5d','video_thumbnail',1,1,3,'793ee1624e8b5a5081de6d2f24bcfaa1',NULL,'0b8497906c814a6bbc195145b710cbe6');INSERT INTO "content_file" VALUES('085b6666a85b498fb8fefd46f2448ae7','video_subtitle',1,0,4,'793ee1624e8b5a5081de6d2f24bcfaa1','fr','31f8827953097ea60bc42d9b6cb469be');INSERT INTO "content_file" VALUES('61bd65ad73784bfb84f29a5335ae4ca1','video_subtitle',1,0,4,'793ee1624e8b5a5081de6d2f24bcfaa1','en','6e51dbbe3dd0074d546520d72d5db551');INSERT INTO "content_file" VALUES('ed9688c212204645b82117c666470576','high_res_video',0,0,1,'793ee1624e8b5a5081de6d2f24bcfaa1',NULL,'586a2542e10abcafb4cdabc65da6ad82');INSERT INTO "content_file" VALUES('2b69f6dbcac2476f9213360e8f63da0c','video_thumbnail',1,1,3,'2e8204c2cf6c5d758ee7fbcac0e71f1f',NULL,'0710dd3fb61b27989a44235d6b145198');INSERT INTO "content_file" VALUES('49af29b0556d46d4a89c3de4b8d09d60','video_subtitle',1,0,4,'2e8204c2cf6c5d758ee7fbcac0e71f1f','fr','a9cc7124e82b91d2edb6d9b7d38bdc2b');INSERT INTO "content_file" VALUES('dbfb4fba2d3e41669559b8f193be2a43','video_subtitle',1,0,4,'2e8204c2cf6c5d758ee7fbcac0e71f1f','en','f6491f213d0e9aeae38d8f8c243e416e');INSERT INTO "content_file" VALUES('9bce9fa6ce31413ab675b4feec5591d5','high_res_video',0,0,1,'2e8204c2cf6c5d758ee7fbcac0e71f1f',NULL,'1ec34b8d76ae04465816166da357cf01');INSERT INTO "content_file" VALUES('bbd34357f5454f8789e4cf56943bc2b0','video_thumbnail',1,1,3,'609b17e619895c839d00f34f8f89158a',NULL,'db752fa7be18f2ab1730e405325a5d0a');INSERT INTO "content_file" VALUES('2e2c1bb2a4804e3ab638c063c4cdcbe0','video_subtitle',1,0,4,'609b17e619895c839d00f34f8f89158a','fr','2c4ccb494adf0faf3d4fde7ee02a569a');INSERT INTO "content_file" VALUES('c4bed7b4b4074d9082d4eee64d8a8bc2','video_subtitle',1,0,4,'609b17e619895c839d00f34f8f89158a','en','52ce8113e78b652077effc3fde27814e');INSERT INTO "content_file" VALUES('cabec199a71c4514903cb2999d5d07ca','high_res_video',0,0,1,'609b17e619895c839d00f34f8f89158a',NULL,'3cfec8cc24f0e3f7d60a992b7d9734b1');INSERT INTO "content_file" VALUES('e2027fb0a5f245e4ba3d930ec334c243','video_thumbnail',1,1,3,'995f5eb65f61546cab4d5861eaea5c72',NULL,'24d01373f52ea45f499c6a51418ae6bd');INSERT INTO "content_file" VALUES('3ad25d82c49b491a8da30df9e3b771c5','video_subtitle',1,0,4,'995f5eb65f61546cab4d5861eaea5c72','fr','51668a9279c6c14ce0787fd7141b80f6');INSERT INTO "content_file" VALUES('4f12d89077214214a2d9dfae1afd45f9','video_subtitle',1,0,4,'995f5eb65f61546cab4d5861eaea5c72','en','f2a70c18bbf5439b4a89db837b670c6c');INSERT INTO "content_file" VALUES('55cb9a887f284fe594d94ba07520db31','high_res_video',0,0,1,'995f5eb65f61546cab4d5861eaea5c72',NULL,'0af50f853d7920952fc3c6032062b656');INSERT INTO "content_file" VALUES('39db39cb87d0428189779cd346175a0c','video_thumbnail',1,1,3,'dac2045ba3f15051853dc6b09b046ee1',NULL,'4460a13b030fa875490053f8abcc732c');INSERT INTO "content_file" VALUES('82e7b121ddfe41a48c85440846903495','video_subtitle',1,0,4,'dac2045ba3f15051853dc6b09b046ee1','fr','512cc3ee865807336e3c40c500f62fa6');INSERT INTO "content_file" VALUES('9ef6ac30a6864f6989b40139a5db1139','video_subtitle',1,0,4,'dac2045ba3f15051853dc6b09b046ee1','en','bfe7c01d2794387ff7f890cbc715d960');INSERT INTO "content_file" VALUES('443c1495c1bc486e9833f1132d725d6c','high_res_video',0,0,1,'dac2045ba3f15051853dc6b09b046ee1',NULL,'823b202984543dca87042ad75795411a');INSERT INTO "content_file" VALUES('23162e150aeb4a2c842d4c3af005696b','video_thumbnail',1,1,3,'36b90049fd24505aa31cb4b6cb3bbd5c',NULL,'d8afdb89fce32bb57083ac0e8533c235');INSERT INTO "content_file" VALUES('c0648a9c52b248c7af6c34e25220da1d','video_subtitle',1,0,4,'36b90049fd24505aa31cb4b6cb3bbd5c','fr','a4cb5b9f1e1b147dd5492cfc068f9149');INSERT INTO "content_file" VALUES('411178a1780a4e2ba05f6f328b84482f','video_subtitle',1,0,4,'36b90049fd24505aa31cb4b6cb3bbd5c','en','d52256631dfea0c381b01b47ffd08e0d');INSERT INTO "content_file" VALUES('bd950cf945d7413d91418f541ce4eca0','high_res_video',0,0,1,'36b90049fd24505aa31cb4b6cb3bbd5c',NULL,'3bf6160f0dfbeee2ed9d82d0432a4c91');INSERT INTO "content_file" VALUES('3cb06f036eb64b6aa0622202926a388a','video_thumbnail',1,1,3,'10c6c1b7b3ae5c5c945219921660daa7',NULL,'29ae3a6dc879f3a781d36d54ffc106f3');INSERT INTO "content_file" VALUES('c465f527bc70409db86ef42408ea1bbf','video_subtitle',1,0,4,'10c6c1b7b3ae5c5c945219921660daa7','fr','ecdf99862eb974428fee6389d3f27889');INSERT INTO "content_file" VALUES('be608ff07b9d4565812f41de0202a029','video_subtitle',1,0,4,'10c6c1b7b3ae5c5c945219921660daa7','en','92afdfb11d6dbbff1351cb9894fe67c3');INSERT INTO "content_file" VALUES('ffb3c420d5ba4cf5a345fcff37f1c0f3','high_res_video',0,0,1,'10c6c1b7b3ae5c5c945219921660daa7',NULL,'03298d5022003fcd7aae546449aa8c6c');INSERT INTO "content_file" VALUES('ef0d1795783948209da86a65b3cf0be9','video_thumbnail',1,1,3,'634f3ab223b251ce921930ef95b661b6',NULL,'ae3484d7a2ff96833494f69b47b2a07b');INSERT INTO "content_file" VALUES('3263f83554104a00b1f369f5f686764c','video_subtitle',1,0,4,'634f3ab223b251ce921930ef95b661b6','fr','27aec1266192c0bdffbf9393dcdb14e2');INSERT INTO "content_file" VALUES('603a2989df1741729be6145b84945868','video_subtitle',1,0,4,'634f3ab223b251ce921930ef95b661b6','en','975ad14868fee576f9c93735e2d37bff');INSERT INTO "content_file" VALUES('8ca4e9a1ef364a1cb290da2bf0f52860','high_res_video',0,0,1,'634f3ab223b251ce921930ef95b661b6',NULL,'e474c209b365eb28dbb30a262b2b0ccf');INSERT INTO "content_file" VALUES('146adbc44fa24264ae9d8c3a466c46bd','video_thumbnail',1,1,3,'9eb95bbdbb5453ce98549e0b9265ec3d',NULL,'cfcc7e987ba4cc2d81a1df57cd4eec0b');INSERT INTO "content_file" VALUES('cca4d27c36fe4cbd9a19f6628d7462f8','video_subtitle',1,0,4,'9eb95bbdbb5453ce98549e0b9265ec3d','fr','6d88d527cab0749a40b02a80b6645ff6');INSERT INTO "content_file" VALUES('e032f6d0a4c5456591546d641abe04e8','video_subtitle',1,0,4,'9eb95bbdbb5453ce98549e0b9265ec3d','en','1c56f9f85969313011c3e2451b16f215');INSERT INTO "content_file" VALUES('f7f0b6419f8540ddbd2a561573128869','high_res_video',0,0,1,'9eb95bbdbb5453ce98549e0b9265ec3d',NULL,'fd189f9cba2f0231356798015f911470');INSERT INTO "content_file" VALUES('4832c2c4c45e426daf394e221eb7249f','video_thumbnail',1,1,3,'638b7ee68b365fab9af841296fe2174a',NULL,'b08b0a925a624a106f1d5f896f35e33f');INSERT INTO "content_file" VALUES('2a289de7ed1d4f82b4ceceed7d6ab65e','video_subtitle',1,0,4,'638b7ee68b365fab9af841296fe2174a','fr','494dd8685e35800d4fb38ae5aa8cd831');INSERT INTO "content_file" VALUES('5929906faabe442dad87fd4a041744bb','video_subtitle',1,0,4,'638b7ee68b365fab9af841296fe2174a','en','b464850f9cede4e01ee3f0873e6d27ec');INSERT INTO "content_file" VALUES('42fbc2452f38489fbaab689588f381a2','high_res_video',0,0,1,'638b7ee68b365fab9af841296fe2174a',NULL,'c1656d3d4bbdbf7a40ab97ee7efac08f');INSERT INTO "content_file" VALUES('ed7bce676f66488c809084a9f160bafd','video_thumbnail',1,1,3,'d46714b2187c569f8ebd8205d166041d',NULL,'dddf0434e6c2e21124b249f47adb89c6');INSERT INTO "content_file" VALUES('50c836b9d9a4498ab6dc687d2de59ec4','video_subtitle',1,0,4,'d46714b2187c569f8ebd8205d166041d','ro','55791149b8565be20aae224ab05df122');INSERT INTO "content_file" VALUES('3276e5cef835431aa2bae7112ce0f750','video_subtitle',1,0,4,'d46714b2187c569f8ebd8205d166041d','fr','788d0bc30ab325adb83c5e285177dacd');INSERT INTO "content_file" VALUES('91bcc7f5348c42299dd5bae94566ad76','video_subtitle',1,0,4,'d46714b2187c569f8ebd8205d166041d','en','8771de1312b1362badf6cfed878c338f');INSERT INTO "content_file" VALUES('2c5a210d482f4715b99ba23ef9efdb6b','high_res_video',0,0,1,'d46714b2187c569f8ebd8205d166041d',NULL,'b50117338990c6faa8a0f103bf5e6364');INSERT INTO "content_file" VALUES('9242bca6094d47a68179a876ce514111','video_thumbnail',1,1,3,'e3139a0447d65f02a6f169fe6cf27197',NULL,'760fd5da540c1b3fa9a1ef16b32587e1');INSERT INTO "content_file" VALUES('be7a97e72f594af8b45ef049ded76410','video_subtitle',1,0,4,'e3139a0447d65f02a6f169fe6cf27197','fr','ae2c662456c71d9f03c805de42d62970');INSERT INTO "content_file" VALUES('5cb2be56e71b4444a34e0ef5fc13785a','video_subtitle',1,0,4,'e3139a0447d65f02a6f169fe6cf27197','en','afafafff5cc4d582418c75566edb7907');INSERT INTO "content_file" VALUES('f0449a9f2c6b461e9c14e3668bd2c820','high_res_video',0,0,1,'e3139a0447d65f02a6f169fe6cf27197',NULL,'e4acf3c65a34e4973551b077081d1fa3');INSERT INTO "content_file" VALUES('f11433be73cb4dac81fbdc690e58f8fd','video_thumbnail',1,1,3,'3eac301190ce5fb29b96fddb2b6a9937',NULL,'c9f8c56da604fca5b39308b8ceb08bb6');INSERT INTO "content_file" VALUES('765d283240164022a8472b667776a9d5','video_subtitle',1,0,4,'3eac301190ce5fb29b96fddb2b6a9937','fr','b30034fbb193d598cf779895a5ad7a1c');INSERT INTO "content_file" VALUES('a59ca954f918414196b762f7490510be','video_subtitle',1,0,4,'3eac301190ce5fb29b96fddb2b6a9937','en','557f3fe7974c7fcd24ab03a1347d9c9d');INSERT INTO "content_file" VALUES('9e48936c48bd4a2391e745de10ecc39a','high_res_video',0,0,1,'3eac301190ce5fb29b96fddb2b6a9937',NULL,'f3360e4fa45d3fecd8a9b86c71ad76e6');INSERT INTO "content_file" VALUES('1c3b6810132146a4a670f30adde6a416','video_thumbnail',1,1,3,'a3d6d03c3c6e5903ac8df16f69e02823',NULL,'58bffeaddafe0429962001af0e849476');INSERT INTO "content_file" VALUES('fa4f869e26a940ff840b79362e7998f4','video_subtitle',1,0,4,'a3d6d03c3c6e5903ac8df16f69e02823','fr','950ce2934cede99a9528549291bbc35f');INSERT INTO "content_file" VALUES('c3c40cc153704a4d909e77b1e88a173f','video_subtitle',1,0,4,'a3d6d03c3c6e5903ac8df16f69e02823','en','047bd12f62456214d6c24d46a6d38be9');INSERT INTO "content_file" VALUES('d5548aa629e94d23a7f59275a449aee9','high_res_video',0,0,1,'a3d6d03c3c6e5903ac8df16f69e02823',NULL,'93bba687485c5fa47f2bd6b61cf185ab');INSERT INTO "content_file" VALUES('00f58f028585441fa5cf0fb51391dedc','video_thumbnail',1,1,3,'ab06d850163c523198c1465482fd7dc1',NULL,'8b136decdf8066321f79ad15fe444b36');INSERT INTO "content_file" VALUES('40c02457fddd4d34984825ffc650e290','video_subtitle',1,0,4,'ab06d850163c523198c1465482fd7dc1','fr','133bb315a9ed41228fb65fac1fc3bc35');INSERT INTO "content_file" VALUES('774b984023af40e28f74f99045c148f2','video_subtitle',1,0,4,'ab06d850163c523198c1465482fd7dc1','en','cd7571d3482299cbbf3eaea3545b0c57');INSERT INTO "content_file" VALUES('dc3fe2daa213495ba4f9284b53715c49','high_res_video',0,0,1,'ab06d850163c523198c1465482fd7dc1',NULL,'ba71a4e8b2447e93eba99b78c44f710f');INSERT INTO "content_file" VALUES('b5f1eedfff344597bd23c08bcffce9e9','video_thumbnail',1,1,3,'85c3175c457c57beb8e5efeff5b58c69',NULL,'094ea9eee6f88ebdf5cc18b33fb93c77');INSERT INTO "content_file" VALUES('2eb6625072bb4ac0a16f9b2f4f30a932','video_subtitle',1,0,4,'85c3175c457c57beb8e5efeff5b58c69','fr','dfb00e020599b3a38e5278d42bc12dee');INSERT INTO "content_file" VALUES('978e26840d3a46d7afa644441bc37866','video_subtitle',1,0,4,'85c3175c457c57beb8e5efeff5b58c69','en','be71d2336b41c3ea7626ffe05e2bb282');INSERT INTO "content_file" VALUES('cec62491450c46599beea7d521426dae','high_res_video',0,0,1,'85c3175c457c57beb8e5efeff5b58c69',NULL,'3a9b6dcfeceef9fffa63cbba85cce227');INSERT INTO "content_file" VALUES('d97a4f633fe04257ac48a3911f53ddd4','video_thumbnail',1,1,3,'b919e228e9b35691b0e2ead2014e367c',NULL,'c7a2f99da09897d8ecbb53b2c401372c');INSERT INTO "content_file" VALUES('ee5853f0336140ea8826d8ec4218d6af','video_subtitle',1,0,4,'b919e228e9b35691b0e2ead2014e367c','fr','d6218c376ea6004ad9ca176f7453592b');INSERT INTO "content_file" VALUES('a93e4b4038334cbc93e25945b25cf48e','video_subtitle',1,0,4,'b919e228e9b35691b0e2ead2014e367c','en','b2db31e923fada7296514f73fb5757f2');INSERT INTO "content_file" VALUES('b6f806846dfd425f809057bffae12dbf','high_res_video',0,0,1,'b919e228e9b35691b0e2ead2014e367c',NULL,'fd599d0d82cd232fd0cbbd4f32ce15c3');INSERT INTO "content_file" VALUES('9c5a9841024a4374a8e57176107b74ec','video_thumbnail',1,1,3,'2ff76c10381a5ebc9e74f06bc21b2042',NULL,'2f573c7129ffe714c52423fde67563e8');INSERT INTO "content_file" VALUES('0c5e2edf329c43c3b950998546f2fdc2','video_subtitle',1,0,4,'2ff76c10381a5ebc9e74f06bc21b2042','fr','e596f9502adda11227c3c063d6b611f7');INSERT INTO "content_file" VALUES('caa8688eb5764f869f940a3c629f939d','video_subtitle',1,0,4,'2ff76c10381a5ebc9e74f06bc21b2042','en','2a0ee0c91636b7b2dd95c196840c1252');INSERT INTO "content_file" VALUES('b28f1799152048eabd9398941abaded5','high_res_video',0,0,1,'2ff76c10381a5ebc9e74f06bc21b2042',NULL,'5e90cdefe9053f0b655bb672b6ac5207');INSERT INTO "content_file" VALUES('f891e28d93d34ebebf4eb3d20367ef01','video_thumbnail',1,1,3,'3068a15db45f5b37983c2ce4a313292f',NULL,'678c167fba106cdbc95eaa74ae559d98');INSERT INTO "content_file" VALUES('e00ea9961c084c66b37044a5feef3de5','video_subtitle',1,0,4,'3068a15db45f5b37983c2ce4a313292f','fr','9ca644017225d4c043ed75bc5c7b9abb');INSERT INTO "content_file" VALUES('33fb3d2344d743739b2739944aeeeadf','video_subtitle',1,0,4,'3068a15db45f5b37983c2ce4a313292f','en','fb6543c5cc2ef62a1e2f7e8d70469b15');INSERT INTO "content_file" VALUES('f84136af848148cc9526244efb705546','high_res_video',0,0,1,'3068a15db45f5b37983c2ce4a313292f',NULL,'92947a2db0d34931c7d6af714d794ad6');INSERT INTO "content_file" VALUES('43928717453e4544890bf143a8fdffc3','video_thumbnail',1,1,3,'5ad79de88b2357ee8b4330c27766ce4f',NULL,'8a074553671eee67ad72631fa7486b09');INSERT INTO "content_file" VALUES('8dcb43d74d194b228fcdd17e2db5667a','video_subtitle',1,0,4,'5ad79de88b2357ee8b4330c27766ce4f','fr','3459535fd02d2f882338bb34f232b083');INSERT INTO "content_file" VALUES('23d8006c1548447e9aab22c8eee42cc3','video_subtitle',1,0,4,'5ad79de88b2357ee8b4330c27766ce4f','en','fd2c4ec1a8ca204475a56f9b8dcd9893');INSERT INTO "content_file" VALUES('00285245ac1a4571b7ee5a76e6683cfc','high_res_video',0,0,1,'5ad79de88b2357ee8b4330c27766ce4f',NULL,'0fa57275c6bf5f8c50e9783615d0f4bf');INSERT INTO "content_file" VALUES('40cb51ecaab4436cb4da6a8132584456','video_thumbnail',1,1,3,'25d273984c0a599ab19a62e8de916b88',NULL,'dc9baeae9060c41f5f01fd5db8d4c931');INSERT INTO "content_file" VALUES('3b79f8dea2274e98bffc8f3af35f2450','video_subtitle',1,0,4,'25d273984c0a599ab19a62e8de916b88','fr','4666de889820440e53b7220fe2e176af');INSERT INTO "content_file" VALUES('6ab85fea5c7547969e8665ae2188d579','video_subtitle',1,0,4,'25d273984c0a599ab19a62e8de916b88','en','f984495d3a69c8d946032b98a20c96d8');INSERT INTO "content_file" VALUES('3c50327554ff422abbcddf19fe61d7b0','high_res_video',0,0,1,'25d273984c0a599ab19a62e8de916b88',NULL,'3cfbcfff9959beae843ea9459ea25da6');INSERT INTO "content_file" VALUES('7b1ee0397c5749c3b6d62d8469e0e8a5','video_thumbnail',1,1,3,'6cac69813adc5dccb96021c93d46225b',NULL,'44ad6bd3780d43d20eade80fc07af687');INSERT INTO "content_file" VALUES('627e3e4ccea34934889c980176d14b3d','video_subtitle',1,0,4,'6cac69813adc5dccb96021c93d46225b','fr','a5dfdb5150fa1987e7de44bf63b9755e');INSERT INTO "content_file" VALUES('35ea3e16b81844a59933ba9af04a13de','video_subtitle',1,0,4,'6cac69813adc5dccb96021c93d46225b','en','352269222ec04e612f962f767cc98ba1');INSERT INTO "content_file" VALUES('a91af06a1a414ee28ed9197d518dade5','high_res_video',0,0,1,'6cac69813adc5dccb96021c93d46225b',NULL,'99fab14a704da01ad8f46d604ec747dd');INSERT INTO "content_file" VALUES('38ab923a9fcd4e81b2dcfabe56a8324c','video_thumbnail',1,1,3,'e56c4aae65a0589a8cb01469e0c43ba6',NULL,'447fef46085a796e58fdfae04e2dcd65');INSERT INTO "content_file" VALUES('d692b922d487416992615ffed9751366','video_subtitle',1,0,4,'e56c4aae65a0589a8cb01469e0c43ba6','ro','abdec1e71fa75fd828f38e10f58e78b8');INSERT INTO "content_file" VALUES('6abe954066124720bcb23ad2d3830d0f','video_subtitle',1,0,4,'e56c4aae65a0589a8cb01469e0c43ba6','fr','9f32939486d2b00206edbce0f3afa5a9');INSERT INTO "content_file" VALUES('0b725ec3464340518119c52ad4dca80a','video_subtitle',1,0,4,'e56c4aae65a0589a8cb01469e0c43ba6','en','a41e3a135d569b374969d64995f2490e');INSERT INTO "content_file" VALUES('17866bcc5ee04b07af4d55000ec2bca6','high_res_video',0,0,1,'e56c4aae65a0589a8cb01469e0c43ba6',NULL,'44835a7ae07a7af2d21de0b4cc9ef291');INSERT INTO "content_file" VALUES('d446fb9311cb4cdea458e2ea7801182c','video_thumbnail',1,1,3,'3d3b2a7d3d3a51ffa0903a440674fe8e',NULL,'679308d3e05c9e3ade4f4d48f7a32a2d');INSERT INTO "content_file" VALUES('d9e80db3eae741188af4edfb162f0296','video_subtitle',1,0,4,'3d3b2a7d3d3a51ffa0903a440674fe8e','fr','df54fe6c64e98e1a071c0096a3dcc66e');INSERT INTO "content_file" VALUES('4654db0ac47a49c6b26b933c17d8b27c','video_subtitle',1,0,4,'3d3b2a7d3d3a51ffa0903a440674fe8e','en','f49e134faaea45deeb92087f608f9e1a');INSERT INTO "content_file" VALUES('f816e12b4f544c75abd4985a33dba99b','high_res_video',0,0,1,'3d3b2a7d3d3a51ffa0903a440674fe8e',NULL,'71235379e01e8abd6f40ff1f40384491');INSERT INTO "content_file" VALUES('2b60da76144347afa29b0e773a92c9b1','video_thumbnail',1,1,3,'8c4924e88bc55faab32bf773f16dd306',NULL,'c5148f02664bfc1f8802bdf4f60d9a14');INSERT INTO "content_file" VALUES('a19160d42b32407ca6009e93885662aa','video_subtitle',1,0,4,'8c4924e88bc55faab32bf773f16dd306','fr','d9a539dd807fd9981dcdea88e6339428');INSERT INTO "content_file" VALUES('95cdcf6db8c1426393c53ace062085b4','video_subtitle',1,0,4,'8c4924e88bc55faab32bf773f16dd306','en','2a340f7b2078f5645eee389c03b8e3a2');INSERT INTO "content_file" VALUES('f3ad15f7d2a041a7998d99a6434dba78','high_res_video',0,0,1,'8c4924e88bc55faab32bf773f16dd306',NULL,'58052e446d0355b6cbb23c4f73b8fd72');INSERT INTO "content_file" VALUES('2f97bca67b604c9c97d46e108b0a03b8','video_thumbnail',1,1,3,'10d9d8e6b78453c0b543bdebc558d03f',NULL,'11e616c656efd37cd8b7397a0e27ac11');INSERT INTO "content_file" VALUES('cad446b8560240fdb11276f545a0fb17','video_subtitle',1,0,4,'10d9d8e6b78453c0b543bdebc558d03f','ro','c7cadac8e0475614632f0cbabc8f30c7');INSERT INTO "content_file" VALUES('4a115d4fe28e4f219f792bf65bedd45d','video_subtitle',1,0,4,'10d9d8e6b78453c0b543bdebc558d03f','fr','4db647497c042c86d32448f2ffc6bf26');INSERT INTO "content_file" VALUES('1edae0f354d4488996f0bfe05a11b34a','video_subtitle',1,0,4,'10d9d8e6b78453c0b543bdebc558d03f','en','8c313ceb833cbf47d52329ee297b2f3f');INSERT INTO "content_file" VALUES('f917e9dd662143f385b029ba4bae7e2a','high_res_video',0,0,1,'10d9d8e6b78453c0b543bdebc558d03f',NULL,'678a5c762c5c0d9170163756afeb6b22');INSERT INTO "content_file" VALUES('98c23678532c4bf49bd990a32e6cd61a','video_thumbnail',1,1,3,'9a935ee7a55950509802921e339754e1',NULL,'3dced26bf5e49920919a7ba3562a0611');INSERT INTO "content_file" VALUES('eeec3e44b15c4afc86b127e29cc70e0e','video_subtitle',1,0,4,'9a935ee7a55950509802921e339754e1','fr','4e3e1fea7b5189934e2eb1c534ef3af2');INSERT INTO "content_file" VALUES('51cdb41a04014ef4b8a2b68ef9e748b2','video_subtitle',1,0,4,'9a935ee7a55950509802921e339754e1','en','b0ba1c78a49d163d328e15a314958da8');INSERT INTO "content_file" VALUES('9ab5be0e0bbd451b88129ac5004db8e5','high_res_video',0,0,1,'9a935ee7a55950509802921e339754e1',NULL,'fdd381fba2c4ceb7702e066d7e39b915');INSERT INTO "content_file" VALUES('b9b9e0085abe43f48a17ab6593c70550','video_thumbnail',1,1,3,'070c90dd38ae5a8c9164982d5dac58eb',NULL,'6c8341e1c124488750f711b634f64d0a');INSERT INTO "content_file" VALUES('3cb132ab67f5454fb27d3fe4154633ac','video_subtitle',1,0,4,'070c90dd38ae5a8c9164982d5dac58eb','fr','50448be8e8e36e52fa7105e43c1cf945');INSERT INTO "content_file" VALUES('4fcd4f6b4ab049b58d0ad5ee0bc7943e','video_subtitle',1,0,4,'070c90dd38ae5a8c9164982d5dac58eb','en','1f736fbf50e37e5198af64949c8860dc');INSERT INTO "content_file" VALUES('07545bfa37c94707b819d5ce20f92222','high_res_video',0,0,1,'070c90dd38ae5a8c9164982d5dac58eb',NULL,'c55b471581e4a9400d0c040edbb9d503');INSERT INTO "content_file" VALUES('7e5f1c954bce49ed830350661966cbbf','video_thumbnail',1,1,3,'62bd373d406c59649cd516dd35896815',NULL,'86db64e4d569cd14e27ec583d3cd51b4');INSERT INTO "content_file" VALUES('a9a3b45d32a04ac1bbd6b6a75afebe66','video_subtitle',1,0,4,'62bd373d406c59649cd516dd35896815','fr','d4960d32958da1ecb595aa6b991383ee');INSERT INTO "content_file" VALUES('4ae0c8fbd7164f529046d7d4a8235e97','video_subtitle',1,0,4,'62bd373d406c59649cd516dd35896815','en','918595e269697f972a248bc1e821849f');INSERT INTO "content_file" VALUES('2d8b6e4ec5b44279bc1d33c796c00cab','high_res_video',0,0,1,'62bd373d406c59649cd516dd35896815',NULL,'65cbe46135bcb3ecc2e9eec564f3f578');INSERT INTO "content_file" VALUES('ef61408bbb884809b1d3f94304174c23','video_thumbnail',1,1,3,'fac44bb3d0e154b68f44ad62cdf3877f',NULL,'be027b9e2de5519e839d3fe538478165');INSERT INTO "content_file" VALUES('2eddd36b44974de58bee64934841ae19','video_subtitle',1,0,4,'fac44bb3d0e154b68f44ad62cdf3877f','fr','5576638f6e5a9834e14e05076a92635c');INSERT INTO "content_file" VALUES('bb4bccd58b494adf8683ce0b1d3caed5','video_subtitle',1,0,4,'fac44bb3d0e154b68f44ad62cdf3877f','en','40b33bb5840ab82f08468f0370f64ad8');INSERT INTO "content_file" VALUES('2b54ac38712a4501b5f9f588c6f9a090','high_res_video',0,0,1,'fac44bb3d0e154b68f44ad62cdf3877f',NULL,'6224351b342fa5a8ae39c318ae086394');INSERT INTO "content_file" VALUES('23db568c9d764629b4727497548c75f6','video_thumbnail',1,1,3,'266ca77b9adc5d9891f3bcc488503b35',NULL,'85adf9125a25a2bca5cc4f5f7b3d7b2a');INSERT INTO "content_file" VALUES('d878f614ece4457882414f29e514b050','video_subtitle',1,0,4,'266ca77b9adc5d9891f3bcc488503b35','fr','1c3a77807d009315aa1073ccecb9ac8f');INSERT INTO "content_file" VALUES('2178bca22b5b467d8966a947d51b4e0d','video_subtitle',1,0,4,'266ca77b9adc5d9891f3bcc488503b35','en','35db550dc2fd1a4f3d2cbb1a82c8c6e6');INSERT INTO "content_file" VALUES('941671f80c3e4c3abb0b92f73b25167a','high_res_video',0,0,1,'266ca77b9adc5d9891f3bcc488503b35',NULL,'e390736d3fc95f4fcc338123f0ca6768');INSERT INTO "content_file" VALUES('50e3bcc5d1c944948a204ec88f2d551a','video_thumbnail',1,1,3,'879749ba4cef5a17a2ab7bc1f2a28e93',NULL,'93ef7daad10c2d7849a3298ff53b6c6f');INSERT INTO "content_file" VALUES('1c04d31b05f24fd887247a42838b4df9','video_subtitle',1,0,4,'879749ba4cef5a17a2ab7bc1f2a28e93','ro','ab2ef506b8710f05acdbfd27b1445b51');INSERT INTO "content_file" VALUES('246059a54da74a7cbc6b1297ac2d219f','video_subtitle',1,0,4,'879749ba4cef5a17a2ab7bc1f2a28e93','fr','a5fe96a92966a4ed2260530f3fade07b');INSERT INTO "content_file" VALUES('128ba618a9414cbf8a1eea666f57b27d','video_subtitle',1,0,4,'879749ba4cef5a17a2ab7bc1f2a28e93','en','e906d0ce1a8b800e16661ed0c095e4a9');INSERT INTO "content_file" VALUES('cd193966ead44a5c87f3a2628038eb4e','high_res_video',0,0,1,'879749ba4cef5a17a2ab7bc1f2a28e93',NULL,'880ae16de4c6b0546fba843e447b2177');INSERT INTO "content_file" VALUES('ee3a789570344d3dae60219873100c72','video_thumbnail',1,1,3,'ccb6b1bbfd4555b4ad2c82e9eee9a488',NULL,'1f50ce1e1363f4dd69ee8e7aecee8d96');INSERT INTO "content_file" VALUES('c0bfb79d05644427bbb09eb8037205d2','video_subtitle',1,0,4,'ccb6b1bbfd4555b4ad2c82e9eee9a488','fr','7302e5c2a83d31f256e5689f22aff77f');INSERT INTO "content_file" VALUES('cfe65220e7da40dd9549d64a70a38ece','video_subtitle',1,0,4,'ccb6b1bbfd4555b4ad2c82e9eee9a488','en','64a9827921e08c438c15e17f7542fa87');INSERT INTO "content_file" VALUES('f02dd3de2e0e410487c983cd58657e73','high_res_video',0,0,1,'ccb6b1bbfd4555b4ad2c82e9eee9a488',NULL,'471ce3b3d067ea8e85ecca60cbf60619');INSERT INTO "content_file" VALUES('6833002d91a646f0aa2f156995bf5d33','video_thumbnail',1,1,3,'0e81b4489a4b5f6faf94c8d5a7696c0a',NULL,'590ba7d764b83a08dac11167c6be7c15');INSERT INTO "content_file" VALUES('12cf1673889c4b81b649fa7f020e662c','video_subtitle',1,0,4,'0e81b4489a4b5f6faf94c8d5a7696c0a','fr','a7dbb68362869634d303e4c0a6115a80');INSERT INTO "content_file" VALUES('a6b184d3f196434e8f8342e5d463a9ae','video_subtitle',1,0,4,'0e81b4489a4b5f6faf94c8d5a7696c0a','en','d11440da7cd05d07c558e11f4d6fc080');INSERT INTO "content_file" VALUES('55c3ca74ffef44328a6a52e3ebfd22bb','high_res_video',0,0,1,'0e81b4489a4b5f6faf94c8d5a7696c0a',NULL,'31e372df1042535ad326eea24b2a23bc');INSERT INTO "content_file" VALUES('80b4fe041e2e4059aaa87a90789a2a43','video_thumbnail',1,1,3,'8e2c5a7fa7045929908307208b9ecc19',NULL,'fbf01a2dc346dbad116d3b94e5ed5363');INSERT INTO "content_file" VALUES('b7bfe12ec9f54e9797d658b04f9fcb3d','video_subtitle',1,0,4,'8e2c5a7fa7045929908307208b9ecc19','fr','4c96d295f580751ce7cb42192d1a3f7f');INSERT INTO "content_file" VALUES('e2ccfec7a351425da906f31005e07bd7','video_subtitle',1,0,4,'8e2c5a7fa7045929908307208b9ecc19','en','df29fad57ff56b655b478ee3533dd8e8');INSERT INTO "content_file" VALUES('fcbe4862cc31466b81da7dbf6c14d97e','high_res_video',0,0,1,'8e2c5a7fa7045929908307208b9ecc19',NULL,'83adf5ca8976556a70c439ae0141d67c');INSERT INTO "content_file" VALUES('dd5117516316469491511176e5092edc','video_thumbnail',1,1,3,'5888dcf02b175c1f8c5a8f866953e7e8',NULL,'7f0c96a9ca97c2920841cc9427201f35');INSERT INTO "content_file" VALUES('9400efdafe4540c5a6776c53883ec4f1','video_subtitle',1,0,4,'5888dcf02b175c1f8c5a8f866953e7e8','fr','e345a810a7bc605438f66a6939950586');INSERT INTO "content_file" VALUES('58712382f6ce462ab42a40248e273915','video_subtitle',1,0,4,'5888dcf02b175c1f8c5a8f866953e7e8','en','b4e395de54943e02a81ad7578dd5a539');INSERT INTO "content_file" VALUES('dcfc5aad83bc4dc39dd22857723965ba','high_res_video',0,0,1,'5888dcf02b175c1f8c5a8f866953e7e8',NULL,'5bede1a7d42940b2bc0256d49de2e39a');INSERT INTO "content_file" VALUES('42889e5519c845ec94c62cbbfce104e7','video_thumbnail',1,1,3,'a92c4f4aac8856629e3488a0cb3162a8',NULL,'0bda1e7a90f830734a968ef7f6ccb57b');INSERT INTO "content_file" VALUES('d2826f60ca0040f2aa1b471cb7b4b60e','video_subtitle',1,0,4,'a92c4f4aac8856629e3488a0cb3162a8','fr','abd967388b43be145ff0a394050198ec');INSERT INTO "content_file" VALUES('52506216aacd4ce4ba3b9d9cce91e5c2','video_subtitle',1,0,4,'a92c4f4aac8856629e3488a0cb3162a8','en','b2a7023fb527c2c663ccf3dc2d61ac56');INSERT INTO "content_file" VALUES('e71a2e8ce1434044bfee703cee0a6e5c','high_res_video',0,0,1,'a92c4f4aac8856629e3488a0cb3162a8',NULL,'62ca92e30d90ced3f2d6bd025985732b');INSERT INTO "content_file" VALUES('d71a4da2e0194dc680f8387c4337a2cf','video_thumbnail',1,1,3,'75e03a5ce5c2554b94c45fe169ffdae6',NULL,'8594711426b6ff808124a78f4a03b339');INSERT INTO "content_file" VALUES('b3c2fc94dec74dc087c4a9601d027524','video_subtitle',1,0,4,'75e03a5ce5c2554b94c45fe169ffdae6','fr','8f1f2560f6738fa989fca9c16f2f4cb2');INSERT INTO "content_file" VALUES('0b44f84c418946bd95a3627cbe207be3','video_subtitle',1,0,4,'75e03a5ce5c2554b94c45fe169ffdae6','en','a0d1c27aed09f5b06bbfa86f3dd4b66c');INSERT INTO "content_file" VALUES('60dcb8d239f04947829ebcade608c881','high_res_video',0,0,1,'75e03a5ce5c2554b94c45fe169ffdae6',NULL,'afb0f6b0900b25f5abb420293d51515d');INSERT INTO "content_file" VALUES('ab20997ec7584a2b809b80e19b62f17a','video_thumbnail',1,1,3,'050b3fd31ecb5d8cb3ff4c889c875fd5',NULL,'f20857152d706e4f3c8b68a2652c582f');INSERT INTO "content_file" VALUES('a2a1ff19d1534c3392b3ebcf9d2d6f11','video_subtitle',1,0,4,'050b3fd31ecb5d8cb3ff4c889c875fd5','ru','c4470099969feba032dcfdd565b7452d');INSERT INTO "content_file" VALUES('03581f343c264559b7a2e6cf4329998b','video_subtitle',1,0,4,'050b3fd31ecb5d8cb3ff4c889c875fd5','fr','9f76887cbbe65721b9b76f6941dca125');INSERT INTO "content_file" VALUES('4fb5fd0c48f741afb18c3c99ce32cb19','video_subtitle',1,0,4,'050b3fd31ecb5d8cb3ff4c889c875fd5','en','3b1219a1183204c3f47fb8bd27042770');INSERT INTO "content_file" VALUES('1d045e3ef8ea4664b6a391e9e2a64792','high_res_video',0,0,1,'050b3fd31ecb5d8cb3ff4c889c875fd5',NULL,'cacca9dc0db8dfeb078cf47feddf0952');INSERT INTO "content_file" VALUES('6963fa751919472db29537f5a4f7c30e','video_thumbnail',1,1,3,'fb0c048408ad50fa9dcc84e6bfa222bb',NULL,'42cd7858a081b5fb1aa0d1d2b54d853d');INSERT INTO "content_file" VALUES('163b526a15fa4299bc4e2f938f382ec8','video_subtitle',1,0,4,'fb0c048408ad50fa9dcc84e6bfa222bb','ru','a5e2bd9fbefe3d24088798ece389d5a7');INSERT INTO "content_file" VALUES('aeb9c65e9ed449cb85b7a90e9b217a88','video_subtitle',1,0,4,'fb0c048408ad50fa9dcc84e6bfa222bb','fr','7cb8784b9929772c060583f03f02fdf9');INSERT INTO "content_file" VALUES('24492f31a8b3455f8c9972736dcae39c','video_subtitle',1,0,4,'fb0c048408ad50fa9dcc84e6bfa222bb','en','ca491504df1e9f184d5cb9badb7c7ba9');INSERT INTO "content_file" VALUES('cf92bcece5054d9db273c866ef67b853','high_res_video',0,0,1,'fb0c048408ad50fa9dcc84e6bfa222bb',NULL,'42a99b909af9545cfde1c2910346b5a8');INSERT INTO "content_file" VALUES('89edbcc0e85b46fea536ba689f8fe5ed','video_thumbnail',1,1,3,'76d2eaaa207154ad914fd4781cb1a5cc',NULL,'7c1190902692d722917eb7a03d126afd');INSERT INTO "content_file" VALUES('174dd6c08f884cb7a292d4a03cd20593','video_subtitle',1,0,4,'76d2eaaa207154ad914fd4781cb1a5cc','fr','9521f7fe41c6d4230a7e625a896de9a6');INSERT INTO "content_file" VALUES('80372984aa194e2cab1620be9bf60875','video_subtitle',1,0,4,'76d2eaaa207154ad914fd4781cb1a5cc','en','0fc747d2a6bded38fb83c7f5c6ff1c94');INSERT INTO "content_file" VALUES('0264c6a6983a41d38c993ef849debaaa','high_res_video',0,0,1,'76d2eaaa207154ad914fd4781cb1a5cc',NULL,'ff56df1745d2bb706797d8658a09b8d8');INSERT INTO "content_file" VALUES('da02effee9ec42b0a1530ff52fa6a185','video_thumbnail',1,1,3,'69b6ce4071fd54fd82fab705fc89797f',NULL,'5986a259ae58a22918d62e23c75d1845');INSERT INTO "content_file" VALUES('70fa638dd5d8408cadc27aa8a9383dc4','video_subtitle',1,0,4,'69b6ce4071fd54fd82fab705fc89797f','fr','df4373766ea386d40b9ac325eaecef13');INSERT INTO "content_file" VALUES('201d6eab86eb40d092a9841f6f11c666','video_subtitle',1,0,4,'69b6ce4071fd54fd82fab705fc89797f','en','01c9e460cb8f7b1ade2391b901c3a3f3');INSERT INTO "content_file" VALUES('b827fbe0916f452888014daebd36f019','high_res_video',0,0,1,'69b6ce4071fd54fd82fab705fc89797f',NULL,'95b4e4f09fab66d92407bc68c14a0a78');INSERT INTO "content_file" VALUES('5a1bce52ceec4a0b8b1ddefaf0246ed5','video_thumbnail',1,1,3,'c9271bf6126c5ca4ade12a5d8c72cda4',NULL,'42f9ae4b04e6c975e4dfc68764748d59');INSERT INTO "content_file" VALUES('41ac2620223d4d9196a34f440581934e','video_subtitle',1,0,4,'c9271bf6126c5ca4ade12a5d8c72cda4','fr','f04f5eb3c7b688d4646cf04d3f0c4b66');INSERT INTO "content_file" VALUES('1e565a790d734c08bb09d66f5a2f404d','video_subtitle',1,0,4,'c9271bf6126c5ca4ade12a5d8c72cda4','en','bd7ab13e71df6a82de64af1a2ed27a59');INSERT INTO "content_file" VALUES('23882b801e0e4eb7a284dfda68b3a67f','high_res_video',0,0,1,'c9271bf6126c5ca4ade12a5d8c72cda4',NULL,'3eb0d9a24a9c5d26aa877cf09d70d8ba');INSERT INTO "content_file" VALUES('31ce719c3ade4170a8796058fd1778e4','video_thumbnail',1,1,3,'aa89288e727b58af91028a21a47ad697',NULL,'b9da58af414f31bf13f225c19c776534');INSERT INTO "content_file" VALUES('db32063004574b838bb9dcff764e0ad8','video_subtitle',1,0,4,'aa89288e727b58af91028a21a47ad697','fr','04b25275b8e388d8b3103e0088163fe8');INSERT INTO "content_file" VALUES('05321dd8e6fd498b927ca6b8dcc6418a','video_subtitle',1,0,4,'aa89288e727b58af91028a21a47ad697','en','193fc353a4e230f039153ea985bd2acc');INSERT INTO "content_file" VALUES('627a0006012a4633a0c36634fe94fa6c','high_res_video',0,0,1,'aa89288e727b58af91028a21a47ad697',NULL,'8b06c08e18ca344c3f8914bc2f6d67c7');INSERT INTO "content_file" VALUES('39e02035d4b04ee6a207ca85549a2453','video_thumbnail',1,1,3,'7fd74c1baf4e58e6863fcb0ce33c6f1e',NULL,'7be2126712b0abee889bf953bd9cdfe5');INSERT INTO "content_file" VALUES('2d2a2b3f183e41b78594cf732c79a57f','video_subtitle',1,0,4,'7fd74c1baf4e58e6863fcb0ce33c6f1e','fr','194f6afe9ecbb9d9824b90909e87f3d8');INSERT INTO "content_file" VALUES('f2084794378b4e41af2a52de7b935221','video_subtitle',1,0,4,'7fd74c1baf4e58e6863fcb0ce33c6f1e','en','bfac56429c7d81b08ff9107582183c4b');INSERT INTO "content_file" VALUES('9581e599e899443797699117ed860c0b','high_res_video',0,0,1,'7fd74c1baf4e58e6863fcb0ce33c6f1e',NULL,'9df45e6fbec901df292b66380bf0dbfb');INSERT INTO "content_file" VALUES('4e775f768fe54b04af0832ca230f29aa','video_thumbnail',1,1,3,'31c2ba5caefb5951bbbc79ae76794dce',NULL,'decb25682d37a2e52058197b7b1c6497');INSERT INTO "content_file" VALUES('3437faac7e324f48bf80beae4bc37cee','video_subtitle',1,0,4,'31c2ba5caefb5951bbbc79ae76794dce','fr','c786584e7b51bc06a2d8ee7c3e78b9f5');INSERT INTO "content_file" VALUES('88c65601bcd148c6b96e7ec16a736634','video_subtitle',1,0,4,'31c2ba5caefb5951bbbc79ae76794dce','en','ad6d833aececdfe2df66adf75987d606');INSERT INTO "content_file" VALUES('f4308004c34041968d2320ff9b76f610','high_res_video',0,0,1,'31c2ba5caefb5951bbbc79ae76794dce',NULL,'6fad82209603698101ae61af4df5129a');INSERT INTO "content_file" VALUES('2199f02f4ab54d449c73a6f6e6aecdac','video_thumbnail',1,1,3,'571c6a771d565fc4976fb690d8af18c5',NULL,'04605d7731343cb9e6de81d6c9be0b72');INSERT INTO "content_file" VALUES('d63b959f8ba94b3b87178850aca9c575','video_subtitle',1,0,4,'571c6a771d565fc4976fb690d8af18c5','fr','9b68dfd8e00d6f7ae0354a89bc10e679');INSERT INTO "content_file" VALUES('96c5ee5593e14d94a0723785a68e73af','video_subtitle',1,0,4,'571c6a771d565fc4976fb690d8af18c5','en','2d5e96ec2654d8aab08aa00c503a0018');INSERT INTO "content_file" VALUES('621920853c2e499d985ecd1f31d8e58f','high_res_video',0,0,1,'571c6a771d565fc4976fb690d8af18c5',NULL,'be60ffc57662bc6a9d8b726db9fcb091');INSERT INTO "content_file" VALUES('f1c7bf8bd33440709b47e68bfece7bc1','video_thumbnail',1,1,3,'efc81c34c0305ce3977ea46620a5bb5f',NULL,'caee7391551819169a18001e66e57dac');INSERT INTO "content_file" VALUES('4537478c2d9c4417a3a3c8996ca121b6','video_subtitle',1,0,4,'efc81c34c0305ce3977ea46620a5bb5f','fr','b7265d14ff2f4c84c87375b616522061');INSERT INTO "content_file" VALUES('c6411315e9414a89a4b536b03ce03cf7','video_subtitle',1,0,4,'efc81c34c0305ce3977ea46620a5bb5f','en','e1791671b5d9f3ab391090c6e31af749');INSERT INTO "content_file" VALUES('e3dc3c3264494522b79f309c6669f16d','high_res_video',0,0,1,'efc81c34c0305ce3977ea46620a5bb5f',NULL,'47d708700d9c9379baa3fb1ee2f2d319');INSERT INTO "content_file" VALUES('aa014f0e68854573a84177b85fb768f2','video_thumbnail',1,1,3,'99e46cbb76d15965871667fbd1e31137',NULL,'87af7b768620e9991258c9ce78a9c32b');INSERT INTO "content_file" VALUES('23153561b470494895217919275af7e9','video_subtitle',1,0,4,'99e46cbb76d15965871667fbd1e31137','fr','0bf5458d7f65db61d27ba434f49a1b74');INSERT INTO "content_file" VALUES('2af827cdd64e4e12b342a7889ffe14ae','video_subtitle',1,0,4,'99e46cbb76d15965871667fbd1e31137','en','53a0b38c51e574b90e0065292d8c1cda');INSERT INTO "content_file" VALUES('21dfaca63e6b42eca2b204446ba439a7','high_res_video',0,0,1,'99e46cbb76d15965871667fbd1e31137',NULL,'ae63595c765d9f38a6409fd3fd8e47d1');INSERT INTO "content_file" VALUES('ed0734f73bb640ccada87397290db79f','video_thumbnail',1,1,3,'7f5cccafbad151ebb64ff2cefc185d44',NULL,'54ef50996504fea036ff7ace89eca6e5');INSERT INTO "content_file" VALUES('8717a84104bb45e0840b0812f3aead23','video_subtitle',1,0,4,'7f5cccafbad151ebb64ff2cefc185d44','fr','b7515476f3a2210ce9dea86234fd7174');INSERT INTO "content_file" VALUES('86975354a490499c9f4ee901f2ae3110','video_subtitle',1,0,4,'7f5cccafbad151ebb64ff2cefc185d44','en','1f245b6e404b93b27d499607d655f9aa');INSERT INTO "content_file" VALUES('389a3e3422b94b758efe258d3c882944','high_res_video',0,0,1,'7f5cccafbad151ebb64ff2cefc185d44',NULL,'4b6a885f6873092346fe83dd8b8afe94');INSERT INTO "content_file" VALUES('7d8d84a28a564db7b5095e6d3e57092f','video_thumbnail',1,1,3,'264498b130b2500daf350c846929ba39',NULL,'1ad8acdabc77e0e377c464c250c9a6e7');INSERT INTO "content_file" VALUES('5913bc95faf4452d879cc0bf494479b9','video_subtitle',1,0,4,'264498b130b2500daf350c846929ba39','fr','99ae3cc77821dccb9e01e532c1571fad');INSERT INTO "content_file" VALUES('0877e2900c8f473da2affd6c3f327839','video_subtitle',1,0,4,'264498b130b2500daf350c846929ba39','en','1effaa4382bdeafa2a4f1a253d28fb9a');INSERT INTO "content_file" VALUES('bfc24852d53a4865ba9a12f082dc31ed','high_res_video',0,0,1,'264498b130b2500daf350c846929ba39',NULL,'5ebd2ad394f533b3e45067a2362209f0');INSERT INTO "content_file" VALUES('bcacab08b3074162828e76a9dbd9545c','video_thumbnail',1,1,3,'2668857c63c35ac993792dcd0236a36c',NULL,'4b132fca12acea6fae1904520e33f5fb');INSERT INTO "content_file" VALUES('6cc9d8041fe84a7c873c0646ee541c55','video_subtitle',1,0,4,'2668857c63c35ac993792dcd0236a36c','fr','18f1817a75fe3ffe7851ff97c6c388d9');INSERT INTO "content_file" VALUES('de875777c9b54914b8f879e78620241e','video_subtitle',1,0,4,'2668857c63c35ac993792dcd0236a36c','en','82773165658b369d669a6a3ff2294a2c');INSERT INTO "content_file" VALUES('026ede636890409f8792a2152846b3c9','high_res_video',0,0,1,'2668857c63c35ac993792dcd0236a36c',NULL,'4c283a45a323cd170551a8439f8808c0');INSERT INTO "content_file" VALUES('c84674e64d7540b9bde315ed179c482b','video_thumbnail',1,1,3,'d67733d8b7f057f5be704f0de2c3a1b2',NULL,'847166b91f440158b4cfc348b5288bdf');INSERT INTO "content_file" VALUES('37b5cafffcd04a01b60e81f74ddb98c1','video_subtitle',1,0,4,'d67733d8b7f057f5be704f0de2c3a1b2','ru','ea2aeabf53343ab2ba31c990d60fe556');INSERT INTO "content_file" VALUES('3a98a44cf09d4e6a91e51fd4750e9c03','video_subtitle',1,0,4,'d67733d8b7f057f5be704f0de2c3a1b2','fr','e41117c475dff99357d7354391317ee2');INSERT INTO "content_file" VALUES('1deff182007442f7a564353caeba2dfa','video_subtitle',1,0,4,'d67733d8b7f057f5be704f0de2c3a1b2','en','f238ca188debe7d11c7e3f202a7e6bd9');INSERT INTO "content_file" VALUES('49e8bf3bd64b4e48acba354440be6a7f','high_res_video',0,0,1,'d67733d8b7f057f5be704f0de2c3a1b2',NULL,'d8de7b920a525867a00488cadcfab77b');INSERT INTO "content_file" VALUES('efbba3a4d16b4259a830d0b329abec05','video_thumbnail',1,1,3,'ef0338cad48851a886db02250be79d34',NULL,'03bd99afb67e15173e43614dc16fe6ce');INSERT INTO "content_file" VALUES('9e47a21ed3954fa8bedc8b5856a748a0','video_subtitle',1,0,4,'ef0338cad48851a886db02250be79d34','ru','c0e6e270d2fc1deb08607d9ae57ee920');INSERT INTO "content_file" VALUES('c767656de82a4aff89dbbfa3bd19345d','video_subtitle',1,0,4,'ef0338cad48851a886db02250be79d34','fr','76e80f9e15e7a1a6cc05ebe465ab82d8');INSERT INTO "content_file" VALUES('fa320a1b839c4f98ac3f3fbcbe80c6e2','video_subtitle',1,0,4,'ef0338cad48851a886db02250be79d34','en','2c5979705fd3086f8d346718dcd4be2f');INSERT INTO "content_file" VALUES('0b967cc95af2438f827a9bdc38bbd150','high_res_video',0,0,1,'ef0338cad48851a886db02250be79d34',NULL,'0cc193666e273e84bb73b2b4b953214a');INSERT INTO "content_file" VALUES('a912025efa88469082e4877afa842c27','video_thumbnail',1,1,3,'20bf02522c575bf5bd65552180ab967e',NULL,'070112d0955381dc53ce097b5c07ee0c');INSERT INTO "content_file" VALUES('0c8008a2b100467a847051c2f9023a59','video_subtitle',1,0,4,'20bf02522c575bf5bd65552180ab967e','fr','417d29d3ae21f9524b9a22045bc47b13');INSERT INTO "content_file" VALUES('2bbf1ca48c914c469a37a149536ae68e','video_subtitle',1,0,4,'20bf02522c575bf5bd65552180ab967e','en','6f812a0ca3d45a8c816b30247e373747');INSERT INTO "content_file" VALUES('419b979f78c1491f8dd7a61ff74a6681','high_res_video',0,0,1,'20bf02522c575bf5bd65552180ab967e',NULL,'f7332b779c2fa8d7e4e6e95f0c6c49a2');INSERT INTO "content_file" VALUES('005f646bb3af49e38584486c59835d37','video_thumbnail',1,1,3,'4053be99400152b28bfabbb94ee72f24',NULL,'4b0b7825a960254f9619f873fd2fd257');INSERT INTO "content_file" VALUES('f90d24cffe324ce8979e5057f829cd0e','video_subtitle',1,0,4,'4053be99400152b28bfabbb94ee72f24','fr','4ef71c72dc4b5451351b6b0912bd2e87');INSERT INTO "content_file" VALUES('6864e112280c441a8c54d7d5a683b064','video_subtitle',1,0,4,'4053be99400152b28bfabbb94ee72f24','en','75fd6b7eb0f3904156fc87c18eddacbe');INSERT INTO "content_file" VALUES('95f54847a52f446b9d51c7214ffc0e83','high_res_video',0,0,1,'4053be99400152b28bfabbb94ee72f24',NULL,'752287067d590a56c62519aa866d8547');INSERT INTO "content_file" VALUES('dd5bb729419645c1ae60a59b8afb2a4e','video_thumbnail',1,1,3,'aa4c001be90d5b7c83173262386a4434',NULL,'9a60cf6e95923c087fab1fc3c0232dcf');INSERT INTO "content_file" VALUES('d3bc5c599cf344e2b4dd8bf3bffc5e8a','video_subtitle',1,0,4,'aa4c001be90d5b7c83173262386a4434','fr','e73f29543081925f5c8a896944b69ebc');INSERT INTO "content_file" VALUES('b250535c56584d328e51a9c940dd7306','video_subtitle',1,0,4,'aa4c001be90d5b7c83173262386a4434','en','651ed28ff25a2cf5186ec82b01b9fe27');INSERT INTO "content_file" VALUES('e644109b767e48dc80a1d9f2f892c57a','high_res_video',0,0,1,'aa4c001be90d5b7c83173262386a4434',NULL,'e50e5842bb15bd47e63544225dd4df2b');INSERT INTO "content_file" VALUES('9d0c33a2978f49de90bf7e5585c7a57e','video_thumbnail',1,1,3,'8082bbc4711b5a188fde448754608d41',NULL,'ba2b535905b12f5e8b843558ebb9fb26');INSERT INTO "content_file" VALUES('5d0c6ff36aef4373b7c1a2fcb6837986','video_subtitle',1,0,4,'8082bbc4711b5a188fde448754608d41','fr','68aa18964c64fe07a3a440187d2475d6');INSERT INTO "content_file" VALUES('801de8bb50ab427787ac44d014fafbeb','video_subtitle',1,0,4,'8082bbc4711b5a188fde448754608d41','en','21b0226c54aa3d384d32d03cefa54be8');INSERT INTO "content_file" VALUES('3efd27fc24e94f1c86bc66139544d817','high_res_video',0,0,1,'8082bbc4711b5a188fde448754608d41',NULL,'427ddd61b021dd43dc3847a4f7a7f679');INSERT INTO "content_file" VALUES('0669086d52fb40539be032f12e775a6d','video_thumbnail',1,1,3,'f642a78828055ee6af02d5e6bcac4854',NULL,'6b37cbfb438edce6e47e312ba6110b5f');INSERT INTO "content_file" VALUES('e446b659ae224c2bb7c0e359e04d1fbb','video_subtitle',1,0,4,'f642a78828055ee6af02d5e6bcac4854','fr','09919eb46ad58f90cccfa2dda26b6ce8');INSERT INTO "content_file" VALUES('db9a0f88e464417e97775802f24034a7','video_subtitle',1,0,4,'f642a78828055ee6af02d5e6bcac4854','en','a1d6ae75d4884e3497fa99deabed5cf6');INSERT INTO "content_file" VALUES('41fd9a614c944c4c8641ad6e28f32431','high_res_video',0,0,1,'f642a78828055ee6af02d5e6bcac4854',NULL,'53825b4c5a728794a71b8ee724409a66');INSERT INTO "content_file" VALUES('39c20ec2f5cf401c9f67192ada655fcb','video_thumbnail',1,1,3,'52ec820293f55df889d74d34ab53b8c2',NULL,'06b0fce8a3dc4fd76594c168fd8e33e4');INSERT INTO "content_file" VALUES('9eececef8f0f42f8a367bb2dc94518f9','video_subtitle',1,0,4,'52ec820293f55df889d74d34ab53b8c2','fr','be2e85a5f0e3c274d11d7a160b368145');INSERT INTO "content_file" VALUES('837f4ebe8dcf417daa52baa2903f149f','video_subtitle',1,0,4,'52ec820293f55df889d74d34ab53b8c2','en','d18eff82c493675cb8c3b8e8d696ef43');INSERT INTO "content_file" VALUES('63cb19dea6e340de968b161ace4bcac7','high_res_video',0,0,1,'52ec820293f55df889d74d34ab53b8c2',NULL,'9217c473ee490af73b18f374c1c527a2');INSERT INTO "content_file" VALUES('b5f45e815aa441d6a18662ca94f9b0f9','video_thumbnail',1,1,3,'a8a40f83fff2585ea54d2fb9abe7d29b',NULL,'a83599e9d5bc9f01312bce7150e9b7af');INSERT INTO "content_file" VALUES('9fe6837421c54d5e888673574fabd0d7','video_subtitle',1,0,4,'a8a40f83fff2585ea54d2fb9abe7d29b','fr','44154a2103178492d7ff71e4686c0d7f');INSERT INTO "content_file" VALUES('9437e5d5072f4b9fab4a73e48afce176','video_subtitle',1,0,4,'a8a40f83fff2585ea54d2fb9abe7d29b','en','c43e8c8efb517f13bcbf7470a4b480c8');INSERT INTO "content_file" VALUES('623d25b67ab145a9be3f45fd59910c14','high_res_video',0,0,1,'a8a40f83fff2585ea54d2fb9abe7d29b',NULL,'8f96b0f4d24ffbbadd399631689a9a01');INSERT INTO "content_file" VALUES('975f36c14239418fa52b65ac9938a615','video_thumbnail',1,1,3,'4b4c2f1887175229a7d78192e34578e6',NULL,'54743aa511ded14758f12ea57c229c92');INSERT INTO "content_file" VALUES('06d055b8cb1042d2a52a88b6e7c4a212','video_subtitle',1,0,4,'4b4c2f1887175229a7d78192e34578e6','fr','898b16f4df96062061074b258a733dcd');INSERT INTO "content_file" VALUES('2ae1eb31b31b4182aa7e7d424a63d59f','video_subtitle',1,0,4,'4b4c2f1887175229a7d78192e34578e6','en','ec6ce877ad5a7d1291da4d9d59872356');INSERT INTO "content_file" VALUES('277c96ebf9fc4d3593d612e78b85c021','high_res_video',0,0,1,'4b4c2f1887175229a7d78192e34578e6',NULL,'24f825730637648a9a079287c5523784');INSERT INTO "content_file" VALUES('6abaebd7c9b14709b27190d789533496','video_thumbnail',1,1,3,'cd8f2f4e48a5563b80844035ef9ad9f2',NULL,'712fe1a5095a6f5152ff4d682180dd30');INSERT INTO "content_file" VALUES('af39162d6ba443abac50bc8d29be5480','video_subtitle',1,0,4,'cd8f2f4e48a5563b80844035ef9ad9f2','fr','375963979bf3918058a202347de9b930');INSERT INTO "content_file" VALUES('065cb308218d470db89d6ae10abd699a','video_subtitle',1,0,4,'cd8f2f4e48a5563b80844035ef9ad9f2','en','89faed1f988d4a27b610f3bfb8718987');INSERT INTO "content_file" VALUES('4eb2dc9a4759422e8770be6892af3651','high_res_video',0,0,1,'cd8f2f4e48a5563b80844035ef9ad9f2',NULL,'7eab5e73f2cb1e85893771268b673575');INSERT INTO "content_file" VALUES('178d5a9958474e189790f30fcaad70b3','video_thumbnail',1,1,3,'6154977f119c5148b7d288a1c8ba8294',NULL,'7e2bdede90b74a02dd52d443479c276a');INSERT INTO "content_file" VALUES('bc995189de4f4569bd1f3065dc01f6c5','video_subtitle',1,0,4,'6154977f119c5148b7d288a1c8ba8294','fr','3632dd57b2fcef628ce2e07eb1e6c0e3');INSERT INTO "content_file" VALUES('fd28206f64d7452e8d46354819ca9de3','video_subtitle',1,0,4,'6154977f119c5148b7d288a1c8ba8294','en','4f777ba849501c73e210846705b1e2fb');INSERT INTO "content_file" VALUES('eb237fe6e4a7458ab996c16d5d7eb59f','high_res_video',0,0,1,'6154977f119c5148b7d288a1c8ba8294',NULL,'be018bd690e46027a9754f4d667e049f');INSERT INTO "content_file" VALUES('13669f2b72644e4686cb3874a05655af','video_thumbnail',1,1,3,'bcf6978237085f85a05107d7dc63c455',NULL,'74539816c97511a0aa694f50555e22f6');INSERT INTO "content_file" VALUES('d4de2e3590584183b932a34937ea9a68','video_subtitle',1,0,4,'bcf6978237085f85a05107d7dc63c455','fr','eb2c8af2a78b34274e43327d8161304c');INSERT INTO "content_file" VALUES('7f7eea8b87b94e029a12b54c12ca7d11','video_subtitle',1,0,4,'bcf6978237085f85a05107d7dc63c455','en','c23d3883f27143872c342dc654265a60');INSERT INTO "content_file" VALUES('139ccd2e3db341aab2731713391f25ae','high_res_video',0,0,1,'bcf6978237085f85a05107d7dc63c455',NULL,'4d57677ce2e28ec88839ac2fae1166fe');INSERT INTO "content_file" VALUES('462316196055416ea63651054846efe8','video_thumbnail',1,1,3,'72f5f5cd32a35a14916823f1ee995f53',NULL,'334d0daf4e3764500c947b418d032c04');INSERT INTO "content_file" VALUES('b306ef22cc3f4a47831f4a867733802f','video_subtitle',1,0,4,'72f5f5cd32a35a14916823f1ee995f53','fr','a14ef7e54742ab7a8257bfde28ebba17');INSERT INTO "content_file" VALUES('1d4d6fbdedc14526bdf9f3897305999e','video_subtitle',1,0,4,'72f5f5cd32a35a14916823f1ee995f53','en','4db409b1d1394b00018b67f5f8a477e8');INSERT INTO "content_file" VALUES('748663bd5d5746f4aca879b27cdb3745','high_res_video',0,0,1,'72f5f5cd32a35a14916823f1ee995f53',NULL,'1527d3441bf7120ac7ed14c0d64d01d5');INSERT INTO "content_file" VALUES('4bf731f1dfdb4359af953548d2924701','video_thumbnail',1,1,3,'365c30e66f4f5fb49916378f5bbc03a5',NULL,'7cecc2092270b8d0ddcd96ba075786d8');INSERT INTO "content_file" VALUES('2269228913db49798242c6a0848b4724','video_subtitle',1,0,4,'365c30e66f4f5fb49916378f5bbc03a5','fr','469e5ad800e76b758c272467a7a2067b');INSERT INTO "content_file" VALUES('75aed0c8edad4d1399b5b0bfa09b9669','video_subtitle',1,0,4,'365c30e66f4f5fb49916378f5bbc03a5','en','5309cac9249330daf0590abb548bd651');INSERT INTO "content_file" VALUES('02e3f220fdb3474b86e8d7fee3fa0446','high_res_video',0,0,1,'365c30e66f4f5fb49916378f5bbc03a5',NULL,'99771120975fa80e49b1117124feffcd');INSERT INTO "content_file" VALUES('3bff472c7eca4053bd7cf3b6a75ef6ce','video_thumbnail',1,1,3,'002dd31687a75a5d9a999600b5158513',NULL,'c5af399a0d49d0460fe65e2c54c1ce0a');INSERT INTO "content_file" VALUES('c228dd013d754b65b26c4a2b5687eff6','video_subtitle',1,0,4,'002dd31687a75a5d9a999600b5158513','fr','1fea0d5334913bf3bd0db37f4b200f9d');INSERT INTO "content_file" VALUES('9fae16939cfe431b9f09e31219d59e38','video_subtitle',1,0,4,'002dd31687a75a5d9a999600b5158513','en','76b57491a80538a3174d518d718ece4c');INSERT INTO "content_file" VALUES('8dc384017fef4539ae768e02b6b766a0','high_res_video',0,0,1,'002dd31687a75a5d9a999600b5158513',NULL,'66265d0bbef0b86a7fbad4649e8ada2c');INSERT INTO "content_file" VALUES('ef177bdd0191447ba896439ac72bb9b6','video_thumbnail',1,1,3,'5451d67aa1285f8f8cda79497a1e722b',NULL,'7892efc5f726ea5247c21bc771e1c835');INSERT INTO "content_file" VALUES('f55a831a2b254189b0373e70906e9cf6','video_subtitle',1,0,4,'5451d67aa1285f8f8cda79497a1e722b','fr','e8d6ccc694f202a7bb7c4ae2fdacdf0b');INSERT INTO "content_file" VALUES('2bb2b805cd984d35868837f1773ff58a','video_subtitle',1,0,4,'5451d67aa1285f8f8cda79497a1e722b','en','ee4a225df7d6c6fb7f987c9d7ff5d5fa');INSERT INTO "content_file" VALUES('dc8299db72b045dd866f27b5360e4f64','high_res_video',0,0,1,'5451d67aa1285f8f8cda79497a1e722b',NULL,'fa606be82eb02a7258d74d0f1ef869e8');INSERT INTO "content_file" VALUES('b352a5d4322440edb616b1729155a6a0','video_thumbnail',1,1,3,'cb6b03cf9c2d5c0fac53dca20dfe8ab0',NULL,'ab7384133c654e829f2d3b8c4bc0a647');INSERT INTO "content_file" VALUES('ef3b21b9ab8f4ceda6656a46aae6fecb','video_subtitle',1,0,4,'cb6b03cf9c2d5c0fac53dca20dfe8ab0','ru','91db2fd37eff3899b7f97b85f7b261bc');INSERT INTO "content_file" VALUES('d13a259069934f78bb6eb16adf1d0a91','video_subtitle',1,0,4,'cb6b03cf9c2d5c0fac53dca20dfe8ab0','fr','b7c0852d1cf207494da086fe8132e903');INSERT INTO "content_file" VALUES('f78d780705fa41d7a6bb7b7181b66d87','video_subtitle',1,0,4,'cb6b03cf9c2d5c0fac53dca20dfe8ab0','en','5019d294066aaf1f31185ce427b1888f');INSERT INTO "content_file" VALUES('191f516d6f1f4ba198c881472235749d','high_res_video',0,0,1,'cb6b03cf9c2d5c0fac53dca20dfe8ab0',NULL,'db508059e025af5a9c08718c0731e071');INSERT INTO "content_file" VALUES('437b519d504247659d878a259132e266','video_thumbnail',1,1,3,'11b6ec7848ba5e6fa345cc00b1fafbee',NULL,'e0786327cad870f3f921b295e64a015d');INSERT INTO "content_file" VALUES('e504c5ecd72e4ed3b6757b1a83954142','video_subtitle',1,0,4,'11b6ec7848ba5e6fa345cc00b1fafbee','fr','6cd25114a2aa109110fd2f9c660ff010');INSERT INTO "content_file" VALUES('51e7839182cc4ac2a69e425308669cbe','video_subtitle',1,0,4,'11b6ec7848ba5e6fa345cc00b1fafbee','en','034a11c4f931a2446d01e9f9a2c27b47');INSERT INTO "content_file" VALUES('41fe332c39b14d4bac209f5e5d96df0e','high_res_video',0,0,1,'11b6ec7848ba5e6fa345cc00b1fafbee',NULL,'aad476826582f8edb77a592bcb8bb0ac');INSERT INTO "content_file" VALUES('424018c77b1948bab3bb974787ff9d10','video_thumbnail',1,1,3,'85309a61c7505a9688c748ffa6af9755',NULL,'cf1b41bf7ad8d7dadca881386c14a743');INSERT INTO "content_file" VALUES('38c03824ae7c4331bd5164094f6e70e6','video_subtitle',1,0,4,'85309a61c7505a9688c748ffa6af9755','fr','ac9dbd2bc168ab9bfdf8a4058586b798');INSERT INTO "content_file" VALUES('25d17a5e047f40458dcde18f6dab35c2','video_subtitle',1,0,4,'85309a61c7505a9688c748ffa6af9755','en','d458a2304d3e004342f88bf8a369a311');INSERT INTO "content_file" VALUES('61497165a4384d98954dc049daea7f77','video_subtitle',1,0,4,'85309a61c7505a9688c748ffa6af9755','ar','269eb7906a59e36a6a5fd6732b2c4aac');INSERT INTO "content_file" VALUES('457ea575d8254026bc98d09cba7689ba','high_res_video',0,0,1,'85309a61c7505a9688c748ffa6af9755',NULL,'b258f564f004606c582a30df6b31f18a');INSERT INTO "content_file" VALUES('eb57053bb6304e048a6aa9642e6cef1a','video_thumbnail',1,1,3,'9a23d5ea10b953df969018abbe28b381',NULL,'fd31ac5083b52ae39bc44be9471de895');INSERT INTO "content_file" VALUES('69f11406fbb849ddad31eeab8f2c3a1d','video_subtitle',1,0,4,'9a23d5ea10b953df969018abbe28b381','fr','541566e640bdee0db6d84ba3f45429e7');INSERT INTO "content_file" VALUES('a4380320ee32414f9e8cc52cbb840e61','video_subtitle',1,0,4,'9a23d5ea10b953df969018abbe28b381','en','8bd555d96cebfa6b21935866d94e0dc0');INSERT INTO "content_file" VALUES('62c7e350c99449178e393c3ae4b915bf','video_subtitle',1,0,4,'9a23d5ea10b953df969018abbe28b381','ar','ba4439b759b7cc11938b0acfa05fb605');INSERT INTO "content_file" VALUES('63c6fd82d5534c5f96c39a198470e8c4','high_res_video',0,0,1,'9a23d5ea10b953df969018abbe28b381',NULL,'337ec90478e7403fa59e18c43bc5c89c');INSERT INTO "content_file" VALUES('e2599f2a3389441cb1c4acd9f1b112d2','video_thumbnail',1,1,3,'5ffed14d98c45d1ca6e4ec2cf5b0569e',NULL,'8da67f1a5b2465ac54d2a49136521568');INSERT INTO "content_file" VALUES('9d4e6bc6e7dd4c93a5d9c1da16545b10','video_subtitle',1,0,4,'5ffed14d98c45d1ca6e4ec2cf5b0569e','fr','25538e286b45a7875f18101f89d4bc1f');INSERT INTO "content_file" VALUES('89828408c6cc4de3a6aca6c97f173c88','video_subtitle',1,0,4,'5ffed14d98c45d1ca6e4ec2cf5b0569e','en','b1b4d2306624e3eed45ce7bfd14ceb83');INSERT INTO "content_file" VALUES('0c2da9404e7942dda37c4f28f63e04a2','video_subtitle',1,0,4,'5ffed14d98c45d1ca6e4ec2cf5b0569e','ar','7abc85aff08b51ffb55a72aab1a95d35');INSERT INTO "content_file" VALUES('1917f6c04366462d932c24c8089f6981','high_res_video',0,0,1,'5ffed14d98c45d1ca6e4ec2cf5b0569e',NULL,'fe02897985b4d3accde7f9aebf9a9e6a');INSERT INTO "content_file" VALUES('cfa0589bd5cc462fb7066a02493816b8','video_thumbnail',1,1,3,'46c4254a02075725a244db0250951c5b',NULL,'6459464eed737e2a2af297ad673cc743');INSERT INTO "content_file" VALUES('30477890f4044bc7af872d4273073c0a','video_subtitle',1,0,4,'46c4254a02075725a244db0250951c5b','fr','ca428e68e6ff318facf816f1ff026806');INSERT INTO "content_file" VALUES('821de95f6dd34fbe9cad798f39e8f0cb','video_subtitle',1,0,4,'46c4254a02075725a244db0250951c5b','en','2f7c6b22776f0f862559a2397e16294f');INSERT INTO "content_file" VALUES('f72ab74116f843d39ffa20843ca7704b','video_subtitle',1,0,4,'46c4254a02075725a244db0250951c5b','ar','b67a96849da48853070f56237c78bc42');INSERT INTO "content_file" VALUES('919a414df7894fd1be9deeadb245f983','high_res_video',0,0,1,'46c4254a02075725a244db0250951c5b',NULL,'a98f9466d112ee8a2e307c7fe666fc21');INSERT INTO "content_file" VALUES('b06e1bd735144293a0e034940f73db8d','video_thumbnail',1,1,3,'8c6099c8d63e55c8a82fc50d550daf4f',NULL,'6459464eed737e2a2af297ad673cc743');INSERT INTO "content_file" VALUES('eab58c9f5d154263800a9a51a9660976','video_subtitle',1,0,4,'8c6099c8d63e55c8a82fc50d550daf4f','fr','ca428e68e6ff318facf816f1ff026806');INSERT INTO "content_file" VALUES('a57e92c59da14268b1fd5e941c821298','video_subtitle',1,0,4,'8c6099c8d63e55c8a82fc50d550daf4f','en','2f7c6b22776f0f862559a2397e16294f');INSERT INTO "content_file" VALUES('8d8c878b255c466f8ca03740d712792e','video_subtitle',1,0,4,'8c6099c8d63e55c8a82fc50d550daf4f','ar','b67a96849da48853070f56237c78bc42');INSERT INTO "content_file" VALUES('c41e8e3174f44691ba1808a11063b312','high_res_video',0,0,1,'8c6099c8d63e55c8a82fc50d550daf4f',NULL,'a98f9466d112ee8a2e307c7fe666fc21');INSERT INTO "content_file" VALUES('efba72bfa5d740adb7f90af0fe888492','video_thumbnail',1,1,3,'2ed082b502475a42ac4ca13c419cc2b0',NULL,'4f851e32f5ff429a55aca35530bfb902');INSERT INTO "content_file" VALUES('f775a69784864e88a225e00d791f7ef3','video_subtitle',1,0,4,'2ed082b502475a42ac4ca13c419cc2b0','fr','63577aca7e932dde57d4ac8ae3e9931e');INSERT INTO "content_file" VALUES('40d91ae0de624f858355ecdb36325312','video_subtitle',1,0,4,'2ed082b502475a42ac4ca13c419cc2b0','en','5d743e63a336cc0f81a618f29128cf52');INSERT INTO "content_file" VALUES('d3c94d773c154732883a178f5d028c2a','video_subtitle',1,0,4,'2ed082b502475a42ac4ca13c419cc2b0','ar','68411e9015ea1f6a18c7ff83ed9e6eaf');INSERT INTO "content_file" VALUES('5dd8f487044248888d33dcbd0c15ec2b','high_res_video',0,0,1,'2ed082b502475a42ac4ca13c419cc2b0',NULL,'a123ea185f70ac49517818ba829b8805');INSERT INTO "content_file" VALUES('afd5b9514c4645f5a6e0efabe839a704','video_thumbnail',1,1,3,'6aee5618209a5b859f8cf0b37ff086a7',NULL,'e3c6c685c523b79380cb0eb726d8af10');INSERT INTO "content_file" VALUES('08140d73ca694df0bbcb6dfc8331276b','video_subtitle',1,0,4,'6aee5618209a5b859f8cf0b37ff086a7','fr','ebd9d89c31874ae61be229fd2352afc3');INSERT INTO "content_file" VALUES('5d89bc114d5b4453ba2709d97227a367','video_subtitle',1,0,4,'6aee5618209a5b859f8cf0b37ff086a7','en','3f6d0e6b933b092583357457a1505dd1');INSERT INTO "content_file" VALUES('e146cbc17f7d42259db7413d9d891188','video_subtitle',1,0,4,'6aee5618209a5b859f8cf0b37ff086a7','ar','06d58cfbe279968b9e10c2da366488f2');INSERT INTO "content_file" VALUES('ca9a65b98100484880c59e592f906985','high_res_video',0,0,1,'6aee5618209a5b859f8cf0b37ff086a7',NULL,'162b11975f3b2bf7108ff6307b2539ea');INSERT INTO "content_file" VALUES('8f6898e0394e479092a96cd3c1f15662','video_thumbnail',1,1,3,'0dca2c94fd0557bea6cd5dbcb732ccf3',NULL,'e7a7d290b91d72cb3d74dbab0ce796a9');INSERT INTO "content_file" VALUES('7f7cffa88dc74a6e835bda1a14b3c5f9','video_subtitle',1,0,4,'0dca2c94fd0557bea6cd5dbcb732ccf3','fr','50abb0e3e1e485b22aa4d8423309a5ec');INSERT INTO "content_file" VALUES('40dbe967e2ca471bbf006960aacae5fb','video_subtitle',1,0,4,'0dca2c94fd0557bea6cd5dbcb732ccf3','en','214c65f9c0a843a63f9b24490e6d7ce8');INSERT INTO "content_file" VALUES('dedb2fb2ef014431a296b68b9c8fb764','video_subtitle',1,0,4,'0dca2c94fd0557bea6cd5dbcb732ccf3','ar','62cb2a8d1ff9f4eeb6b20edee18cac51');INSERT INTO "content_file" VALUES('8332d14a2bcb42ebab2f5f61f2195ebb','high_res_video',0,0,1,'0dca2c94fd0557bea6cd5dbcb732ccf3',NULL,'3b752f98b0b7b0b1ed96880ab77e1ab6');INSERT INTO "content_file" VALUES('70f9405a5004485a82ca6218724b75d2','video_thumbnail',1,1,3,'430120d418f658ba84e8b9c34fdc04bb',NULL,'675b107d1422d0b9d08b69811b2a7117');INSERT INTO "content_file" VALUES('c43ab1b2b9724ff788d18ea00ed46720','video_subtitle',1,0,4,'430120d418f658ba84e8b9c34fdc04bb','fr','2f16c82ab8d4e1de3d557e7ca6868b7e');INSERT INTO "content_file" VALUES('1c3ee173480349fd99e5dbabe2395ab4','video_subtitle',1,0,4,'430120d418f658ba84e8b9c34fdc04bb','en','4ae5f13950fb0f2cfd2d0dd6419b8a22');INSERT INTO "content_file" VALUES('003f7e066dd846bba6ed893ed0b79aaa','video_subtitle',1,0,4,'430120d418f658ba84e8b9c34fdc04bb','ar','b35e46ec194f35fd72aa56578a34ac1d');INSERT INTO "content_file" VALUES('d3fc5cf6a4d14cd4bb5e9c64cdcf059b','high_res_video',0,0,1,'430120d418f658ba84e8b9c34fdc04bb',NULL,'00f656429e0d7b88dc12b23778096afc');INSERT INTO "content_file" VALUES('c798504806244271aa2af9ef6f162c14','video_thumbnail',1,1,3,'5ad4029a0d0a5e9bb5e635a3a19090a6',NULL,'5f3f223103c0e2f6427616680fc83134');INSERT INTO "content_file" VALUES('79a7ea72aa2a47eb82a60b1bdd75aaec','video_subtitle',1,0,4,'5ad4029a0d0a5e9bb5e635a3a19090a6','fr','e463e8d99233503398c9d394fcfd8b36');INSERT INTO "content_file" VALUES('8f163934ef974560a6c9af737a28fd4c','video_subtitle',1,0,4,'5ad4029a0d0a5e9bb5e635a3a19090a6','en','183ee073a3de4071661a508b61de23cb');INSERT INTO "content_file" VALUES('45ce0a1f2a4d425997f2d62c02a272db','video_subtitle',1,0,4,'5ad4029a0d0a5e9bb5e635a3a19090a6','ar','3e172910a9f1adefdb692216dc9bb658');INSERT INTO "content_file" VALUES('c22598c25fae455a98cc40a30a41bf94','high_res_video',0,0,1,'5ad4029a0d0a5e9bb5e635a3a19090a6',NULL,'a0e8524d34230f77d4df8a2c30d14be9');INSERT INTO "content_file" VALUES('b29f9ef9092d4405b07899c27b0fbb22','video_thumbnail',1,1,3,'5b2b382750c3573dbb8d999cb0bca698',NULL,'93136c4502b1118330c1e3fe2465c12d');INSERT INTO "content_file" VALUES('35cfd94f8af049d1b5c4cbb3210bac13','video_subtitle',1,0,4,'5b2b382750c3573dbb8d999cb0bca698','fr','2f5fdbf7753d1179e04c04685492f8f2');INSERT INTO "content_file" VALUES('bb4be1cb0d494751a7e9e5fb7a77f30c','video_subtitle',1,0,4,'5b2b382750c3573dbb8d999cb0bca698','en','d2a958ceb02f3dfdaff0c91145ca0de1');INSERT INTO "content_file" VALUES('d8b072a05ecd46acb7968ad92bc5639f','video_subtitle',1,0,4,'5b2b382750c3573dbb8d999cb0bca698','ar','e4c064c9a558810a89a585da27d88835');INSERT INTO "content_file" VALUES('7fc4fe9e46244f65824ff7240b904a54','high_res_video',0,0,1,'5b2b382750c3573dbb8d999cb0bca698',NULL,'2f79fe713534b28865561f613389667a');INSERT INTO "content_file" VALUES('9f9524acf6b6443dba4abcb76bf07985','video_thumbnail',1,1,3,'c21a60034227558f9a86f6224a4a3f22',NULL,'3771bddeed530b3bee407ca0c7056209');INSERT INTO "content_file" VALUES('bf40128e817b43d489bd4ed488014192','video_subtitle',1,0,4,'c21a60034227558f9a86f6224a4a3f22','fr','03e11a2dc7c51b545c0522e0e3000d8f');INSERT INTO "content_file" VALUES('a534713343394807b06f5e4167be1503','video_subtitle',1,0,4,'c21a60034227558f9a86f6224a4a3f22','en','7bae04a247e8fe2edf7f4cf2665a394d');INSERT INTO "content_file" VALUES('c71d027816f842969ac4f1e21d2d1030','video_subtitle',1,0,4,'c21a60034227558f9a86f6224a4a3f22','ar','d753d7ad28cd953d855e37980c48559b');INSERT INTO "content_file" VALUES('09f95d1e99524a3ea915b7b6a561a3ac','high_res_video',0,0,1,'c21a60034227558f9a86f6224a4a3f22',NULL,'9247cfeefee87204147c3c32997c3f29');INSERT INTO "content_file" VALUES('8c80c57c58ed41508e175f9c0c1026e4','video_thumbnail',1,1,3,'00de3a5f196a570a9ae4fc0e7cd8c7ba',NULL,'f556285d456a8311e689af01b29059fc');INSERT INTO "content_file" VALUES('136d77eb27ea4429bd69bbec06baef38','video_subtitle',1,0,4,'00de3a5f196a570a9ae4fc0e7cd8c7ba','fr','98170733016ef4378090085bb9006c3f');INSERT INTO "content_file" VALUES('587cfb8b2ab64881bee9fd120370efd3','video_subtitle',1,0,4,'00de3a5f196a570a9ae4fc0e7cd8c7ba','en','63e29b1efbf9c7d25bc0275eb2da6b45');INSERT INTO "content_file" VALUES('ae6e7954d1024e808be7418a8ccde5cc','video_subtitle',1,0,4,'00de3a5f196a570a9ae4fc0e7cd8c7ba','ar','5488b8932daf799c85b7eeff286a2054');INSERT INTO "content_file" VALUES('2dd9183d0e724beead19591310bf08c1','high_res_video',0,0,1,'00de3a5f196a570a9ae4fc0e7cd8c7ba',NULL,'aa485805fb8727e8177510def672a7f5');INSERT INTO "content_file" VALUES('a6d591ca096a40e7be56baff5694c02a','video_thumbnail',1,1,3,'5031f23ec2aa5bc585dcec74a06904e1',NULL,'6df20ac6f0f1ee788ba90d22e6459763');INSERT INTO "content_file" VALUES('c54ab4bc98b947299438c2c05f9c3f83','video_subtitle',1,0,4,'5031f23ec2aa5bc585dcec74a06904e1','fr','e081d4753f610bc1ea166cc28c1739b7');INSERT INTO "content_file" VALUES('e6cd1367b05e4efeb5fc0e3cf9a31efa','video_subtitle',1,0,4,'5031f23ec2aa5bc585dcec74a06904e1','en','f3f5a5e20374270bad42a57f94e2c17a');INSERT INTO "content_file" VALUES('5ec82750365549fe9d0ea3b98998e7d4','video_subtitle',1,0,4,'5031f23ec2aa5bc585dcec74a06904e1','ar','85c600a5966e945e8e7685e46795a25a');INSERT INTO "content_file" VALUES('944e11e112f24f49af590f10ef66d63c','high_res_video',0,0,1,'5031f23ec2aa5bc585dcec74a06904e1',NULL,'6d4e015482668b039e1977f6b511623a');INSERT INTO "content_file" VALUES('b34a7e8078bf4068b3feb9ba2dc525c2','video_thumbnail',1,1,3,'ba9b5b2ba5c25a9ca45a526c8ccae080',NULL,'0a1547dd7f7ab2e58a25d636f80a9328');INSERT INTO "content_file" VALUES('a2562ed6b4344ad6b129b697c0abc60f','video_subtitle',1,0,4,'ba9b5b2ba5c25a9ca45a526c8ccae080','fr','2856f3429a57a446bc96ed12991dd9c0');INSERT INTO "content_file" VALUES('ca8d31187c994514836e967f21b1c65f','video_subtitle',1,0,4,'ba9b5b2ba5c25a9ca45a526c8ccae080','en','6701f8802beb4547a88010866dad4a11');INSERT INTO "content_file" VALUES('51d74acb3ff74d9ebeaae7fc46ba5fdc','video_subtitle',1,0,4,'ba9b5b2ba5c25a9ca45a526c8ccae080','ar','2c1013d4de738c9f75adb03c3b40878c');INSERT INTO "content_file" VALUES('e314e279e0b7490b9a6aad8e425bf7fa','high_res_video',0,0,1,'ba9b5b2ba5c25a9ca45a526c8ccae080',NULL,'bdb40cb6f2654f125c269e00d91452eb');INSERT INTO "content_file" VALUES('594227f6bce544a2811daf963c3fdab5','video_thumbnail',1,1,3,'62c48d522fa1511197bed9dbecae92e9',NULL,'7c0866e27cf96206d52e1ee60b2b38a6');INSERT INTO "content_file" VALUES('19a200242f63431b986add28f62cd96c','video_subtitle',1,0,4,'62c48d522fa1511197bed9dbecae92e9','fr','dcaf5079db82c0114c3b2b4ddccf3659');INSERT INTO "content_file" VALUES('3562e2adfd05456d951f86b70ff57d85','video_subtitle',1,0,4,'62c48d522fa1511197bed9dbecae92e9','en','07219c002c7905aec1a8fb76cf22f623');INSERT INTO "content_file" VALUES('5308c6c4b72841309da5f05267fad16f','video_subtitle',1,0,4,'62c48d522fa1511197bed9dbecae92e9','ar','095bf05ba550c57a1788c41eacfaf8eb');INSERT INTO "content_file" VALUES('1ace815da3e1412aac057b7cf9b5cf0e','high_res_video',0,0,1,'62c48d522fa1511197bed9dbecae92e9',NULL,'e3d04755263517b9dc2e26556bddb551');INSERT INTO "content_file" VALUES('8548ab7487174a6aa57dc007dc60f9af','video_thumbnail',1,1,3,'4fcc3fbc2e245ff6b132321ebdbc16fe',NULL,'9b2182c94f2d102486a7f166b170107f');INSERT INTO "content_file" VALUES('d7a67f36a9d3468b98e5e0a05390b26d','video_subtitle',1,0,4,'4fcc3fbc2e245ff6b132321ebdbc16fe','fr','c60c34009aefc8decc06994989faf9fc');INSERT INTO "content_file" VALUES('06e13bfa11aa433eb60206b99b28a3f5','video_subtitle',1,0,4,'4fcc3fbc2e245ff6b132321ebdbc16fe','en','aa1279b12b186ca96d9460e21bf23e6b');INSERT INTO "content_file" VALUES('6ba486a80dae4313993f392b5181d717','video_subtitle',1,0,4,'4fcc3fbc2e245ff6b132321ebdbc16fe','ar','fa18995d81d7d0048c6aee1b55e921ca');INSERT INTO "content_file" VALUES('9148ad9a70e142d480548150ef11465a','high_res_video',0,0,1,'4fcc3fbc2e245ff6b132321ebdbc16fe',NULL,'634132b84c7092e5cb83740932efe801');INSERT INTO "content_file" VALUES('e5eb5dc4b65b4e599bc43c92a30902b7','video_thumbnail',1,1,3,'f455b414f1ef5b61a9590155aaa088f6',NULL,'2e57ca70f429f3a3f14dcca28143cd91');INSERT INTO "content_file" VALUES('901260b006624f94af8c8c5cc0e92e0c','video_subtitle',1,0,4,'f455b414f1ef5b61a9590155aaa088f6','fr','4da028a394451916a857352234febab0');INSERT INTO "content_file" VALUES('78f308394381473e9af0ac0fc2d1f3d6','video_subtitle',1,0,4,'f455b414f1ef5b61a9590155aaa088f6','en','7558b879eee4ae9f7ae741c5b9c3e4fa');INSERT INTO "content_file" VALUES('52f867897b25464fb65a6ec2dad89615','video_subtitle',1,0,4,'f455b414f1ef5b61a9590155aaa088f6','ar','364a993b640583af6df0d318e8626958');INSERT INTO "content_file" VALUES('defa795b0707467db72c149aca10f792','high_res_video',0,0,1,'f455b414f1ef5b61a9590155aaa088f6',NULL,'4b95df3f59db75f89b3dc4d37d78a0c7');INSERT INTO "content_file" VALUES('614098e455e14a4187f194d8a3754066','video_thumbnail',1,1,3,'3dfc5cad2c485450be6d29541dd1a597',NULL,'9ae11a76310dc0764e61f9139f4130a5');INSERT INTO "content_file" VALUES('6ac510ee59664c0b897ebfe9b978c8bc','video_subtitle',1,0,4,'3dfc5cad2c485450be6d29541dd1a597','fr','2bb25bbde7505d2f1197460222a08dda');INSERT INTO "content_file" VALUES('abf97f139d3b40bf836d80087d4dd1b3','video_subtitle',1,0,4,'3dfc5cad2c485450be6d29541dd1a597','en','05cc3e8d5b7977d35e8fd0a8b925a4ff');INSERT INTO "content_file" VALUES('bba9764fed37408f95cd65f988cdc362','video_subtitle',1,0,4,'3dfc5cad2c485450be6d29541dd1a597','ar','075d3d3ba9b9d51698bc2feffb5402b7');INSERT INTO "content_file" VALUES('87e39994b998458dbd512303f56b2a2a','high_res_video',0,0,1,'3dfc5cad2c485450be6d29541dd1a597',NULL,'f001c5530e7bb23824d4ac1f1c92a776');INSERT INTO "content_file" VALUES('ac1faba3a38040ac8c3bc350bd8bba16','video_thumbnail',1,1,3,'9c6516cb3c5059dfb6d32cecc6c7c6ce',NULL,'1339f5ae25aeca0864a7076f2484c7e2');INSERT INTO "content_file" VALUES('dcb379ffb9a4495cbf0e68ceff84fbb6','video_subtitle',1,0,4,'9c6516cb3c5059dfb6d32cecc6c7c6ce','fr','ab5534c1b97140302655e15e36838b15');INSERT INTO "content_file" VALUES('334e8ff6d7664180a2f17d13b49e428b','video_subtitle',1,0,4,'9c6516cb3c5059dfb6d32cecc6c7c6ce','en','43d12ab4de7e0a115ae3eca062c2bf2a');INSERT INTO "content_file" VALUES('fbc8bc52e7c648d083d36916baa39e44','video_subtitle',1,0,4,'9c6516cb3c5059dfb6d32cecc6c7c6ce','ar','3121048c84d71fec0f6cbbc217f5ffe5');INSERT INTO "content_file" VALUES('03c38db7b9c344a2ad83aaa3babe814c','high_res_video',0,0,1,'9c6516cb3c5059dfb6d32cecc6c7c6ce',NULL,'def34a0bc284da68d103cc4e3b86c424');INSERT INTO "content_file" VALUES('ae9715c75f5c47e0873e5652efe6562d','video_thumbnail',1,1,3,'1cefeeb873ca5461a2824d55c16fb48e',NULL,'89b521846de0de142cf00a1ef4bc79a6');INSERT INTO "content_file" VALUES('7f42c3cae01342a2b67920637f572621','video_subtitle',1,0,4,'1cefeeb873ca5461a2824d55c16fb48e','fr','e0c291a5a8c88a92a8a28c47d5bd4bcd');INSERT INTO "content_file" VALUES('c7914601916b42b99c1fb53103ec3c19','video_subtitle',1,0,4,'1cefeeb873ca5461a2824d55c16fb48e','en','852f52bf7c1540765d456d2446266588');INSERT INTO "content_file" VALUES('672273305f654145bccc18fbd5ab2892','video_subtitle',1,0,4,'1cefeeb873ca5461a2824d55c16fb48e','ar','7b52b490c10bec40b143d21eefa31be4');INSERT INTO "content_file" VALUES('9b6691cbcb894be497a6af3cd78653db','high_res_video',0,0,1,'1cefeeb873ca5461a2824d55c16fb48e',NULL,'4f9deaf388365a67353cccbe621305ba');INSERT INTO "content_file" VALUES('59b5ab47d29047d0b74a1bec39083de8','video_thumbnail',1,1,3,'36983f2485455e318ef723388d6f8199',NULL,'1b0a0113048e906b2347bb68f78060ff');INSERT INTO "content_file" VALUES('c9156eebc7e34706b4084339b18c8dbb','video_subtitle',1,0,4,'36983f2485455e318ef723388d6f8199','fr','58714e9e0aad837341d4984bfc745344');INSERT INTO "content_file" VALUES('d1019fdd7ee44a87b83bf166f24127a9','video_subtitle',1,0,4,'36983f2485455e318ef723388d6f8199','en','6740bb9d3cb76e19eb9b804e1e08177e');INSERT INTO "content_file" VALUES('9a80f4cf0d474d44b9d31bc27c983fa7','video_subtitle',1,0,4,'36983f2485455e318ef723388d6f8199','ar','3629898e4fd0ef6627bcd3f8445690c7');INSERT INTO "content_file" VALUES('5cc5c6c1829141fca25d41b77f17a8b2','high_res_video',0,0,1,'36983f2485455e318ef723388d6f8199',NULL,'d253e1b4d99766b73156b050aabfc0a5');INSERT INTO "content_file" VALUES('f9a972703fc242d5a5cf12de1cf031d2','video_thumbnail',1,1,3,'223c222720d35324aed29c56dd68bfee',NULL,'1c3ee1abd05e1302b8c78dd63de88913');INSERT INTO "content_file" VALUES('91afad239e494908857312656d8509c4','video_subtitle',1,0,4,'223c222720d35324aed29c56dd68bfee','fr','c5bde09f3289f72ce1efaa05f2f04ba2');INSERT INTO "content_file" VALUES('22f604c8936d49d5b6070dacc97069df','video_subtitle',1,0,4,'223c222720d35324aed29c56dd68bfee','en','340f780435ea7620a3afa79c3fc792d1');INSERT INTO "content_file" VALUES('fbdd6bc0839743189b3f648eb15cfcdb','video_subtitle',1,0,4,'223c222720d35324aed29c56dd68bfee','ar','368cbb0cd55464a46abe24d3690bda2a');INSERT INTO "content_file" VALUES('c154349b596040dc8c136e1a2d186f6c','high_res_video',0,0,1,'223c222720d35324aed29c56dd68bfee',NULL,'d1468140bc34123dbd9aa5fc7a1b7bbb');INSERT INTO "content_file" VALUES('31b0f94114514fd4bda649e5109a8610','video_thumbnail',1,1,3,'4a5c9283f1195b06a8ba31fa7b43d7ab',NULL,'84f4e24ef22d2011e99c14b79039add8');INSERT INTO "content_file" VALUES('d96e47bb8d2f454582effb6f1a237ed2','video_subtitle',1,0,4,'4a5c9283f1195b06a8ba31fa7b43d7ab','fr','86979dff4d8057d4c24052e42c38920a');INSERT INTO "content_file" VALUES('4fe74a84db51435bbc65b7d02e11147a','video_subtitle',1,0,4,'4a5c9283f1195b06a8ba31fa7b43d7ab','en','733f05f7bddd777ca29b62d47ff38464');INSERT INTO "content_file" VALUES('f1a707401f794ce6acd0c0d0bd96e109','video_subtitle',1,0,4,'4a5c9283f1195b06a8ba31fa7b43d7ab','ar','be145c743d1acb640f32ff38f6b7c0ba');INSERT INTO "content_file" VALUES('087504d83e314b029a14c3ef84e72f7c','high_res_video',0,0,1,'4a5c9283f1195b06a8ba31fa7b43d7ab',NULL,'aa78149fb2174c8ebb3d43eeb16a041c');INSERT INTO "content_file" VALUES('1ccf00bc464f4cc58b26aec6efd15d77','video_thumbnail',1,1,3,'09c4758a02aa585a92e8e13274d8768d',NULL,'f63a5412347ae307c81c8137490549a2');INSERT INTO "content_file" VALUES('3242c754156f45aab0b7d92ce092f439','video_subtitle',1,0,4,'09c4758a02aa585a92e8e13274d8768d','fr','d6093f43558ea4704f43ba230a692d35');INSERT INTO "content_file" VALUES('f601a3b803084e019645a8b691adcdf8','video_subtitle',1,0,4,'09c4758a02aa585a92e8e13274d8768d','en','f30714dde655393fa82a4b402dac4bd3');INSERT INTO "content_file" VALUES('a82f416fb687429ab4ba7adea3a3fd7f','video_subtitle',1,0,4,'09c4758a02aa585a92e8e13274d8768d','ar','78060b308e6477d72c88701bccb0197e');INSERT INTO "content_file" VALUES('2a4c2b155ad44374a2756faf14b8f5b9','high_res_video',0,0,1,'09c4758a02aa585a92e8e13274d8768d',NULL,'c30d8d984cb82d8b0da5bff6a17ead57');INSERT INTO "content_file" VALUES('403a000462424479ace7b0b8d6bd256f','video_thumbnail',1,1,3,'e90c73337d005492b9bc292354a818ae',NULL,'6aaee357e6ac36a4c434c71184593caf');INSERT INTO "content_file" VALUES('014511a484684532ab2bb61cb1a97342','video_subtitle',1,0,4,'e90c73337d005492b9bc292354a818ae','fr','948312132888c63bbe50a13fad98049a');INSERT INTO "content_file" VALUES('7c846119e1ce49a5b9eb4183d1ca066d','video_subtitle',1,0,4,'e90c73337d005492b9bc292354a818ae','en','2fad19ce955a3ad5105bbc871b7dd31f');INSERT INTO "content_file" VALUES('74e1dbf980384d8b82af21c8f1e14f13','video_subtitle',1,0,4,'e90c73337d005492b9bc292354a818ae','ar','6eecdbe12f6348a8b52da6671d88dbf2');INSERT INTO "content_file" VALUES('9faf5d46d0db4d35861af24c70d3e696','high_res_video',0,0,1,'e90c73337d005492b9bc292354a818ae',NULL,'84613e1ba3546ff1e6496656f2d53fb2');INSERT INTO "content_file" VALUES('cab4f1964ba0447492c0317c6f488eee','video_thumbnail',1,1,3,'75f0d7e3885c5645b108203f2edf9935',NULL,'14c58e8a27cb9c6521a479f8968ee130');INSERT INTO "content_file" VALUES('411f7c04c53a4fb4a53c9cb586b54e68','video_subtitle',1,0,4,'75f0d7e3885c5645b108203f2edf9935','fr','b169a23e1452eb8b886e2dfb61638ae4');INSERT INTO "content_file" VALUES('375bf9725bf04dfb8fb4e702a50a783a','video_subtitle',1,0,4,'75f0d7e3885c5645b108203f2edf9935','en','b558dac8a848f645b95cc473c3650da2');INSERT INTO "content_file" VALUES('ec810344613a4a7f9c56e1beddca1f22','video_subtitle',1,0,4,'75f0d7e3885c5645b108203f2edf9935','ar','7b67c66babd4d72ea7f1be2685121dae');INSERT INTO "content_file" VALUES('cfc67b4a0dc84c568503a00c293b6461','high_res_video',0,0,1,'75f0d7e3885c5645b108203f2edf9935',NULL,'550631fc1445c172ebd798860b15546e');INSERT INTO "content_file" VALUES('92e43c3cd1064b0c91662540dabfb53f','video_thumbnail',1,1,3,'532d2bae176d501aa6c9d396a0a55a36',NULL,'7a53f0fdeeb74ae5f8c201dff020fa1e');INSERT INTO "content_file" VALUES('d6d1a6da61af4926ab5e7114b69d6801','video_subtitle',1,0,4,'532d2bae176d501aa6c9d396a0a55a36','fr','53df0d3e1acd8b9bd9b652771c6841f0');INSERT INTO "content_file" VALUES('5fc9c0d2ed5140149ee04c86b7363279','video_subtitle',1,0,4,'532d2bae176d501aa6c9d396a0a55a36','en','445234a4ccfb029fb41ee4d4841e3ae0');INSERT INTO "content_file" VALUES('a00b84556a5f416a8b84eb49dc1561ad','video_subtitle',1,0,4,'532d2bae176d501aa6c9d396a0a55a36','ar','8d661fcd0179ae0a4da95546d51814a7');INSERT INTO "content_file" VALUES('2c2d7b8f060d4f659ba0a3d8df10556e','high_res_video',0,0,1,'532d2bae176d501aa6c9d396a0a55a36',NULL,'aa43037621abd4e2f2345bca19804515');INSERT INTO "content_file" VALUES('aab5cb9efd1f491a94531e3df168be55','video_thumbnail',1,1,3,'28e15f1a7e7c5878bb91369d7ab1dfd4',NULL,'2fbead5888bb18111f239bbfc07f66ff');INSERT INTO "content_file" VALUES('660cd991133c45a387ab6ef685715310','video_subtitle',1,0,4,'28e15f1a7e7c5878bb91369d7ab1dfd4','fr','04dd16499ef2ccb16164664f0f0dd089');INSERT INTO "content_file" VALUES('551a1e44816b4073ba7aa8ccfe423f2c','video_subtitle',1,0,4,'28e15f1a7e7c5878bb91369d7ab1dfd4','en','97e2cc50861b69cd8a0886e3624c91bd');INSERT INTO "content_file" VALUES('68d0cd69aceb4e518076b52bc4421aea','video_subtitle',1,0,4,'28e15f1a7e7c5878bb91369d7ab1dfd4','ar','8df17384dca6048d98b2c1182f8264c5');INSERT INTO "content_file" VALUES('eace65871f87413aa2ef24a83847d071','high_res_video',0,0,1,'28e15f1a7e7c5878bb91369d7ab1dfd4',NULL,'765c824c2bbe8487b4f8ffc735b1e285');INSERT INTO "content_file" VALUES('42b63e7b6353490dade18d03a9832aa9','video_thumbnail',1,1,3,'192c9439ec345d958b35251b93ac51d6',NULL,'f20da9e0b41030267e759f80f607ee35');INSERT INTO "content_file" VALUES('67d2c6972c694202a14928b2c9e01e9c','video_subtitle',1,0,4,'192c9439ec345d958b35251b93ac51d6','fr','238d8a01dccd29ae6e9f0e167f413de7');INSERT INTO "content_file" VALUES('67612391be7b49328d90d45884bd8198','video_subtitle',1,0,4,'192c9439ec345d958b35251b93ac51d6','en','493392d1d1ef6db0794ce9274b594731');INSERT INTO "content_file" VALUES('8acf0fdc6ea54de0bc7b29d48466672e','video_subtitle',1,0,4,'192c9439ec345d958b35251b93ac51d6','ar','82d1d8dfc48b73b5f8f822d3c6866e76');INSERT INTO "content_file" VALUES('93bf75be79204ad79ea458f1cb1be027','high_res_video',0,0,1,'192c9439ec345d958b35251b93ac51d6',NULL,'6df6893751a761cdcfbdd5faf500880b');CREATE TABLE "content_language" ("id" varchar(14) NOT NULL PRIMARY KEY, "lang_code" varchar(3) NOT NULL, "lang_subcode" varchar(10) NULL, "lang_name" varchar(100) NULL, "lang_direction" varchar(3) NOT NULL);INSERT INTO "content_language" VALUES('en','en',NULL,'English','ltr');INSERT INTO "content_language" VALUES('fr','fr',NULL,'Français, langue française','ltr');INSERT INTO "content_language" VALUES('zh-CN','zh','CN','中国大陆','ltr');INSERT INTO "content_language" VALUES('hi','hi',NULL,'हिन्दी, हिंदी','ltr');INSERT INTO "content_language" VALUES('ku','ku',NULL,'Kurdî, كوردی','ltr');INSERT INTO "content_language" VALUES('mn','mn',NULL,'монгол','ltr');INSERT INTO "content_language" VALUES('af','af',NULL,'Afrikaans','ltr');INSERT INTO "content_language" VALUES('zul','zul',NULL,'isiZulu','ltr');INSERT INTO "content_language" VALUES('ne','ne',NULL,'नेपाली','ltr');INSERT INTO "content_language" VALUES('ro','ro',NULL,'română','ltr');INSERT INTO "content_language" VALUES('ru','ru',NULL,'русский язык','ltr');INSERT INTO "content_language" VALUES('ar','ar',NULL,'العربية','rtl');CREATE TABLE "content_localfile" ("id" varchar(32) NOT NULL PRIMARY KEY, "available" bool NOT NULL, "file_size" integer NULL, "extension" varchar(40) NOT NULL);INSERT INTO "content_localfile" VALUES('b9b59175f08e8134d95152dd73ce28fd',1,57359,'png');INSERT INTO "content_localfile" VALUES('9d523f8a736e372fbe10ac895085fce9',0,129476,'png');INSERT INTO "content_localfile" VALUES('43acfdf3c3f89f941c132af94d029590',0,206,'vtt');INSERT INTO "content_localfile" VALUES('8555b45f5b4ac65c3f809c9e8d82d6db',0,185,'vtt');INSERT INTO "content_localfile" VALUES('d8a8ed8f5e367c0501550e227bb8f648',0,19369756,'mp4');INSERT INTO "content_localfile" VALUES('51fdd89e296ff4d823a2f92761168d07',0,101549,'png');INSERT INTO "content_localfile" VALUES('d49acd3055bd37a9e49dfd3dcef9c056',0,393,'vtt');INSERT INTO "content_localfile" VALUES('aeccbfc9de24a4c69aeecac571d932d4',0,446,'vtt');INSERT INTO "content_localfile" VALUES('e871701dbcc012c3e2fd6f14ba96aa1e',0,368,'vtt');INSERT INTO "content_localfile" VALUES('98f9c9c0a51287e67af64c9d31466301',0,13247425,'mp4');INSERT INTO "content_localfile" VALUES('81f5b75381aa41ce257922b408f079d9',0,102096,'png');INSERT INTO "content_localfile" VALUES('109e7c147043176d52ac800a763b57ac',0,996,'vtt');INSERT INTO "content_localfile" VALUES('e2022843a9fda4da620013db9d705a1f',0,977,'vtt');INSERT INTO "content_localfile" VALUES('028cf810221ef1f229429f6904e57d45',0,17693903,'mp4');INSERT INTO "content_localfile" VALUES('2ca0bd0ea52c6fa5f30212cadef2d0ae',0,90562,'png');INSERT INTO "content_localfile" VALUES('713e94472243c6838ff96d420520e0f3',0,854,'vtt');INSERT INTO "content_localfile" VALUES('02f4de755ee4064332650d8892546c9e',0,784,'vtt');INSERT INTO "content_localfile" VALUES('1be4e9ef7aad2c90354a59027b4bce40',0,8441599,'mp4');INSERT INTO "content_localfile" VALUES('90ab2d126be4bd02e5ecb1132ee0f720',0,128566,'png');INSERT INTO "content_localfile" VALUES('05cf2d16f880bf3ddf0bc51ce1a3bc3f',0,27704278,'mp4');INSERT INTO "content_localfile" VALUES('fae2bf5620c59629a79514f69535d211',0,162125,'png');INSERT INTO "content_localfile" VALUES('c63161e0426b03fd2f9d226677281675',0,917,'vtt');INSERT INTO "content_localfile" VALUES('a3fd88354110709cd99ed895ae7386d8',0,855,'vtt');INSERT INTO "content_localfile" VALUES('f09bac68c680e28a7827adcd0e42f119',0,12425685,'mp4');INSERT INTO "content_localfile" VALUES('e789ddec9c4dce9d844daf5cfc9f7b34',0,2287,'png');INSERT INTO "content_localfile" VALUES('a42c9c4f783f975ba04eb6caa2ac3dba',0,955,'vtt');INSERT INTO "content_localfile" VALUES('46eaf9494aea81e6859a38697cef2e09',0,993,'vtt');INSERT INTO "content_localfile" VALUES('de75eb352b371d39413462795e7624bd',0,20432214,'mp4');INSERT INTO "content_localfile" VALUES('53f006ae1568cf1cb5e792826dc93e87',0,9425,'png');INSERT INTO "content_localfile" VALUES('048818576fad14850c9ce61cbff8f08b',0,413,'vtt');INSERT INTO "content_localfile" VALUES('2893fb250ce7d65647df9f1e5cebaef9',0,381,'vtt');INSERT INTO "content_localfile" VALUES('cff6daf23d0f5081be64fd91652790db',0,6043320,'mp4');INSERT INTO "content_localfile" VALUES('7e4f1a474c85adf267578ffe27c613e5',0,10344,'jpg');INSERT INTO "content_localfile" VALUES('22763decaf8d8911441d9ed95d5920aa',0,107732,'zip');INSERT INTO "content_localfile" VALUES('73373c32519cba3c11173fee0bd05564',0,13351,'jpg');INSERT INTO "content_localfile" VALUES('f97eb00a45a99c5bdb815a2a21ccfd82',0,275887,'zip');INSERT INTO "content_localfile" VALUES('902b23bd568a5edd9ea910f3d962f12a',0,137946,'png');INSERT INTO "content_localfile" VALUES('faf5f83dbdfcef24c473ec7eb6dd54b6',0,609,'vtt');INSERT INTO "content_localfile" VALUES('7c139c1fd9f6989ddf2afb29e7fe2b45',0,560,'vtt');INSERT INTO "content_localfile" VALUES('2a8adfb5cc73f89668db6168e54c2af2',0,504,'vtt');INSERT INTO "content_localfile" VALUES('12061a5505d9aa1aee332e0867817e1b',0,4438083,'mp4');INSERT INTO "content_localfile" VALUES('692c77be17255fb7ac09d8e947953877',0,156068,'png');INSERT INTO "content_localfile" VALUES('0bac46bbb94b6123e83cbc73981b7cc7',0,824,'vtt');INSERT INTO "content_localfile" VALUES('97f701d6180c56a38bf6eb2ffbb41bea',0,772,'vtt');INSERT INTO "content_localfile" VALUES('ffa6d4f6d91bf3669d4e0ead06f0e1d0',0,694,'vtt');INSERT INTO "content_localfile" VALUES('fc1ca148749b57fe5ea4e59a4dcf59e7',0,12103209,'mp4');INSERT INTO "content_localfile" VALUES('aa3c99c3100fc18f1849ad3e9c580701',0,147701,'png');INSERT INTO "content_localfile" VALUES('7d56764556823aaccb67f649e4fc8943',0,455,'vtt');INSERT INTO "content_localfile" VALUES('30931349883e371db8b5bfbd60604136',0,456,'vtt');INSERT INTO "content_localfile" VALUES('dc665a4dd56d53541403cdf149c64e5c',0,7546837,'mp4');INSERT INTO "content_localfile" VALUES('7ce8192abadcc56cab061816403baf77',0,152023,'png');INSERT INTO "content_localfile" VALUES('7e6eecce8634e7262da9fb02452a5d12',0,428,'vtt');INSERT INTO "content_localfile" VALUES('df017cf2c22a90ade576583898a6fcf2',0,392,'vtt');INSERT INTO "content_localfile" VALUES('2b670f18896fdfd76a43869841296b49',0,22571988,'mp4');INSERT INTO "content_localfile" VALUES('897cd278d2c8fb9a201846e188fce548',0,135204,'png');INSERT INTO "content_localfile" VALUES('6b27d3f9d82fd99f90b72b4a2b5f2adc',0,122,'vtt');INSERT INTO "content_localfile" VALUES('b97cec0c9564e35937bf0aa8f15c21d2',0,108,'vtt');INSERT INTO "content_localfile" VALUES('85856d6e24bb13ab9d5ace34112939f9',0,3112218,'mp4');INSERT INTO "content_localfile" VALUES('6886ff67592775907a58296493c1667c',0,132755,'png');INSERT INTO "content_localfile" VALUES('b2a47a5ebe4424b722c89b98f72fc1a7',0,315,'vtt');INSERT INTO "content_localfile" VALUES('2d941884d7c54d38c2396c5ad1f8780f',0,301,'vtt');INSERT INTO "content_localfile" VALUES('c5e4d1471c787aed659ed3f23a4be220',0,4797948,'mp4');INSERT INTO "content_localfile" VALUES('a0897b46c8795780790991e0c5259e01',0,189321,'png');INSERT INTO "content_localfile" VALUES('86a06e3b33185c338ac4d77e13c0dd48',0,347,'vtt');INSERT INTO "content_localfile" VALUES('b8d6d7fc1ab09b1b20508a4b62a6438e',0,334,'vtt');INSERT INTO "content_localfile" VALUES('efd76a6793a897696f726acc78cb8d69',0,299,'vtt');INSERT INTO "content_localfile" VALUES('bf89e760715e2bc5c102a3824c16840d',0,4061507,'mp4');INSERT INTO "content_localfile" VALUES('8252c5fbe106c386c16336a8348f7cf5',0,96932,'png');INSERT INTO "content_localfile" VALUES('01d079f3309f6fb0dbf4df6cb142d616',0,828,'vtt');INSERT INTO "content_localfile" VALUES('f25feb2ef0a7cf949d6e6f23a97b4d77',0,777,'vtt');INSERT INTO "content_localfile" VALUES('581cebd7676a154d569597ad90c3784e',0,8230959,'mp4');INSERT INTO "content_localfile" VALUES('cf92d3470b8b28d2fdf0d7c4591a5692',0,171497,'png');INSERT INTO "content_localfile" VALUES('cbfcb0a53d2e5cfa1ca99e6e3ab65ea1',0,937,'vtt');INSERT INTO "content_localfile" VALUES('03840ffed7b0f229727c8fbabe7bd545',0,997,'vtt');INSERT INTO "content_localfile" VALUES('2aa0a170fe17800ac2afecd6a4615e8b',0,808,'vtt');INSERT INTO "content_localfile" VALUES('01acd2fc5819cbc1beb42055cb456fc4',0,13540304,'mp4');INSERT INTO "content_localfile" VALUES('47a8ce05c62f21146206dc4e247b26e0',0,118550,'png');INSERT INTO "content_localfile" VALUES('94229ebedf54e94c3ff25484f13c42d8',0,1508,'vtt');INSERT INTO "content_localfile" VALUES('27c4528c33b8cfa0e339d69383b6c2c5',0,1361,'vtt');INSERT INTO "content_localfile" VALUES('8c78ce246941ae19e756f0839740f2ce',0,13852605,'mp4');INSERT INTO "content_localfile" VALUES('c0d6438499c381d29102515d87ec9a68',0,127315,'png');INSERT INTO "content_localfile" VALUES('85def56b35922ac3ba0c181886ae8b8a',0,1248,'vtt');INSERT INTO "content_localfile" VALUES('b455ccfc5a2306a19c96733261c359f1',0,15659627,'mp4');INSERT INTO "content_localfile" VALUES('11a209533ed6d001e01a7492180e3d44',0,162128,'png');INSERT INTO "content_localfile" VALUES('6ba466a60438d25873fb0458392d9322',0,356,'vtt');INSERT INTO "content_localfile" VALUES('9e794e3b6d1545b347b164e1db2442bc',0,322,'vtt');INSERT INTO "content_localfile" VALUES('d26e0f3dacdef621a1e24739158c1049',0,7965514,'mp4');INSERT INTO "content_localfile" VALUES('678b51f5e2ebe874d4952ca5c1e6d9bc',0,128814,'png');INSERT INTO "content_localfile" VALUES('c4de7835c32cd4ddd79250786be6f252',0,791,'vtt');INSERT INTO "content_localfile" VALUES('418c58e3ff5e25a86ca36b89b1c75d44',0,7437743,'mp4');INSERT INTO "content_localfile" VALUES('fca9f7ce38d8f10fcc4ece7a36a113f6',0,119508,'png');INSERT INTO "content_localfile" VALUES('356e7bbfaccc0c3b7acd9a1feee24568',0,354,'vtt');INSERT INTO "content_localfile" VALUES('c3f0a42e8765663892c6b4e7a2944be7',0,330,'vtt');INSERT INTO "content_localfile" VALUES('4de68aac22f5f60a711cf054fa9488c8',0,316,'vtt');INSERT INTO "content_localfile" VALUES('7d259a2c20e59ad447916288192a496f',0,3112601,'mp4');INSERT INTO "content_localfile" VALUES('b3730e867cd85184c9a3cbb9c236e367',0,159274,'png');INSERT INTO "content_localfile" VALUES('9ef7100892776df798dc6d324e015f77',0,612,'vtt');INSERT INTO "content_localfile" VALUES('7ebf1c66665ac4a355556e2497d3291d',0,590,'vtt');INSERT INTO "content_localfile" VALUES('20f8bfa0502ddc2d5ae30a90a937476f',0,539,'vtt');INSERT INTO "content_localfile" VALUES('c30cac70bcc094471e372cd2995eb0dc',0,5973270,'mp4');INSERT INTO "content_localfile" VALUES('537dd71616565255470eda6d02afa2ef',0,119389,'png');INSERT INTO "content_localfile" VALUES('906074296685813419b4718ef6a7a986',0,303,'vtt');INSERT INTO "content_localfile" VALUES('4fd9d6970486d0cbabe23d2bf93916c4',0,302,'vtt');INSERT INTO "content_localfile" VALUES('045408e2b2372556c5fea9139a6edae3',0,260,'vtt');INSERT INTO "content_localfile" VALUES('0e11aa3f9013a5925d72a6a73253a4b3',0,2237670,'mp4');INSERT INTO "content_localfile" VALUES('13b51a18971c90fc9c3dcb70fbf8514a',0,126453,'png');INSERT INTO "content_localfile" VALUES('92a52c283a7866af2c1e528bf587fd40',0,393,'vtt');INSERT INTO "content_localfile" VALUES('38c0490ce7b832b0d58951c290f2896a',0,356,'vtt');INSERT INTO "content_localfile" VALUES('950fe6c500670a275e744ba52d315cdf',0,3507314,'mp4');INSERT INTO "content_localfile" VALUES('444bd4a982f6cdbdb1b6acf7926032f6',0,140581,'png');INSERT INTO "content_localfile" VALUES('04e15bca9832e73741cec3a80e8b2aa6',0,265,'vtt');INSERT INTO "content_localfile" VALUES('aac8c87933a2657322c2ed42fad53854',0,262,'vtt');INSERT INTO "content_localfile" VALUES('96164cb385d4af2bffe7a7ebd8a4d9d4',0,15334263,'mp4');INSERT INTO "content_localfile" VALUES('2791e808ad8380492482c6960a7aad60',0,136515,'png');INSERT INTO "content_localfile" VALUES('b14733b08796c9078fee2620b8ff15b5',0,1560,'vtt');INSERT INTO "content_localfile" VALUES('4e986f9326b24a4fb4fc301260a8b78c',0,1513,'vtt');INSERT INTO "content_localfile" VALUES('b14d754627ba22d68219f1c1e5f6ca17',0,25438067,'mp4');INSERT INTO "content_localfile" VALUES('3be41e7a261c153ca99adb62c9b1913c',0,118384,'png');INSERT INTO "content_localfile" VALUES('6915919f41a4a0a7143611d3a5e15a9b',0,1421,'vtt');INSERT INTO "content_localfile" VALUES('42c822015ae3f349804565f166b03b6d',0,1271,'vtt');INSERT INTO "content_localfile" VALUES('15649f2fd84c1fe3241c10c84885d931',0,11674655,'mp4');INSERT INTO "content_localfile" VALUES('9d814607f2ccbfa8d76b6ae330cac1b5',0,137479,'png');INSERT INTO "content_localfile" VALUES('a5d0b5ace41db4db660cfea647d14e6f',0,369,'vtt');INSERT INTO "content_localfile" VALUES('e3673fd7e65204aa9fff3313f805a34a',0,336,'vtt');INSERT INTO "content_localfile" VALUES('c903dfc9dff8c5b28aea9051f58f71ad',0,18476354,'mp4');INSERT INTO "content_localfile" VALUES('01af55b143edbe836303e2ff2c58892c',0,89523,'png');INSERT INTO "content_localfile" VALUES('e594becc9119f653f22361c28bdd43f7',0,315,'vtt');INSERT INTO "content_localfile" VALUES('1dc74ac0b17982990e4c0ae57610183d',0,297,'vtt');INSERT INTO "content_localfile" VALUES('b42bcef177ce68fbde987e2992be4b2c',0,6034005,'mp4');INSERT INTO "content_localfile" VALUES('9f391c5d60874aae9b34b1d62dbb769f',0,146898,'png');INSERT INTO "content_localfile" VALUES('0b18278b1669f77cce59f78c5e3f733b',0,1097,'vtt');INSERT INTO "content_localfile" VALUES('527e245988f22a8d782b6236e93943f5',0,955,'vtt');INSERT INTO "content_localfile" VALUES('bf128df653796d69c5eaf5546d0bb39b',0,13694393,'mp4');INSERT INTO "content_localfile" VALUES('72025b3ca27ef87b243f106a25869c3f',0,141231,'png');INSERT INTO "content_localfile" VALUES('6ef2c6aa37579310dbe3fbdfc5511b1d',0,562,'vtt');INSERT INTO "content_localfile" VALUES('0ec5da31b5387c7594ed373ece1ea74c',0,498,'vtt');INSERT INTO "content_localfile" VALUES('11a4c955fc800049d7755489da9ce7f5',0,21874540,'mp4');INSERT INTO "content_localfile" VALUES('e539dfd0f7059b1e0811358ff32e5e04',0,146309,'png');INSERT INTO "content_localfile" VALUES('bdab907169a4c8cbba0cc719bc489187',0,924,'vtt');INSERT INTO "content_localfile" VALUES('aa45dca4559c62fffd2d5e894db227fa',0,582,'vtt');INSERT INTO "content_localfile" VALUES('5a6361ab623f0639af241579c6219518',0,577,'vtt');INSERT INTO "content_localfile" VALUES('c7f0a038e86a11946922feec05df9d68',0,16580177,'mp4');INSERT INTO "content_localfile" VALUES('9824ece203f6eecdf484808ce1b5f0af',0,149200,'png');INSERT INTO "content_localfile" VALUES('3009b8411c4d69524139edee76e39ac5',0,562,'vtt');INSERT INTO "content_localfile" VALUES('6dc1ef470535d2db767a212f313e7383',0,547,'vtt');INSERT INTO "content_localfile" VALUES('7cdb426f051677c893cde33630406822',0,6604927,'mp4');INSERT INTO "content_localfile" VALUES('a6f7fabd5a0e6b3f5c401ad3cd85ba38',0,10488,'jpg');INSERT INTO "content_localfile" VALUES('a1e9926d43f43d0adcd16e0b6a58298a',0,106904,'zip');INSERT INTO "content_localfile" VALUES('7b38117db02542649056a3d3c8631808',0,126966,'png');INSERT INTO "content_localfile" VALUES('517139b89c32a7c2ccea6203de339bcb',0,657,'vtt');INSERT INTO "content_localfile" VALUES('c28c6e0deffa77a71126dc69ff76c547',0,574,'vtt');INSERT INTO "content_localfile" VALUES('236a2ec2e692e45c6c9828e750a59281',0,6571209,'mp4');INSERT INTO "content_localfile" VALUES('800035c61e58bffe3d73630630de468f',0,134637,'png');INSERT INTO "content_localfile" VALUES('80f062b4d47f0211518a70f309a28a07',0,775,'vtt');INSERT INTO "content_localfile" VALUES('2c04f921962e6e0985a9d68c43483e1b',0,764,'vtt');INSERT INTO "content_localfile" VALUES('d425f1f0e6a04fdd2d0bbc66b990a1c7',0,8173650,'mp4');INSERT INTO "content_localfile" VALUES('999869c3d5d8a05502ad848a1ff5899e',0,151196,'png');INSERT INTO "content_localfile" VALUES('6239a38083ab0e178db8062cb6e78351',0,546,'vtt');INSERT INTO "content_localfile" VALUES('cfadce3655f3ff7b5181680721de90a9',0,563,'vtt');INSERT INTO "content_localfile" VALUES('ec34a71cc78b09c68baca04d53fb0229',0,546,'vtt');INSERT INTO "content_localfile" VALUES('3d0e48105552518339aba84efba89606',0,15920134,'mp4');INSERT INTO "content_localfile" VALUES('3e65753e260341e382c9b6bd60e7221e',0,152643,'png');INSERT INTO "content_localfile" VALUES('04a1371405aea68b25c8fe89a5359fd1',0,424,'vtt');INSERT INTO "content_localfile" VALUES('0e2421f99b52bcb73fe46f9bd2021e60',0,415,'vtt');INSERT INTO "content_localfile" VALUES('ab38194a7cd07ed6063f4a2cbadfca3f',0,4779149,'mp4');INSERT INTO "content_localfile" VALUES('2c602231db2747113262cacc9a648614',0,155460,'png');INSERT INTO "content_localfile" VALUES('427e2082c12ab781a38df088a08b1d01',0,633,'vtt');INSERT INTO "content_localfile" VALUES('ab55ef994cf8b2f3bfdac2e500c0a4cf',0,567,'vtt');INSERT INTO "content_localfile" VALUES('5a26f594f8ff68e67028b0799d6e2fc5',0,6866695,'mp4');INSERT INTO "content_localfile" VALUES('5e8f1e8ad1ae0bda6f1d90e0c2c0de86',0,107419,'png');INSERT INTO "content_localfile" VALUES('51cbe1abfd056619d633f82253da8766',0,634,'vtt');INSERT INTO "content_localfile" VALUES('7cc395879e73b49e712b8739ca426070',0,569,'vtt');INSERT INTO "content_localfile" VALUES('7aad98e0afdc86f820fcc63fb822006e',0,6181127,'mp4');INSERT INTO "content_localfile" VALUES('fda66ee959e1436686cadf7cbb3fe096',0,121447,'png');INSERT INTO "content_localfile" VALUES('48e9450e29cb245d86137f39b0dcbd0f',0,372,'vtt');INSERT INTO "content_localfile" VALUES('4305285b90c9274cf3b230b7949663de',0,345,'vtt');INSERT INTO "content_localfile" VALUES('5f7db280ba8d327f962268ff2c4d2734',0,8305232,'mp4');INSERT INTO "content_localfile" VALUES('8891a884b9a7d544a782e4215a0fdd79',0,146352,'png');INSERT INTO "content_localfile" VALUES('7f1165ef59e74ce854018114a6cf695f',0,428,'vtt');INSERT INTO "content_localfile" VALUES('18389392fce2c6d0b84250e9a0ce12d3',0,403,'vtt');INSERT INTO "content_localfile" VALUES('195aa142c9aee5ec7c46c870602f8568',0,5010186,'mp4');INSERT INTO "content_localfile" VALUES('4eafc1e5b179cc9748474e1999475804',0,152617,'png');INSERT INTO "content_localfile" VALUES('6790ac43dd8146fc122c24699ffe3207',0,768,'vtt');INSERT INTO "content_localfile" VALUES('f0066bb0c64f97f805a43426db62de07',0,671,'vtt');INSERT INTO "content_localfile" VALUES('fd0d16209734ee97cd3b307ba448cb3a',0,6594799,'mp4');INSERT INTO "content_localfile" VALUES('5b5b8cc404c9a27b5b7c8025aa475424',0,125090,'png');INSERT INTO "content_localfile" VALUES('f7c5621606d3d49d1f39890ecca64e96',0,638,'vtt');INSERT INTO "content_localfile" VALUES('08e16093a3b13832b22626121ebf89d5',0,578,'vtt');INSERT INTO "content_localfile" VALUES('eec46d8eabcde38de6b777e27b120275',0,4348902,'mp4');INSERT INTO "content_localfile" VALUES('9dce317b1a432a90c39def8ad05fb25d',0,129687,'png');INSERT INTO "content_localfile" VALUES('122f9ae5b4a1c8bd68cbb18dcef2c35a',0,548,'vtt');INSERT INTO "content_localfile" VALUES('c3b13764acf996ed1370b2b58804899a',0,529,'vtt');INSERT INTO "content_localfile" VALUES('1a15ab77316deefe65a31bd369a46c79',0,5231416,'mp4');INSERT INTO "content_localfile" VALUES('4176b70db593c216250434567f1df8ae',0,148538,'png');INSERT INTO "content_localfile" VALUES('9e194bac33a5bf2c42683c430a44d92e',0,517,'vtt');INSERT INTO "content_localfile" VALUES('39cff265a962aa6da37141786f959e03',0,493,'vtt');INSERT INTO "content_localfile" VALUES('8689dc9cbc2996371942328675f9f5e4',0,6169421,'mp4');INSERT INTO "content_localfile" VALUES('e128efabd2eac966271e0f953a1b1cc2',0,149164,'png');INSERT INTO "content_localfile" VALUES('7c112724c6eab15c63d97478e52f86a7',0,564,'vtt');INSERT INTO "content_localfile" VALUES('bdbdd4938584cfe7e1e5d3489020e2da',0,552,'vtt');INSERT INTO "content_localfile" VALUES('60042f40d7a1459186913de7d5a5acf9',0,5877506,'mp4');INSERT INTO "content_localfile" VALUES('4958fcdd87f25821a5e010cd1d006654',0,89124,'png');INSERT INTO "content_localfile" VALUES('b7dc9346011da8831eab6d195c756b1c',0,601,'vtt');INSERT INTO "content_localfile" VALUES('d7354b6cd850e85d20c04c4a217b91df',0,572,'vtt');INSERT INTO "content_localfile" VALUES('5c897de806ee230bd13b2477484b8992',0,4079256,'mp4');INSERT INTO "content_localfile" VALUES('b4fff8bd4817be663cf3112e2dd731d0',0,140751,'png');INSERT INTO "content_localfile" VALUES('de1b85ac0ca8ea6fe7bbd7f3d7136c5c',0,458,'vtt');INSERT INTO "content_localfile" VALUES('14fb5b08e956a42b1d6726ea4f4b2110',0,447,'vtt');INSERT INTO "content_localfile" VALUES('9c015a68b379668b79120081e34a3a32',0,5064261,'mp4');INSERT INTO "content_localfile" VALUES('454a020af11b5f26b46c637981c973ab',0,111360,'png');INSERT INTO "content_localfile" VALUES('2ea2bad7104d2632a96c740489575182',0,578,'vtt');INSERT INTO "content_localfile" VALUES('309f95a05bb914a5625ee421c59180a9',0,519,'vtt');INSERT INTO "content_localfile" VALUES('fa780507102dbcd0888ec3f428b44347',0,2996296,'mp4');INSERT INTO "content_localfile" VALUES('d1dc8c45ee9b23e9038740277dbaf44d',0,147867,'png');INSERT INTO "content_localfile" VALUES('7103f8d36da6b6069939482968e1291a',0,565,'vtt');INSERT INTO "content_localfile" VALUES('6653846e58639503ee9283adeea8bac1',0,538,'vtt');INSERT INTO "content_localfile" VALUES('3cbeb401da2885c716c35c3fb02649e3',0,5835939,'mp4');INSERT INTO "content_localfile" VALUES('f24c78832637f22a245ebdd02a027d48',0,150263,'png');INSERT INTO "content_localfile" VALUES('efcc19cce65b33a6fceac0f583d1d1c9',0,580,'vtt');INSERT INTO "content_localfile" VALUES('0956700c264543a11156be04d5a8c4a7',0,543,'vtt');INSERT INTO "content_localfile" VALUES('53f601112e6976cc267a81752edf7e56',0,8881430,'mp4');INSERT INTO "content_localfile" VALUES('045379ef98465974a76910af60deb7b6',0,133201,'png');INSERT INTO "content_localfile" VALUES('5c5662db87c334476a4f7b82b7a0b88e',0,541,'vtt');INSERT INTO "content_localfile" VALUES('8a91625de1831b6063f605f80170f094',0,523,'vtt');INSERT INTO "content_localfile" VALUES('c0ace29e311d4cf1118b3bcad67890ad',0,3985295,'mp4');INSERT INTO "content_localfile" VALUES('009c79c2e9378787201feef40be0fed9',0,140892,'png');INSERT INTO "content_localfile" VALUES('0f7dcf8407d7e0c8b55da8c4f482e9c7',0,918,'vtt');INSERT INTO "content_localfile" VALUES('6dde666e9bb9c29cd9bd8e15bf921676',0,799,'vtt');INSERT INTO "content_localfile" VALUES('0e7458f08bfd1f8f7798c035689eeb09',0,11485563,'mp4');INSERT INTO "content_localfile" VALUES('36947fbe661b7798db77049fc767aed5',0,177339,'png');INSERT INTO "content_localfile" VALUES('c9529315b2c3347afbdcb53a5df10c9e',0,549,'vtt');INSERT INTO "content_localfile" VALUES('918791b4121dc8b649f3d4ca4962749d',0,521,'vtt');INSERT INTO "content_localfile" VALUES('a8826f8a4ae618d2bedb5edeaafd6596',0,6827958,'mp4');INSERT INTO "content_localfile" VALUES('c06201059e88b8a8d4056f99f0dfb2be',0,114399,'png');INSERT INTO "content_localfile" VALUES('a8d617df89920ca94ca3e0e81e360d12',0,870,'vtt');INSERT INTO "content_localfile" VALUES('ca640aa10350ee426888128d1667473c',0,789,'vtt');INSERT INTO "content_localfile" VALUES('3d8a2df23f15d3d77dff0ccb8534e7b8',0,7178993,'mp4');INSERT INTO "content_localfile" VALUES('45d3d03801c7466f0c374832aac55c80',0,113674,'png');INSERT INTO "content_localfile" VALUES('37584c5d7ef4b08c8a6b760f2b7d704b',0,335,'vtt');INSERT INTO "content_localfile" VALUES('1724c086bc7b7e519eccc76e336b99f4',0,303,'vtt');INSERT INTO "content_localfile" VALUES('ce706c6d287eaa7ed8d86ba15ffbba6d',0,2161839,'mp4');INSERT INTO "content_localfile" VALUES('6758894f8f882944d5fb248fce6c5b9f',0,126707,'png');INSERT INTO "content_localfile" VALUES('834ce36b1ec6a7e813c391d7694e4379',0,439,'vtt');INSERT INTO "content_localfile" VALUES('0e45a32ce503585b8ee90d9f263b7778',0,425,'vtt');INSERT INTO "content_localfile" VALUES('e55c905a5ff283b797bac8e4fe719791',0,4280752,'mp4');INSERT INTO "content_localfile" VALUES('46f0421fb07ba54d80be2a63e8e8538d',0,109048,'png');INSERT INTO "content_localfile" VALUES('777cc9356310743ef54c5a64f2069af5',0,476,'vtt');INSERT INTO "content_localfile" VALUES('d86f63078d2113c3c4c45bdf3f21110d',0,434,'vtt');INSERT INTO "content_localfile" VALUES('9209d90f006d2ffec74bbd77ed0adc97',0,4141673,'mp4');INSERT INTO "content_localfile" VALUES('6fb80f3f97b47b7249915bdcf8fd7a73',0,140253,'png');INSERT INTO "content_localfile" VALUES('1ccf2ad257c22328f7f28aa0c04cfe4a',0,1074,'vtt');INSERT INTO "content_localfile" VALUES('84f66f8d532b7b9dc8fb1ebf72249eb7',0,1036,'vtt');INSERT INTO "content_localfile" VALUES('0316b3a6383b7581f0673352b3bfd6e8',0,13926706,'mp4');INSERT INTO "content_localfile" VALUES('91bf1f27048029b6a05f61a7ed07570d',0,124672,'png');INSERT INTO "content_localfile" VALUES('a0f98d28249b7bcd60d9c8c49d7c6d95',0,830,'vtt');INSERT INTO "content_localfile" VALUES('7fdff5307f00dc83cf36ebf4931173c1',0,756,'vtt');INSERT INTO "content_localfile" VALUES('6f3ce2089c8d8eea96be170c4b55985c',0,24168497,'mp4');INSERT INTO "content_localfile" VALUES('eaaf8b7522d071a2c7a66005a08d863b',0,155415,'png');INSERT INTO "content_localfile" VALUES('aa028a73d9860d09fa3f413e21a6b2d7',0,168,'vtt');INSERT INTO "content_localfile" VALUES('72f64d5a04a11eb04afa75ac3903136f',0,165,'vtt');INSERT INTO "content_localfile" VALUES('f6cb19bc10ba48866470a995e9df768f',0,16048725,'mp4');INSERT INTO "content_localfile" VALUES('37c57074e61a6cde1f47e5848498df45',0,141037,'png');INSERT INTO "content_localfile" VALUES('80d034093f2bab0026df7cd4ed0a7dae',0,276,'vtt');INSERT INTO "content_localfile" VALUES('3297d5fdb88827576b94d01206b50b7f',0,272,'vtt');INSERT INTO "content_localfile" VALUES('08723210b8a44222a6bef173f8e4f608',0,4134083,'mp4');INSERT INTO "content_localfile" VALUES('4214062135942035cfa0c2544f2843b6',0,148750,'png');INSERT INTO "content_localfile" VALUES('7601127c2c0930ce962781058f3a2fbd',0,769,'vtt');INSERT INTO "content_localfile" VALUES('2a9aabb15a4ae64d2367a41973b2e045',0,721,'vtt');INSERT INTO "content_localfile" VALUES('56c90a941c5551a0fc0f6cbd9c8507ec',0,10837365,'mp4');INSERT INTO "content_localfile" VALUES('ef1f87149b4be8c64b13d6411dd9fab6',0,128832,'png');INSERT INTO "content_localfile" VALUES('2eb9a15b2a0adf2716827aa485cea923',0,2946,'vtt');INSERT INTO "content_localfile" VALUES('341e43b68e068a1925c97fe6f90ca17f',0,2775,'vtt');INSERT INTO "content_localfile" VALUES('d2b74bb8a9bf9fdd71770505291b4e4f',0,45714514,'mp4');INSERT INTO "content_localfile" VALUES('fa20139b79ca59eb24b17c448d6f1d23',0,164821,'png');INSERT INTO "content_localfile" VALUES('6506a3ad7a1394ce0e5fd903d7f2ab5f',0,351,'vtt');INSERT INTO "content_localfile" VALUES('2e87f6039125b8dbf453408820ff33b5',0,324,'vtt');INSERT INTO "content_localfile" VALUES('b6dec0c82967b97c56aaaec3302862c3',0,5046353,'mp4');INSERT INTO "content_localfile" VALUES('9605edbb056653e66acb02c730299529',0,129945,'png');INSERT INTO "content_localfile" VALUES('a2b57e6647f91d9ef24c6efe2b6f6092',0,494,'vtt');INSERT INTO "content_localfile" VALUES('969020f4fe443918e0fded277baf09b3',0,430,'vtt');INSERT INTO "content_localfile" VALUES('1519b96297a2e97faf2a791d420f3503',0,3590438,'mp4');INSERT INTO "content_localfile" VALUES('cc252d34e51633bea89fd672a6104412',0,159184,'png');INSERT INTO "content_localfile" VALUES('5a906fe826655619d1fbadd7c70a13ae',0,505,'vtt');INSERT INTO "content_localfile" VALUES('cdf1b5f6f141e091caa1488e8add73dc',0,479,'vtt');INSERT INTO "content_localfile" VALUES('d0ce062d0ad71199b9a719058b25aa55',0,6874319,'mp4');INSERT INTO "content_localfile" VALUES('e21cbebff8407f214663b3cb18a83404',0,139109,'png');INSERT INTO "content_localfile" VALUES('40fe1fd86a1b630ed3f7ec73dbc751c9',0,607,'vtt');INSERT INTO "content_localfile" VALUES('af4aa151a6ea1f4d85c36e9dc201920a',0,588,'vtt');INSERT INTO "content_localfile" VALUES('b3e0fdad0e3a6ee63f351d498de607fb',0,13198515,'mp4');INSERT INTO "content_localfile" VALUES('0d4db27240fe23ba489293159a5e74cf',0,139998,'png');INSERT INTO "content_localfile" VALUES('069d3905a557984ddc6cdded8edb7cdd',0,31413964,'mp4');INSERT INTO "content_localfile" VALUES('cacb0ca2c1511d9160d2ed32b8cd6f8c',0,138578,'png');INSERT INTO "content_localfile" VALUES('258ae25bc2b9b2995c7ed232efbddb17',0,280,'vtt');INSERT INTO "content_localfile" VALUES('d77d6619ec0e68746ec417250458f19d',0,272,'vtt');INSERT INTO "content_localfile" VALUES('068836e234eb495f79b60da8c9a8b9f5',0,3857887,'mp4');INSERT INTO "content_localfile" VALUES('0e27952c304d69f23297e763fcb46624',0,130544,'png');INSERT INTO "content_localfile" VALUES('107202cc281beacfd25d0f06f5c82f23',0,1193,'vtt');INSERT INTO "content_localfile" VALUES('aa47cd9182afffbd91ee01145fedb8fe',0,1158,'vtt');INSERT INTO "content_localfile" VALUES('f5f116602962c3853a8a24ec4178e76a',0,10748350,'mp4');INSERT INTO "content_localfile" VALUES('42a325e59e268dd1547e83787e9ef1ef',0,187003,'png');INSERT INTO "content_localfile" VALUES('27bfa677d40c66d406881a1193f44340',0,1124,'vtt');INSERT INTO "content_localfile" VALUES('f33fec5ba65abf2bc2c9fff3f853a1e8',0,13028815,'mp4');INSERT INTO "content_localfile" VALUES('3d132e4fdc41e7cf50eee801917ab7b4',0,93154,'png');INSERT INTO "content_localfile" VALUES('473a1bb993a1536cc4c3333a0bde27c9',0,1505,'vtt');INSERT INTO "content_localfile" VALUES('a747c4f40dbdd7f90d7cedb65c96a782',0,1405,'vtt');INSERT INTO "content_localfile" VALUES('cdb6e4019bb7fd7b6f4eb9ae89e8f119',0,21657844,'mp4');INSERT INTO "content_localfile" VALUES('54114b44097b0c87a14ef0466f315d5a',0,158129,'png');INSERT INTO "content_localfile" VALUES('6ece7569b5b9a6960ba13d4da9d0542e',0,364,'vtt');INSERT INTO "content_localfile" VALUES('dc71e63b9bdc22cce89dc235d78a6669',0,341,'vtt');INSERT INTO "content_localfile" VALUES('94eaff62c1d9aa835b1949d0f583267f',0,7907043,'mp4');INSERT INTO "content_localfile" VALUES('b12fd532b5266dc418f9e7d4bb8e5e89',0,11095,'jpg');INSERT INTO "content_localfile" VALUES('0c234afbc1ff58a3cb875462bb3641c0',0,116655,'zip');INSERT INTO "content_localfile" VALUES('3dcba3708c00bc226dcc7e7c41d17792',0,76010,'png');INSERT INTO "content_localfile" VALUES('39a387c58f2becd8a7637f46a0810348',0,365,'vtt');INSERT INTO "content_localfile" VALUES('35818433cae393bbfdf2e6723da7686f',0,362,'vtt');INSERT INTO "content_localfile" VALUES('549ae7d4a169a92fc07731dde67055e2',0,2930769,'mp4');INSERT INTO "content_localfile" VALUES('2973e4052ac6bef20e5855b9a79acfac',0,162263,'png');INSERT INTO "content_localfile" VALUES('a86debd349f97558d254b89e1a2fdbf4',0,443,'vtt');INSERT INTO "content_localfile" VALUES('6bf96a7aff70a7fdbbb93e2cd6defe9b',0,384,'vtt');INSERT INTO "content_localfile" VALUES('601f770d2ae01256399ecf1d520722dd',0,6642259,'mp4');INSERT INTO "content_localfile" VALUES('3538622dfe2c4e899e17d50f72ad85c4',0,98482,'png');INSERT INTO "content_localfile" VALUES('ffe86dba690bf94d8b301f49e9f9bf23',0,10222646,'mp4');INSERT INTO "content_localfile" VALUES('f8dcaa712268f68e1d57c9cfc85abc87',0,141706,'png');INSERT INTO "content_localfile" VALUES('d3ac404e958750e1d8cf09c39231b6eb',0,1336,'vtt');INSERT INTO "content_localfile" VALUES('e451f5e6afe6b95ffb12ef0621bf490f',0,13661092,'mp4');INSERT INTO "content_localfile" VALUES('27b23e65550d547728bf07069009691a',0,133677,'png');INSERT INTO "content_localfile" VALUES('4e6ac0d68513951c499e58d11fafe0bb',0,1132,'vtt');INSERT INTO "content_localfile" VALUES('9576361134431fbc0a71ee8e0f833d85',0,12046252,'mp4');INSERT INTO "content_localfile" VALUES('d8afac8a2312f88c5724fecebf2fe400',0,118114,'png');INSERT INTO "content_localfile" VALUES('8f3c6290e39e981ea20d99ba0d890ce1',0,953,'vtt');INSERT INTO "content_localfile" VALUES('ef5d5c33197aa7ada2dfbd13655be683',0,8859244,'mp4');INSERT INTO "content_localfile" VALUES('7e0e1362eff4583f086b2e6f8b8bcb47',0,134897,'png');INSERT INTO "content_localfile" VALUES('e16e8fc93be62d3dca1c0f18770393c2',0,1125,'vtt');INSERT INTO "content_localfile" VALUES('2e0f2c16f36c67b662bffed8b1da7661',0,10066158,'mp4');INSERT INTO "content_localfile" VALUES('e2d461d5f15341a479ee8f0f883271fc',0,139569,'png');INSERT INTO "content_localfile" VALUES('fc9fcf620796fb1d9e2a9a0238e9d841',0,391,'vtt');INSERT INTO "content_localfile" VALUES('5e1be447a30854e4465ce75c55655b3b',0,362,'vtt');INSERT INTO "content_localfile" VALUES('e6f4941f87ef461f02ee3538c1dbd0b8',0,5003089,'mp4');INSERT INTO "content_localfile" VALUES('812e10c121991b38f098b44bd8e0431c',0,125170,'png');INSERT INTO "content_localfile" VALUES('34e802dd155156da7ff2afa56b03d50c',0,300,'vtt');INSERT INTO "content_localfile" VALUES('504f9383496f2cf26d875e1bb9b86a6f',0,274,'vtt');INSERT INTO "content_localfile" VALUES('7f3f4897e6d9f3a13b4e55a58fa44d50',0,3393630,'mp4');INSERT INTO "content_localfile" VALUES('b093d2f26621255c982dac119c0b3811',0,95234,'png');INSERT INTO "content_localfile" VALUES('23a800281351cf7b0dea3ac748c11db9',0,639,'vtt');INSERT INTO "content_localfile" VALUES('f2ce27dd8df416ba1679929b3fa136dd',0,597,'vtt');INSERT INTO "content_localfile" VALUES('7f44473e3766c00015e53f8416907609',0,5341610,'mp4');INSERT INTO "content_localfile" VALUES('96b9d81dc4d5226eddfba0f832647bbe',0,148359,'png');INSERT INTO "content_localfile" VALUES('f089a944bb6133c5254c1a329067684f',0,1153,'vtt');INSERT INTO "content_localfile" VALUES('d0408d459d80e0b7b772c5c83df79fe5',0,1091,'vtt');INSERT INTO "content_localfile" VALUES('a134e998e9c612d1239d257a1ffbf7ab',0,13703794,'mp4');INSERT INTO "content_localfile" VALUES('a561e98bc2d6a23f2f55a52b76a34ee4',0,150458,'png');INSERT INTO "content_localfile" VALUES('2dcb257537fdf8d31bb7997d69b55d0d',0,314,'vtt');INSERT INTO "content_localfile" VALUES('c4d05ce2b643dbaaa27a66bc4abe3684',0,296,'vtt');INSERT INTO "content_localfile" VALUES('f74c46adc2db09f68133108132f9719b',0,3977405,'mp4');INSERT INTO "content_localfile" VALUES('edc819864dc10b6ef4e0124d73277f6d',0,127408,'png');INSERT INTO "content_localfile" VALUES('19ac50b7ac18eb6ad7ffcf3dca26aed5',0,1024,'vtt');INSERT INTO "content_localfile" VALUES('f8714797b5333dc25fc7ecbc8f1331d4',0,7283746,'mp4');INSERT INTO "content_localfile" VALUES('5954f5743bc2427e994b8c5ee1b909ac',0,94565,'png');INSERT INTO "content_localfile" VALUES('90b2e656a6aecd7d1102bacf4aa112ef',0,395,'vtt');INSERT INTO "content_localfile" VALUES('5d296914a77514d255c626631a599fa8',0,372,'vtt');INSERT INTO "content_localfile" VALUES('1e9bb1014e2f6f6dcf0c941d421a4ef4',0,2585488,'mp4');INSERT INTO "content_localfile" VALUES('eaf3da1b1b488fd5bac20cb6453ae6e6',0,166162,'png');INSERT INTO "content_localfile" VALUES('d6dcf03fdc2d157004704a74187964f7',0,8239705,'mp4');INSERT INTO "content_localfile" VALUES('1b332377e888dcfee0d5efd2b3f96d5d',0,127048,'png');INSERT INTO "content_localfile" VALUES('c95747312f6b21d333f788d66adbadde',0,565,'vtt');INSERT INTO "content_localfile" VALUES('3aa5c76fb40f0d553838f64380f8adc3',0,8049091,'mp4');INSERT INTO "content_localfile" VALUES('2b5e001e3e0b8e9ea43b45ca2e269d80',0,121899,'png');INSERT INTO "content_localfile" VALUES('d5c60a7e3fc869297ff2e28631a0fdb3',0,472,'vtt');INSERT INTO "content_localfile" VALUES('7e2a2061676a53b85f2c4245180fc158',0,455,'vtt');INSERT INTO "content_localfile" VALUES('fbb857e4f1ef0528e2f7c4b306467959',0,3202604,'mp4');INSERT INTO "content_localfile" VALUES('8595c83706e5f92acc3cfb3bcec12931',0,112131,'png');INSERT INTO "content_localfile" VALUES('a2de0566667ab5f296db68d9dc13b06f',0,499,'vtt');INSERT INTO "content_localfile" VALUES('ad913b40b168357f489d287e4cc56193',0,4228709,'mp4');INSERT INTO "content_localfile" VALUES('dc7ba5528c488ae69e4cbdb95a377d5d',0,131345,'png');INSERT INTO "content_localfile" VALUES('5ab8a2a7963a6a232d335ec0ecbf873b',0,457,'vtt');INSERT INTO "content_localfile" VALUES('f12d9c37b56b48beb2a4b67dbd8952be',0,2937626,'mp4');INSERT INTO "content_localfile" VALUES('cf8a70dce95a1ee828f896a71bf49abc',0,146463,'png');INSERT INTO "content_localfile" VALUES('5144044e00f378201f9b93f13f855416',0,1626,'vtt');INSERT INTO "content_localfile" VALUES('db474ccfaaf20bf036b0307d87bd989c',0,16443545,'mp4');INSERT INTO "content_localfile" VALUES('cd2295febbed6cb49096e33c5822fa49',0,113457,'png');INSERT INTO "content_localfile" VALUES('8853170f97036ec92d45d50f09a585cc',0,685,'vtt');INSERT INTO "content_localfile" VALUES('b812b60e49cac55d63ffb699511d70a0',0,7055898,'mp4');INSERT INTO "content_localfile" VALUES('3db984ec9ba07292179d01e285c6285a',0,171730,'png');INSERT INTO "content_localfile" VALUES('76cfce81ba6bce66e87f6d2beb17e31f',0,752,'vtt');INSERT INTO "content_localfile" VALUES('dc30a0a1a185c7c6231f3992a94bb2f9',0,12847979,'mp4');INSERT INTO "content_localfile" VALUES('df9bad028633d6fca80721ffae23ca8b',0,112176,'png');INSERT INTO "content_localfile" VALUES('1653e88ec0693b966add8db8a1994deb',0,566,'vtt');INSERT INTO "content_localfile" VALUES('2a8599c8192deef9ba687b5c4ac1a628',0,535,'vtt');INSERT INTO "content_localfile" VALUES('2e26a93b2dab68e676b2882f50f8e21b',0,5421440,'mp4');INSERT INTO "content_localfile" VALUES('5291d89d8e505bcdeeb7048a21a9fe07',0,116857,'png');INSERT INTO "content_localfile" VALUES('885294850629d6dbf5cbbd22f4ea640a',0,842,'vtt');INSERT INTO "content_localfile" VALUES('b08994273331894a6d0586bbb9763e94',0,815,'vtt');INSERT INTO "content_localfile" VALUES('3a270ac226d53f7d26f9a5b502ab9e4c',0,6336396,'mp4');INSERT INTO "content_localfile" VALUES('ac901da9f8831bdd6a580a9501e217bc',0,182550,'png');INSERT INTO "content_localfile" VALUES('72e571b69298a9b98dc425c9e4b02c57',0,459,'vtt');INSERT INTO "content_localfile" VALUES('acae00ac2679bc3a2b2709e5b7447c38',0,11197781,'mp4');INSERT INTO "content_localfile" VALUES('33f21d6834ded950f71cbb331be803d6',0,182090,'png');INSERT INTO "content_localfile" VALUES('235f346151f190e70abce0b0d4a3601e',0,477,'vtt');INSERT INTO "content_localfile" VALUES('1f7395de1c6e8df177a811f76ec633cf',0,8091893,'mp4');INSERT INTO "content_localfile" VALUES('27fbdd87b990396170c38b7bfd8a65b5',0,120310,'png');INSERT INTO "content_localfile" VALUES('f3b5697879a20bc91ce801d0a383e43a',0,543,'vtt');INSERT INTO "content_localfile" VALUES('72894f25760e9c11f1235a9213f80335',0,7950493,'mp4');INSERT INTO "content_localfile" VALUES('27c184837bac4b6c969f4070a4551ca4',0,139897,'png');INSERT INTO "content_localfile" VALUES('2462c29e4841bda9c863597394c0ace5',0,1706,'vtt');INSERT INTO "content_localfile" VALUES('9bc163c93fc886c328bef95d387db4f8',0,15469177,'mp4');INSERT INTO "content_localfile" VALUES('cdacca79c27c95245188f77c1b26731b',0,128995,'png');INSERT INTO "content_localfile" VALUES('50645a7957cbbee0f2acb25f5cce7a8c',0,828,'vtt');INSERT INTO "content_localfile" VALUES('7bfa18af7c89176cec1316786b4116fa',0,9811449,'mp4');INSERT INTO "content_localfile" VALUES('22abe4c35ceb573b0560977584096334',0,114815,'png');INSERT INTO "content_localfile" VALUES('bf117ac4358e52e38b24fcc1f2ef10e4',0,397,'vtt');INSERT INTO "content_localfile" VALUES('8b8c4e771941f169cbcd05fa82ec89ca',0,366,'vtt');INSERT INTO "content_localfile" VALUES('858e0e107a54694b29f0d269ba0feb2b',0,5571952,'mp4');INSERT INTO "content_localfile" VALUES('4ec4a7f2082860bdae813e130935db00',0,159256,'png');INSERT INTO "content_localfile" VALUES('1f23bfdc92fc96c2f0756ac873fce338',0,382,'vtt');INSERT INTO "content_localfile" VALUES('2af5a51bc69b22245d6c0d7e3c53fb3f',0,368,'vtt');INSERT INTO "content_localfile" VALUES('be63b0194e7fcd108b62e0ec3e94f1a7',0,42193010,'mp4');INSERT INTO "content_localfile" VALUES('c6782cdbd814e6d33eaa713b41e047d6',0,139630,'png');INSERT INTO "content_localfile" VALUES('8f3d6cbeb1f8381810478bf91968e852',0,676,'vtt');INSERT INTO "content_localfile" VALUES('84b2d6bf0590bda17719f8a8f294d49c',0,648,'vtt');INSERT INTO "content_localfile" VALUES('cf5c4d6a0a6f7112f14a23227e327616',0,5678869,'mp4');INSERT INTO "content_localfile" VALUES('b2395f70378b86c10f7510111e29dcb8',0,130186,'png');INSERT INTO "content_localfile" VALUES('0a6f2314b4dbeaab7e94934114ea30f3',0,280,'vtt');INSERT INTO "content_localfile" VALUES('7af6498b6ab13de6c5c1172e58b2facb',0,279,'vtt');INSERT INTO "content_localfile" VALUES('a73378a5e96d82e5e2165007ad7c6594',0,11425019,'mp4');INSERT INTO "content_localfile" VALUES('7d70d6f52016883fb7b7b13f570a20b9',0,117599,'png');INSERT INTO "content_localfile" VALUES('5bfcef55667b5bbb21d9b9fe263ffb16',0,955,'vtt');INSERT INTO "content_localfile" VALUES('f5271ffaa55adf42908799c0258f68ca',0,865,'vtt');INSERT INTO "content_localfile" VALUES('404ced6ece5a503a4049767da8e874d5',0,12255272,'mp4');INSERT INTO "content_localfile" VALUES('6124826c097818e2d4ac2165bf73fd41',0,150961,'png');INSERT INTO "content_localfile" VALUES('dfddafa8bb317c90503df4ef6c7cc2c7',0,1126,'vtt');INSERT INTO "content_localfile" VALUES('54effad5458711f8f4f8a888bef9205b',0,1029,'vtt');INSERT INTO "content_localfile" VALUES('fcb0faa883755f76ae8cfe7cf049cf50',0,11218964,'mp4');INSERT INTO "content_localfile" VALUES('64522d66d66ecd869830f5e8fb861e94',0,140236,'png');INSERT INTO "content_localfile" VALUES('b7b76ff37ea97d5398a03d002109b2b0',0,305,'vtt');INSERT INTO "content_localfile" VALUES('e61b8d5226efd7dfabebece8e1efa2a0',0,286,'vtt');INSERT INTO "content_localfile" VALUES('be963ed55b921bf92ee3afac583589f7',0,9950925,'mp4');INSERT INTO "content_localfile" VALUES('6e03fea954cbf5bb94c1fabe4873ef45',0,174888,'png');INSERT INTO "content_localfile" VALUES('8b0f368e72c08821966506565dd999d6',0,397,'vtt');INSERT INTO "content_localfile" VALUES('fc52e2171e07930769eaa79148ba404d',0,340,'vtt');INSERT INTO "content_localfile" VALUES('b7a372bf154fe78fca0be227586894a6',0,6231792,'mp4');INSERT INTO "content_localfile" VALUES('a026d2b38d2aaff898ccce6bfc62aebc',0,188153,'png');INSERT INTO "content_localfile" VALUES('97ca6c698782a18bdffa0805677547ac',0,370,'vtt');INSERT INTO "content_localfile" VALUES('a9c2791935efdeb8be5585b661d25641',0,345,'vtt');INSERT INTO "content_localfile" VALUES('f198ce820f06c5d243e14e39ab55a124',0,9716987,'mp4');INSERT INTO "content_localfile" VALUES('307f5b5772ed796e23e5c079b7450e6e',0,115455,'png');INSERT INTO "content_localfile" VALUES('96b2f4d7844696f28b59d12df67de5ac',0,347,'vtt');INSERT INTO "content_localfile" VALUES('08befa3481936452ad7cdddadba0b1cf',0,320,'vtt');INSERT INTO "content_localfile" VALUES('fe0e3fba35b98d8d84ed83b59b7e4715',0,3177713,'mp4');INSERT INTO "content_localfile" VALUES('f73c4d6f09c0667769dfbfe504ec2e70',0,119261,'png');INSERT INTO "content_localfile" VALUES('a579a70416adaaeccec2f2ced526b235',0,374,'vtt');INSERT INTO "content_localfile" VALUES('bd30d686df1e507ce5b7e887222ae9f2',0,358,'vtt');INSERT INTO "content_localfile" VALUES('8406413809460eebbbc8c367035488a7',0,31130937,'mp4');INSERT INTO "content_localfile" VALUES('31af8c6c8af7342eb27e507c66899625',0,123206,'png');INSERT INTO "content_localfile" VALUES('3966bd7d2242fc1d145ea40855a72576',0,282,'vtt');INSERT INTO "content_localfile" VALUES('820bac3afc22394e3052eff9a9bcdf88',0,253,'vtt');INSERT INTO "content_localfile" VALUES('2846e5b35ecdf52902947adb7a00b0f4',0,6670103,'mp4');INSERT INTO "content_localfile" VALUES('5eb031aba97c45e0c2ea6a83e59b3c8f',0,162671,'png');INSERT INTO "content_localfile" VALUES('0e3433d7fa9d88ad293097944d228971',0,132,'vtt');INSERT INTO "content_localfile" VALUES('3b60c6eee860fb67ec1c719dd0d4a0c3',0,121,'vtt');INSERT INTO "content_localfile" VALUES('094298bf67cc8c9e8ba095bee4cea250',0,58996148,'mp4');INSERT INTO "content_localfile" VALUES('dceb410970a006a99c5dddfd3f3d7335',0,155405,'png');INSERT INTO "content_localfile" VALUES('4853efe69d3371184b6d7ace0377252f',0,420,'vtt');INSERT INTO "content_localfile" VALUES('b369d3746d333222c0c35218ce15b8c5',0,409,'vtt');INSERT INTO "content_localfile" VALUES('50664fcfa846d6e1adb132806839ed91',0,6677681,'mp4');INSERT INTO "content_localfile" VALUES('12f6caeea50ec1995af7c1a9ca02f8b8',0,142897,'png');INSERT INTO "content_localfile" VALUES('be2c3325fa87942b0af2f2073cff8b3d',0,542,'vtt');INSERT INTO "content_localfile" VALUES('beb29d9d08d0efa1c19c3dcf9609b18c',0,510,'vtt');INSERT INTO "content_localfile" VALUES('b7cb1880c3dbde4318d3d2d24f12fb5d',0,480,'vtt');INSERT INTO "content_localfile" VALUES('c53a114e083622bbea41269995b5e2e9',0,4492942,'mp4');INSERT INTO "content_localfile" VALUES('c8d7fff79ae3a60e7ac8151e6111bf50',0,121830,'png');INSERT INTO "content_localfile" VALUES('eaba658cfa5ecb7f12254defee468cc2',0,1507,'vtt');INSERT INTO "content_localfile" VALUES('d79563f971b64b1a5df3edb632e3386b',0,968,'vtt');INSERT INTO "content_localfile" VALUES('00650c2dde1674ff73efb7152392e8a8',0,1071,'vtt');INSERT INTO "content_localfile" VALUES('c5a8b718c9ae3c58f0668edc7688f77c',0,15285941,'mp4');INSERT INTO "content_localfile" VALUES('03301a07691a08c2f38a169833cd8f84',0,135246,'png');INSERT INTO "content_localfile" VALUES('b3eab942ecced248cfecc27bd192b737',0,1413,'vtt');INSERT INTO "content_localfile" VALUES('c18bead9341364ef0b3f9e426f2a2953',0,1082,'vtt');INSERT INTO "content_localfile" VALUES('70ff39e0c55732d5d7d7175a8466502b',0,1049,'vtt');INSERT INTO "content_localfile" VALUES('de7b3abf5c51188da109da5a9fc7b16c',0,10472693,'mp4');INSERT INTO "content_localfile" VALUES('f1c0c426a1d718170690acfb8373cb94',0,179886,'png');INSERT INTO "content_localfile" VALUES('0675a050c3c644598cf48a9cda67f861',0,198,'vtt');INSERT INTO "content_localfile" VALUES('82f75328797541e72c240ac3f26afdbb',0,194,'vtt');INSERT INTO "content_localfile" VALUES('a4a3532ce70ee94c478a45bcc911bbd9',0,3651202,'mp4');INSERT INTO "content_localfile" VALUES('6e1d148b6f17c3230c9dca281c8c8f80',0,144695,'png');INSERT INTO "content_localfile" VALUES('fb528568a8955e02c252d926dda22c31',0,505,'vtt');INSERT INTO "content_localfile" VALUES('8c48f38e814849d22932943f4189a7e8',0,464,'vtt');INSERT INTO "content_localfile" VALUES('e4fcd64302dbd257d6af1a324c6807e6',0,8279060,'mp4');INSERT INTO "content_localfile" VALUES('a73414ca93c8f64823cadc30f59f0c7e',0,139947,'png');INSERT INTO "content_localfile" VALUES('b4bcf7e2f6ec4a72a5113330fc6f128a',0,449,'vtt');INSERT INTO "content_localfile" VALUES('320bf1a5f938a69a5fcfe43651858b57',0,388,'vtt');INSERT INTO "content_localfile" VALUES('3c0a7e77e0a128d978fe8cccd6df0ce1',0,4128321,'mp4');INSERT INTO "content_localfile" VALUES('dc675bee9630330496605ac24c8c3147',0,142134,'png');INSERT INTO "content_localfile" VALUES('c674eb399071b975ffee9b1bc829948b',0,517,'vtt');INSERT INTO "content_localfile" VALUES('966ffd3de667b55a97fc7550f64ae054',0,501,'vtt');INSERT INTO "content_localfile" VALUES('672681032e402434d01787add681005e',0,5993504,'mp4');INSERT INTO "content_localfile" VALUES('453a593510a338b079c348feb699f2df',0,172224,'png');INSERT INTO "content_localfile" VALUES('705e7a01d26221e25f906f902f5672a8',0,344,'vtt');INSERT INTO "content_localfile" VALUES('79e756c12b4d96c895a5a861e8c78603',0,310,'vtt');INSERT INTO "content_localfile" VALUES('4a3dd95d512ea320bd84325c67494542',0,9837738,'mp4');INSERT INTO "content_localfile" VALUES('d76d810db809fc0cdf272e1ef5b076a6',0,150637,'png');INSERT INTO "content_localfile" VALUES('9363b1fdca499e6177b6c3fe485a956d',0,1075,'vtt');INSERT INTO "content_localfile" VALUES('24462cf7ca2dded2b92cf84c12d9afd9',0,910,'vtt');INSERT INTO "content_localfile" VALUES('af58de826a47d1b2d848ed52d5b21d12',0,881,'vtt');INSERT INTO "content_localfile" VALUES('2dfb41979bead0993e8c33f04e3f2336',0,13631728,'mp4');INSERT INTO "content_localfile" VALUES('d3c4024e3578f40e4202a2935d40846c',0,150026,'png');INSERT INTO "content_localfile" VALUES('db27e0aaee03f548a9e245b465c1534d',0,851,'vtt');INSERT INTO "content_localfile" VALUES('74adef32fff725b16de500b0ceb8752f',0,639,'vtt');INSERT INTO "content_localfile" VALUES('7c7511084f178ff3999e223be2be5e50',0,657,'vtt');INSERT INTO "content_localfile" VALUES('aab194854433da800c6a7f973becdd4b',0,8781238,'mp4');INSERT INTO "content_localfile" VALUES('0605f1199f0da51558562492d809abbc',0,177876,'png');INSERT INTO "content_localfile" VALUES('dcf55791ff8710610d85cff89f1b91bf',0,1168,'vtt');INSERT INTO "content_localfile" VALUES('12ca092266cb64fa2f2d11f893a80f40',0,964,'vtt');INSERT INTO "content_localfile" VALUES('45cabfd36bea58ee98a43835b4212049',0,893,'vtt');INSERT INTO "content_localfile" VALUES('07c4d74bbd8a554643945fd20f9ddd56',0,17665455,'mp4');INSERT INTO "content_localfile" VALUES('b4cb09503575d413730e66b130dd628c',0,163466,'png');INSERT INTO "content_localfile" VALUES('ff877fef80c4fbcfebab1a5abc16a901',0,1292,'vtt');INSERT INTO "content_localfile" VALUES('a0a92a7b82ab8aadb4134050060b87ca',0,999,'vtt');INSERT INTO "content_localfile" VALUES('79b1d633d82679af846ffb9f39f6e0aa',0,950,'vtt');INSERT INTO "content_localfile" VALUES('327b3c347abef074d1352e377b47aa05',0,9749174,'mp4');INSERT INTO "content_localfile" VALUES('47a04dca863373024d3576cd9b6ef8d2',0,178067,'png');INSERT INTO "content_localfile" VALUES('9e8ebd517205ad6ca8fa71e8f24a5be1',0,991,'vtt');INSERT INTO "content_localfile" VALUES('bed20e28018c99e9c9054caeb74101a0',0,658,'vtt');INSERT INTO "content_localfile" VALUES('c8382d26ad634fa4a4351abde0875dc2',0,707,'vtt');INSERT INTO "content_localfile" VALUES('ca72508d9e32600f7167669f7e8d44f7',0,16720494,'mp4');INSERT INTO "content_localfile" VALUES('5070b77601c969b05be2d4184d584ac9',0,163017,'png');INSERT INTO "content_localfile" VALUES('1e126111bded671edc6b3128dd1dda5b',0,327,'vtt');INSERT INTO "content_localfile" VALUES('adf33f1047f7303b0505509ff18bae9c',0,255,'vtt');INSERT INTO "content_localfile" VALUES('2185e8a5e16db68969b9c68a6ebf3b1d',0,241,'vtt');INSERT INTO "content_localfile" VALUES('d6195cca0d081c6f0838739ca2566df5',0,3489735,'mp4');INSERT INTO "content_localfile" VALUES('71715d147c3d92f1330dba71e2475ab2',0,175585,'png');INSERT INTO "content_localfile" VALUES('8b5f524a7259086a956c6e2ec5141f01',0,1037,'vtt');INSERT INTO "content_localfile" VALUES('3aead6df85266bb9eda64a836ad14ddb',0,983,'vtt');INSERT INTO "content_localfile" VALUES('d4f7d7af720ad8aa926b2ea82fddb43b',0,25887064,'mp4');INSERT INTO "content_localfile" VALUES('9f0f601bd082c68f9174a753271e5870',0,122873,'png');INSERT INTO "content_localfile" VALUES('184cd4abef928ac368f805c0575ab779',0,704,'vtt');INSERT INTO "content_localfile" VALUES('c2b4ef73460338551c1ab108504fea50',0,672,'vtt');INSERT INTO "content_localfile" VALUES('ee517caccb5ed8b030dae0fc6e48dcf8',0,6005217,'mp4');INSERT INTO "content_localfile" VALUES('8d736392e0f0905fb52d71722bc8bcb2',0,142999,'png');INSERT INTO "content_localfile" VALUES('00363b03d8d8a07af576af6f05641efb',0,1411,'vtt');INSERT INTO "content_localfile" VALUES('82d5fce7a5baf17d112e83b00a06d203',0,842,'vtt');INSERT INTO "content_localfile" VALUES('cbd49bc2b675226a1211be85bf61bf65',0,809,'vtt');INSERT INTO "content_localfile" VALUES('0524ea2f61a8f4336027e8dd165de6ed',0,6371576,'mp4');INSERT INTO "content_localfile" VALUES('20b24df1abffdc203979784dbb11d7a4',0,194659,'png');INSERT INTO "content_localfile" VALUES('113ba7ccee35963151bc21d5cf287fa6',0,412,'vtt');INSERT INTO "content_localfile" VALUES('0d0ccb9288423b7752d710eeff6a021c',0,390,'vtt');INSERT INTO "content_localfile" VALUES('0e87e156b1ad4ada62e769dae3177d66',0,6957164,'mp4');INSERT INTO "content_localfile" VALUES('3c269e2a0cb926d3cbbca3ed1b69da79',0,174381,'png');INSERT INTO "content_localfile" VALUES('1d71becde278fe2c3991013261888288',0,417,'vtt');INSERT INTO "content_localfile" VALUES('cf5a76c1ac3c03da60f97e53e64ca9e8',0,375,'vtt');INSERT INTO "content_localfile" VALUES('ea7767fd96f68b201d77e3d97663080a',0,4385920,'mp4');INSERT INTO "content_localfile" VALUES('7bc8ad48048553ef82665960784ee337',0,205516,'png');INSERT INTO "content_localfile" VALUES('9d2534449629a6c85e52da4c74205e90',0,342,'vtt');INSERT INTO "content_localfile" VALUES('7a588e72d69f7d631e4184cee69628a0',0,315,'vtt');INSERT INTO "content_localfile" VALUES('4e0b5632daa39d858ecc985bff46da1b',0,6511111,'mp4');INSERT INTO "content_localfile" VALUES('558c6456f5ceb8fcc55434367818427d',0,136729,'png');INSERT INTO "content_localfile" VALUES('d0811c1493f5bfec818a39123a802ca8',0,475,'vtt');INSERT INTO "content_localfile" VALUES('cb92812036fe061ee8c1f5a30dfd2603',0,342,'vtt');INSERT INTO "content_localfile" VALUES('404e09b822537a8ea97eaa3a2914ae1c',0,353,'vtt');INSERT INTO "content_localfile" VALUES('1685cd30371a2582048c3ca18ad701b9',0,3019063,'mp4');INSERT INTO "content_localfile" VALUES('99ca043d3ef13d12ddfe742652d19e7e',0,147962,'png');INSERT INTO "content_localfile" VALUES('8a769260ccfdf13dacfff9f6fb6d3521',0,436,'vtt');INSERT INTO "content_localfile" VALUES('4582b5d727b41e33a74f398c06670012',0,315,'vtt');INSERT INTO "content_localfile" VALUES('016451159833587e136ab111af592714',0,335,'vtt');INSERT INTO "content_localfile" VALUES('8ec0061468ff0905c859b154a26cc3ab',0,7799370,'mp4');INSERT INTO "content_localfile" VALUES('c78461822cf69a1a063fa3554a3a7808',0,125231,'png');INSERT INTO "content_localfile" VALUES('46fd54167fba23aaad165b87d5b1cc73',0,295,'vtt');INSERT INTO "content_localfile" VALUES('ac2ef99d05ce4c2de348a4a6dd0b1146',0,293,'vtt');INSERT INTO "content_localfile" VALUES('153e70921da6faa6cd919e7a49b6a0dc',0,11879904,'mp4');INSERT INTO "content_localfile" VALUES('b0b7a7f1ffaddc9d6687d6f5b8f35aab',0,151220,'png');INSERT INTO "content_localfile" VALUES('411a774a2b3af4cf129e7649bce4b20c',0,1438,'vtt');INSERT INTO "content_localfile" VALUES('7041ea5db7290b2b03abe695aa021b45',0,1341,'vtt');INSERT INTO "content_localfile" VALUES('3bbb86fcec1264ef6a368088532d7a8e',0,17831021,'mp4');INSERT INTO "content_localfile" VALUES('c26d1647dbfed9e35c0d948e8d2f306d',0,161926,'png');INSERT INTO "content_localfile" VALUES('37515751118ae638e7ef45d1fc17f43d',0,430,'vtt');INSERT INTO "content_localfile" VALUES('d09b789b75095b3ab669b80c8e17c31d',0,406,'vtt');INSERT INTO "content_localfile" VALUES('cd1f22f4b9ed80eb63e7c583313d008d',0,8040778,'mp4');INSERT INTO "content_localfile" VALUES('575bec2607ba715480dacbfa37301ae3',0,138141,'png');INSERT INTO "content_localfile" VALUES('138b3616305b15cb9404f5e2e564b1c4',0,283,'vtt');INSERT INTO "content_localfile" VALUES('c85fb72cc6ed5cb8920a70affa89293c',0,290,'vtt');INSERT INTO "content_localfile" VALUES('3c96f28415c274e7dd055c0c6d016a34',0,25159982,'mp4');INSERT INTO "content_localfile" VALUES('8899c396d8fdccfd1cff73797644ffae',0,132059,'png');INSERT INTO "content_localfile" VALUES('bfb5006b182f60819f1ad3fc604f2098',0,290,'vtt');INSERT INTO "content_localfile" VALUES('989671deb36ad63a5099d07b02f29745',0,270,'vtt');INSERT INTO "content_localfile" VALUES('7a83e6d58bc9f291e6b210b8a770b443',0,7026407,'mp4');INSERT INTO "content_localfile" VALUES('97043f78580bfd8e7c5e44aabef00d8e',0,161593,'png');INSERT INTO "content_localfile" VALUES('5d4edcacc44630601b2a66f9426f3af6',0,446,'vtt');INSERT INTO "content_localfile" VALUES('779f70ea0b33293edb1045d722e544fa',0,420,'vtt');INSERT INTO "content_localfile" VALUES('3c5c3d0a00a5c354295bc58bd756c4c7',0,8110220,'mp4');INSERT INTO "content_localfile" VALUES('dae51d439ca1d7d4112c6b7cc5216e8c',0,154134,'png');INSERT INTO "content_localfile" VALUES('c3e450daa631265ca232b379156f5dac',0,54395660,'mp4');INSERT INTO "content_localfile" VALUES('c8594b387c2db0d467d28356079bd49e',0,154097,'png');INSERT INTO "content_localfile" VALUES('c20d55663379938a8e1414e2fbb6ea48',0,386,'vtt');INSERT INTO "content_localfile" VALUES('91ddbdae2f6c8dccb005325d6cbcd2d8',0,336,'vtt');INSERT INTO "content_localfile" VALUES('2f484fb4dcbd06a8f89b64ee8578a9bd',0,28046529,'mp4');INSERT INTO "content_localfile" VALUES('4ddffd12646c37878ba400eba9829c7a',0,157619,'png');INSERT INTO "content_localfile" VALUES('255b8f3e7d3439f5a6dbcca34918e02e',0,762,'vtt');INSERT INTO "content_localfile" VALUES('1d1029eb725c1e49deafc3374e59a842',0,704,'vtt');INSERT INTO "content_localfile" VALUES('d22b64885d9683859a9ad4dada25cbc2',0,7005032,'mp4');INSERT INTO "content_localfile" VALUES('d6cb455889a2fa6bca6b60923eec261a',0,134614,'png');INSERT INTO "content_localfile" VALUES('524c08b2a813c1db31b659f563db8f73',0,971,'vtt');INSERT INTO "content_localfile" VALUES('ea46e262432ba6d83ea8ee77a79a46e1',0,897,'vtt');INSERT INTO "content_localfile" VALUES('66bc50369ba39b7e49dfabdd4319203c',0,14375945,'mp4');INSERT INTO "content_localfile" VALUES('56307eb674c2d5d690100147ed0903b5',0,129791,'png');INSERT INTO "content_localfile" VALUES('bd94c79ff4d6b040d729dd0378c279ab',0,568,'vtt');INSERT INTO "content_localfile" VALUES('3e0c7f4e22978f5ba31794f13299abaa',0,558,'vtt');INSERT INTO "content_localfile" VALUES('16aa9ff7057e7c2bb13c275e85784eb9',0,5252162,'mp4');INSERT INTO "content_localfile" VALUES('3fad219d3bbdf99a2bca49e5c58ae81c',0,15998,'jpg');INSERT INTO "content_localfile" VALUES('736a92d42c826149f4d9e12560a0930a',0,301701,'zip');INSERT INTO "content_localfile" VALUES('fb49cbb97cd18865a7d8a1a8c73fa411',0,159638,'png');INSERT INTO "content_localfile" VALUES('8ca3bb373d89d7f14c69882d86a06b77',0,605,'vtt');INSERT INTO "content_localfile" VALUES('7b981b40ded11ce06144940070d148b3',0,568,'vtt');INSERT INTO "content_localfile" VALUES('1dccc0d10d5476ecf84355844f0e362b',0,8616418,'mp4');INSERT INTO "content_localfile" VALUES('6b370fcd873eb8c4079b17750b71b53f',0,173201,'png');INSERT INTO "content_localfile" VALUES('a1b8ac5116018ca7daadfdc523301075',0,29928254,'mp4');INSERT INTO "content_localfile" VALUES('139ca9933097e6a236441f6cbbc0d81c',0,137994,'png');INSERT INTO "content_localfile" VALUES('6ed461d705dc7a41dff82bf83e72bed4',0,592,'vtt');INSERT INTO "content_localfile" VALUES('d0fe408c02ee5e933909efa806a129f6',0,537,'vtt');INSERT INTO "content_localfile" VALUES('a91dd27c8f3db310f0693b1e221c7255',0,553,'vtt');INSERT INTO "content_localfile" VALUES('17cf5bf4e3169d69e8f31dc7d4483c92',0,9017613,'mp4');INSERT INTO "content_localfile" VALUES('76b4c6740afa62d8640bc3e3c35d02d7',0,124805,'png');INSERT INTO "content_localfile" VALUES('3f7acb74a488695aa17958a991ebd896',0,362,'vtt');INSERT INTO "content_localfile" VALUES('5f4395b15a281d5a0051e2f1700ea4d5',0,369,'vtt');INSERT INTO "content_localfile" VALUES('544a4062a60413b181445ee02790cd0d',0,366,'vtt');INSERT INTO "content_localfile" VALUES('ca01eadc651c2d210976d9c9c76b1dc9',0,3530998,'mp4');INSERT INTO "content_localfile" VALUES('977a35853d68b8a99b9459d4a00db9a4',0,125048,'png');INSERT INTO "content_localfile" VALUES('283a3e1e9f55048ff93c316aeadfb6ae',0,419,'vtt');INSERT INTO "content_localfile" VALUES('736b1cb9ee3191e27216e61b15082b76',0,361,'vtt');INSERT INTO "content_localfile" VALUES('2208715dab5b6b3cc7f778cba0efe95a',0,362,'vtt');INSERT INTO "content_localfile" VALUES('f48a69937b6acb42abac616bc591e185',0,3298942,'mp4');INSERT INTO "content_localfile" VALUES('e3f5e47fce54c075e8eb6a52b5c79ae4',0,116482,'png');INSERT INTO "content_localfile" VALUES('76c4d324f3644b9a1c2fb0860e1cd8e9',0,1037,'vtt');INSERT INTO "content_localfile" VALUES('6eb27b1eec8b2594e9c77fba3003370f',0,1003,'vtt');INSERT INTO "content_localfile" VALUES('e9d243d216086599e081a9b27fe57bf4',0,1046,'vtt');INSERT INTO "content_localfile" VALUES('717d1baf484d9c2769cac00343b59270',0,12117658,'mp4');INSERT INTO "content_localfile" VALUES('8c2f1e77476c01cdcaf73272be8fe561',0,134822,'png');INSERT INTO "content_localfile" VALUES('bf9afd8d4cc81e2418ecec81ec838077',0,754,'vtt');INSERT INTO "content_localfile" VALUES('cb16207c5330c8a6b7b4e721d96c6a94',0,674,'vtt');INSERT INTO "content_localfile" VALUES('acee720db7a66e5c7cb5e44caf6a894f',0,749,'vtt');INSERT INTO "content_localfile" VALUES('1105a5821e620d3004707964e22449f5',0,14372086,'mp4');INSERT INTO "content_localfile" VALUES('cd58809413e00a523f91e9b94d306374',0,157955,'png');INSERT INTO "content_localfile" VALUES('d8472ed0f540e7778df5bcf469d4ed35',0,471,'vtt');INSERT INTO "content_localfile" VALUES('1f97bcba18b0bb8ad2584bfe5163390d',0,459,'vtt');INSERT INTO "content_localfile" VALUES('ed52b5f9ae943a5e471ae8f765f38cc1',0,7840094,'mp4');INSERT INTO "content_localfile" VALUES('a57ba42a8a113e5c82486985ba3f5103',0,130812,'png');INSERT INTO "content_localfile" VALUES('9ffeda86483adfef4ddc9f1e05a14bba',0,264,'vtt');INSERT INTO "content_localfile" VALUES('f14228ff5886feff0730bf426549a950',0,241,'vtt');INSERT INTO "content_localfile" VALUES('7b07f8b48271636597fd746b5516f12a',0,14599450,'mp4');INSERT INTO "content_localfile" VALUES('015b1e7fbec025d2d7bc9bb71af9d9cc',0,115342,'png');INSERT INTO "content_localfile" VALUES('39c6766a911d65a8086470677d6bd7cd',0,203,'vtt');INSERT INTO "content_localfile" VALUES('995db320b7d841ee2bd115865988ab81',0,206,'vtt');INSERT INTO "content_localfile" VALUES('6788c697a205a28f3058add895292e06',0,10401144,'mp4');INSERT INTO "content_localfile" VALUES('a2ec3eefe3b412e9c67bbd1ba38e2d4c',0,110748,'png');INSERT INTO "content_localfile" VALUES('9708b358ee29e369da44623c62e1c71c',0,229,'vtt');INSERT INTO "content_localfile" VALUES('8537d4b82a99170844636213f055bc6f',0,222,'vtt');INSERT INTO "content_localfile" VALUES('cc9821b64c3798b4507bbd610e9eb8ad',0,10443327,'mp4');INSERT INTO "content_localfile" VALUES('a79d0ae05f216a85245375d02b25f33f',0,102590,'png');INSERT INTO "content_localfile" VALUES('da08c5ddce6adc9f2375059201e87ac7',0,248,'vtt');INSERT INTO "content_localfile" VALUES('648cc5997d673a5125eb83e6692f5c3a',0,233,'vtt');INSERT INTO "content_localfile" VALUES('122e10bd9a4e95378afc407762a86a34',0,2249916,'mp4');INSERT INTO "content_localfile" VALUES('8516025b6e0535d7e0165e45a6c82fa9',0,134768,'png');INSERT INTO "content_localfile" VALUES('92972ca01b1f103ca73f66a9df51d79a',0,390,'vtt');INSERT INTO "content_localfile" VALUES('94ae0f6581b72b36e70bcccf0483ba95',0,380,'vtt');INSERT INTO "content_localfile" VALUES('e189f6fe4d1d5b4b06f18a8f61c5b20a',0,33738927,'mp4');INSERT INTO "content_localfile" VALUES('aa001b4593c1fc31c7dd747a611c708d',0,111192,'png');INSERT INTO "content_localfile" VALUES('5bd070a371f9d19a0e03bb0643abd80f',0,592,'vtt');INSERT INTO "content_localfile" VALUES('625c574fd4ec8493fa86f51453e9f749',0,528,'vtt');INSERT INTO "content_localfile" VALUES('4533617df1c4de49fd6afc2f09e49e16',0,6261600,'mp4');INSERT INTO "content_localfile" VALUES('89ee4aa69785fe864be6c5fe34aea702',0,142447,'png');INSERT INTO "content_localfile" VALUES('541cc3758046dbadac25e7a37f8e9db6',0,690,'vtt');INSERT INTO "content_localfile" VALUES('4bbae95fbe0838c5093937277bfec9f8',0,619,'vtt');INSERT INTO "content_localfile" VALUES('0fc70fa89b60511ea8eed5398eed2dc5',0,8876787,'mp4');INSERT INTO "content_localfile" VALUES('52b1ff6590012f4050f0b54ba2f3b070',0,112655,'png');INSERT INTO "content_localfile" VALUES('824845a4feb8cceb7db7f5e585fafb05',0,223491588,'mp4');INSERT INTO "content_localfile" VALUES('acb47851d6013108b4390fa8a63412bf',0,134050,'png');INSERT INTO "content_localfile" VALUES('055fee222568166e64111b8dc4a56340',0,524,'vtt');INSERT INTO "content_localfile" VALUES('9c246edad116ced3ef1a125567d6ccce',0,466,'vtt');INSERT INTO "content_localfile" VALUES('673879e7d9a6cb4e0aa980ddcca8635d',0,6357235,'mp4');INSERT INTO "content_localfile" VALUES('917fd996b280a844d9e73fab29dcf264',0,123156,'png');INSERT INTO "content_localfile" VALUES('08bba1c6f689a58929f5a1232c9a073a',0,415,'vtt');INSERT INTO "content_localfile" VALUES('24a66e78eeb9d8a6eedf3e6d0ce4cbf6',0,394,'vtt');INSERT INTO "content_localfile" VALUES('88f59b7b57612cad0086b586593967bb',0,4454248,'mp4');INSERT INTO "content_localfile" VALUES('820520b34b068ff891fe331e8aee4b5b',0,141799,'png');INSERT INTO "content_localfile" VALUES('f56cf710e5eee280ed50ac00a0882ce1',0,512,'vtt');INSERT INTO "content_localfile" VALUES('1e0afa22081c370315856a35f4d3a55b',0,477,'vtt');INSERT INTO "content_localfile" VALUES('2ceee878ee277a54a4ca3be79961abbf',0,5920379,'mp4');INSERT INTO "content_localfile" VALUES('d2b3d8bb2d00381ebd1886cbccaff599',0,135474,'png');INSERT INTO "content_localfile" VALUES('2ad40b60e7984279b04bad5f13a1d279',0,489,'vtt');INSERT INTO "content_localfile" VALUES('30b359ae2062b6ec983708d9979470ee',0,433,'vtt');INSERT INTO "content_localfile" VALUES('262e706cd967cec58ea2f39bb0c8d71d',0,4809271,'mp4');INSERT INTO "content_localfile" VALUES('e9d02d197f6cce96c19e663f318ddf7d',0,122187,'png');INSERT INTO "content_localfile" VALUES('d9a0f21c02e5d2316c03b0e4c37088f2',0,398,'vtt');INSERT INTO "content_localfile" VALUES('06ed63f22614610966af0f11a798d62a',0,364,'vtt');INSERT INTO "content_localfile" VALUES('45e69c8850c22cb567bcd7ca21cb4c34',0,5819201,'mp4');INSERT INTO "content_localfile" VALUES('393fb853d0dacacf6c0c23795cb37ada',0,130274,'png');INSERT INTO "content_localfile" VALUES('02cf2721d6ed3c3d6bbfe6bbf1f80df2',0,687,'vtt');INSERT INTO "content_localfile" VALUES('9b67efac5d2d6fcc9c7bbd8d46dbfffe',0,624,'vtt');INSERT INTO "content_localfile" VALUES('379f3683d7b5075c00e62cfcf70a3b6b',0,8849832,'mp4');INSERT INTO "content_localfile" VALUES('2c06d06ab0ddb39aa9330d9c4b81a570',0,113476,'png');INSERT INTO "content_localfile" VALUES('a5a71ebbfabd3ac54dd28a1fe3d3dd78',0,372,'vtt');INSERT INTO "content_localfile" VALUES('e59507d5caacf8e4662775720a10eedc',0,348,'vtt');INSERT INTO "content_localfile" VALUES('13e51d0bc15162857d5ce87d66052e93',0,2557465,'mp4');INSERT INTO "content_localfile" VALUES('1902d0f7997d0ff82591509296cabd78',0,126342,'png');INSERT INTO "content_localfile" VALUES('53bfd8093b2975fc754458e928d84b6c',0,850,'vtt');INSERT INTO "content_localfile" VALUES('d520ddd46ac254f7ba6a7975b8b427ad',0,802,'vtt');INSERT INTO "content_localfile" VALUES('9e60631cbe4d17cacac59578172f21b8',0,16549017,'mp4');INSERT INTO "content_localfile" VALUES('42b1802b6acd311947eb2fafa99acf29',0,126599,'png');INSERT INTO "content_localfile" VALUES('cca0addc36b26a3351522115ce551a06',0,341,'vtt');INSERT INTO "content_localfile" VALUES('f933b22c9fb785ce16a133c2cd19936f',0,300,'vtt');INSERT INTO "content_localfile" VALUES('b806467f9a09d0b5390c8927d502436d',0,10702195,'mp4');INSERT INTO "content_localfile" VALUES('07326a92f856f017278a2d83070b72cd',0,176742,'png');INSERT INTO "content_localfile" VALUES('9ea17586b3f2f0ca8bc7ab899ec8f055',0,1029,'vtt');INSERT INTO "content_localfile" VALUES('2dee4c9740626449845933bcfcdf6b51',0,950,'vtt');INSERT INTO "content_localfile" VALUES('90d52d993335c5001f7b015d21c4fd50',0,23351496,'mp4');INSERT INTO "content_localfile" VALUES('7c3c59f0322ab97b586a0a1384d08343',0,111504,'png');INSERT INTO "content_localfile" VALUES('a1477da82f45e776b7f889b67358e761',0,469,'vtt');INSERT INTO "content_localfile" VALUES('99d24a5240d64e505a6343f50f851d2e',0,550,'vtt');INSERT INTO "content_localfile" VALUES('f589321457f81efd035bb72cb57a1b3b',0,473,'vtt');INSERT INTO "content_localfile" VALUES('43287b7a3a8b2d08eaece310eb943884',0,19753079,'mp4');INSERT INTO "content_localfile" VALUES('b447700e286bc336eb57212f734dc413',0,148922,'png');INSERT INTO "content_localfile" VALUES('379bac76460188eddb558c12c7b5afff',0,1141,'vtt');INSERT INTO "content_localfile" VALUES('c0628c218ae4ead94cf60d318899c01c',0,1295,'vtt');INSERT INTO "content_localfile" VALUES('f227c5f14c07ffbdb0c03e6dcff0f333',0,1187,'vtt');INSERT INTO "content_localfile" VALUES('860d0006adde0f80163e114347d29fe3',0,29369130,'mp4');INSERT INTO "content_localfile" VALUES('d7b89874da2cc22efca48fd44de25f1f',0,142709,'png');INSERT INTO "content_localfile" VALUES('f796aaddd76eb886398af08284319913',0,1265,'vtt');INSERT INTO "content_localfile" VALUES('e2f3843f08b160dff90b6b052f4ecb3c',0,1096,'vtt');INSERT INTO "content_localfile" VALUES('778cfd0f1daf4f5d1fbd7bb2cb8b42b7',0,13209052,'mp4');INSERT INTO "content_localfile" VALUES('664c3495b09976541c1e45dc70188b46',0,140286,'png');INSERT INTO "content_localfile" VALUES('ebce0d741b4aaa50b53eeb42102f6046',0,451,'vtt');INSERT INTO "content_localfile" VALUES('ffe1cd1bb6edf3afed4a7efcaf90dbee',0,466,'vtt');INSERT INTO "content_localfile" VALUES('4b528aad231db69741e98342f5a71643',0,434,'vtt');INSERT INTO "content_localfile" VALUES('37e7e637ba7f180beebe1f72d9f9fa44',0,12529585,'mp4');INSERT INTO "content_localfile" VALUES('acf5ec6b9957812bb28fb6b96592ed03',0,129763,'png');INSERT INTO "content_localfile" VALUES('61f783dfed81170670344fddbbc6a1ec',0,220,'vtt');INSERT INTO "content_localfile" VALUES('e137a03a650b31f9aca8bf5832d76c6e',0,198,'vtt');INSERT INTO "content_localfile" VALUES('3a3bfb03da74bd934c834776ee937bdc',0,1550738,'mp4');INSERT INTO "content_localfile" VALUES('22c32d10504b39251edfbf31244ec344',0,121513,'png');INSERT INTO "content_localfile" VALUES('b52492b257b65ae5cfd15e229cbd5e3a',0,824,'vtt');INSERT INTO "content_localfile" VALUES('ba61250365885af1ade648eee32ce661',0,761,'vtt');INSERT INTO "content_localfile" VALUES('820f007c2a7bea299e246bf69490164a',0,30511654,'mp4');INSERT INTO "content_localfile" VALUES('63cacf5f05e6e1a336b5033c85853677',0,96279,'png');INSERT INTO "content_localfile" VALUES('fed199e843edee09f258bee97b1a0864',0,324,'vtt');INSERT INTO "content_localfile" VALUES('c3d4e72ab447d6021cada4819b1834bf',0,277,'vtt');INSERT INTO "content_localfile" VALUES('e22a29ba67935b7d765fd6ee77d002a2',0,28562049,'mp4');INSERT INTO "content_localfile" VALUES('b8bc3031215b3be9ef9ab9a51e0c4948',0,192901,'png');INSERT INTO "content_localfile" VALUES('0c7c9491d196c3eb94093f3ed74b8f74',0,887,'vtt');INSERT INTO "content_localfile" VALUES('956b37f9112b692d01ce49ee0101273e',0,824,'vtt');INSERT INTO "content_localfile" VALUES('49dbd8e067c460f317689495867b68eb',0,25622995,'mp4');INSERT INTO "content_localfile" VALUES('87e36616c7757c10c4b478829a415a9a',0,106497,'png');INSERT INTO "content_localfile" VALUES('2a5dc2b507139b9e937be106c68f26e9',0,263,'vtt');INSERT INTO "content_localfile" VALUES('e894efe08cfd8c69ec8e1ffb927dc421',0,246,'vtt');INSERT INTO "content_localfile" VALUES('5ebe60363081b0eb0368756fed27f72a',0,4488659,'mp4');INSERT INTO "content_localfile" VALUES('3c76795e7f619dce0715555bda249b34',0,134245,'png');INSERT INTO "content_localfile" VALUES('0a14298746617794df4d46f7e9199573',0,410,'vtt');INSERT INTO "content_localfile" VALUES('e5cf39b4f3fecea15c3e924b5708fa6c',0,380,'vtt');INSERT INTO "content_localfile" VALUES('001f35d125c16f6ac1069f6ee87d5cdc',0,4340807,'mp4');INSERT INTO "content_localfile" VALUES('8ed983d2b28a5d7d9c7be37acc6b60b4',0,144170,'png');INSERT INTO "content_localfile" VALUES('82dfa6e1767445b3d20c943cc5688f1e',0,365,'vtt');INSERT INTO "content_localfile" VALUES('c5d9cd48648c78205c3c2c290bb839a8',0,333,'vtt');INSERT INTO "content_localfile" VALUES('37a40f56df7714c57f527588a45a22ac',0,16956541,'mp4');INSERT INTO "content_localfile" VALUES('c9b54ae34297b931c96773f204a65ab4',0,152224,'png');INSERT INTO "content_localfile" VALUES('a504cbe385271662ebea158d8c89cfcc',0,2206,'vtt');INSERT INTO "content_localfile" VALUES('8e35b766ea7899fa2d1cf9cebea93935',0,2024,'vtt');INSERT INTO "content_localfile" VALUES('dd882c1eb87e736d2131b992cbb397c0',0,27066761,'mp4');INSERT INTO "content_localfile" VALUES('e92775a08ba1dab1ca97323623e95f5a',0,164108,'png');INSERT INTO "content_localfile" VALUES('2eade12efb2a408b6c7640d1caead4d8',0,1525,'vtt');INSERT INTO "content_localfile" VALUES('c207172a51f24be79e5baaebf05b8d1a',0,1465,'vtt');INSERT INTO "content_localfile" VALUES('a3a7754d4b0c540b1a02bf15d9c0e595',0,24895072,'mp4');INSERT INTO "content_localfile" VALUES('799b3d3488aa2bb799126a9dbc3ca9a0',0,185429,'png');INSERT INTO "content_localfile" VALUES('4e7d6baecbabab6940a09839879e3e75',0,575,'vtt');INSERT INTO "content_localfile" VALUES('49f9860d41185a1073bb1e56946c3e60',0,509,'vtt');INSERT INTO "content_localfile" VALUES('d420c1759ad2139479e9f882558481f2',0,10630144,'mp4');INSERT INTO "content_localfile" VALUES('03db23b177fda12e5c53586246b60170',0,152985,'png');INSERT INTO "content_localfile" VALUES('5f15f5f9b0b0c872aaca5395a98427f7',0,741,'vtt');INSERT INTO "content_localfile" VALUES('fb3bef4012596b16013aa256574a0e06',0,647,'vtt');INSERT INTO "content_localfile" VALUES('2a24ae5ced2cad4478856d2b4799c6e6',0,10858815,'mp4');INSERT INTO "content_localfile" VALUES('007f546932912572c9291e61bc0e4f49',0,123240,'png');INSERT INTO "content_localfile" VALUES('b65475aa1f759775c7444f4d87a5fe5c',0,1197,'vtt');INSERT INTO "content_localfile" VALUES('ae252fd81b9508d17dc1e7a99f6e954c',0,1039,'vtt');INSERT INTO "content_localfile" VALUES('a6febf4007f2f69f67597eaafcff9e3f',0,7561213,'mp4');INSERT INTO "content_localfile" VALUES('48635095d7fc6df5aefed7f3b8406d31',0,133893,'png');INSERT INTO "content_localfile" VALUES('253d333a7a5ce00a925e4238b467bb88',0,581,'vtt');INSERT INTO "content_localfile" VALUES('ed6bac8848a23dee16e9ff573cd70562',0,510,'vtt');INSERT INTO "content_localfile" VALUES('9b77c78164d7ce8477cfa56718ea3659',0,7330021,'mp4');INSERT INTO "content_localfile" VALUES('b1d15c5ec34651e5672a5d731978ab9d',0,123576,'png');INSERT INTO "content_localfile" VALUES('e8955b3464238306446f6333dc3d8ef2',0,1537,'vtt');INSERT INTO "content_localfile" VALUES('9cf67b57b11e441119328abe25dd3756',0,1415,'vtt');INSERT INTO "content_localfile" VALUES('e786932a825cdee3a6e514b63453d44f',0,10903521,'mp4');INSERT INTO "content_localfile" VALUES('f73b12c5dbc8dff8119306f7d20f6157',0,153123,'png');INSERT INTO "content_localfile" VALUES('b69830730a52f616245d13ac4db29f28',0,313,'vtt');INSERT INTO "content_localfile" VALUES('c851b7918302ff525d1adae7d7adc562',0,309,'vtt');INSERT INTO "content_localfile" VALUES('5bbbb5d02dfebc79d328aa4e15cce70b',0,3839174,'mp4');INSERT INTO "content_localfile" VALUES('7a04db7fd04d33059fe46304e4e2be11',0,167244,'png');INSERT INTO "content_localfile" VALUES('d5adea7e173146ba7aa7f7d5a707bcd3',0,477,'vtt');INSERT INTO "content_localfile" VALUES('0f8b3730e1cd231d156e1b08bdb32abf',0,463,'vtt');INSERT INTO "content_localfile" VALUES('ac144026163c25366d346b4989ee608c',0,6675700,'mp4');INSERT INTO "content_localfile" VALUES('08fa710a783d2d6b722ab5686848dbba',0,154162,'png');INSERT INTO "content_localfile" VALUES('46639b7306a4ae73d376ebb8996b0275',0,560,'vtt');INSERT INTO "content_localfile" VALUES('562bbaab5824cf744e579acd0aeb108b',0,526,'vtt');INSERT INTO "content_localfile" VALUES('8a8e94342ec596b47c70887b12ab21cb',0,7871000,'mp4');INSERT INTO "content_localfile" VALUES('b7587b4a5074030fbf05d87f26f698d4',0,128705,'png');INSERT INTO "content_localfile" VALUES('eb52c672f2cf244a2cab5ff2638d4585',0,1256,'vtt');INSERT INTO "content_localfile" VALUES('b93a2b7561764baaa160a87bd98f3c2e',0,1168,'vtt');INSERT INTO "content_localfile" VALUES('98ee1f28243dc27fb55caedbee244101',0,14643303,'mp4');INSERT INTO "content_localfile" VALUES('f3be0eb178cc81e6b002aef8306a9957',0,9802,'png');INSERT INTO "content_localfile" VALUES('bf52f66666b974179b4818c1d0ba2d65',0,422,'vtt');INSERT INTO "content_localfile" VALUES('1ceeeef0205fa6b193f5f2f1cfae5b24',0,386,'vtt');INSERT INTO "content_localfile" VALUES('19f8c099c233710aa1e1193d72c80019',0,5294845,'mp4');INSERT INTO "content_localfile" VALUES('94d706e24b7ef5ec0f86f7116db57f2a',0,174907,'png');INSERT INTO "content_localfile" VALUES('7decc6e38241ca3e9d4a81cb71adc822',0,1162,'vtt');INSERT INTO "content_localfile" VALUES('f0217d94c258d30f5fe7c3d63bd152ec',0,1118,'vtt');INSERT INTO "content_localfile" VALUES('3e2a7b906330d40efaf0b18426a77266',0,13510860,'mp4');INSERT INTO "content_localfile" VALUES('10c580f5b83e833706c9df8a6642d23d',0,163567,'png');INSERT INTO "content_localfile" VALUES('2bd7f8266faa43fd04b210ef7c5a20bb',0,1465,'vtt');INSERT INTO "content_localfile" VALUES('95a5744be477b1ae39175c7d6a47a680',0,1171,'vtt');INSERT INTO "content_localfile" VALUES('8159cad5c30270965dfb3de7e18e674a',0,1108,'vtt');INSERT INTO "content_localfile" VALUES('41196a4e7047a2c0c829aea3a717c0b3',0,12104141,'mp4');INSERT INTO "content_localfile" VALUES('f1cd5db2c69c62351c356a0ec138101d',0,159804,'png');INSERT INTO "content_localfile" VALUES('b85648159abb1e850b09184812718ff2',0,832,'vtt');INSERT INTO "content_localfile" VALUES('7c427b73e0c92fb76a73dbedf4352eaf',0,780,'vtt');INSERT INTO "content_localfile" VALUES('46c03e30c6a2846d9416ea925887440a',0,7861291,'mp4');INSERT INTO "content_localfile" VALUES('59d8b938b75eb34068fb0b1d39784b65',0,139886,'png');INSERT INTO "content_localfile" VALUES('e3960659955ff00cb6c657b46c7fdf4e',0,458,'vtt');INSERT INTO "content_localfile" VALUES('fbcc37ceec34eab1f8e4832053634302',0,431,'vtt');INSERT INTO "content_localfile" VALUES('deee3369d48d904d0835e01c4e5243e6',0,4420512,'mp4');INSERT INTO "content_localfile" VALUES('efd9a114cd7aa620b4d11a3a7d845375',0,150530,'png');INSERT INTO "content_localfile" VALUES('039232061b935e98e43450d26076a5d2',0,598,'vtt');INSERT INTO "content_localfile" VALUES('c84fdebcf02c25867e934911e960b6a9',0,569,'vtt');INSERT INTO "content_localfile" VALUES('eb9a35e7cf71d83e587b07686360aeeb',0,8409726,'mp4');INSERT INTO "content_localfile" VALUES('fce24d5da4f30a4d3aa3b6b2e83c7be9',0,188221,'png');INSERT INTO "content_localfile" VALUES('a482a1750b10c6cef3cdc9010c38130a',0,1529,'vtt');INSERT INTO "content_localfile" VALUES('6ee4f391d8cf17a998901fb6138ce6f4',0,986,'vtt');INSERT INTO "content_localfile" VALUES('2cc11060fdf5e6d046adf2e1af2bf650',0,894,'vtt');INSERT INTO "content_localfile" VALUES('54b3eb04d623fa233bc32771a8095ab7',0,19305970,'mp4');INSERT INTO "content_localfile" VALUES('dd347455df8fe810f05afafe6f5890d3',0,142583,'png');INSERT INTO "content_localfile" VALUES('268cf36c7d44d081c9019f904bbb6f24',0,602,'vtt');INSERT INTO "content_localfile" VALUES('e0a0851133abbba390ad22bf698da4b2',0,613,'vtt');INSERT INTO "content_localfile" VALUES('97eb0bd326ca22e4578401b86daa3bf5',0,8242387,'mp4');INSERT INTO "content_localfile" VALUES('68f8993747e8c9243857e59325d4b197',0,144429,'png');INSERT INTO "content_localfile" VALUES('babba9db07d309f74f5feb3b751238f0',0,358,'vtt');INSERT INTO "content_localfile" VALUES('51799f0c787dfc4495ea045eb42d97d2',0,311,'vtt');INSERT INTO "content_localfile" VALUES('69095d453311fa82a87aa14230735177',0,4119899,'mp4');INSERT INTO "content_localfile" VALUES('1ad6cdf2a24c3287a2c5d01f091f9979',0,151914,'png');INSERT INTO "content_localfile" VALUES('97cc8a23d4b3cb7c8901106180b0a17f',0,206,'vtt');INSERT INTO "content_localfile" VALUES('e6ee0a1a6d60735679e3ecc7bd435575',0,197,'vtt');INSERT INTO "content_localfile" VALUES('edc8aefbee3f77f0608828f6ae46977c',0,2757135,'mp4');INSERT INTO "content_localfile" VALUES('339805974469d2bc51925a520a4bdaa6',0,99883,'png');INSERT INTO "content_localfile" VALUES('1f2469c07778b1ceba0eb8ce59d4dddc',0,405,'vtt');INSERT INTO "content_localfile" VALUES('57c16cee50e411fdf7b9de633467e591',0,376,'vtt');INSERT INTO "content_localfile" VALUES('64e5ee7461a533f651facc69787cd471',0,4863482,'mp4');INSERT INTO "content_localfile" VALUES('ea0ff770258534b20958cd1ac5ba761a',0,150571,'png');INSERT INTO "content_localfile" VALUES('e63ef3101758460328fafbaac4fec3fc',0,571,'vtt');INSERT INTO "content_localfile" VALUES('cea481fc1425b9cd8908493ac6eb6467',0,566,'vtt');INSERT INTO "content_localfile" VALUES('ccb2d5312730f6dbfa594156bc721923',0,7125668,'mp4');INSERT INTO "content_localfile" VALUES('424c8a79ffd0c9605b02dcc25d6622d7',0,74596,'png');INSERT INTO "content_localfile" VALUES('9a25b11f4ae8cc1750f280f87df26938',0,287,'vtt');INSERT INTO "content_localfile" VALUES('046145c3e11c2cf7a0d10329b5d89ae1',0,270,'vtt');INSERT INTO "content_localfile" VALUES('ee51dc00b20c28dbc4e96b7f134806f2',0,4067699,'mp4');INSERT INTO "content_localfile" VALUES('f73de9fa9222d591e694d9bef3a52f7e',0,67390,'png');INSERT INTO "content_localfile" VALUES('a2fc3bcf2cd7bac1562e35619324983f',0,443,'vtt');INSERT INTO "content_localfile" VALUES('347ff0f5d68df8ad49f7ccc05dff583d',0,411,'vtt');INSERT INTO "content_localfile" VALUES('e47992245922f3c70ede499f3c7ecbbf',0,2989316,'mp4');INSERT INTO "content_localfile" VALUES('8a12b8f13c905d29dff2210eec7b4195',0,145129,'png');INSERT INTO "content_localfile" VALUES('26b44cee4902a0b2ad29b36766fe3654',0,573,'vtt');INSERT INTO "content_localfile" VALUES('e7caabd6ca0be8cf4c4075d36c70048f',0,532,'vtt');INSERT INTO "content_localfile" VALUES('690d608b77d6b8b5f756b4f17a28db71',0,8930566,'mp4');INSERT INTO "content_localfile" VALUES('d0a38fbe877a8c7d4e66cfe5d498f2db',0,145126,'png');INSERT INTO "content_localfile" VALUES('3ce42ace2bb33574c54d173065a44941',0,358,'vtt');INSERT INTO "content_localfile" VALUES('c55dcf1dc6ac445f16ea4d63bff61906',0,311,'vtt');INSERT INTO "content_localfile" VALUES('8ccf1b432bd3dbcc98867704618343dc',0,5045674,'mp4');INSERT INTO "content_localfile" VALUES('e89a03956c1207876d43493118ccac16',0,1724,'png');INSERT INTO "content_localfile" VALUES('89ea1acc1755987d8b6a504b0da6730a',0,549,'vtt');INSERT INTO "content_localfile" VALUES('2010fd6e5de6b1ec29eb3ad16db29d91',0,526,'vtt');INSERT INTO "content_localfile" VALUES('a2d3504862aedf34143ca88d9d50427d',0,5326814,'mp4');INSERT INTO "content_localfile" VALUES('ce6c8c96245dadad8bf6124c2cb31d0e',0,126745,'png');INSERT INTO "content_localfile" VALUES('4b615c2acd1b1eca41432bc03215a5fd',0,532,'vtt');INSERT INTO "content_localfile" VALUES('940cb73d919e3c929ade0253057f826b',0,511,'vtt');INSERT INTO "content_localfile" VALUES('b362789de2648dff35801335deeeadcf',0,6955373,'mp4');INSERT INTO "content_localfile" VALUES('24232e9b3cf518f7c9b5b6bfc12eba9c',0,141021,'png');INSERT INTO "content_localfile" VALUES('b27946a105f59ee04c6e3ee1d1256a7c',0,324,'vtt');INSERT INTO "content_localfile" VALUES('57fd7d5f454460140aa13900b11d5abb',0,322,'vtt');INSERT INTO "content_localfile" VALUES('803c9569e2c57e537b3a86dfd40f629f',0,2788258,'mp4');INSERT INTO "content_localfile" VALUES('2672d203d642b8cf62a4e1c61b1d7b42',0,165371,'png');INSERT INTO "content_localfile" VALUES('1801de583a68312bc165150020bb2b4c',0,523,'vtt');INSERT INTO "content_localfile" VALUES('a7ee1c0c1f9439e8c365e0735a993576',0,555,'vtt');INSERT INTO "content_localfile" VALUES('75c8d672fc459d4fa3b2aaa8fdee3f83',0,24586874,'mp4');INSERT INTO "content_localfile" VALUES('4dffd6102ae4137fbd803dba6c058ef0',0,155340,'png');INSERT INTO "content_localfile" VALUES('4b70889beb7e79fc9b59973b203f75cf',0,758,'vtt');INSERT INTO "content_localfile" VALUES('82d5d1fa719f66618f1d65957d6e5a56',0,716,'vtt');INSERT INTO "content_localfile" VALUES('3797c16153cae6703c0e066aec67d926',0,6657170,'mp4');INSERT INTO "content_localfile" VALUES('117839e8021300c01bf8fe6c7df74f9a',0,124980,'png');INSERT INTO "content_localfile" VALUES('d8946c49dfa18f07af0d2c55de96aac0',0,452,'vtt');INSERT INTO "content_localfile" VALUES('853ca4cf22b64d1d62fb077f9a945a7a',0,454,'vtt');INSERT INTO "content_localfile" VALUES('fee6f6306ba8104b2e2f1b3de07799b9',0,4448512,'mp4');INSERT INTO "content_localfile" VALUES('185d3e7baf5c7fc43bd825ff22a4190d',0,133338,'png');INSERT INTO "content_localfile" VALUES('ad097a4071604e91a9d7d4acdf773e1a',0,620,'vtt');INSERT INTO "content_localfile" VALUES('489468f6132588f690403f1a2724b009',0,362,'vtt');INSERT INTO "content_localfile" VALUES('335239509afaa02fa5155af8d1c4c590',0,349,'vtt');INSERT INTO "content_localfile" VALUES('af0f2cf67f119ef9efb80d5176fa9b33',0,5856973,'mp4');INSERT INTO "content_localfile" VALUES('c97425a6530dac4f154557fd2f99d768',0,134682,'png');INSERT INTO "content_localfile" VALUES('587de0be5bd56f14d0e9bc4bd5c8d1c2',0,637,'vtt');INSERT INTO "content_localfile" VALUES('3b5a9b94a8e2b3af63fef26afdd2bdda',0,632,'vtt');INSERT INTO "content_localfile" VALUES('1667e86831117b1c5e2bcec9cb390c68',0,6727302,'mp4');INSERT INTO "content_localfile" VALUES('da9a4ea26fbe820ed4c4f27c621e8ae8',0,139230,'png');INSERT INTO "content_localfile" VALUES('d9edd57e62b54a10e3e44e412e5ca55f',0,517,'vtt');INSERT INTO "content_localfile" VALUES('a9f9a292ec2edfdca675c2d818481c65',0,483,'vtt');INSERT INTO "content_localfile" VALUES('fff7460e068d5d36de2c9419de014c92',0,4654130,'mp4');INSERT INTO "content_localfile" VALUES('b4fb851274c495dfdbce07cd82eff0a4',0,144394,'png');INSERT INTO "content_localfile" VALUES('8868e5314f39e6354f25163f866e901e',0,571,'vtt');INSERT INTO "content_localfile" VALUES('426ed0f7249c95689b9e8d95bef9f1b0',0,359,'vtt');INSERT INTO "content_localfile" VALUES('0817ea04ea5a1924fe4f5a8bbf84c11b',0,328,'vtt');INSERT INTO "content_localfile" VALUES('7b78d67c346ab29cde5af352f4c219c4',0,3410712,'mp4');INSERT INTO "content_localfile" VALUES('c4843212d1160124e9d4ce7ad78c81d1',0,635,'vtt');INSERT INTO "content_localfile" VALUES('88fdb28177ebeb9c089620e28821c533',0,635,'vtt');INSERT INTO "content_localfile" VALUES('2aba7488618b49fe192eff214af423f1',0,6730610,'mp4');INSERT INTO "content_localfile" VALUES('51ba62ab8f6e2fef9474987313810eb8',0,448,'vtt');INSERT INTO "content_localfile" VALUES('688d0105e16dd6fbdbc2c6c3c9d4d271',0,443,'vtt');INSERT INTO "content_localfile" VALUES('0a89fb206b0091837d5ca00853cadaff',0,5660160,'mp4');INSERT INTO "content_localfile" VALUES('44b8380d8a4c2ab83779dfc251f6f069',0,165232,'png');INSERT INTO "content_localfile" VALUES('fa07b071d105face1dac582e5dc8e6f9',0,512,'vtt');INSERT INTO "content_localfile" VALUES('7e412d142afaba04cb76f660722b256a',0,535,'vtt');INSERT INTO "content_localfile" VALUES('531d21db6d678c039fedc55dc2abe311',0,7094025,'mp4');INSERT INTO "content_localfile" VALUES('1b0e99036758800df1fa19f87b449066',0,156657,'png');INSERT INTO "content_localfile" VALUES('10bdc873decbd98fca9cab02067de7f9',0,264,'vtt');INSERT INTO "content_localfile" VALUES('ec0b66e418fcff263fe04e27f9c9444a',0,265,'vtt');INSERT INTO "content_localfile" VALUES('bfe36a1fb6b84e576921f3a981e7634e',0,6295782,'mp4');INSERT INTO "content_localfile" VALUES('eb44ab279c4cf373634ff9a8edb5761f',0,175928,'png');INSERT INTO "content_localfile" VALUES('6f885c56a873102c058c1e9dee9cfcf9',0,241,'vtt');INSERT INTO "content_localfile" VALUES('853c45aafd9858fe0ce1010e59b5e8b5',0,238,'vtt');INSERT INTO "content_localfile" VALUES('856ddcdd1a9a40c075945e66fc6901dd',0,10943252,'mp4');INSERT INTO "content_localfile" VALUES('f8ebe474d9bfa3669e8597a6f132750c',0,72031,'png');INSERT INTO "content_localfile" VALUES('c35b610fb6623f33aade0272dc83f0da',0,372,'vtt');INSERT INTO "content_localfile" VALUES('63593f7ae8354b89caffc108a4268e30',0,351,'vtt');INSERT INTO "content_localfile" VALUES('0af9fa420f42feb95c959a040407a4e4',0,14584650,'mp4');INSERT INTO "content_localfile" VALUES('a16f6be15a8cfbaa4f1588ab27238b38',0,147111,'png');INSERT INTO "content_localfile" VALUES('e9e4e4de2e0a9eb5c869ad6fb34b07b0',0,421,'vtt');INSERT INTO "content_localfile" VALUES('0f9cf152e42336f37325b350c8847504',0,409,'vtt');INSERT INTO "content_localfile" VALUES('5a8a61cb35c75352c71b72ea01c46f0a',0,15234332,'mp4');INSERT INTO "content_localfile" VALUES('91777c592c20d2ebcb322c5ce734f4af',0,144222,'png');INSERT INTO "content_localfile" VALUES('b728cb2e638e14099cf504dd42b5804e',0,305,'vtt');INSERT INTO "content_localfile" VALUES('6ba27a84ffec2579702670f2da694ffd',0,299,'vtt');INSERT INTO "content_localfile" VALUES('558951c13ecf6c7421b819c2f24ea57b',0,7548805,'mp4');INSERT INTO "content_localfile" VALUES('6c7429d3cfa5923d2fc2c579aa99eec8',0,164089,'png');INSERT INTO "content_localfile" VALUES('25eb2881912d2563fd7c073b08b13a73',0,546,'vtt');INSERT INTO "content_localfile" VALUES('e2a9cc5c4c8a945b3d290afc5647eca7',0,506,'vtt');INSERT INTO "content_localfile" VALUES('110aad59f1c8ef6db2a70ae455242dd3',0,29731028,'mp4');INSERT INTO "content_localfile" VALUES('2126d5c0f9e395714ecb375a6b027d61',0,154164,'png');INSERT INTO "content_localfile" VALUES('795f1a282f24b0fbd9fa8cfd33e8ad6c',0,650,'vtt');INSERT INTO "content_localfile" VALUES('b0b41e83763dd4ecaa6d382ce7bcb408',0,627,'vtt');INSERT INTO "content_localfile" VALUES('ce5af3b6885eb814e5b337855d6fc326',0,14009672,'mp4');INSERT INTO "content_localfile" VALUES('1d18c06dc0603e7583e0b9733bd359c5',0,144135,'png');INSERT INTO "content_localfile" VALUES('f7a005d96d5c683ac229935ecc4ac05c',0,470,'vtt');INSERT INTO "content_localfile" VALUES('d94f982db777cf8c346ee86bddbfbd9d',0,456,'vtt');INSERT INTO "content_localfile" VALUES('d38022220ba2956775ee093f6c82d779',0,12113908,'mp4');INSERT INTO "content_localfile" VALUES('01ef1e07f892bc2a51440070b9fb9a2b',0,168997,'png');INSERT INTO "content_localfile" VALUES('ad418da4396a0e7198c091a2eb481d95',0,331,'vtt');INSERT INTO "content_localfile" VALUES('21ecca08bb3ce5d387e1bb28ab465723',0,284,'vtt');INSERT INTO "content_localfile" VALUES('5ad1d1a033ecdada13ca812ea2562c5f',0,9938528,'mp4');INSERT INTO "content_localfile" VALUES('31a575a6b77b08f199e5e695d981ddd5',0,138518,'png');INSERT INTO "content_localfile" VALUES('63a46941fa03c637117e7b33e078396b',0,947,'vtt');INSERT INTO "content_localfile" VALUES('1009a21a1e5a06a5e8baf03b96bb7386',0,922,'vtt');INSERT INTO "content_localfile" VALUES('62e0c241e822e91ed73123d8adc560b2',0,12535172,'mp4');INSERT INTO "content_localfile" VALUES('bd4f3fbd4bb515279160468564387d53',0,138992,'png');INSERT INTO "content_localfile" VALUES('e51928cd5d1b792023a64022bcf6a4fb',0,916,'vtt');INSERT INTO "content_localfile" VALUES('ddee79e276b5a0b50e7945774522bd1c',0,847,'vtt');INSERT INTO "content_localfile" VALUES('a6038327397de2a94ba89a1c1648f848',0,12013626,'mp4');INSERT INTO "content_localfile" VALUES('ad29937dacd9c24cbf8c2fd85ad0238a',0,179266,'png');INSERT INTO "content_localfile" VALUES('3407d28a1f0cbddb84d287f1a9e30179',0,233,'vtt');INSERT INTO "content_localfile" VALUES('6e76e0f1a3ef4060f30847d9752f6cf7',0,209,'vtt');INSERT INTO "content_localfile" VALUES('4c25fc601b03b1e78ea4ec72cad982d2',0,14341637,'mp4');INSERT INTO "content_localfile" VALUES('e2e0a4df6c23208f542bcb496c593077',0,132474,'png');INSERT INTO "content_localfile" VALUES('0a4fd5677040a073dcf67f71101b0fb3',0,763,'vtt');INSERT INTO "content_localfile" VALUES('cff2cec2560e1f3fc1a000f7d7a5c056',0,709,'vtt');INSERT INTO "content_localfile" VALUES('a2082e1b35fb1fdc294416f429f954ac',0,5887633,'mp4');INSERT INTO "content_localfile" VALUES('1f46a5ad5e83f85ffc54a7886382d926',0,151547,'png');INSERT INTO "content_localfile" VALUES('c8464c3751216624d4bfb941c92b4172',0,405,'vtt');INSERT INTO "content_localfile" VALUES('cf87bacaa64d7f8ebe98dab724475d67',0,348,'vtt');INSERT INTO "content_localfile" VALUES('1e0e84457162f5a5d35870cf2b0b4686',0,6694857,'mp4');INSERT INTO "content_localfile" VALUES('1ab0542cc6871c0a8cd1f24907994e7c',0,159375,'png');INSERT INTO "content_localfile" VALUES('8a7c5a9d3a4ee0600288f8f588522f3f',0,377,'vtt');INSERT INTO "content_localfile" VALUES('d47a9949097492c0368b8cf112e8b58b',0,356,'vtt');INSERT INTO "content_localfile" VALUES('0f8d446e6c0a86f066826620975865b6',0,3073985,'mp4');INSERT INTO "content_localfile" VALUES('a29279a2630fdf7dafaab75d26c89c2c',0,148302,'png');INSERT INTO "content_localfile" VALUES('16fb651042325581251d14d2390f860a',0,283,'vtt');INSERT INTO "content_localfile" VALUES('24daadaa4b66dd830c0e1a761415568a',0,279,'vtt');INSERT INTO "content_localfile" VALUES('6ef543d4a05248f351c8a04e1075c20e',0,2104411,'mp4');INSERT INTO "content_localfile" VALUES('c71310676f227ff94727a5846929f63e',0,151233,'png');INSERT INTO "content_localfile" VALUES('b3879e789a3edf33a53af92fba338c98',0,504,'vtt');INSERT INTO "content_localfile" VALUES('5e0b01bc699373f401e59431ffec8d10',0,432,'vtt');INSERT INTO "content_localfile" VALUES('363cd7020e2f97d5373992da408d6774',0,5343530,'mp4');INSERT INTO "content_localfile" VALUES('6aeab0951dd882b344801d645be340f4',0,151261,'png');INSERT INTO "content_localfile" VALUES('04cfa8243c2e7b53775cbf86fd640663',0,416,'vtt');INSERT INTO "content_localfile" VALUES('e41f8e7e15fc694e6e79b638664cb990',0,377,'vtt');INSERT INTO "content_localfile" VALUES('109cd46c4757b6aa5ba46e06924904b6',0,5748375,'mp4');INSERT INTO "content_localfile" VALUES('2ce046ae5075e734f787aa04797c91c9',0,133828,'png');INSERT INTO "content_localfile" VALUES('5224a786d1456cc61fb805abe51ea88f',0,1268,'vtt');INSERT INTO "content_localfile" VALUES('58ff9d35322e10b073505ea6d24fb2db',0,1194,'vtt');INSERT INTO "content_localfile" VALUES('debbdcb86e6a59af70ee0a67d863a1d3',0,8823081,'mp4');INSERT INTO "content_localfile" VALUES('f78aa7aee3fadb53537d90f7e2a12c26',0,142345,'png');INSERT INTO "content_localfile" VALUES('17381f9f807b790b14e98eea2c3073fa',0,723,'vtt');INSERT INTO "content_localfile" VALUES('b4fd439347e8e25eb561b581964fca6f',0,682,'vtt');INSERT INTO "content_localfile" VALUES('59ae1019b3d3101fe7c27502df1739e9',0,6894960,'mp4');INSERT INTO "content_localfile" VALUES('f26c0af525d7bdb16d0b415fb96a2747',0,156374,'png');INSERT INTO "content_localfile" VALUES('a507d00520c1ff0115be8374c448f58d',0,844,'vtt');INSERT INTO "content_localfile" VALUES('f812826e4b321873d92517a6b2a864af',0,872,'vtt');INSERT INTO "content_localfile" VALUES('f3cc6412817fcd2f9458a60d75c47141',0,855,'vtt');INSERT INTO "content_localfile" VALUES('daf65ce9359eb59d92d18e6d61b58172',0,17602485,'mp4');INSERT INTO "content_localfile" VALUES('f613323430b8461b739cb8779c5a3ec8',0,159314,'png');INSERT INTO "content_localfile" VALUES('11e7bf1d5ab690ce4d08cadeb2be43e0',0,602,'vtt');INSERT INTO "content_localfile" VALUES('27b21d9be69fba04181747838ddd64c6',0,592,'vtt');INSERT INTO "content_localfile" VALUES('ef58a21b2f742ea63393918a11aeb04c',0,10362048,'mp4');INSERT INTO "content_localfile" VALUES('cc0343f75c2cdeff1a59d357ecb13419',0,172077,'png');INSERT INTO "content_localfile" VALUES('257b675888f898cde7bca7d7c535f450',0,972,'vtt');INSERT INTO "content_localfile" VALUES('680c3946fd274a1f9296b3140aac7280',0,1093,'vtt');INSERT INTO "content_localfile" VALUES('ef24c1b9c21b7a3bb9512ef1b2d6eb20',0,1028,'vtt');INSERT INTO "content_localfile" VALUES('e9a7c58fb86ad610a4c9eaf83e3424cc',0,10810852,'mp4');INSERT INTO "content_localfile" VALUES('edf50faa30aa06a020996f193ac923ba',0,152850,'png');INSERT INTO "content_localfile" VALUES('ee750836025424b56a723c0b532c5f2e',0,947,'vtt');INSERT INTO "content_localfile" VALUES('f47460f05b4e39ddc3b29513cc16d94b',0,981,'vtt');INSERT INTO "content_localfile" VALUES('3456b331ec2bf94585560d47bea89651',0,909,'vtt');INSERT INTO "content_localfile" VALUES('187874cc26d92bd31851fb76575907ad',0,9407210,'mp4');INSERT INTO "content_localfile" VALUES('b8624fd68e837912a8e3669134ee1494',0,11252,'jpg');INSERT INTO "content_localfile" VALUES('7486158c10271e208b9cdf4fba5dab65',0,117978,'zip');INSERT INTO "content_localfile" VALUES('e57b67153bcb10fac16576464788f9a5',0,73575,'png');INSERT INTO "content_localfile" VALUES('1f90a9ef1be6c18aab68597342975d78',0,245,'vtt');INSERT INTO "content_localfile" VALUES('ec8d7ec9faa1b8d72dc4b3095bf57468',0,254,'vtt');INSERT INTO "content_localfile" VALUES('b32f1d82c3d766ad581ab94e85a05924',0,1393011,'mp4');INSERT INTO "content_localfile" VALUES('683255a9012960012e898c843957915b',0,99255,'png');INSERT INTO "content_localfile" VALUES('c17644d92cf7466c3bea120562be56fd',0,483,'vtt');INSERT INTO "content_localfile" VALUES('0bb29929dbafb8504cdb0e0d00fdd185',0,461,'vtt');INSERT INTO "content_localfile" VALUES('fdbf2bf5f66377926c08509f6243b331',0,3532562,'mp4');INSERT INTO "content_localfile" VALUES('9e7ce4f79d8157f06db1178dd4176466',0,158925,'png');INSERT INTO "content_localfile" VALUES('776b4b2880716acd4144fde1bc45469f',0,808,'vtt');INSERT INTO "content_localfile" VALUES('96550ba714365b51331ebaf25e6d5d3c',0,845,'vtt');INSERT INTO "content_localfile" VALUES('b282592bffbf06076f68b6bb5011b882',0,794,'vtt');INSERT INTO "content_localfile" VALUES('05a75d69342f08e74003d0aefd923a1d',0,13992476,'mp4');INSERT INTO "content_localfile" VALUES('0b8497906c814a6bbc195145b710cbe6',0,146658,'png');INSERT INTO "content_localfile" VALUES('31f8827953097ea60bc42d9b6cb469be',0,450,'vtt');INSERT INTO "content_localfile" VALUES('6e51dbbe3dd0074d546520d72d5db551',0,341,'vtt');INSERT INTO "content_localfile" VALUES('586a2542e10abcafb4cdabc65da6ad82',0,4168906,'mp4');INSERT INTO "content_localfile" VALUES('0710dd3fb61b27989a44235d6b145198',0,143457,'png');INSERT INTO "content_localfile" VALUES('a9cc7124e82b91d2edb6d9b7d38bdc2b',0,273,'vtt');INSERT INTO "content_localfile" VALUES('f6491f213d0e9aeae38d8f8c243e416e',0,248,'vtt');INSERT INTO "content_localfile" VALUES('1ec34b8d76ae04465816166da357cf01',0,3346959,'mp4');INSERT INTO "content_localfile" VALUES('db752fa7be18f2ab1730e405325a5d0a',0,98653,'png');INSERT INTO "content_localfile" VALUES('2c4ccb494adf0faf3d4fde7ee02a569a',0,242,'vtt');INSERT INTO "content_localfile" VALUES('52ce8113e78b652077effc3fde27814e',0,243,'vtt');INSERT INTO "content_localfile" VALUES('3cfec8cc24f0e3f7d60a992b7d9734b1',0,2645769,'mp4');INSERT INTO "content_localfile" VALUES('24d01373f52ea45f499c6a51418ae6bd',0,127244,'png');INSERT INTO "content_localfile" VALUES('51668a9279c6c14ce0787fd7141b80f6',0,315,'vtt');INSERT INTO "content_localfile" VALUES('f2a70c18bbf5439b4a89db837b670c6c',0,321,'vtt');INSERT INTO "content_localfile" VALUES('0af50f853d7920952fc3c6032062b656',0,5098420,'mp4');INSERT INTO "content_localfile" VALUES('4460a13b030fa875490053f8abcc732c',0,141458,'png');INSERT INTO "content_localfile" VALUES('512cc3ee865807336e3c40c500f62fa6',0,458,'vtt');INSERT INTO "content_localfile" VALUES('bfe7c01d2794387ff7f890cbc715d960',0,456,'vtt');INSERT INTO "content_localfile" VALUES('823b202984543dca87042ad75795411a',0,6374319,'mp4');INSERT INTO "content_localfile" VALUES('d8afdb89fce32bb57083ac0e8533c235',0,182162,'png');INSERT INTO "content_localfile" VALUES('a4cb5b9f1e1b147dd5492cfc068f9149',0,309,'vtt');INSERT INTO "content_localfile" VALUES('d52256631dfea0c381b01b47ffd08e0d',0,316,'vtt');INSERT INTO "content_localfile" VALUES('3bf6160f0dfbeee2ed9d82d0432a4c91',0,7404087,'mp4');INSERT INTO "content_localfile" VALUES('29ae3a6dc879f3a781d36d54ffc106f3',0,100043,'png');INSERT INTO "content_localfile" VALUES('ecdf99862eb974428fee6389d3f27889',0,391,'vtt');INSERT INTO "content_localfile" VALUES('92afdfb11d6dbbff1351cb9894fe67c3',0,368,'vtt');INSERT INTO "content_localfile" VALUES('03298d5022003fcd7aae546449aa8c6c',0,5947722,'mp4');INSERT INTO "content_localfile" VALUES('ae3484d7a2ff96833494f69b47b2a07b',0,130607,'png');INSERT INTO "content_localfile" VALUES('27aec1266192c0bdffbf9393dcdb14e2',0,302,'vtt');INSERT INTO "content_localfile" VALUES('975ad14868fee576f9c93735e2d37bff',0,289,'vtt');INSERT INTO "content_localfile" VALUES('e474c209b365eb28dbb30a262b2b0ccf',0,3170424,'mp4');INSERT INTO "content_localfile" VALUES('cfcc7e987ba4cc2d81a1df57cd4eec0b',0,183624,'png');INSERT INTO "content_localfile" VALUES('6d88d527cab0749a40b02a80b6645ff6',0,320,'vtt');INSERT INTO "content_localfile" VALUES('1c56f9f85969313011c3e2451b16f215',0,299,'vtt');INSERT INTO "content_localfile" VALUES('fd189f9cba2f0231356798015f911470',0,2937710,'mp4');INSERT INTO "content_localfile" VALUES('b08b0a925a624a106f1d5f896f35e33f',0,167578,'png');INSERT INTO "content_localfile" VALUES('494dd8685e35800d4fb38ae5aa8cd831',0,401,'vtt');INSERT INTO "content_localfile" VALUES('b464850f9cede4e01ee3f0873e6d27ec',0,373,'vtt');INSERT INTO "content_localfile" VALUES('c1656d3d4bbdbf7a40ab97ee7efac08f',0,6955472,'mp4');INSERT INTO "content_localfile" VALUES('dddf0434e6c2e21124b249f47adb89c6',0,162210,'png');INSERT INTO "content_localfile" VALUES('55791149b8565be20aae224ab05df122',0,747,'vtt');INSERT INTO "content_localfile" VALUES('788d0bc30ab325adb83c5e285177dacd',0,779,'vtt');INSERT INTO "content_localfile" VALUES('8771de1312b1362badf6cfed878c338f',0,739,'vtt');INSERT INTO "content_localfile" VALUES('b50117338990c6faa8a0f103bf5e6364',0,6246714,'mp4');INSERT INTO "content_localfile" VALUES('760fd5da540c1b3fa9a1ef16b32587e1',0,148846,'png');INSERT INTO "content_localfile" VALUES('ae2c662456c71d9f03c805de42d62970',0,409,'vtt');INSERT INTO "content_localfile" VALUES('afafafff5cc4d582418c75566edb7907',0,356,'vtt');INSERT INTO "content_localfile" VALUES('e4acf3c65a34e4973551b077081d1fa3',0,4958649,'mp4');INSERT INTO "content_localfile" VALUES('c9f8c56da604fca5b39308b8ceb08bb6',0,174998,'png');INSERT INTO "content_localfile" VALUES('b30034fbb193d598cf779895a5ad7a1c',0,375,'vtt');INSERT INTO "content_localfile" VALUES('557f3fe7974c7fcd24ab03a1347d9c9d',0,364,'vtt');INSERT INTO "content_localfile" VALUES('f3360e4fa45d3fecd8a9b86c71ad76e6',0,3406940,'mp4');INSERT INTO "content_localfile" VALUES('58bffeaddafe0429962001af0e849476',0,167812,'png');INSERT INTO "content_localfile" VALUES('950ce2934cede99a9528549291bbc35f',0,420,'vtt');INSERT INTO "content_localfile" VALUES('047bd12f62456214d6c24d46a6d38be9',0,376,'vtt');INSERT INTO "content_localfile" VALUES('93bba687485c5fa47f2bd6b61cf185ab',0,5922322,'mp4');INSERT INTO "content_localfile" VALUES('8b136decdf8066321f79ad15fe444b36',0,132312,'png');INSERT INTO "content_localfile" VALUES('133bb315a9ed41228fb65fac1fc3bc35',0,259,'vtt');INSERT INTO "content_localfile" VALUES('cd7571d3482299cbbf3eaea3545b0c57',0,249,'vtt');INSERT INTO "content_localfile" VALUES('ba71a4e8b2447e93eba99b78c44f710f',0,2452023,'mp4');INSERT INTO "content_localfile" VALUES('094ea9eee6f88ebdf5cc18b33fb93c77',0,138930,'png');INSERT INTO "content_localfile" VALUES('dfb00e020599b3a38e5278d42bc12dee',0,240,'vtt');INSERT INTO "content_localfile" VALUES('be71d2336b41c3ea7626ffe05e2bb282',0,242,'vtt');INSERT INTO "content_localfile" VALUES('3a9b6dcfeceef9fffa63cbba85cce227',0,2623396,'mp4');INSERT INTO "content_localfile" VALUES('c7a2f99da09897d8ecbb53b2c401372c',0,163972,'png');INSERT INTO "content_localfile" VALUES('d6218c376ea6004ad9ca176f7453592b',0,296,'vtt');INSERT INTO "content_localfile" VALUES('b2db31e923fada7296514f73fb5757f2',0,276,'vtt');INSERT INTO "content_localfile" VALUES('fd599d0d82cd232fd0cbbd4f32ce15c3',0,5803968,'mp4');INSERT INTO "content_localfile" VALUES('2f573c7129ffe714c52423fde67563e8',0,125566,'png');INSERT INTO "content_localfile" VALUES('e596f9502adda11227c3c063d6b611f7',0,882,'vtt');INSERT INTO "content_localfile" VALUES('2a0ee0c91636b7b2dd95c196840c1252',0,775,'vtt');INSERT INTO "content_localfile" VALUES('5e90cdefe9053f0b655bb672b6ac5207',0,8459891,'mp4');INSERT INTO "content_localfile" VALUES('678c167fba106cdbc95eaa74ae559d98',0,143046,'png');INSERT INTO "content_localfile" VALUES('9ca644017225d4c043ed75bc5c7b9abb',0,242,'vtt');INSERT INTO "content_localfile" VALUES('fb6543c5cc2ef62a1e2f7e8d70469b15',0,239,'vtt');INSERT INTO "content_localfile" VALUES('92947a2db0d34931c7d6af714d794ad6',0,10303127,'mp4');INSERT INTO "content_localfile" VALUES('8a074553671eee67ad72631fa7486b09',0,150591,'png');INSERT INTO "content_localfile" VALUES('3459535fd02d2f882338bb34f232b083',0,568,'vtt');INSERT INTO "content_localfile" VALUES('fd2c4ec1a8ca204475a56f9b8dcd9893',0,506,'vtt');INSERT INTO "content_localfile" VALUES('0fa57275c6bf5f8c50e9783615d0f4bf',0,3293006,'mp4');INSERT INTO "content_localfile" VALUES('dc9baeae9060c41f5f01fd5db8d4c931',0,144745,'png');INSERT INTO "content_localfile" VALUES('4666de889820440e53b7220fe2e176af',0,353,'vtt');INSERT INTO "content_localfile" VALUES('f984495d3a69c8d946032b98a20c96d8',0,312,'vtt');INSERT INTO "content_localfile" VALUES('3cfbcfff9959beae843ea9459ea25da6',0,3261587,'mp4');INSERT INTO "content_localfile" VALUES('44ad6bd3780d43d20eade80fc07af687',0,158145,'png');INSERT INTO "content_localfile" VALUES('a5dfdb5150fa1987e7de44bf63b9755e',0,699,'vtt');INSERT INTO "content_localfile" VALUES('352269222ec04e612f962f767cc98ba1',0,630,'vtt');INSERT INTO "content_localfile" VALUES('99fab14a704da01ad8f46d604ec747dd',0,6603601,'mp4');INSERT INTO "content_localfile" VALUES('447fef46085a796e58fdfae04e2dcd65',0,158901,'png');INSERT INTO "content_localfile" VALUES('abdec1e71fa75fd828f38e10f58e78b8',0,663,'vtt');INSERT INTO "content_localfile" VALUES('9f32939486d2b00206edbce0f3afa5a9',0,630,'vtt');INSERT INTO "content_localfile" VALUES('a41e3a135d569b374969d64995f2490e',0,655,'vtt');INSERT INTO "content_localfile" VALUES('44835a7ae07a7af2d21de0b4cc9ef291',0,8893297,'mp4');INSERT INTO "content_localfile" VALUES('679308d3e05c9e3ade4f4d48f7a32a2d',0,126822,'png');INSERT INTO "content_localfile" VALUES('df54fe6c64e98e1a071c0096a3dcc66e',0,683,'vtt');INSERT INTO "content_localfile" VALUES('f49e134faaea45deeb92087f608f9e1a',0,596,'vtt');INSERT INTO "content_localfile" VALUES('71235379e01e8abd6f40ff1f40384491',0,23062725,'mp4');INSERT INTO "content_localfile" VALUES('c5148f02664bfc1f8802bdf4f60d9a14',0,161652,'png');INSERT INTO "content_localfile" VALUES('d9a539dd807fd9981dcdea88e6339428',0,297,'vtt');INSERT INTO "content_localfile" VALUES('2a340f7b2078f5645eee389c03b8e3a2',0,278,'vtt');INSERT INTO "content_localfile" VALUES('58052e446d0355b6cbb23c4f73b8fd72',0,6792115,'mp4');INSERT INTO "content_localfile" VALUES('11e616c656efd37cd8b7397a0e27ac11',0,169518,'png');INSERT INTO "content_localfile" VALUES('c7cadac8e0475614632f0cbabc8f30c7',0,1504,'vtt');INSERT INTO "content_localfile" VALUES('4db647497c042c86d32448f2ffc6bf26',0,1473,'vtt');INSERT INTO "content_localfile" VALUES('8c313ceb833cbf47d52329ee297b2f3f',0,1415,'vtt');INSERT INTO "content_localfile" VALUES('678a5c762c5c0d9170163756afeb6b22',0,27759241,'mp4');INSERT INTO "content_localfile" VALUES('3dced26bf5e49920919a7ba3562a0611',0,147204,'png');INSERT INTO "content_localfile" VALUES('4e3e1fea7b5189934e2eb1c534ef3af2',0,602,'vtt');INSERT INTO "content_localfile" VALUES('b0ba1c78a49d163d328e15a314958da8',0,544,'vtt');INSERT INTO "content_localfile" VALUES('fdd381fba2c4ceb7702e066d7e39b915',0,27735595,'mp4');INSERT INTO "content_localfile" VALUES('6c8341e1c124488750f711b634f64d0a',0,155043,'png');INSERT INTO "content_localfile" VALUES('50448be8e8e36e52fa7105e43c1cf945',0,209,'vtt');INSERT INTO "content_localfile" VALUES('1f736fbf50e37e5198af64949c8860dc',0,192,'vtt');INSERT INTO "content_localfile" VALUES('c55b471581e4a9400d0c040edbb9d503',0,7276156,'mp4');INSERT INTO "content_localfile" VALUES('86db64e4d569cd14e27ec583d3cd51b4',0,149682,'png');INSERT INTO "content_localfile" VALUES('d4960d32958da1ecb595aa6b991383ee',0,548,'vtt');INSERT INTO "content_localfile" VALUES('918595e269697f972a248bc1e821849f',0,488,'vtt');INSERT INTO "content_localfile" VALUES('65cbe46135bcb3ecc2e9eec564f3f578',0,7450092,'mp4');INSERT INTO "content_localfile" VALUES('be027b9e2de5519e839d3fe538478165',0,121320,'png');INSERT INTO "content_localfile" VALUES('5576638f6e5a9834e14e05076a92635c',0,1462,'vtt');INSERT INTO "content_localfile" VALUES('40b33bb5840ab82f08468f0370f64ad8',0,1384,'vtt');INSERT INTO "content_localfile" VALUES('6224351b342fa5a8ae39c318ae086394',0,19711243,'mp4');INSERT INTO "content_localfile" VALUES('85adf9125a25a2bca5cc4f5f7b3d7b2a',0,149882,'png');INSERT INTO "content_localfile" VALUES('1c3a77807d009315aa1073ccecb9ac8f',0,796,'vtt');INSERT INTO "content_localfile" VALUES('35db550dc2fd1a4f3d2cbb1a82c8c6e6',0,771,'vtt');INSERT INTO "content_localfile" VALUES('e390736d3fc95f4fcc338123f0ca6768',0,9437736,'mp4');INSERT INTO "content_localfile" VALUES('93ef7daad10c2d7849a3298ff53b6c6f',0,140019,'png');INSERT INTO "content_localfile" VALUES('ab2ef506b8710f05acdbfd27b1445b51',0,1797,'vtt');INSERT INTO "content_localfile" VALUES('a5fe96a92966a4ed2260530f3fade07b',0,1910,'vtt');INSERT INTO "content_localfile" VALUES('e906d0ce1a8b800e16661ed0c095e4a9',0,1777,'vtt');INSERT INTO "content_localfile" VALUES('880ae16de4c6b0546fba843e447b2177',0,14621838,'mp4');INSERT INTO "content_localfile" VALUES('1f50ce1e1363f4dd69ee8e7aecee8d96',0,126414,'png');INSERT INTO "content_localfile" VALUES('7302e5c2a83d31f256e5689f22aff77f',0,552,'vtt');INSERT INTO "content_localfile" VALUES('64a9827921e08c438c15e17f7542fa87',0,519,'vtt');INSERT INTO "content_localfile" VALUES('471ce3b3d067ea8e85ecca60cbf60619',0,6060375,'mp4');INSERT INTO "content_localfile" VALUES('590ba7d764b83a08dac11167c6be7c15',0,120535,'png');INSERT INTO "content_localfile" VALUES('a7dbb68362869634d303e4c0a6115a80',0,227,'vtt');INSERT INTO "content_localfile" VALUES('d11440da7cd05d07c558e11f4d6fc080',0,203,'vtt');INSERT INTO "content_localfile" VALUES('31e372df1042535ad326eea24b2a23bc',0,3619666,'mp4');INSERT INTO "content_localfile" VALUES('fbf01a2dc346dbad116d3b94e5ed5363',0,168952,'png');INSERT INTO "content_localfile" VALUES('4c96d295f580751ce7cb42192d1a3f7f',0,302,'vtt');INSERT INTO "content_localfile" VALUES('df29fad57ff56b655b478ee3533dd8e8',0,292,'vtt');INSERT INTO "content_localfile" VALUES('83adf5ca8976556a70c439ae0141d67c',0,7698016,'mp4');INSERT INTO "content_localfile" VALUES('7f0c96a9ca97c2920841cc9427201f35',0,135601,'png');INSERT INTO "content_localfile" VALUES('e345a810a7bc605438f66a6939950586',0,372,'vtt');INSERT INTO "content_localfile" VALUES('b4e395de54943e02a81ad7578dd5a539',0,325,'vtt');INSERT INTO "content_localfile" VALUES('5bede1a7d42940b2bc0256d49de2e39a',0,5594483,'mp4');INSERT INTO "content_localfile" VALUES('0bda1e7a90f830734a968ef7f6ccb57b',0,127178,'png');INSERT INTO "content_localfile" VALUES('abd967388b43be145ff0a394050198ec',0,287,'vtt');INSERT INTO "content_localfile" VALUES('b2a7023fb527c2c663ccf3dc2d61ac56',0,246,'vtt');INSERT INTO "content_localfile" VALUES('62ca92e30d90ced3f2d6bd025985732b',0,5762429,'mp4');INSERT INTO "content_localfile" VALUES('8594711426b6ff808124a78f4a03b339',0,148371,'png');INSERT INTO "content_localfile" VALUES('8f1f2560f6738fa989fca9c16f2f4cb2',0,1464,'vtt');INSERT INTO "content_localfile" VALUES('a0d1c27aed09f5b06bbfa86f3dd4b66c',0,1311,'vtt');INSERT INTO "content_localfile" VALUES('afb0f6b0900b25f5abb420293d51515d',0,18849115,'mp4');INSERT INTO "content_localfile" VALUES('f20857152d706e4f3c8b68a2652c582f',0,108453,'png');INSERT INTO "content_localfile" VALUES('c4470099969feba032dcfdd565b7452d',0,598,'vtt');INSERT INTO "content_localfile" VALUES('9f76887cbbe65721b9b76f6941dca125',0,618,'vtt');INSERT INTO "content_localfile" VALUES('3b1219a1183204c3f47fb8bd27042770',0,598,'vtt');INSERT INTO "content_localfile" VALUES('cacca9dc0db8dfeb078cf47feddf0952',0,6102713,'mp4');INSERT INTO "content_localfile" VALUES('42cd7858a081b5fb1aa0d1d2b54d853d',0,138736,'png');INSERT INTO "content_localfile" VALUES('a5e2bd9fbefe3d24088798ece389d5a7',0,876,'vtt');INSERT INTO "content_localfile" VALUES('7cb8784b9929772c060583f03f02fdf9',0,791,'vtt');INSERT INTO "content_localfile" VALUES('ca491504df1e9f184d5cb9badb7c7ba9',0,687,'vtt');INSERT INTO "content_localfile" VALUES('42a99b909af9545cfde1c2910346b5a8',0,15840776,'mp4');INSERT INTO "content_localfile" VALUES('7c1190902692d722917eb7a03d126afd',0,134525,'png');INSERT INTO "content_localfile" VALUES('9521f7fe41c6d4230a7e625a896de9a6',0,548,'vtt');INSERT INTO "content_localfile" VALUES('0fc747d2a6bded38fb83c7f5c6ff1c94',0,489,'vtt');INSERT INTO "content_localfile" VALUES('ff56df1745d2bb706797d8658a09b8d8',0,10073417,'mp4');INSERT INTO "content_localfile" VALUES('5986a259ae58a22918d62e23c75d1845',0,130471,'png');INSERT INTO "content_localfile" VALUES('df4373766ea386d40b9ac325eaecef13',0,353,'vtt');INSERT INTO "content_localfile" VALUES('01c9e460cb8f7b1ade2391b901c3a3f3',0,341,'vtt');INSERT INTO "content_localfile" VALUES('95b4e4f09fab66d92407bc68c14a0a78',0,6127128,'mp4');INSERT INTO "content_localfile" VALUES('42f9ae4b04e6c975e4dfc68764748d59',0,66542,'png');INSERT INTO "content_localfile" VALUES('f04f5eb3c7b688d4646cf04d3f0c4b66',0,412,'vtt');INSERT INTO "content_localfile" VALUES('bd7ab13e71df6a82de64af1a2ed27a59',0,391,'vtt');INSERT INTO "content_localfile" VALUES('3eb0d9a24a9c5d26aa877cf09d70d8ba',0,2417655,'mp4');INSERT INTO "content_localfile" VALUES('b9da58af414f31bf13f225c19c776534',0,137660,'png');INSERT INTO "content_localfile" VALUES('04b25275b8e388d8b3103e0088163fe8',0,554,'vtt');INSERT INTO "content_localfile" VALUES('193fc353a4e230f039153ea985bd2acc',0,505,'vtt');INSERT INTO "content_localfile" VALUES('8b06c08e18ca344c3f8914bc2f6d67c7',0,13816951,'mp4');INSERT INTO "content_localfile" VALUES('7be2126712b0abee889bf953bd9cdfe5',0,128113,'png');INSERT INTO "content_localfile" VALUES('194f6afe9ecbb9d9824b90909e87f3d8',0,730,'vtt');INSERT INTO "content_localfile" VALUES('bfac56429c7d81b08ff9107582183c4b',0,700,'vtt');INSERT INTO "content_localfile" VALUES('9df45e6fbec901df292b66380bf0dbfb',0,13970669,'mp4');INSERT INTO "content_localfile" VALUES('decb25682d37a2e52058197b7b1c6497',0,188452,'png');INSERT INTO "content_localfile" VALUES('c786584e7b51bc06a2d8ee7c3e78b9f5',0,317,'vtt');INSERT INTO "content_localfile" VALUES('ad6d833aececdfe2df66adf75987d606',0,304,'vtt');INSERT INTO "content_localfile" VALUES('6fad82209603698101ae61af4df5129a',0,8009585,'mp4');INSERT INTO "content_localfile" VALUES('04605d7731343cb9e6de81d6c9be0b72',0,152801,'png');INSERT INTO "content_localfile" VALUES('9b68dfd8e00d6f7ae0354a89bc10e679',0,319,'vtt');INSERT INTO "content_localfile" VALUES('2d5e96ec2654d8aab08aa00c503a0018',0,288,'vtt');INSERT INTO "content_localfile" VALUES('be60ffc57662bc6a9d8b726db9fcb091',0,10242506,'mp4');INSERT INTO "content_localfile" VALUES('caee7391551819169a18001e66e57dac',0,147491,'png');INSERT INTO "content_localfile" VALUES('b7265d14ff2f4c84c87375b616522061',0,342,'vtt');INSERT INTO "content_localfile" VALUES('e1791671b5d9f3ab391090c6e31af749',0,351,'vtt');INSERT INTO "content_localfile" VALUES('47d708700d9c9379baa3fb1ee2f2d319',0,13857978,'mp4');INSERT INTO "content_localfile" VALUES('87af7b768620e9991258c9ce78a9c32b',0,164291,'png');INSERT INTO "content_localfile" VALUES('0bf5458d7f65db61d27ba434f49a1b74',0,179,'vtt');INSERT INTO "content_localfile" VALUES('53a0b38c51e574b90e0065292d8c1cda',0,176,'vtt');INSERT INTO "content_localfile" VALUES('ae63595c765d9f38a6409fd3fd8e47d1',0,4751483,'mp4');INSERT INTO "content_localfile" VALUES('54ef50996504fea036ff7ace89eca6e5',0,127492,'png');INSERT INTO "content_localfile" VALUES('b7515476f3a2210ce9dea86234fd7174',0,263,'vtt');INSERT INTO "content_localfile" VALUES('1f245b6e404b93b27d499607d655f9aa',0,243,'vtt');INSERT INTO "content_localfile" VALUES('4b6a885f6873092346fe83dd8b8afe94',0,4037864,'mp4');INSERT INTO "content_localfile" VALUES('1ad8acdabc77e0e377c464c250c9a6e7',0,167964,'png');INSERT INTO "content_localfile" VALUES('99ae3cc77821dccb9e01e532c1571fad',0,579,'vtt');INSERT INTO "content_localfile" VALUES('1effaa4382bdeafa2a4f1a253d28fb9a',0,580,'vtt');INSERT INTO "content_localfile" VALUES('5ebd2ad394f533b3e45067a2362209f0',0,14659065,'mp4');INSERT INTO "content_localfile" VALUES('4b132fca12acea6fae1904520e33f5fb',0,70008,'png');INSERT INTO "content_localfile" VALUES('18f1817a75fe3ffe7851ff97c6c388d9',0,251,'vtt');INSERT INTO "content_localfile" VALUES('82773165658b369d669a6a3ff2294a2c',0,232,'vtt');INSERT INTO "content_localfile" VALUES('4c283a45a323cd170551a8439f8808c0',0,2472885,'mp4');INSERT INTO "content_localfile" VALUES('847166b91f440158b4cfc348b5288bdf',0,113283,'png');INSERT INTO "content_localfile" VALUES('ea2aeabf53343ab2ba31c990d60fe556',0,659,'vtt');INSERT INTO "content_localfile" VALUES('e41117c475dff99357d7354391317ee2',0,539,'vtt');INSERT INTO "content_localfile" VALUES('f238ca188debe7d11c7e3f202a7e6bd9',0,441,'vtt');INSERT INTO "content_localfile" VALUES('d8de7b920a525867a00488cadcfab77b',0,4895335,'mp4');INSERT INTO "content_localfile" VALUES('03bd99afb67e15173e43614dc16fe6ce',0,102065,'png');INSERT INTO "content_localfile" VALUES('c0e6e270d2fc1deb08607d9ae57ee920',0,658,'vtt');INSERT INTO "content_localfile" VALUES('76e80f9e15e7a1a6cc05ebe465ab82d8',0,478,'vtt');INSERT INTO "content_localfile" VALUES('2c5979705fd3086f8d346718dcd4be2f',0,411,'vtt');INSERT INTO "content_localfile" VALUES('0cc193666e273e84bb73b2b4b953214a',0,3468227,'mp4');INSERT INTO "content_localfile" VALUES('070112d0955381dc53ce097b5c07ee0c',0,117145,'png');INSERT INTO "content_localfile" VALUES('417d29d3ae21f9524b9a22045bc47b13',0,393,'vtt');INSERT INTO "content_localfile" VALUES('6f812a0ca3d45a8c816b30247e373747',0,358,'vtt');INSERT INTO "content_localfile" VALUES('f7332b779c2fa8d7e4e6e95f0c6c49a2',0,5311532,'mp4');INSERT INTO "content_localfile" VALUES('4b0b7825a960254f9619f873fd2fd257',0,56536,'png');INSERT INTO "content_localfile" VALUES('4ef71c72dc4b5451351b6b0912bd2e87',0,284,'vtt');INSERT INTO "content_localfile" VALUES('75fd6b7eb0f3904156fc87c18eddacbe',0,265,'vtt');INSERT INTO "content_localfile" VALUES('752287067d590a56c62519aa866d8547',0,2906121,'mp4');INSERT INTO "content_localfile" VALUES('9a60cf6e95923c087fab1fc3c0232dcf',0,82914,'png');INSERT INTO "content_localfile" VALUES('e73f29543081925f5c8a896944b69ebc',0,411,'vtt');INSERT INTO "content_localfile" VALUES('651ed28ff25a2cf5186ec82b01b9fe27',0,387,'vtt');INSERT INTO "content_localfile" VALUES('e50e5842bb15bd47e63544225dd4df2b',0,7124674,'mp4');INSERT INTO "content_localfile" VALUES('ba2b535905b12f5e8b843558ebb9fb26',0,75364,'png');INSERT INTO "content_localfile" VALUES('68aa18964c64fe07a3a440187d2475d6',0,372,'vtt');INSERT INTO "content_localfile" VALUES('21b0226c54aa3d384d32d03cefa54be8',0,353,'vtt');INSERT INTO "content_localfile" VALUES('427ddd61b021dd43dc3847a4f7a7f679',0,5267093,'mp4');INSERT INTO "content_localfile" VALUES('6b37cbfb438edce6e47e312ba6110b5f',0,83405,'png');INSERT INTO "content_localfile" VALUES('09919eb46ad58f90cccfa2dda26b6ce8',0,946,'vtt');INSERT INTO "content_localfile" VALUES('a1d6ae75d4884e3497fa99deabed5cf6',0,877,'vtt');INSERT INTO "content_localfile" VALUES('53825b4c5a728794a71b8ee724409a66',0,7759130,'mp4');INSERT INTO "content_localfile" VALUES('06b0fce8a3dc4fd76594c168fd8e33e4',0,110561,'png');INSERT INTO "content_localfile" VALUES('be2e85a5f0e3c274d11d7a160b368145',0,235,'vtt');INSERT INTO "content_localfile" VALUES('d18eff82c493675cb8c3b8e8d696ef43',0,214,'vtt');INSERT INTO "content_localfile" VALUES('9217c473ee490af73b18f374c1c527a2',0,14344895,'mp4');INSERT INTO "content_localfile" VALUES('a83599e9d5bc9f01312bce7150e9b7af',0,118640,'png');INSERT INTO "content_localfile" VALUES('44154a2103178492d7ff71e4686c0d7f',0,949,'vtt');INSERT INTO "content_localfile" VALUES('c43e8c8efb517f13bcbf7470a4b480c8',0,834,'vtt');INSERT INTO "content_localfile" VALUES('8f96b0f4d24ffbbadd399631689a9a01',0,13390131,'mp4');INSERT INTO "content_localfile" VALUES('54743aa511ded14758f12ea57c229c92',0,104755,'png');INSERT INTO "content_localfile" VALUES('898b16f4df96062061074b258a733dcd',0,246,'vtt');INSERT INTO "content_localfile" VALUES('ec6ce877ad5a7d1291da4d9d59872356',0,233,'vtt');INSERT INTO "content_localfile" VALUES('24f825730637648a9a079287c5523784',0,16016450,'mp4');INSERT INTO "content_localfile" VALUES('712fe1a5095a6f5152ff4d682180dd30',0,99067,'png');INSERT INTO "content_localfile" VALUES('375963979bf3918058a202347de9b930',0,199,'vtt');INSERT INTO "content_localfile" VALUES('89faed1f988d4a27b610f3bfb8718987',0,168,'vtt');INSERT INTO "content_localfile" VALUES('7eab5e73f2cb1e85893771268b673575',0,3436628,'mp4');INSERT INTO "content_localfile" VALUES('7e2bdede90b74a02dd52d443479c276a',0,140238,'png');INSERT INTO "content_localfile" VALUES('3632dd57b2fcef628ce2e07eb1e6c0e3',0,1070,'vtt');INSERT INTO "content_localfile" VALUES('4f777ba849501c73e210846705b1e2fb',0,1020,'vtt');INSERT INTO "content_localfile" VALUES('be018bd690e46027a9754f4d667e049f',0,24508901,'mp4');INSERT INTO "content_localfile" VALUES('74539816c97511a0aa694f50555e22f6',0,161385,'png');INSERT INTO "content_localfile" VALUES('eb2c8af2a78b34274e43327d8161304c',0,281,'vtt');INSERT INTO "content_localfile" VALUES('c23d3883f27143872c342dc654265a60',0,252,'vtt');INSERT INTO "content_localfile" VALUES('4d57677ce2e28ec88839ac2fae1166fe',0,4694059,'mp4');INSERT INTO "content_localfile" VALUES('334d0daf4e3764500c947b418d032c04',0,136133,'png');INSERT INTO "content_localfile" VALUES('a14ef7e54742ab7a8257bfde28ebba17',0,302,'vtt');INSERT INTO "content_localfile" VALUES('4db409b1d1394b00018b67f5f8a477e8',0,278,'vtt');INSERT INTO "content_localfile" VALUES('1527d3441bf7120ac7ed14c0d64d01d5',0,7869491,'mp4');INSERT INTO "content_localfile" VALUES('7cecc2092270b8d0ddcd96ba075786d8',0,167531,'png');INSERT INTO "content_localfile" VALUES('469e5ad800e76b758c272467a7a2067b',0,222,'vtt');INSERT INTO "content_localfile" VALUES('5309cac9249330daf0590abb548bd651',0,205,'vtt');INSERT INTO "content_localfile" VALUES('99771120975fa80e49b1117124feffcd',0,5320307,'mp4');INSERT INTO "content_localfile" VALUES('c5af399a0d49d0460fe65e2c54c1ce0a',0,80333,'png');INSERT INTO "content_localfile" VALUES('1fea0d5334913bf3bd0db37f4b200f9d',0,315,'vtt');INSERT INTO "content_localfile" VALUES('76b57491a80538a3174d518d718ece4c',0,249,'vtt');INSERT INTO "content_localfile" VALUES('66265d0bbef0b86a7fbad4649e8ada2c',0,2689712,'mp4');INSERT INTO "content_localfile" VALUES('7892efc5f726ea5247c21bc771e1c835',0,128172,'png');INSERT INTO "content_localfile" VALUES('e8d6ccc694f202a7bb7c4ae2fdacdf0b',0,1029,'vtt');INSERT INTO "content_localfile" VALUES('ee4a225df7d6c6fb7f987c9d7ff5d5fa',0,885,'vtt');INSERT INTO "content_localfile" VALUES('fa606be82eb02a7258d74d0f1ef869e8',0,13063829,'mp4');INSERT INTO "content_localfile" VALUES('ab7384133c654e829f2d3b8c4bc0a647',0,152436,'png');INSERT INTO "content_localfile" VALUES('91db2fd37eff3899b7f97b85f7b261bc',0,796,'vtt');INSERT INTO "content_localfile" VALUES('b7c0852d1cf207494da086fe8132e903',0,629,'vtt');INSERT INTO "content_localfile" VALUES('5019d294066aaf1f31185ce427b1888f',0,578,'vtt');INSERT INTO "content_localfile" VALUES('db508059e025af5a9c08718c0731e071',0,12676927,'mp4');INSERT INTO "content_localfile" VALUES('e0786327cad870f3f921b295e64a015d',0,139934,'png');INSERT INTO "content_localfile" VALUES('6cd25114a2aa109110fd2f9c660ff010',0,795,'vtt');INSERT INTO "content_localfile" VALUES('034a11c4f931a2446d01e9f9a2c27b47',0,755,'vtt');INSERT INTO "content_localfile" VALUES('aad476826582f8edb77a592bcb8bb0ac',0,8356478,'mp4');INSERT INTO "content_localfile" VALUES('cf1b41bf7ad8d7dadca881386c14a743',0,169855,'png');INSERT INTO "content_localfile" VALUES('ac9dbd2bc168ab9bfdf8a4058586b798',0,940,'vtt');INSERT INTO "content_localfile" VALUES('d458a2304d3e004342f88bf8a369a311',0,839,'vtt');INSERT INTO "content_localfile" VALUES('269eb7906a59e36a6a5fd6732b2c4aac',0,944,'vtt');INSERT INTO "content_localfile" VALUES('b258f564f004606c582a30df6b31f18a',0,10921602,'mp4');INSERT INTO "content_localfile" VALUES('fd31ac5083b52ae39bc44be9471de895',0,158305,'png');INSERT INTO "content_localfile" VALUES('541566e640bdee0db6d84ba3f45429e7',0,442,'vtt');INSERT INTO "content_localfile" VALUES('8bd555d96cebfa6b21935866d94e0dc0',0,420,'vtt');INSERT INTO "content_localfile" VALUES('ba4439b759b7cc11938b0acfa05fb605',0,504,'vtt');INSERT INTO "content_localfile" VALUES('337ec90478e7403fa59e18c43bc5c89c',0,6901546,'mp4');INSERT INTO "content_localfile" VALUES('8da67f1a5b2465ac54d2a49136521568',1,153024,'png');INSERT INTO "content_localfile" VALUES('25538e286b45a7875f18101f89d4bc1f',1,505,'vtt');INSERT INTO "content_localfile" VALUES('b1b4d2306624e3eed45ce7bfd14ceb83',1,462,'vtt');INSERT INTO "content_localfile" VALUES('7abc85aff08b51ffb55a72aab1a95d35',1,459,'vtt');INSERT INTO "content_localfile" VALUES('fe02897985b4d3accde7f9aebf9a9e6a',1,4549844,'mp4');INSERT INTO "content_localfile" VALUES('6459464eed737e2a2af297ad673cc743',0,170301,'png');INSERT INTO "content_localfile" VALUES('ca428e68e6ff318facf816f1ff026806',0,754,'vtt');INSERT INTO "content_localfile" VALUES('2f7c6b22776f0f862559a2397e16294f',0,760,'vtt');INSERT INTO "content_localfile" VALUES('b67a96849da48853070f56237c78bc42',0,750,'vtt');INSERT INTO "content_localfile" VALUES('a98f9466d112ee8a2e307c7fe666fc21',0,12035130,'mp4');INSERT INTO "content_localfile" VALUES('4f851e32f5ff429a55aca35530bfb902',0,160015,'png');INSERT INTO "content_localfile" VALUES('63577aca7e932dde57d4ac8ae3e9931e',0,540,'vtt');INSERT INTO "content_localfile" VALUES('5d743e63a336cc0f81a618f29128cf52',0,471,'vtt');INSERT INTO "content_localfile" VALUES('68411e9015ea1f6a18c7ff83ed9e6eaf',0,521,'vtt');INSERT INTO "content_localfile" VALUES('a123ea185f70ac49517818ba829b8805',0,10170712,'mp4');INSERT INTO "content_localfile" VALUES('e3c6c685c523b79380cb0eb726d8af10',0,162746,'png');INSERT INTO "content_localfile" VALUES('ebd9d89c31874ae61be229fd2352afc3',0,741,'vtt');INSERT INTO "content_localfile" VALUES('3f6d0e6b933b092583357457a1505dd1',0,677,'vtt');INSERT INTO "content_localfile" VALUES('06d58cfbe279968b9e10c2da366488f2',0,723,'vtt');INSERT INTO "content_localfile" VALUES('162b11975f3b2bf7108ff6307b2539ea',0,7894488,'mp4');INSERT INTO "content_localfile" VALUES('e7a7d290b91d72cb3d74dbab0ce796a9',0,140714,'png');INSERT INTO "content_localfile" VALUES('50abb0e3e1e485b22aa4d8423309a5ec',0,495,'vtt');INSERT INTO "content_localfile" VALUES('214c65f9c0a843a63f9b24490e6d7ce8',0,432,'vtt');INSERT INTO "content_localfile" VALUES('62cb2a8d1ff9f4eeb6b20edee18cac51',0,510,'vtt');INSERT INTO "content_localfile" VALUES('3b752f98b0b7b0b1ed96880ab77e1ab6',0,4273683,'mp4');INSERT INTO "content_localfile" VALUES('675b107d1422d0b9d08b69811b2a7117',0,153845,'png');INSERT INTO "content_localfile" VALUES('2f16c82ab8d4e1de3d557e7ca6868b7e',0,632,'vtt');INSERT INTO "content_localfile" VALUES('4ae5f13950fb0f2cfd2d0dd6419b8a22',0,566,'vtt');INSERT INTO "content_localfile" VALUES('b35e46ec194f35fd72aa56578a34ac1d',0,702,'vtt');INSERT INTO "content_localfile" VALUES('00f656429e0d7b88dc12b23778096afc',0,7690374,'mp4');INSERT INTO "content_localfile" VALUES('5f3f223103c0e2f6427616680fc83134',0,175224,'png');INSERT INTO "content_localfile" VALUES('e463e8d99233503398c9d394fcfd8b36',0,508,'vtt');INSERT INTO "content_localfile" VALUES('183ee073a3de4071661a508b61de23cb',0,493,'vtt');INSERT INTO "content_localfile" VALUES('3e172910a9f1adefdb692216dc9bb658',0,547,'vtt');INSERT INTO "content_localfile" VALUES('a0e8524d34230f77d4df8a2c30d14be9',0,7492782,'mp4');INSERT INTO "content_localfile" VALUES('93136c4502b1118330c1e3fe2465c12d',0,176096,'png');INSERT INTO "content_localfile" VALUES('2f5fdbf7753d1179e04c04685492f8f2',0,759,'vtt');INSERT INTO "content_localfile" VALUES('d2a958ceb02f3dfdaff0c91145ca0de1',0,651,'vtt');INSERT INTO "content_localfile" VALUES('e4c064c9a558810a89a585da27d88835',0,762,'vtt');INSERT INTO "content_localfile" VALUES('2f79fe713534b28865561f613389667a',0,7358881,'mp4');INSERT INTO "content_localfile" VALUES('3771bddeed530b3bee407ca0c7056209',0,149325,'png');INSERT INTO "content_localfile" VALUES('03e11a2dc7c51b545c0522e0e3000d8f',0,431,'vtt');INSERT INTO "content_localfile" VALUES('7bae04a247e8fe2edf7f4cf2665a394d',0,380,'vtt');INSERT INTO "content_localfile" VALUES('d753d7ad28cd953d855e37980c48559b',0,422,'vtt');INSERT INTO "content_localfile" VALUES('9247cfeefee87204147c3c32997c3f29',0,4649253,'mp4');INSERT INTO "content_localfile" VALUES('f556285d456a8311e689af01b29059fc',0,183795,'png');INSERT INTO "content_localfile" VALUES('98170733016ef4378090085bb9006c3f',0,624,'vtt');INSERT INTO "content_localfile" VALUES('63e29b1efbf9c7d25bc0275eb2da6b45',0,525,'vtt');INSERT INTO "content_localfile" VALUES('5488b8932daf799c85b7eeff286a2054',0,579,'vtt');INSERT INTO "content_localfile" VALUES('aa485805fb8727e8177510def672a7f5',0,7781391,'mp4');INSERT INTO "content_localfile" VALUES('6df20ac6f0f1ee788ba90d22e6459763',0,171391,'png');INSERT INTO "content_localfile" VALUES('e081d4753f610bc1ea166cc28c1739b7',0,587,'vtt');INSERT INTO "content_localfile" VALUES('f3f5a5e20374270bad42a57f94e2c17a',0,569,'vtt');INSERT INTO "content_localfile" VALUES('85c600a5966e945e8e7685e46795a25a',0,588,'vtt');INSERT INTO "content_localfile" VALUES('6d4e015482668b039e1977f6b511623a',0,9909087,'mp4');INSERT INTO "content_localfile" VALUES('0a1547dd7f7ab2e58a25d636f80a9328',0,79940,'png');INSERT INTO "content_localfile" VALUES('2856f3429a57a446bc96ed12991dd9c0',0,758,'vtt');INSERT INTO "content_localfile" VALUES('6701f8802beb4547a88010866dad4a11',0,655,'vtt');INSERT INTO "content_localfile" VALUES('2c1013d4de738c9f75adb03c3b40878c',0,812,'vtt');INSERT INTO "content_localfile" VALUES('bdb40cb6f2654f125c269e00d91452eb',0,7145270,'mp4');INSERT INTO "content_localfile" VALUES('7c0866e27cf96206d52e1ee60b2b38a6',0,107139,'png');INSERT INTO "content_localfile" VALUES('dcaf5079db82c0114c3b2b4ddccf3659',0,369,'vtt');INSERT INTO "content_localfile" VALUES('07219c002c7905aec1a8fb76cf22f623',0,329,'vtt');INSERT INTO "content_localfile" VALUES('095bf05ba550c57a1788c41eacfaf8eb',0,375,'vtt');INSERT INTO "content_localfile" VALUES('e3d04755263517b9dc2e26556bddb551',0,2347596,'mp4');INSERT INTO "content_localfile" VALUES('9b2182c94f2d102486a7f166b170107f',0,106565,'png');INSERT INTO "content_localfile" VALUES('c60c34009aefc8decc06994989faf9fc',0,339,'vtt');INSERT INTO "content_localfile" VALUES('aa1279b12b186ca96d9460e21bf23e6b',0,311,'vtt');INSERT INTO "content_localfile" VALUES('fa18995d81d7d0048c6aee1b55e921ca',0,334,'vtt');INSERT INTO "content_localfile" VALUES('634132b84c7092e5cb83740932efe801',0,2315793,'mp4');INSERT INTO "content_localfile" VALUES('2e57ca70f429f3a3f14dcca28143cd91',0,162689,'png');INSERT INTO "content_localfile" VALUES('4da028a394451916a857352234febab0',0,654,'vtt');INSERT INTO "content_localfile" VALUES('7558b879eee4ae9f7ae741c5b9c3e4fa',0,564,'vtt');INSERT INTO "content_localfile" VALUES('364a993b640583af6df0d318e8626958',0,643,'vtt');INSERT INTO "content_localfile" VALUES('4b95df3f59db75f89b3dc4d37d78a0c7',0,7477010,'mp4');INSERT INTO "content_localfile" VALUES('9ae11a76310dc0764e61f9139f4130a5',0,113860,'png');INSERT INTO "content_localfile" VALUES('2bb25bbde7505d2f1197460222a08dda',0,387,'vtt');INSERT INTO "content_localfile" VALUES('05cc3e8d5b7977d35e8fd0a8b925a4ff',0,341,'vtt');INSERT INTO "content_localfile" VALUES('075d3d3ba9b9d51698bc2feffb5402b7',0,395,'vtt');INSERT INTO "content_localfile" VALUES('f001c5530e7bb23824d4ac1f1c92a776',0,2777562,'mp4');INSERT INTO "content_localfile" VALUES('1339f5ae25aeca0864a7076f2484c7e2',0,100804,'png');INSERT INTO "content_localfile" VALUES('ab5534c1b97140302655e15e36838b15',0,463,'vtt');INSERT INTO "content_localfile" VALUES('43d12ab4de7e0a115ae3eca062c2bf2a',0,409,'vtt');INSERT INTO "content_localfile" VALUES('3121048c84d71fec0f6cbbc217f5ffe5',0,456,'vtt');INSERT INTO "content_localfile" VALUES('def34a0bc284da68d103cc4e3b86c424',0,2883755,'mp4');INSERT INTO "content_localfile" VALUES('89b521846de0de142cf00a1ef4bc79a6',0,94236,'png');INSERT INTO "content_localfile" VALUES('e0c291a5a8c88a92a8a28c47d5bd4bcd',0,878,'vtt');INSERT INTO "content_localfile" VALUES('852f52bf7c1540765d456d2446266588',0,768,'vtt');INSERT INTO "content_localfile" VALUES('7b52b490c10bec40b143d21eefa31be4',0,866,'vtt');INSERT INTO "content_localfile" VALUES('4f9deaf388365a67353cccbe621305ba',0,7972882,'mp4');INSERT INTO "content_localfile" VALUES('1b0a0113048e906b2347bb68f78060ff',0,168784,'png');INSERT INTO "content_localfile" VALUES('58714e9e0aad837341d4984bfc745344',0,417,'vtt');INSERT INTO "content_localfile" VALUES('6740bb9d3cb76e19eb9b804e1e08177e',0,368,'vtt');INSERT INTO "content_localfile" VALUES('3629898e4fd0ef6627bcd3f8445690c7',0,478,'vtt');INSERT INTO "content_localfile" VALUES('d253e1b4d99766b73156b050aabfc0a5',0,4470285,'mp4');INSERT INTO "content_localfile" VALUES('1c3ee1abd05e1302b8c78dd63de88913',0,103265,'png');INSERT INTO "content_localfile" VALUES('c5bde09f3289f72ce1efaa05f2f04ba2',0,365,'vtt');INSERT INTO "content_localfile" VALUES('340f780435ea7620a3afa79c3fc792d1',0,340,'vtt');INSERT INTO "content_localfile" VALUES('368cbb0cd55464a46abe24d3690bda2a',0,400,'vtt');INSERT INTO "content_localfile" VALUES('d1468140bc34123dbd9aa5fc7a1b7bbb',0,2667848,'mp4');INSERT INTO "content_localfile" VALUES('84f4e24ef22d2011e99c14b79039add8',0,152104,'png');INSERT INTO "content_localfile" VALUES('86979dff4d8057d4c24052e42c38920a',0,648,'vtt');INSERT INTO "content_localfile" VALUES('733f05f7bddd777ca29b62d47ff38464',0,580,'vtt');INSERT INTO "content_localfile" VALUES('be145c743d1acb640f32ff38f6b7c0ba',0,675,'vtt');INSERT INTO "content_localfile" VALUES('aa78149fb2174c8ebb3d43eeb16a041c',0,13800670,'mp4');INSERT INTO "content_localfile" VALUES('f63a5412347ae307c81c8137490549a2',0,135472,'png');INSERT INTO "content_localfile" VALUES('d6093f43558ea4704f43ba230a692d35',0,576,'vtt');INSERT INTO "content_localfile" VALUES('f30714dde655393fa82a4b402dac4bd3',0,543,'vtt');INSERT INTO "content_localfile" VALUES('78060b308e6477d72c88701bccb0197e',0,594,'vtt');INSERT INTO "content_localfile" VALUES('c30d8d984cb82d8b0da5bff6a17ead57',0,11169427,'mp4');INSERT INTO "content_localfile" VALUES('6aaee357e6ac36a4c434c71184593caf',0,148079,'png');INSERT INTO "content_localfile" VALUES('948312132888c63bbe50a13fad98049a',0,1205,'vtt');INSERT INTO "content_localfile" VALUES('2fad19ce955a3ad5105bbc871b7dd31f',0,1149,'vtt');INSERT INTO "content_localfile" VALUES('6eecdbe12f6348a8b52da6671d88dbf2',0,1318,'vtt');INSERT INTO "content_localfile" VALUES('84613e1ba3546ff1e6496656f2d53fb2',0,18232002,'mp4');INSERT INTO "content_localfile" VALUES('14c58e8a27cb9c6521a479f8968ee130',0,154068,'png');INSERT INTO "content_localfile" VALUES('b169a23e1452eb8b886e2dfb61638ae4',0,462,'vtt');INSERT INTO "content_localfile" VALUES('b558dac8a848f645b95cc473c3650da2',0,452,'vtt');INSERT INTO "content_localfile" VALUES('7b67c66babd4d72ea7f1be2685121dae',0,568,'vtt');INSERT INTO "content_localfile" VALUES('550631fc1445c172ebd798860b15546e',0,28159579,'mp4');INSERT INTO "content_localfile" VALUES('7a53f0fdeeb74ae5f8c201dff020fa1e',0,136736,'png');INSERT INTO "content_localfile" VALUES('53df0d3e1acd8b9bd9b652771c6841f0',0,460,'vtt');INSERT INTO "content_localfile" VALUES('445234a4ccfb029fb41ee4d4841e3ae0',0,415,'vtt');INSERT INTO "content_localfile" VALUES('8d661fcd0179ae0a4da95546d51814a7',0,485,'vtt');INSERT INTO "content_localfile" VALUES('aa43037621abd4e2f2345bca19804515',0,7186870,'mp4');INSERT INTO "content_localfile" VALUES('2fbead5888bb18111f239bbfc07f66ff',0,122831,'png');INSERT INTO "content_localfile" VALUES('04dd16499ef2ccb16164664f0f0dd089',0,1343,'vtt');INSERT INTO "content_localfile" VALUES('97e2cc50861b69cd8a0886e3624c91bd',0,1306,'vtt');INSERT INTO "content_localfile" VALUES('8df17384dca6048d98b2c1182f8264c5',0,1319,'vtt');INSERT INTO "content_localfile" VALUES('765c824c2bbe8487b4f8ffc735b1e285',0,13863962,'mp4');INSERT INTO "content_localfile" VALUES('f20da9e0b41030267e759f80f607ee35',0,125952,'png');INSERT INTO "content_localfile" VALUES('238d8a01dccd29ae6e9f0e167f413de7',0,1450,'vtt');INSERT INTO "content_localfile" VALUES('493392d1d1ef6db0794ce9274b594731',0,1278,'vtt');INSERT INTO "content_localfile" VALUES('82d1d8dfc48b73b5f8f822d3c6866e76',0,1637,'vtt');INSERT INTO "content_localfile" VALUES('6df6893751a761cdcfbdd5faf500880b',0,16170784,'mp4');CREATE TABLE "device_contentcachekey" ("id" integer NOT NULL PRIMARY KEY AUTOINCREMENT, "key" integer NOT NULL);INSERT INTO "device_contentcachekey" VALUES(1,1641422738);CREATE TABLE "device_deviceappkey" ("id" integer NOT NULL PRIMARY KEY AUTOINCREMENT, "key" char(32) NOT NULL);CREATE TABLE "device_devicepermissions" ("user_id" char(32) NOT NULL PRIMARY KEY REFERENCES "kolibriauth_facilityuser" ("id"), "is_superuser" bool NOT NULL, "can_manage_content" bool NOT NULL);INSERT INTO "device_devicepermissions" VALUES('7db44f45ad86ff2e1eac6429a983bcd2',1,1);CREATE TABLE "device_devicesettings" ("id" integer NOT NULL PRIMARY KEY AUTOINCREMENT, "is_provisioned" bool NOT NULL, "language_id" varchar(15) NULL, "default_facility_id" char(32) NULL REFERENCES "kolibriauth_collection" ("id"), "allow_guest_access" bool NOT NULL, "allow_learner_unassigned_resource_access" bool NOT NULL, "allow_peer_unlisted_channel_import" bool NOT NULL, "landing_page" varchar(7) NOT NULL, "name" varchar(50) NOT NULL, "allow_other_browsers_to_connect" bool NOT NULL);INSERT INTO "device_devicesettings" VALUES(1,1,'en','64ea7a98590bb652bf4c82a13c3e176b',1,1,0,'learn','kolibri',0);CREATE TABLE "device_sqlitelock" ("id" integer NOT NULL PRIMARY KEY AUTOINCREMENT);CREATE TABLE "discovery_networklocation" ("base_url" varchar(100) NOT NULL, "application" varchar(32) NOT NULL, "kolibri_version" varchar(100) NOT NULL, "instance_id" varchar(32) NOT NULL, "device_name" varchar(100) NOT NULL, "operating_system" varchar(32) NOT NULL, "added" datetime NOT NULL, "last_accessed" datetime NOT NULL, "dynamic" bool NOT NULL, "nickname" varchar(100) NOT NULL, "id" varchar(36) NOT NULL PRIMARY KEY);CREATE TABLE "django_admin_log" ("id" integer NOT NULL PRIMARY KEY AUTOINCREMENT, "object_id" text NULL, "object_repr" varchar(200) NOT NULL, "action_flag" smallint unsigned NOT NULL, "change_message" text NOT NULL, "content_type_id" integer NULL REFERENCES "django_content_type" ("id"), "user_id" char(32) NOT NULL REFERENCES "kolibriauth_facilityuser" ("id"), "action_time" datetime NOT NULL);CREATE TABLE "django_content_type" ("id" integer NOT NULL PRIMARY KEY AUTOINCREMENT, "app_label" varchar(100) NOT NULL, "model" varchar(100) NOT NULL);INSERT INTO "django_content_type" VALUES(1,'admin','logentry');INSERT INTO "django_content_type" VALUES(2,'auth','permission');INSERT INTO "django_content_type" VALUES(3,'auth','group');INSERT INTO "django_content_type" VALUES(4,'contenttypes','contenttype');INSERT INTO "django_content_type" VALUES(5,'sessions','session');INSERT INTO "django_content_type" VALUES(6,'kolibriauth','collection');INSERT INTO "django_content_type" VALUES(7,'kolibriauth','facilitydataset');INSERT INTO "django_content_type" VALUES(8,'kolibriauth','facilityuser');INSERT INTO "django_content_type" VALUES(9,'kolibriauth','membership');INSERT INTO "django_content_type" VALUES(10,'kolibriauth','role');INSERT INTO "django_content_type" VALUES(11,'kolibriauth','classroom');INSERT INTO "django_content_type" VALUES(12,'kolibriauth','facility');INSERT INTO "django_content_type" VALUES(13,'kolibriauth','learnergroup');INSERT INTO "django_content_type" VALUES(14,'kolibriauth','adhocgroup');INSERT INTO "django_content_type" VALUES(15,'content','assessmentmetadata');INSERT INTO "django_content_type" VALUES(16,'content','channelmetadata');INSERT INTO "django_content_type" VALUES(17,'content','contentnode');INSERT INTO "django_content_type" VALUES(18,'content','contenttag');INSERT INTO "django_content_type" VALUES(19,'content','file');INSERT INTO "django_content_type" VALUES(20,'content','language');INSERT INTO "django_content_type" VALUES(21,'content','localfile');INSERT INTO "django_content_type" VALUES(22,'logger','attemptlog');INSERT INTO "django_content_type" VALUES(23,'logger','contentsessionlog');INSERT INTO "django_content_type" VALUES(24,'logger','contentsummarylog');INSERT INTO "django_content_type" VALUES(25,'logger','examattemptlog');INSERT INTO "django_content_type" VALUES(26,'logger','examlog');INSERT INTO "django_content_type" VALUES(27,'logger','masterylog');INSERT INTO "django_content_type" VALUES(28,'logger','usersessionlog');INSERT INTO "django_content_type" VALUES(29,'notifications','learnerprogressnotification');INSERT INTO "django_content_type" VALUES(30,'notifications','notificationslog');INSERT INTO "django_content_type" VALUES(31,'exams','exam');INSERT INTO "django_content_type" VALUES(32,'exams','examassignment');INSERT INTO "django_content_type" VALUES(33,'device','devicepermissions');INSERT INTO "django_content_type" VALUES(34,'device','devicesettings');INSERT INTO "django_content_type" VALUES(35,'device','contentcachekey');INSERT INTO "django_content_type" VALUES(36,'device','deviceappkey');INSERT INTO "django_content_type" VALUES(37,'device','sqlitelock');INSERT INTO "django_content_type" VALUES(38,'discovery','networklocation');INSERT INTO "django_content_type" VALUES(39,'discovery','dynamicnetworklocation');INSERT INTO "django_content_type" VALUES(40,'discovery','staticnetworklocation');INSERT INTO "django_content_type" VALUES(41,'lessons','lesson');INSERT INTO "django_content_type" VALUES(42,'lessons','lessonassignment');INSERT INTO "django_content_type" VALUES(43,'analytics','pingbacknotification');INSERT INTO "django_content_type" VALUES(44,'analytics','pingbacknotificationdismissed');INSERT INTO "django_content_type" VALUES(45,'morango','buffer');INSERT INTO "django_content_type" VALUES(46,'morango','certificate');INSERT INTO "django_content_type" VALUES(47,'morango','databaseidmodel');INSERT INTO "django_content_type" VALUES(48,'morango','databasemaxcounter');INSERT INTO "django_content_type" VALUES(49,'morango','deletedmodels');INSERT INTO "django_content_type" VALUES(50,'morango','instanceidmodel');INSERT INTO "django_content_type" VALUES(51,'morango','recordmaxcounter');INSERT INTO "django_content_type" VALUES(52,'morango','recordmaxcounterbuffer');INSERT INTO "django_content_type" VALUES(53,'morango','scopedefinition');INSERT INTO "django_content_type" VALUES(54,'morango','store');INSERT INTO "django_content_type" VALUES(55,'morango','syncsession');INSERT INTO "django_content_type" VALUES(56,'morango','transfersession');INSERT INTO "django_content_type" VALUES(57,'morango','nonce');INSERT INTO "django_content_type" VALUES(58,'morango','sharedkey');INSERT INTO "django_content_type" VALUES(59,'morango','harddeletedmodels');CREATE TABLE "django_migrations" ("id" integer NOT NULL PRIMARY KEY AUTOINCREMENT, "app" varchar(255) NOT NULL, "name" varchar(255) NOT NULL, "applied" datetime NOT NULL);INSERT INTO "django_migrations" VALUES(1,'kolibriauth','0001_initial','2021-04-20 20:32:27.039895');INSERT INTO "django_migrations" VALUES(2,'contenttypes','0001_initial','2021-04-20 20:32:27.096616');INSERT INTO "django_migrations" VALUES(3,'admin','0001_initial','2021-04-20 20:32:27.160816');INSERT INTO "django_migrations" VALUES(4,'admin','0002_logentry_remove_auto_add','2021-04-20 20:32:27.233393');INSERT INTO "django_migrations" VALUES(5,'analytics','0001_initial','2021-04-20 20:32:27.375482');INSERT INTO "django_migrations" VALUES(6,'contenttypes','0002_remove_content_type_name','2021-04-20 20:32:27.545081');INSERT INTO "django_migrations" VALUES(7,'auth','0001_initial','2021-04-20 20:32:27.778779');INSERT INTO "django_migrations" VALUES(8,'auth','0002_alter_permission_name_max_length','2021-04-20 20:32:27.846638');INSERT INTO "django_migrations" VALUES(9,'auth','0003_alter_user_email_max_length','2021-04-20 20:32:27.890144');INSERT INTO "django_migrations" VALUES(10,'auth','0004_alter_user_username_opts','2021-04-20 20:32:27.930538');INSERT INTO "django_migrations" VALUES(11,'auth','0005_alter_user_last_login_null','2021-04-20 20:32:27.968445');INSERT INTO "django_migrations" VALUES(12,'auth','0006_require_contenttypes_0002','2021-04-20 20:32:27.980582');INSERT INTO "django_migrations" VALUES(13,'auth','0007_alter_validators_add_error_messages','2021-04-20 20:32:28.017122');INSERT INTO "django_migrations" VALUES(14,'auth','0008_alter_user_username_max_length','2021-04-20 20:32:28.060858');INSERT INTO "django_migrations" VALUES(15,'content','0001_initial','2021-04-20 20:32:28.096958');INSERT INTO "django_migrations" VALUES(16,'content','0002_channelmetadatacache_last_updated','2021-04-20 20:32:28.144398');INSERT INTO "django_migrations" VALUES(17,'content','0003_auto_20170607_1212','2021-04-20 20:32:28.152151');INSERT INTO "django_migrations" VALUES(18,'content','0004_auto_20170825_1038','2021-04-20 20:32:28.944858');INSERT INTO "django_migrations" VALUES(19,'content','0005_auto_20171009_0903','2021-04-20 20:32:29.236313');INSERT INTO "django_migrations" VALUES(20,'content','0006_auto_20171128_1703','2021-04-20 20:32:29.302681');INSERT INTO "django_migrations" VALUES(21,'content','0007_auto_20180212_1155','2021-04-20 20:32:29.367382');INSERT INTO "django_migrations" VALUES(22,'content','0008_contentnode_coach_content','2021-04-20 20:32:29.483474');INSERT INTO "django_migrations" VALUES(23,'content','0009_auto_20180410_1139','2021-04-20 20:32:29.868195');INSERT INTO "django_migrations" VALUES(24,'content','0008_auto_20180429_1709','2021-04-20 20:32:30.070225');INSERT INTO "django_migrations" VALUES(25,'content','0010_merge_20180504_1540','2021-04-20 20:32:30.079841');INSERT INTO "django_migrations" VALUES(26,'content','0011_auto_20180907_1017','2021-04-20 20:32:30.330636');INSERT INTO "django_migrations" VALUES(27,'content','0012_auto_20180910_1702','2021-04-20 20:32:30.467419');INSERT INTO "django_migrations" VALUES(28,'content','0013_auto_20180919_1142','2021-04-20 20:32:30.633709');INSERT INTO "django_migrations" VALUES(29,'content','0014_auto_20181218_1132','2021-04-20 20:32:30.728955');INSERT INTO "django_migrations" VALUES(30,'content','0015_auto_20190125_1715','2021-04-20 20:32:30.901305');INSERT INTO "django_migrations" VALUES(31,'content','0016_auto_20190124_1639','2021-04-20 20:32:31.041996');INSERT INTO "django_migrations" VALUES(32,'content','0017_auto_20190415_1855','2021-04-20 20:32:31.141325');INSERT INTO "django_migrations" VALUES(33,'content','0018_contentnode_num_coach_contents','2021-04-20 20:32:31.261313');INSERT INTO "django_migrations" VALUES(34,'content','0019_contentnode_slideshow_options','2021-04-20 20:32:31.458639');INSERT INTO "django_migrations" VALUES(35,'content','0020_le_utils_0_20_upgrade_migration','2021-04-20 20:32:31.608267');INSERT INTO "django_migrations" VALUES(36,'content','0021_remove_contentnode_stemmed_metaphone','2021-04-20 20:32:31.736437');INSERT INTO "django_migrations" VALUES(37,'content','0022_remove_file_available','2021-04-20 20:32:31.840672');INSERT INTO "django_migrations" VALUES(38,'content','0023_contentnode_on_device_resources','2021-04-20 20:32:31.951407');INSERT INTO "django_migrations" VALUES(39,'content','0024_channelmetadata_public','2021-04-20 20:32:32.057152');INSERT INTO "django_migrations" VALUES(40,'content','0025_add_h5p_kind','2021-04-20 20:32:32.180056');INSERT INTO "django_migrations" VALUES(41,'content','0026_contentnode_options','2021-04-20 20:32:32.360103');INSERT INTO "django_migrations" VALUES(42,'content','0027_channelmetadata_tagline','2021-04-20 20:32:32.471769');INSERT INTO "django_migrations" VALUES(43,'kolibriauth','0002_auto_20170608_2125','2021-04-20 20:32:32.553989');INSERT INTO "django_migrations" VALUES(44,'kolibriauth','0003_auto_20170621_0958','2021-04-20 20:32:32.954034');INSERT INTO "django_migrations" VALUES(45,'device','0001_initial','2021-04-20 20:32:33.050646');INSERT INTO "django_migrations" VALUES(46,'kolibriauth','0004_auto_20170816_1607','2021-04-20 20:32:33.229276');INSERT INTO "django_migrations" VALUES(47,'kolibriauth','0005_auto_20170818_1203','2021-04-20 20:32:33.306874');INSERT INTO "django_migrations" VALUES(48,'kolibriauth','0006_auto_20171206_1207','2021-04-20 20:32:33.609273');INSERT INTO "django_migrations" VALUES(49,'kolibriauth','0007_auto_20171226_1125','2021-04-20 20:32:33.740234');INSERT INTO "django_migrations" VALUES(50,'kolibriauth','0008_auto_20180222_1244','2021-04-20 20:32:33.797207');INSERT INTO "django_migrations" VALUES(51,'kolibriauth','0009_auto_20180301_1123','2021-04-20 20:32:33.904652');INSERT INTO "django_migrations" VALUES(52,'kolibriauth','0010_auto_20180320_1320','2021-04-20 20:32:33.995052');INSERT INTO "django_migrations" VALUES(53,'kolibriauth','0011_facilitydataset_show_download_button_in_learn','2021-04-20 20:32:34.079336');INSERT INTO "django_migrations" VALUES(54,'kolibriauth','0012_facilitydataset_allow_guest_access','2021-04-20 20:32:34.165259');INSERT INTO "django_migrations" VALUES(55,'device','0002_devicesettings_default_facility','2021-04-20 20:32:34.261675');INSERT INTO "django_migrations" VALUES(56,'device','0003_contentcachekey','2021-04-20 20:32:34.460870');INSERT INTO "django_migrations" VALUES(57,'device','0004_auto_20190306_0553','2021-04-20 20:32:34.551180');INSERT INTO "django_migrations" VALUES(58,'device','0005_auto_20191203_0951','2021-04-20 20:32:34.866076');INSERT INTO "django_migrations" VALUES(59,'device','0006_migrate_guest_access','2021-04-20 20:32:35.328868');INSERT INTO "django_migrations" VALUES(60,'device','0007_devicesettings_name','2021-04-20 20:32:35.426729');INSERT INTO "django_migrations" VALUES(61,'device','0007_deviceappkey','2021-04-20 20:32:35.467136');INSERT INTO "django_migrations" VALUES(62,'device','0008_merge_20200531_1829','2021-04-20 20:32:35.484630');INSERT INTO "django_migrations" VALUES(63,'device','0008_devicesettings_allow_other_browsers_to_connect','2021-04-20 20:32:35.580504');INSERT INTO "django_migrations" VALUES(64,'device','0009_merge_20200608_1716','2021-04-20 20:32:35.595804');INSERT INTO "django_migrations" VALUES(65,'device','0010_sqlitelock','2021-04-20 20:32:35.631802');INSERT INTO "django_migrations" VALUES(66,'discovery','0001_initial','2021-04-20 20:32:35.678915');INSERT INTO "django_migrations" VALUES(67,'discovery','0002_general_network_location_data_structure','2021-04-20 20:32:35.942175');INSERT INTO "django_migrations" VALUES(68,'exams','0001_initial','2021-04-20 20:32:36.102479');INSERT INTO "django_migrations" VALUES(69,'exams','0002_update_exam_data_model','2021-04-20 20:32:36.410863');INSERT INTO "django_migrations" VALUES(70,'exams','0003_auto_20190426_1015','2021-04-20 20:32:36.532097');INSERT INTO "django_migrations" VALUES(71,'exams','0004_exam_add_dates_opened_created_and_archived','2021-04-20 20:32:37.008898');INSERT INTO "django_migrations" VALUES(72,'kolibriauth','0013_auto_20180917_1213','2021-04-20 20:32:37.122068');INSERT INTO "django_migrations" VALUES(73,'kolibriauth','0014_auto_20190815_1421','2021-04-20 20:32:37.437438');INSERT INTO "django_migrations" VALUES(74,'kolibriauth','0015_facilitydataset_registered','2021-04-20 20:32:37.553004');INSERT INTO "django_migrations" VALUES(75,'kolibriauth','0016_add_adhoclearnersgroup_collection_kind','2021-04-20 20:32:37.669310');INSERT INTO "django_migrations" VALUES(76,'kolibriauth','0017_remove_facilitydataset_allow_guest_access','2021-04-20 20:32:37.762552');INSERT INTO "django_migrations" VALUES(77,'kolibriauth','0018_no_i18n_collection_kinds','2021-04-20 20:32:37.876580');INSERT INTO "django_migrations" VALUES(78,'lessons','0001_initial','2021-04-20 20:32:38.079805');INSERT INTO "django_migrations" VALUES(79,'lessons','0002_auto_20180221_1115','2021-04-20 20:32:38.546125');INSERT INTO "django_migrations" VALUES(80,'logger','0001_initial','2021-04-20 20:32:40.534127');INSERT INTO "django_migrations" VALUES(81,'logger','0002_auto_20170518_1031','2021-04-20 20:32:45.288103');INSERT INTO "django_migrations" VALUES(82,'logger','0003_auto_20170531_1140','2021-04-20 20:32:45.577690');INSERT INTO "django_migrations" VALUES(83,'logger','0004_tidy_progress_range','2021-04-20 20:32:45.814916');INSERT INTO "django_migrations" VALUES(84,'logger','0005_auto_20180514_1419','2021-04-20 20:32:46.157872');INSERT INTO "django_migrations" VALUES(85,'logger','0006_remove_examattemptlog_channel_id','2021-04-20 20:32:46.333647');INSERT INTO "django_migrations" VALUES(86,'logger','0007_contentsessionlog_visitor_id','2021-04-20 20:32:46.498855');INSERT INTO "django_migrations" VALUES(87,'morango','0001_initial','2021-04-20 20:32:47.231916');INSERT INTO "django_migrations" VALUES(88,'morango','0002_auto_20170511_0400','2021-04-20 20:32:49.464816');INSERT INTO "django_migrations" VALUES(89,'morango','0003_auto_20170519_0543','2021-04-20 20:32:49.846442');INSERT INTO "django_migrations" VALUES(90,'morango','0004_auto_20170520_2112','2021-04-20 20:32:50.337703');INSERT INTO "django_migrations" VALUES(91,'morango','0005_auto_20170629_2139','2021-04-20 20:32:50.600522');INSERT INTO "django_migrations" VALUES(92,'morango','0006_instanceidmodel_system_id','2021-04-20 20:32:50.711564');INSERT INTO "django_migrations" VALUES(93,'morango','0007_auto_20171018_1615','2021-04-20 20:32:55.709168');INSERT INTO "django_migrations" VALUES(94,'morango','0008_auto_20171114_2217','2021-04-20 20:32:56.546161');INSERT INTO "django_migrations" VALUES(95,'morango','0009_auto_20171205_0252','2021-04-20 20:32:56.627963');INSERT INTO "django_migrations" VALUES(96,'morango','0010_auto_20171206_1615','2021-04-20 20:32:56.846008');INSERT INTO "django_migrations" VALUES(97,'morango','0011_sharedkey','2021-04-20 20:32:56.884163');INSERT INTO "django_migrations" VALUES(98,'morango','0012_auto_20180927_1658','2021-04-20 20:32:57.056661');INSERT INTO "django_migrations" VALUES(99,'morango','0013_auto_20190627_1513','2021-04-20 20:32:57.151405');INSERT INTO "django_migrations" VALUES(100,'morango','0014_syncsession_extra_fields','2021-04-20 20:32:57.259343');INSERT INTO "django_migrations" VALUES(101,'morango','0015_auto_20200508_2104','2021-04-20 20:32:57.423882');INSERT INTO "django_migrations" VALUES(102,'morango','0016_store_deserialization_error','2021-04-20 20:32:57.506340');INSERT INTO "django_migrations" VALUES(103,'notifications','0001_initial','2021-04-20 20:32:57.535596');INSERT INTO "django_migrations" VALUES(104,'notifications','0002_notificationslog','2021-04-20 20:32:57.567393');INSERT INTO "django_migrations" VALUES(105,'notifications','0003_learnerprogressnotification_quiz_num_correct','2021-04-20 20:32:57.604174');INSERT INTO "django_migrations" VALUES(106,'notifications','0004_learnerprogressnotification_quiz_num_answered','2021-04-20 20:32:57.667599');INSERT INTO "django_migrations" VALUES(107,'notifications','0005_learnerprogressnotification_assignment_collections','2021-04-20 20:32:57.717918');INSERT INTO "django_migrations" VALUES(108,'sessions','0001_initial','2021-04-20 20:32:57.760346');CREATE TABLE "django_session" ("session_key" varchar(40) NOT NULL PRIMARY KEY, "session_data" text NOT NULL, "expire_date" datetime NOT NULL);CREATE TABLE "exams_exam" ("id" char(32) NOT NULL PRIMARY KEY, "_morango_dirty_bit" bool NOT NULL, "_morango_source_id" varchar(96) NOT NULL, "_morango_partition" varchar(128) NOT NULL, "title" varchar(200) NOT NULL, "question_count" integer NOT NULL, "question_sources" text NOT NULL, "seed" integer NOT NULL, "active" bool NOT NULL, "archive" bool NOT NULL, "collection_id" char(32) NOT NULL REFERENCES "kolibriauth_collection" ("id"), "creator_id" char(32) NOT NULL REFERENCES "kolibriauth_facilityuser" ("id"), "dataset_id" char(32) NOT NULL REFERENCES "kolibriauth_facilitydataset" ("id"), "data_model_version" smallint NOT NULL, "learners_see_fixed_order" bool NOT NULL, "date_created" datetime NULL, "date_archived" datetime NULL, "date_activated" datetime NULL);CREATE TABLE "exams_examassignment" ("id" char(32) NOT NULL PRIMARY KEY, "_morango_dirty_bit" bool NOT NULL, "_morango_source_id" varchar(96) NOT NULL, "_morango_partition" varchar(128) NOT NULL, "assigned_by_id" char(32) NOT NULL REFERENCES "kolibriauth_facilityuser" ("id"), "collection_id" char(32) NOT NULL REFERENCES "kolibriauth_collection" ("id"), "dataset_id" char(32) NOT NULL REFERENCES "kolibriauth_facilitydataset" ("id"), "exam_id" char(32) NOT NULL REFERENCES "exams_exam" ("id"));CREATE TABLE "kolibriauth_collection" ("id" char(32) NOT NULL PRIMARY KEY, "_morango_dirty_bit" bool NOT NULL, "_morango_source_id" varchar(96) NOT NULL, "_morango_partition" varchar(128) NOT NULL, "name" varchar(100) NOT NULL, "lft" integer unsigned NOT NULL, "rght" integer unsigned NOT NULL, "tree_id" integer unsigned NOT NULL, "level" integer unsigned NOT NULL, "dataset_id" char(32) NOT NULL REFERENCES "kolibriauth_facilitydataset" ("id"), "kind" varchar(20) NOT NULL, "parent_id" char(32) NULL REFERENCES "kolibriauth_collection" ("id"));INSERT INTO "kolibriauth_collection" VALUES('64ea7a98590bb652bf4c82a13c3e176b',1,'d3089eed80f64689a5a2ca297cddd111','bff630181300f1ba7739796e9e5963ff:allusers-ro','Home Facility Adam',1,4,1,0,'bff630181300f1ba7739796e9e5963ff','facility',NULL);INSERT INTO "kolibriauth_collection" VALUES('08ab8715f7a1b8f61a7c358a762efdd3',1,'b3b445f553a44bac854d7c2670009fcc','bff630181300f1ba7739796e9e5963ff:allusers-ro','cool class',2,3,1,1,'bff630181300f1ba7739796e9e5963ff','classroom','64ea7a98590bb652bf4c82a13c3e176b');CREATE TABLE "kolibriauth_facilitydataset" ("id" char(32) NOT NULL PRIMARY KEY, "_morango_dirty_bit" bool NOT NULL, "_morango_source_id" varchar(96) NOT NULL, "_morango_partition" varchar(128) NOT NULL, "description" text NOT NULL, "location" varchar(200) NOT NULL, "learner_can_edit_username" bool NOT NULL, "learner_can_edit_name" bool NOT NULL, "learner_can_edit_password" bool NOT NULL, "learner_can_sign_up" bool NOT NULL, "learner_can_delete_account" bool NOT NULL, "learner_can_login_with_no_password" bool NOT NULL, "preset" varchar(50) NOT NULL, "show_download_button_in_learn" bool NOT NULL, "registered" bool NOT NULL);INSERT INTO "kolibriauth_facilitydataset" VALUES('bff630181300f1ba7739796e9e5963ff',1,'bff630181300f1ba7739796e9e5963ff','bff630181300f1ba7739796e9e5963ff:allusers-ro','','',1,1,1,0,1,0,'informal',1,0);CREATE TABLE "kolibriauth_facilityuser" ("password" varchar(128) NOT NULL, "last_login" datetime NULL, "id" char(32) NOT NULL PRIMARY KEY, "_morango_dirty_bit" bool NOT NULL, "_morango_source_id" varchar(96) NOT NULL, "_morango_partition" varchar(128) NOT NULL, "username" varchar(30) NOT NULL, "full_name" varchar(120) NOT NULL, "date_joined" varchar NOT NULL, "dataset_id" char(32) NOT NULL REFERENCES "kolibriauth_facilitydataset" ("id"), "facility_id" char(32) NOT NULL REFERENCES "kolibriauth_collection" ("id"), "birth_year" varchar(16) NOT NULL, "gender" varchar(16) NOT NULL, "id_number" varchar(64) NOT NULL);INSERT INTO "kolibriauth_facilityuser" VALUES('pbkdf2_sha256$36000$QSfJNoxdK7dr$EAPTF/8X7dCvWbGBnSC4Dacmak1aUa4eBFKHqOp2r0w=','2022-01-05 23:26:31.131448','7db44f45ad86ff2e1eac6429a983bcd2',1,'a4952c485a50469bb34320da50eb7ce4','bff630181300f1ba7739796e9e5963ff:user-ro:7db44f45ad86ff2e1eac6429a983bcd2','adam','Adam','2022-01-05 22:44:35.596487(Europe/London)','bff630181300f1ba7739796e9e5963ff','64ea7a98590bb652bf4c82a13c3e176b','DEFERRED','DEFERRED','');INSERT INTO "kolibriauth_facilityuser" VALUES('pbkdf2_sha256$36000$p3Zg2xDxcNKS$nzekx4VMc7p8ZvlKmPD+OPOk9U/hSjjTRa6uRANlmhE=',NULL,'0499cff5491c002a3475023db9741669',1,'a5c9ad534a6f4ab7a9c18cfd44849852','bff630181300f1ba7739796e9e5963ff:user-ro:0499cff5491c002a3475023db9741669','erin','erin','2022-01-05 22:56:21.726742(Europe/London)','bff630181300f1ba7739796e9e5963ff','64ea7a98590bb652bf4c82a13c3e176b','NOT_SPECIFIED','NOT_SPECIFIED','');CREATE TABLE "kolibriauth_membership" ("id" char(32) NOT NULL PRIMARY KEY, "_morango_dirty_bit" bool NOT NULL, "_morango_source_id" varchar(96) NOT NULL, "_morango_partition" varchar(128) NOT NULL, "collection_id" char(32) NOT NULL REFERENCES "kolibriauth_collection" ("id"), "dataset_id" char(32) NOT NULL REFERENCES "kolibriauth_facilitydataset" ("id"), "user_id" char(32) NOT NULL REFERENCES "kolibriauth_facilityuser" ("id"));CREATE TABLE "kolibriauth_role" ("id" char(32) NOT NULL PRIMARY KEY, "_morango_dirty_bit" bool NOT NULL, "_morango_source_id" varchar(96) NOT NULL, "_morango_partition" varchar(128) NOT NULL, "collection_id" char(32) NOT NULL REFERENCES "kolibriauth_collection" ("id"), "dataset_id" char(32) NOT NULL REFERENCES "kolibriauth_facilitydataset" ("id"), "user_id" char(32) NOT NULL REFERENCES "kolibriauth_facilityuser" ("id"), "kind" varchar(26) NOT NULL);INSERT INTO "kolibriauth_role" VALUES('dad2db6664bbd49df6840885ab4b9b64',1,'64ea7a98590bb652bf4c82a13c3e176b:admin','bff630181300f1ba7739796e9e5963ff:user-ro:7db44f45ad86ff2e1eac6429a983bcd2','64ea7a98590bb652bf4c82a13c3e176b','bff630181300f1ba7739796e9e5963ff','7db44f45ad86ff2e1eac6429a983bcd2','admin');CREATE TABLE "lessons_lesson" ("id" char(32) NOT NULL PRIMARY KEY, "_morango_dirty_bit" bool NOT NULL, "_morango_source_id" varchar(96) NOT NULL, "_morango_partition" varchar(128) NOT NULL, "title" varchar(50) NOT NULL, "description" varchar(200) NOT NULL, "resources" text NOT NULL, "is_active" bool NOT NULL, "collection_id" char(32) NOT NULL REFERENCES "kolibriauth_collection" ("id"), "created_by_id" char(32) NOT NULL REFERENCES "kolibriauth_facilityuser" ("id"), "dataset_id" char(32) NOT NULL REFERENCES "kolibriauth_facilitydataset" ("id"), "date_created" varchar NOT NULL);CREATE TABLE "lessons_lessonassignment" ("id" char(32) NOT NULL PRIMARY KEY, "_morango_dirty_bit" bool NOT NULL, "_morango_source_id" varchar(96) NOT NULL, "_morango_partition" varchar(128) NOT NULL, "assigned_by_id" char(32) NOT NULL REFERENCES "kolibriauth_facilityuser" ("id"), "collection_id" char(32) NOT NULL REFERENCES "kolibriauth_collection" ("id"), "dataset_id" char(32) NOT NULL REFERENCES "kolibriauth_facilitydataset" ("id"), "lesson_id" char(32) NOT NULL REFERENCES "lessons_lesson" ("id"));CREATE TABLE "logger_attemptlog" ("id" char(32) NOT NULL PRIMARY KEY, "_morango_dirty_bit" bool NOT NULL, "_morango_source_id" varchar(96) NOT NULL, "_morango_partition" varchar(128) NOT NULL, "item" varchar(200) NOT NULL, "start_timestamp" varchar NOT NULL, "end_timestamp" varchar NOT NULL, "completion_timestamp" varchar NULL, "time_spent" real NOT NULL, "complete" bool NOT NULL, "correct" real NOT NULL, "hinted" bool NOT NULL, "answer" text NULL, "simple_answer" varchar(200) NOT NULL, "interaction_history" text NOT NULL, "dataset_id" char(32) NOT NULL REFERENCES "kolibriauth_facilitydataset" ("id"), "masterylog_id" char(32) NULL REFERENCES "logger_masterylog" ("id"), "sessionlog_id" char(32) NOT NULL REFERENCES "logger_contentsessionlog" ("id"), "user_id" char(32) NULL REFERENCES "kolibriauth_facilityuser" ("id"), "error" bool NOT NULL);CREATE TABLE "logger_contentsessionlog" ("id" char(32) NOT NULL PRIMARY KEY, "_morango_dirty_bit" bool NOT NULL, "_morango_source_id" varchar(96) NOT NULL, "_morango_partition" varchar(128) NOT NULL, "content_id" char(32) NOT NULL, "channel_id" char(32) NOT NULL, "start_timestamp" varchar NOT NULL, "end_timestamp" varchar NULL, "time_spent" real NOT NULL, "progress" real NOT NULL, "kind" varchar(200) NOT NULL, "extra_fields" text NOT NULL, "dataset_id" char(32) NOT NULL REFERENCES "kolibriauth_facilitydataset" ("id"), "user_id" char(32) NULL REFERENCES "kolibriauth_facilityuser" ("id"), "visitor_id" char(32) NULL);CREATE TABLE "logger_contentsummarylog" ("id" char(32) NOT NULL PRIMARY KEY, "_morango_dirty_bit" bool NOT NULL, "_morango_source_id" varchar(96) NOT NULL, "_morango_partition" varchar(128) NOT NULL, "content_id" char(32) NOT NULL, "channel_id" char(32) NOT NULL, "end_timestamp" varchar NULL, "completion_timestamp" varchar NULL, "time_spent" real NOT NULL, "progress" real NOT NULL, "kind" varchar(200) NOT NULL, "extra_fields" text NOT NULL, "dataset_id" char(32) NOT NULL REFERENCES "kolibriauth_facilitydataset" ("id"), "user_id" char(32) NOT NULL REFERENCES "kolibriauth_facilityuser" ("id"), "start_timestamp" varchar NOT NULL);CREATE TABLE "logger_examattemptlog" ("id" char(32) NOT NULL PRIMARY KEY, "_morango_dirty_bit" bool NOT NULL, "_morango_source_id" varchar(96) NOT NULL, "_morango_partition" varchar(128) NOT NULL, "item" varchar(200) NOT NULL, "start_timestamp" varchar NOT NULL, "end_timestamp" varchar NOT NULL, "completion_timestamp" varchar NULL, "time_spent" real NOT NULL, "complete" bool NOT NULL, "correct" real NOT NULL, "hinted" bool NOT NULL, "answer" text NULL, "simple_answer" varchar(200) NOT NULL, "interaction_history" text NOT NULL, "content_id" char(32) NOT NULL, "dataset_id" char(32) NOT NULL REFERENCES "kolibriauth_facilitydataset" ("id"), "examlog_id" char(32) NOT NULL REFERENCES "logger_examlog" ("id"), "user_id" char(32) NULL REFERENCES "kolibriauth_facilityuser" ("id"), "error" bool NOT NULL);CREATE TABLE "logger_examlog" ("id" char(32) NOT NULL PRIMARY KEY, "_morango_dirty_bit" bool NOT NULL, "_morango_source_id" varchar(96) NOT NULL, "_morango_partition" varchar(128) NOT NULL, "closed" bool NOT NULL, "dataset_id" char(32) NOT NULL REFERENCES "kolibriauth_facilitydataset" ("id"), "exam_id" char(32) NOT NULL REFERENCES "exams_exam" ("id"), "user_id" char(32) NOT NULL REFERENCES "kolibriauth_facilityuser" ("id"), "completion_timestamp" varchar NULL);CREATE TABLE "logger_masterylog" ("id" char(32) NOT NULL PRIMARY KEY, "_morango_dirty_bit" bool NOT NULL, "_morango_source_id" varchar(96) NOT NULL, "_morango_partition" varchar(128) NOT NULL, "mastery_criterion" text NOT NULL, "end_timestamp" varchar NULL, "completion_timestamp" varchar NULL, "mastery_level" integer NOT NULL, "complete" bool NOT NULL, "dataset_id" char(32) NOT NULL REFERENCES "kolibriauth_facilitydataset" ("id"), "summarylog_id" char(32) NOT NULL REFERENCES "logger_contentsummarylog" ("id"), "user_id" char(32) NOT NULL REFERENCES "kolibriauth_facilityuser" ("id"), "start_timestamp" varchar NOT NULL);CREATE TABLE "logger_usersessionlog" ("id" char(32) NOT NULL PRIMARY KEY, "_morango_dirty_bit" bool NOT NULL, "_morango_source_id" varchar(96) NOT NULL, "_morango_partition" varchar(128) NOT NULL, "channels" text NOT NULL, "start_timestamp" varchar NOT NULL, "pages" text NOT NULL, "dataset_id" char(32) NOT NULL REFERENCES "kolibriauth_facilitydataset" ("id"), "user_id" char(32) NOT NULL REFERENCES "kolibriauth_facilityuser" ("id"), "last_interaction_timestamp" varchar NULL);INSERT INTO "logger_usersessionlog" VALUES('ddefbda294dd9fffbc9279f68ae6156a',1,'aef7f3f48a72468aa5913450cf778b99','bff630181300f1ba7739796e9e5963ff:user-rw:7db44f45ad86ff2e1eac6429a983bcd2','','2022-01-05 22:44:36.657950(Europe/London)','','bff630181300f1ba7739796e9e5963ff','7db44f45ad86ff2e1eac6429a983bcd2','2022-01-05 22:48:24.193311(Europe/London)');INSERT INTO "logger_usersessionlog" VALUES('7ac9fcb265202371d59fdd911f1561dc',1,'87d5f9b3eb2642bdb7b24ea63dfdfef4','bff630181300f1ba7739796e9e5963ff:user-rw:7db44f45ad86ff2e1eac6429a983bcd2','','2022-01-05 23:26:31.169281(Europe/London)','','bff630181300f1ba7739796e9e5963ff','7db44f45ad86ff2e1eac6429a983bcd2','2022-01-05 23:26:31.169514(Europe/London)');CREATE TABLE "morango_buffer" ("id" integer NOT NULL PRIMARY KEY AUTOINCREMENT, "serialized" text NOT NULL, "deleted" bool NOT NULL, "last_saved_instance" char(32) NOT NULL, "last_saved_counter" integer NOT NULL, "model_name" varchar(40) NOT NULL, "profile" varchar(40) NOT NULL, "partition" text NOT NULL, "model_uuid" char(32) NOT NULL, "transfer_session_id" char(32) NOT NULL REFERENCES "morango_transfersession" ("id"), "conflicting_serialized_data" text NOT NULL, "_self_ref_fk" varchar(32) NOT NULL, "source_id" varchar(96) NOT NULL, "hard_deleted" bool NOT NULL);CREATE TABLE "morango_certificate" ("id" char(32) NOT NULL PRIMARY KEY, "profile" varchar(20) NOT NULL, "scope_version" integer NOT NULL, "scope_params" text NOT NULL, "public_key" text NOT NULL, "serialized" text NOT NULL, "signature" text NOT NULL, "private_key" text NULL, "lft" integer unsigned NOT NULL, "rght" integer unsigned NOT NULL, "tree_id" integer unsigned NOT NULL, "level" integer unsigned NOT NULL, "scope_definition_id" varchar(20) NOT NULL REFERENCES "morango_scopedefinition" ("id"), "salt" varchar(32) NOT NULL, "parent_id" char(32) NULL REFERENCES "morango_certificate" ("id"));INSERT INTO "morango_certificate" VALUES('bff630181300f1ba7739796e9e5963ff','facilitydata',1,'{"dataset_id": "bff630181300f1ba7739796e9e5963ff"}','MIIBCgKCAQEA24FMUW+XhIgA/1qphqaZtEfLa3e43Ya/3lMWqX6KTuANdleCDfreQQMVTa+tyhHhBSTDwmlLpP/AOHe92Qe9ihRI4TpdRfQQFIgngRdLhmXvo+tJ7c7n5e97qYWh9vD8+afecBOoRBUtWklLV6hDk8ZbBSc2wF3ExvfQrnalunx0C5I/qY7QnEqfmAmv8J6y94yP0pYlUe7GBfHywwCuifl6dFju4xHAlGVfYPtvJC6Q3rrn/rzg5NFURYWRia87wM2MQgaFgwYEHx+rTzGOU9JQYWxldEmaT2lKe5P0yin3muHJQwrFYy9qTw8V1EadOAk74Ado8uwBTR8nYswcOwIDAQAB','{"id": "bff630181300f1ba7739796e9e5963ff", "parent_id": null, "profile": "facilitydata", "salt": "", "scope_definition_id": "full-facility", "scope_version": 1, "scope_params": "{\"dataset_id\": \"bff630181300f1ba7739796e9e5963ff\"}", "public_key_string": "MIIBCgKCAQEA24FMUW+XhIgA/1qphqaZtEfLa3e43Ya/3lMWqX6KTuANdleCDfreQQMVTa+tyhHhBSTDwmlLpP/AOHe92Qe9ihRI4TpdRfQQFIgngRdLhmXvo+tJ7c7n5e97qYWh9vD8+afecBOoRBUtWklLV6hDk8ZbBSc2wF3ExvfQrnalunx0C5I/qY7QnEqfmAmv8J6y94yP0pYlUe7GBfHywwCuifl6dFju4xHAlGVfYPtvJC6Q3rrn/rzg5NFURYWRia87wM2MQgaFgwYEHx+rTzGOU9JQYWxldEmaT2lKe5P0yin3muHJQwrFYy9qTw8V1EadOAk74Ado8uwBTR8nYswcOwIDAQAB"}','cgWArXlYLP/af4jaPjVZMebF9m9lGbFJJh7qXK1d/OL32gk15m+ItdpOb02HoQLPuBbB1TCuXluLAGYY0ygLjrkDuc00NCmz8so73b/AQ/ROj4aABz5596wQ8gMJCi++kSRwj1alPBpr8WZgOgKYdhiZewSMvROUht6ANTU2L4RVv9sUjXU08scUMj1JrK9Ks5V7jEDTpXL0SpgmOKNQ15Q5N8zLjTAy0P+24mARiUWTXze3cloOntfmObKNcnVjJywMKwC/VpeAKYssISGZAgvfXz/5GeJlwE3Z/ZmWKYf167FVnw6nL1OiSx30NY0KcHPPsykj0VKjsWuY7vf3tA==','-----BEGIN RSA PRIVATE KEY-----
MIIEpAIBAAKCAQEA24FMUW+XhIgA/1qphqaZtEfLa3e43Ya/3lMWqX6KTuANdleC
DfreQQMVTa+tyhHhBSTDwmlLpP/AOHe92Qe9ihRI4TpdRfQQFIgngRdLhmXvo+tJ
7c7n5e97qYWh9vD8+afecBOoRBUtWklLV6hDk8ZbBSc2wF3ExvfQrnalunx0C5I/
qY7QnEqfmAmv8J6y94yP0pYlUe7GBfHywwCuifl6dFju4xHAlGVfYPtvJC6Q3rrn
/rzg5NFURYWRia87wM2MQgaFgwYEHx+rTzGOU9JQYWxldEmaT2lKe5P0yin3muHJ
QwrFYy9qTw8V1EadOAk74Ado8uwBTR8nYswcOwIDAQABAoIBAQDEKQVR1V7bcksp
6BSNn37GjE5uiLwtRAldHnWnHM1u9W0yb7tq0OEjyiSUm0W8ykOEPDmxGDYgiul1
zRRcyj0JE12Z4XWPWS+xmYdsJqw4vAnvPAqCOaAlbOHfOevm6a+5T9pJ4FdEGITC
JbPt7xINEnsu3L9iI6oBgV79OkyanIvAq5o/Zb/0JBSgEw9X+1KEFQDCgHvrGmns
yuy6PVGruRAMJbQux0AH2RHon+Gk3XZyAJMZNuBBiYPftna71KWMorJjSSzL7/wI
Oh4Nmt9AbJ1OeLZn7GTmzcyb9JD7QZ3txiESMSHMNIqPoHmeqqOECN5lIJKQoBrI
Hg/ORExJAoGBAPCCs7fGSSyde6bIHM7hdaYvnVzbi0YzHgybC5JFeuua/vIaYTUG
MFdLloavLe3mUyzNSVKjqmVkXE8f7FiHmCdLCGAcpbgOMn6VgF02wNKuO4LfPKa/
zySnKFBp7eSYjj0q6GBa1yKDufms0oKdWT2IHHWYvIHKUspTBHytHNp/AoGBAOmk
R1TuEG87lEdAD9mlTa1gXTlJqKpCMFqw/rMZKsYZFPYImNnGGdwo7M6Jm31vf6ms
3q0LICYQLbsMMUOGDiOyQqBOm5+jbVblveR8yYOm+I3TfzYdgdI8R/kc3TM6huvU
JUhnBLi+hFZrdDV3v7wWqSFlzYC+ZXAP4+XTrshFAoGAO6N9YxW1MW3/qnS2yAoa
PVJTSCJcn9SvH9sWfHfkKiYuD+TAtABL3mms8srfrb1OZK6m/un8p9XCGhDFb5J4
BU5SzlpsMX67wK3bvcGFAPkZYrNue77WY7Vbhs0to2C87KgGJVaBQFq/tAzJyn+w
EFT/EZ4FKH3+F5OMakoW/IsCgYARyTS47WqI3TM7fU/3lJLmOOi/3LCfTWya6tBo
1+ierfgfhqYEJgV/8gmc63LPyLYiN4u4BpnK6/5fN91kM4dOBlr2EyXbsDg5nkGn
bCx2/jX7rfcIKpTgaUBdYWohZToyJ7My4MzGN5KhdYqiK1yIN/1mEnbjbxsPvdXu
f//VNQKBgQDD5xbTxZYpdTZlSIP/5ZKD9WSR6VFkRsDx+Uk1hga3bYrh3S/lvNwW