-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdb.sql
1353 lines (1353 loc) · 399 KB
/
db.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
BEGIN TRANSACTION;
CREATE TABLE "channels" ("id" INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT, "fullname" VARCHAR(50) DEFAULT '', "idx" INTEGER DEFAULT 0, "last_checked" TIMESTAMP, "channeltype" INTEGER DEFAULT 0, "name" VARCHAR(50) DEFAULT '');
INSERT INTO "channels" VALUES(1, 'BBC One', 0, NULL, 1, '');
INSERT INTO "channels" VALUES(2, 'BBC Two', 1, NULL, 1, '');
INSERT INTO "channels" VALUES(3, 'BBC Four', 3, NULL, 1, '');
INSERT INTO "channels" VALUES(4, 'BBC Three', 2, NULL, 1, '');
INSERT INTO "channels" VALUES(6, 'CBBC', 4, NULL, 1, '');
INSERT INTO "channels" VALUES(7, 'CBeebies', 5, NULL, 1, '');
INSERT INTO "channels" VALUES(8, 'ITV1', 6, NULL, 2, '');
INSERT INTO "channels" VALUES(9, 'ITV2', 7, NULL, 2, '');
INSERT INTO "channels" VALUES(10, 'ITV3', 8, NULL, 2, '');
INSERT INTO "channels" VALUES(11, 'ITV4', 9, NULL, 2, '');
INSERT INTO "channels" VALUES(12, 'Channel 4', 10, NULL, 4, '');
INSERT INTO "channels" VALUES(13, 'More4', 11, NULL, 4, '');
INSERT INTO "channels" VALUES(14, 'E4', 12, NULL, 4, '');
INSERT INTO "channels" VALUES(15, 'Five', 13, NULL, 8, '');
INSERT INTO "channels" VALUES(16, 'Dave', 14, NULL, 16, '');
INSERT INTO "channels" VALUES(17, 'S4C', 15, NULL, 16, '');
DELETE FROM sqlite_sequence;
INSERT INTO "sqlite_sequence" VALUES('channels', 17);
INSERT INTO "sqlite_sequence" VALUES('boxsets', 211);
INSERT INTO "sqlite_sequence" VALUES('seasons', 800);
INSERT INTO "sqlite_sequence" VALUES('users', 13);
INSERT INTO "sqlite_sequence" VALUES('programmes', 6085);
CREATE TABLE "boxsets" ("id" INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT, "name" VARCHAR(50) DEFAULT '', "searchterm" VARCHAR(50) DEFAULT '', "user_id" INTEGER NOT NULL, "movie" BOOLEAN DEFAULT 'f', "rescinded" BOOLEAN DEFAULT 'f', "position" INTEGER DEFAULT 0, "viewed_at" INTEGER DEFAULT 0);
INSERT INTO "boxsets" VALUES(1, 'Doctor Who', 'doctor who', 1, 'f', 'f', 0, 1449746644459);
INSERT INTO "boxsets" VALUES(11, 'Happy Valley', 'happy valley', 2, 'f', 'f', 0, 0);
INSERT INTO "boxsets" VALUES(12, 'The Vicar of Dibley', 'the vicar of dibley', 2, 'f', 'f', 0, 0);
INSERT INTO "boxsets" VALUES(13, 'Luther', 'luther', 2, 'f', 'f', 0, 0);
INSERT INTO "boxsets" VALUES(37, 'Death in Paradise', 'death in paradise', 2, 'f', 'f', 0, 0);
INSERT INTO "boxsets" VALUES(38, 'The Tudors', 'the tudors', 2, 'f', 'f', 0, 0);
INSERT INTO "boxsets" VALUES(84, 'Homeland', 'homeland', 2, 'f', 'f', 0, 0);
INSERT INTO "boxsets" VALUES(86, 'Lewis', 'lewis', 2, 'f', 'f', 0, 0);
INSERT INTO "boxsets" VALUES(106, 'The Wrong Mans', 'the wrong mans', 2, 'f', 'f', 0, 0);
INSERT INTO "boxsets" VALUES(124, 'Torchwood', 'torchwood', 1, 'f', 'f', 0, 0);
INSERT INTO "boxsets" VALUES(131, 'OOglies', 'ooglies', 11, 'f', 'f', 0, 0);
INSERT INTO "boxsets" VALUES(132, 'The Sarah Jane Adventures', 'the sarah jane adventures', 11, 'f', 'f', 0, 0);
INSERT INTO "boxsets" VALUES(136, 'Horrid Henry', 'horrid henry', 11, 'f', 'f', 0, 0);
INSERT INTO "boxsets" VALUES(141, 'Big Babies', 'big babies', 11, 'f', 'f', 0, 0);
INSERT INTO "boxsets" VALUES(147, 'Orphan Black', 'orphan black', 1, 'f', 'f', 0, 0);
INSERT INTO "boxsets" VALUES(172, 'Jonathan Strange & Mr Norrell', 'jonathan strange & mr norrell', 1, 'f', 'f', 0, 0);
INSERT INTO "boxsets" VALUES(174, 'Movies', 'an american werewolf', 1, 't', 'f', 0, 0);
INSERT INTO "boxsets" VALUES(176, 'Movies', 'bourne', 11, 't', 'f', 0, 0);
INSERT INTO "boxsets" VALUES(178, 'Undercover', 'undercover', 1, 'f', 'f', 0, 0);
INSERT INTO "boxsets" VALUES(181, 'Batman', 'batman', 11, 'f', 'f', 0, 0);
INSERT INTO "boxsets" VALUES(184, 'Doctor Who', 'doctor who', 12, 'f', 'f', 0, 0);
INSERT INTO "boxsets" VALUES(185, '', 'see', 1, 'f', 'f', 0, 0);
INSERT INTO "boxsets" VALUES(192, 'Sherlock', 'sherlock', 1, 'f', 'f', 0, 0);
INSERT INTO "boxsets" VALUES(194, '', 'elementary', 12, 'f', 'f', 0, 0);
INSERT INTO "boxsets" VALUES(202, 'The Fall', 'the fall', 2, 'f', 'f', 0, 0);
INSERT INTO "boxsets" VALUES(207, 'Sherlock', 'sherlock', 12, 'f', 'f', 0, 0);
CREATE TABLE "seasons" ("id" INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT, "boxset_id" INTEGER NOT NULL, "channel_id" INTEGER NOT NULL, "idx" INTEGER DEFAULT -1, "name" VARCHAR(50), "rescinded" BOOLEAN DEFAULT 'f', "position" INTEGER DEFAULT 0, "viewed_at" INTEGER DEFAULT 0);
INSERT INTO "seasons" VALUES(4, 1, 3, 130, 'An Unearthly Child', 'f', 0, 0);
INSERT INTO "seasons" VALUES(13, 1, 1, 30, 'Smith 3', 'f', 0, 0);
INSERT INTO "seasons" VALUES(15, 1, 1, 40, 'Smith 2', 'f', 0, 0);
INSERT INTO "seasons" VALUES(17, 1, 1, 50, 'Smith 1', 'f', 0, 0);
INSERT INTO "seasons" VALUES(24, 1, 1, 60, 'Tennant 3', 'f', 0, 0);
INSERT INTO "seasons" VALUES(26, 1, 4, 80, 'Tennant 1', 'f', 0, 0);
INSERT INTO "seasons" VALUES(31, 1, 4, 70, 'Tennant 2', 'f', 0, 0);
INSERT INTO "seasons" VALUES(32, 1, 4, 90, 'Eccleston', 'f', 0, 0);
INSERT INTO "seasons" VALUES(90, 11, 1, 1000000, NULL, 'f', 0, 0);
INSERT INTO "seasons" VALUES(91, 12, 1, 1000000, NULL, 'f', 0, 0);
INSERT INTO "seasons" VALUES(92, 12, 1, 1000000, NULL, 'f', 0, 0);
INSERT INTO "seasons" VALUES(93, 12, 1, 1000000, NULL, 'f', 0, 0);
INSERT INTO "seasons" VALUES(94, 12, 1, 1000000, NULL, 'f', 0, 0);
INSERT INTO "seasons" VALUES(95, 12, 1, 1000000, NULL, 'f', 0, 0);
INSERT INTO "seasons" VALUES(96, 12, 1, 1000000, NULL, 'f', 0, 0);
INSERT INTO "seasons" VALUES(97, 12, 1, 1000000, NULL, 'f', 0, 0);
INSERT INTO "seasons" VALUES(98, 12, 1, 1000000, NULL, 'f', 0, 0);
INSERT INTO "seasons" VALUES(99, 13, 1, 1000000, NULL, 'f', 0, 0);
INSERT INTO "seasons" VALUES(100, 13, 1, 1000000, NULL, 'f', 0, 0);
INSERT INTO "seasons" VALUES(101, 13, 1, 1000000, NULL, 'f', 0, 0);
INSERT INTO "seasons" VALUES(159, 1, 3, 120, 'The Hand of Fear', 'f', 0, 0);
INSERT INTO "seasons" VALUES(184, 37, 1, 1000000, NULL, 'f', 0, 0);
INSERT INTO "seasons" VALUES(185, 37, 1, 1000000, NULL, 'f', 0, 0);
INSERT INTO "seasons" VALUES(186, 37, 1, 1000000, NULL, 'f', 0, 0);
INSERT INTO "seasons" VALUES(187, 37, 1, 1000000, NULL, 'f', 0, 0);
INSERT INTO "seasons" VALUES(188, 37, 1, 1000000, NULL, 'f', 0, 0);
INSERT INTO "seasons" VALUES(189, 38, 2, 1000000, NULL, 'f', 0, 0);
INSERT INTO "seasons" VALUES(190, 38, 2, 1000000, NULL, 'f', 0, 0);
INSERT INTO "seasons" VALUES(191, 38, 2, 1000000, NULL, 'f', 0, 0);
INSERT INTO "seasons" VALUES(192, 38, 2, 1000000, NULL, 'f', 0, 0);
INSERT INTO "seasons" VALUES(193, 38, 2, 1000000, NULL, 'f', 0, 0);
INSERT INTO "seasons" VALUES(194, 38, 2, 1000000, NULL, 'f', 0, 0);
INSERT INTO "seasons" VALUES(195, 38, 2, 1000000, NULL, 'f', 0, 0);
INSERT INTO "seasons" VALUES(295, 84, 12, 1000000, NULL, 'f', 0, 0);
INSERT INTO "seasons" VALUES(296, 84, 12, 1000000, NULL, 'f', 0, 0);
INSERT INTO "seasons" VALUES(297, 84, 12, 1000000, NULL, 'f', 0, 0);
INSERT INTO "seasons" VALUES(307, 86, 8, 1000000, NULL, 'f', 0, 0);
INSERT INTO "seasons" VALUES(312, 86, 8, 1000000, NULL, 'f', 0, 0);
INSERT INTO "seasons" VALUES(315, 86, 8, 1000000, NULL, 'f', 0, 0);
INSERT INTO "seasons" VALUES(381, 106, 2, 1000000, NULL, 'f', 0, 0);
INSERT INTO "seasons" VALUES(382, 106, 2, 1000000, NULL, 'f', 0, 0);
INSERT INTO "seasons" VALUES(454, 124, 2, 1000000, NULL, 'f', 0, 0);
INSERT INTO "seasons" VALUES(456, 124, 4, 1000000, NULL, 'f', 0, 0);
INSERT INTO "seasons" VALUES(471, 131, 6, 1000000, NULL, 'f', 0, 0);
INSERT INTO "seasons" VALUES(472, 131, 6, 1000000, NULL, 'f', 0, 0);
INSERT INTO "seasons" VALUES(473, 132, 6, 1000000, NULL, 'f', 0, 0);
INSERT INTO "seasons" VALUES(474, 132, 6, 1000000, NULL, 'f', 0, 0);
INSERT INTO "seasons" VALUES(476, 132, 1, 1000000, NULL, 'f', 0, 0);
INSERT INTO "seasons" VALUES(477, 132, 1, 1000000, NULL, 'f', 0, 0);
INSERT INTO "seasons" VALUES(478, 132, 6, 1000000, NULL, 'f', 0, 0);
INSERT INTO "seasons" VALUES(483, 136, 8, 1000000, NULL, 'f', 0, 0);
INSERT INTO "seasons" VALUES(484, 136, 8, 1000000, NULL, 'f', 0, 0);
INSERT INTO "seasons" VALUES(485, 136, 8, 1000000, NULL, 'f', 0, 0);
INSERT INTO "seasons" VALUES(489, 136, 8, 1000000, NULL, 'f', 0, 0);
INSERT INTO "seasons" VALUES(491, 136, 8, 1000000, NULL, 'f', 0, 0);
INSERT INTO "seasons" VALUES(494, 136, 8, 1000000, NULL, 'f', 0, 0);
INSERT INTO "seasons" VALUES(497, 136, 8, 1000000, NULL, 'f', 0, 0);
INSERT INTO "seasons" VALUES(529, 141, 6, 1000000, NULL, 'f', 0, 0);
INSERT INTO "seasons" VALUES(538, 147, 4, 1000000, NULL, 'f', 0, 0);
INSERT INTO "seasons" VALUES(539, 147, 4, 1000000, NULL, 'f', 0, 0);
INSERT INTO "seasons" VALUES(541, 124, 1, 1000000, 'Torchwood: Children of Earth', 'f', 0, 0);
INSERT INTO "seasons" VALUES(542, 124, 1, 1000000, 'Torchwood: Miracle Day', 'f', 0, 0);
INSERT INTO "seasons" VALUES(554, 84, 12, 1000000, NULL, 'f', 0, 0);
INSERT INTO "seasons" VALUES(557, 86, 10, 1000000, NULL, 'f', 0, 0);
INSERT INTO "seasons" VALUES(558, 86, 8, 1000000, NULL, 'f', 0, 0);
INSERT INTO "seasons" VALUES(559, 86, 10, 1000000, NULL, 'f', 0, 0);
INSERT INTO "seasons" VALUES(566, 11, 4, 1000000, NULL, 'f', 0, 0);
INSERT INTO "seasons" VALUES(579, 1, 1, 110, 'Warriors'' Gate', 'f', 0, 0);
INSERT INTO "seasons" VALUES(591, 172, 1, 1000000, NULL, 'f', 0, 0);
INSERT INTO "seasons" VALUES(597, 174, 1, 1000000, 'Planet of the Apes', 'f', 0, 0);
INSERT INTO "seasons" VALUES(598, 174, 1, 1000000, 'Pirates of the Caribbean', 'f', 0, 0);
INSERT INTO "seasons" VALUES(600, 174, 1, 1000000, 'Star Wars', 'f', 0, 0);
INSERT INTO "seasons" VALUES(616, 176, 1, 1000000, 'Harry Potter', 'f', 0, 0);
INSERT INTO "seasons" VALUES(617, 174, 1, 1000000, 'Harry Potter', 'f', 0, 0);
INSERT INTO "seasons" VALUES(624, 174, 1, 1000000, 'Undercover', 't', 0, 0);
INSERT INTO "seasons" VALUES(625, 178, 16, 1000000, NULL, 'f', 0, 0);
INSERT INTO "seasons" VALUES(626, 174, 1, 1000000, 'Bridge To Terabithia', 'f', 0, 0);
INSERT INTO "seasons" VALUES(633, 181, 11, 1000000, NULL, 'f', 0, 0);
INSERT INTO "seasons" VALUES(634, 181, 11, 1000000, NULL, 'f', 0, 0);
INSERT INTO "seasons" VALUES(687, 184, 3, 110, 'An Unearthly Child', 'f', 0, 0);
INSERT INTO "seasons" VALUES(688, 184, 1, 20, 'Smith 3', 'f', 0, 0);
INSERT INTO "seasons" VALUES(689, 184, 1, 30, 'Smith 2', 'f', 0, 0);
INSERT INTO "seasons" VALUES(690, 184, 1, 40, 'Smith 1', 'f', 0, 0);
INSERT INTO "seasons" VALUES(691, 184, 1, 50, 'Tennant 3', 'f', 0, 0);
INSERT INTO "seasons" VALUES(692, 184, 4, 70, 'Tennant 1', 'f', 0, 0);
INSERT INTO "seasons" VALUES(693, 184, 4, 60, 'Tennant 2', 'f', 0, 0);
INSERT INTO "seasons" VALUES(694, 184, 4, 80, 'Eccleston', 'f', 0, 0);
INSERT INTO "seasons" VALUES(695, 184, 3, 100, 'The Hand of Fear', 'f', 0, 0);
INSERT INTO "seasons" VALUES(696, 184, 1, 10, 'Capaldi 1', 'f', 0, 0);
INSERT INTO "seasons" VALUES(697, 184, 1, 90, 'Warriors'' Gate', 'f', 0, 0);
INSERT INTO "seasons" VALUES(702, 174, 1, 1000000, 'harry potter', 'f', 0, 0);
INSERT INTO "seasons" VALUES(716, 174, 1, 1000000, 'Hellboy', 'f', 0, 0);
INSERT INTO "seasons" VALUES(721, 192, 1, 1000000, NULL, 'f', 0, 0);
INSERT INTO "seasons" VALUES(722, 192, 1, 1000000, NULL, 'f', 0, 0);
INSERT INTO "seasons" VALUES(740, 202, 2, 1000000, NULL, 'f', 0, 0);
INSERT INTO "seasons" VALUES(741, 202, 2, 1000000, NULL, 'f', 0, 0);
INSERT INTO "seasons" VALUES(745, 1, 1, 100, 'McGann', 'f', 0, 0);
INSERT INTO "seasons" VALUES(746, 131, 6, 1000000, NULL, 'f', 0, 0);
INSERT INTO "seasons" VALUES(757, 174, 1, 1000000, 'Indiana Jones', 'f', 0, 0);
INSERT INTO "seasons" VALUES(761, 37, 1, 1000000, NULL, 'f', 0, 0);
INSERT INTO "seasons" VALUES(763, 86, 10, 1000000, NULL, 'f', 0, 0);
INSERT INTO "seasons" VALUES(764, 176, 1, 1000000, 'James Bond', 'f', 0, 0);
INSERT INTO "seasons" VALUES(765, 176, 1, 1000000, 'Bourne', 'f', 0, 0);
INSERT INTO "seasons" VALUES(766, 37, 1, 1000000, NULL, 'f', 0, 0);
INSERT INTO "seasons" VALUES(767, 192, 1, 1000000, NULL, 'f', 0, 0);
INSERT INTO "seasons" VALUES(772, 207, 1, 1000000, NULL, 'f', 0, 0);
INSERT INTO "seasons" VALUES(773, 207, 1, 1000000, NULL, 'f', 0, 0);
INSERT INTO "seasons" VALUES(774, 207, 1, 1000000, NULL, 'f', 0, 0);
INSERT INTO "seasons" VALUES(776, 174, 1, 1000000, 'James Bond', 'f', 0, 0);
INSERT INTO "seasons" VALUES(777, 84, 13, 1000000, NULL, 'f', 0, 0);
INSERT INTO "seasons" VALUES(780, 184, 4, 120, NULL, 'f', 0, 0);
INSERT INTO "seasons" VALUES(781, 136, 8, 1000000, NULL, 'f', 0, 0);
INSERT INTO "seasons" VALUES(785, 1, 1, 20, 'Capaldi 1', 'f', 0, 1449746644459);
INSERT INTO "seasons" VALUES(786, 184, 1, 130, NULL, 'f', 0, 0);
INSERT INTO "seasons" VALUES(787, 147, 4, 1000000, NULL, 'f', 0, 0);
INSERT INTO "seasons" VALUES(791, 86, 8, 1000000, NULL, 'f', 0, 0);
INSERT INTO "seasons" VALUES(792, 131, 6, 1000000, NULL, 'f', 0, 0);
INSERT INTO "seasons" VALUES(795, 84, 12, 1000000, NULL, 'f', 0, 0);
INSERT INTO "seasons" VALUES(797, 1, 1, 10, 'Capaldi 2', 'f', 0, 1449746644346);
INSERT INTO "seasons" VALUES(798, 86, 10, 1000000, NULL, 'f', 0, 0);
INSERT INTO "seasons" VALUES(799, 174, 1, 1000000, 'An American Werewolf', 'f', 0, 0);
CREATE TABLE "channel_users" ("user_id" INTEGER NOT NULL, "channel_id" INTEGER NOT NULL, PRIMARY KEY("user_id", "channel_id"));
INSERT INTO "channel_users" VALUES(1, 1);
INSERT INTO "channel_users" VALUES(1, 2);
INSERT INTO "channel_users" VALUES(1, 4);
INSERT INTO "channel_users" VALUES(1, 3);
INSERT INTO "channel_users" VALUES(1, 6);
INSERT INTO "channel_users" VALUES(1, 7);
INSERT INTO "channel_users" VALUES(1, 5);
INSERT INTO "channel_users" VALUES(1, 8);
INSERT INTO "channel_users" VALUES(1, 9);
INSERT INTO "channel_users" VALUES(1, 10);
INSERT INTO "channel_users" VALUES(1, 11);
INSERT INTO "channel_users" VALUES(1, 12);
INSERT INTO "channel_users" VALUES(1, 14);
INSERT INTO "channel_users" VALUES(1, 13);
INSERT INTO "channel_users" VALUES(1, 16);
INSERT INTO "channel_users" VALUES(1, 15);
INSERT INTO "channel_users" VALUES(2, 1);
INSERT INTO "channel_users" VALUES(2, 2);
INSERT INTO "channel_users" VALUES(2, 4);
INSERT INTO "channel_users" VALUES(2, 3);
INSERT INTO "channel_users" VALUES(2, 6);
INSERT INTO "channel_users" VALUES(2, 7);
INSERT INTO "channel_users" VALUES(2, 5);
INSERT INTO "channel_users" VALUES(2, 8);
INSERT INTO "channel_users" VALUES(2, 9);
INSERT INTO "channel_users" VALUES(2, 10);
INSERT INTO "channel_users" VALUES(2, 11);
INSERT INTO "channel_users" VALUES(2, 12);
INSERT INTO "channel_users" VALUES(2, 14);
INSERT INTO "channel_users" VALUES(2, 13);
INSERT INTO "channel_users" VALUES(2, 16);
INSERT INTO "channel_users" VALUES(2, 15);
INSERT INTO "channel_users" VALUES(4, 1);
INSERT INTO "channel_users" VALUES(4, 2);
INSERT INTO "channel_users" VALUES(4, 4);
INSERT INTO "channel_users" VALUES(4, 3);
INSERT INTO "channel_users" VALUES(4, 6);
INSERT INTO "channel_users" VALUES(4, 7);
INSERT INTO "channel_users" VALUES(4, 5);
INSERT INTO "channel_users" VALUES(6, 1);
INSERT INTO "channel_users" VALUES(6, 2);
INSERT INTO "channel_users" VALUES(6, 4);
INSERT INTO "channel_users" VALUES(6, 3);
INSERT INTO "channel_users" VALUES(6, 6);
INSERT INTO "channel_users" VALUES(6, 7);
INSERT INTO "channel_users" VALUES(6, 5);
INSERT INTO "channel_users" VALUES(6, 8);
INSERT INTO "channel_users" VALUES(6, 9);
INSERT INTO "channel_users" VALUES(6, 10);
INSERT INTO "channel_users" VALUES(6, 11);
INSERT INTO "channel_users" VALUES(6, 12);
INSERT INTO "channel_users" VALUES(6, 14);
INSERT INTO "channel_users" VALUES(6, 13);
INSERT INTO "channel_users" VALUES(6, 16);
INSERT INTO "channel_users" VALUES(6, 15);
INSERT INTO "channel_users" VALUES(7, 1);
INSERT INTO "channel_users" VALUES(7, 2);
INSERT INTO "channel_users" VALUES(7, 4);
INSERT INTO "channel_users" VALUES(7, 3);
INSERT INTO "channel_users" VALUES(7, 6);
INSERT INTO "channel_users" VALUES(7, 7);
INSERT INTO "channel_users" VALUES(7, 5);
INSERT INTO "channel_users" VALUES(7, 8);
INSERT INTO "channel_users" VALUES(7, 9);
INSERT INTO "channel_users" VALUES(7, 10);
INSERT INTO "channel_users" VALUES(7, 11);
INSERT INTO "channel_users" VALUES(7, 12);
INSERT INTO "channel_users" VALUES(7, 14);
INSERT INTO "channel_users" VALUES(7, 13);
INSERT INTO "channel_users" VALUES(7, 16);
INSERT INTO "channel_users" VALUES(7, 15);
INSERT INTO "channel_users" VALUES(8, 1);
INSERT INTO "channel_users" VALUES(8, 2);
INSERT INTO "channel_users" VALUES(8, 4);
INSERT INTO "channel_users" VALUES(8, 3);
INSERT INTO "channel_users" VALUES(8, 6);
INSERT INTO "channel_users" VALUES(8, 7);
INSERT INTO "channel_users" VALUES(8, 5);
INSERT INTO "channel_users" VALUES(8, 8);
INSERT INTO "channel_users" VALUES(8, 9);
INSERT INTO "channel_users" VALUES(8, 10);
INSERT INTO "channel_users" VALUES(8, 11);
INSERT INTO "channel_users" VALUES(8, 12);
INSERT INTO "channel_users" VALUES(8, 14);
INSERT INTO "channel_users" VALUES(8, 13);
INSERT INTO "channel_users" VALUES(8, 16);
INSERT INTO "channel_users" VALUES(8, 15);
INSERT INTO "channel_users" VALUES(11, 1);
INSERT INTO "channel_users" VALUES(11, 2);
INSERT INTO "channel_users" VALUES(11, 4);
INSERT INTO "channel_users" VALUES(11, 3);
INSERT INTO "channel_users" VALUES(11, 6);
INSERT INTO "channel_users" VALUES(11, 7);
INSERT INTO "channel_users" VALUES(11, 5);
INSERT INTO "channel_users" VALUES(11, 8);
INSERT INTO "channel_users" VALUES(11, 9);
INSERT INTO "channel_users" VALUES(11, 10);
INSERT INTO "channel_users" VALUES(11, 11);
INSERT INTO "channel_users" VALUES(11, 12);
INSERT INTO "channel_users" VALUES(11, 14);
INSERT INTO "channel_users" VALUES(11, 13);
INSERT INTO "channel_users" VALUES(11, 16);
INSERT INTO "channel_users" VALUES(11, 15);
INSERT INTO "channel_users" VALUES(12, 1);
INSERT INTO "channel_users" VALUES(12, 2);
INSERT INTO "channel_users" VALUES(12, 4);
INSERT INTO "channel_users" VALUES(12, 3);
INSERT INTO "channel_users" VALUES(12, 6);
INSERT INTO "channel_users" VALUES(12, 7);
INSERT INTO "channel_users" VALUES(12, 5);
INSERT INTO "channel_users" VALUES(12, 8);
INSERT INTO "channel_users" VALUES(12, 9);
INSERT INTO "channel_users" VALUES(12, 10);
INSERT INTO "channel_users" VALUES(12, 11);
INSERT INTO "channel_users" VALUES(12, 12);
INSERT INTO "channel_users" VALUES(12, 14);
INSERT INTO "channel_users" VALUES(12, 13);
INSERT INTO "channel_users" VALUES(12, 16);
INSERT INTO "channel_users" VALUES(12, 15);
INSERT INTO "channel_users" VALUES(1, 17);
CREATE TABLE users ("id" INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT, "name" VARCHAR(50) DEFAULT '', "fullname" VARCHAR(50) DEFAULT '', "redux_user" VARCHAR(50) DEFAULT '', "password" VARCHAR(50) DEFAULT '', "last_updated" TIMESTAMP, "default_rp" VARCHAR(50) DEFAULT '', "last_checked" TIMESTAMP, "last_download" TIMESTAMP, "throttle" INTEGER DEFAULT 20);
INSERT INTO "users" VALUES(1, 'nic', 'Nic Ford', 'fordn01', 'Q_YRT', NULL, 'VQ]DP]W', '2015-12-10T01:01:39+00:00', '2015-12-09T07:54:00+00:00', 0);
INSERT INTO "users" VALUES(2, 'norm', 'Norman Ford', 'fordn01', '', NULL, '$#"5(h,5', '2015-12-10T01:01:50+00:00', '2015-04-22T20:20:18+01:00', 0);
INSERT INTO "users" VALUES(11, 'sam', 'Sam Ford', 'fordn01', '', NULL, 'VQ]DP]W', '2015-12-10T01:01:59+00:00', '2015-08-19T23:49:02+01:00', 0);
INSERT INTO "users" VALUES(13, 'simon', 'Simon Dean', 'fordn01', '', NULL, 'VQ]DP]W', NULL, NULL, 0);
CREATE TABLE "broadcast_entities" ("id" INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT, "name" VARCHAR(50), "searchterm" VARCHAR(50) DEFAULT '', "movie" BOOLEAN DEFAULT 'f', "idx" INTEGER DEFAULT 1000000 NOT NULL, "title_orig" VARCHAR(200) NOT NULL, "desc_orig" VARCHAR(2000) NOT NULL, "pcrid_orig" VARCHAR(50) NOT NULL, "scrid_orig" VARCHAR(50) NOT NULL, "pcrid" VARCHAR(50) NOT NULL, "image_url" VARCHAR(2000) NOT NULL, "mediatype" VARCHAR(50) DEFAULT 'audio/mpeg' NOT NULL, "date" TIMESTAMP NOT NULL, "duration" INTEGER NOT NULL, "prepared" BOOLEAN DEFAULT 'f', "reference" VARCHAR(50));
CREATE TABLE "programmes" ("id" INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT,
"title_orig" VARCHAR(200) NOT NULL,
"desc_orig" VARCHAR(2000) NOT NULL,
"pcrid_orig" VARCHAR(50) NOT NULL,
"pcrid" VARCHAR(50) NOT NULL,
"date" TIMESTAMP NOT NULL,
"duration" INTEGER NOT NULL,
"idx" INTEGER DEFAULT -1 NOT NULL,
"movie" BOOLEAN DEFAULT 'f',
"season_id" INTEGER NOT NULL,
"channel_id" INTEGER NOT NULL,
"user_id" INTEGER NOT NULL,
"prepared" BOOLEAN DEFAULT 'f',
"reference" VARCHAR(50),
"position" INTEGER DEFAULT 0,
"rescinded" BOOLEAN DEFAULT 'f',
"distrib" VARCHAR(50) DEFAULT 'bbcredux', "viewed_at" INTEGER DEFAULT 0);
INSERT INTO "programmes" VALUES(5, 'Doctor Who', 'Part 4: An Unearthly Child: Part 4: The Firemaker: The Doctor decides that the only way to escape is to show the Stone Age cave dwellers how to make fire. b&w.', 'crid://fp.bbc.co.uk/4CTC4S', '4CTC4S', '2013-11-21T23:45:00+00:00', 1500, 1000000, 'f', 4, 3, 1, 't', '5948862565223281404', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(6, 'Doctor Who', 'Part 3: An Unearthly Child: Part 3: The Doctor and crew leave the TARDIS to explore their new surroundings, but are captured. b&w.', 'crid://fp.bbc.co.uk/4CTC4R', '4CTC4R', '2013-11-21T23:20:00+00:00', 1500, 1000000, 'f', 4, 3, 1, 't', '5948856122772337403', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(7, 'Doctor Who', 'Part 2: An Unearthly Child: Part 2: The Cave of Skulls: The TARDIS travels back to Stone Age times, where the crew make the mistake of venturing outside. b&w.', 'crid://fp.bbc.co.uk/4CTC4Q', '4CTC4Q', '2013-11-21T22:55:00+00:00', 1500, 1000000, 'f', 4, 3, 1, 't', '5948849680321393402', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(8, 'Doctor Who', 'Part 1: An Unearthly Child: Part 1: Two teachers follow a pupil to a junkyard where they meet her grandfather, the Doctor. b&w.', 'crid://fp.bbc.co.uk/4CTC4P', '4CTC4P', '2013-11-21T22:30:00+00:00', 1500, 1000000, 'f', 4, 3, 1, 't', '5948843237870449401', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(10, 'Doctor Who', '8/8. The Name of the Doctor: Sci-fi drama. The Doctor has a secret he will take to his grave. And it is discovered... Also in HD.', 'crid://fp.bbc.co.uk/1FTWPB', '1FTWPB', '2013-05-18T18:00:00+00:00', 2700, 140, 'f', 13, 1, 1, 't', '5879380731767337870', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(11, 'Doctor Who', '7/8. Nightmare in Silver: Sci-fi drama. Hedgewick''s World of Wonders is the perfect theme park day out. And ground zero for a deadly silver resurrection. Also in HD.', 'crid://fp.bbc.co.uk/1FTWPA', '1FTWPA', '2013-05-11T18:00:00+00:00', 2700, 130, 'f', 13, 1, 1, 't', '5876783135546715040', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(12, 'Doctor Who', '6/8. The Crimson Horror: Sci-fi drama. Something ghastly is afoot in Victorian Yorkshire, as bodies are found with their skin a waxy, glowing red. Also in HD.', 'crid://fp.bbc.co.uk/1FTWP9', '1FTWP9', '2013-05-04T17:30:00+00:00', 2700, 120, 'f', 13, 1, 1, 't', '5874177808384959125', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(13, 'Doctor Who', '5/8. Journey to the Centre of the TARDIS: Sci-fi drama. The TARDIS has crashed, Clara is lost inside, and the Doctor has 30 minutes before his ship explodes! Also in HD.', 'crid://fp.bbc.co.uk/1FTWP8', '1FTWP8', '2013-04-27T17:30:00+00:00', 2700, 110, 'f', 13, 1, 1, 't', '5871580212164336284', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(15, 'Doctor Who', '4/8. Hide: Sci-fi drama. Something terrifying is hiding in Caliburn House, and the Doctor finds himself part of the ghost hunt. Also in HD.', 'crid://fp.bbc.co.uk/1FTWP7', '1FTWP7', '2013-04-20T17:45:00+00:00', 2700, 100, 'f', 13, 1, 1, 't', '5871220723409796957', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(16, 'Doctor Who', '3/8. Cold War: Sci-fi drama. On a Russian submarine in 1983, a frozen alien warrior is waking up, just as the TARDIS materialises. Also in HD.', 'crid://fp.bbc.co.uk/1FTWP6', '1FTWP6', '2013-04-13T17:00:00+00:00', 2700, 90, 'f', 13, 1, 1, 't', '5866377288781984189', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(17, 'Doctor Who', '2/8. The Rings Of Akhaten: Sci-fi drama. The Doctor takes Clara to the Festival of Offerings, but the Old God is waking and demands sacrifice! Also in HD.', 'crid://fp.bbc.co.uk/1FTWP5', '1FTWP5', '2013-04-06T17:15:00+00:00', 2700, 80, 'f', 13, 1, 1, 't', '5863783558031926761', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(18, 'Doctor Who', '1/8. The Bells of Saint John: The search for Clara brings the Doctor to London, where something deadly is in the Wi-Fi. Also in HD.', 'crid://fp.bbc.co.uk/1FTWP4', '1FTWP4', '2013-03-30T18:15:00+00:00', 2700, 70, 'f', 13, 1, 1, 't', '5861201423693569898', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(38, 'Doctor Who', 'The Snowmen: Sci-fi drama. It is Christmas Eve, 1892, and the falling snow is the stuff of fairytales. But the fairytale becomes a nightmare, and a chilling menace threatens Earth. Also in HD. [AD,S]', 'crid://fp.bbc.co.uk/1FTW2M', '1FTW2M', '2012-12-25T18:00:00+00:00', 3600, 60, 'f', 13, 1, 1, 't', '6092399083748630753', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(39, 'Doctor Who', 'A Christmas Carol: Festive edition of the time-travelling drama. The Doctor has one hour to save a crashing spaceship and a miser''s soul - but what lurks in the fog?', 'crid://fp.bbc.co.uk/1FTW9F', '1FTW9F', '2012-12-15T19:00:00+00:00', 3900, 140, 'f', 17, 4, 1, 't', '5554681204189754746', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(48, 'Doctor Who', '5/5. The Angels Take Manhattan: Sci-fi drama. The Doctor and his friends face a race against time through the streets of Manhattan, as New York''s statues come to life around them. Also in HD.', 'crid://fp.bbc.co.uk/1FTWP3', '1FTWP3', '2012-09-29T18:20:00+00:00', 2700, 50, 'f', 13, 1, 1, 't', '5858255935130089160', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(49, 'Doctor Who', '4/5. The Power of Three: The Doctor and the Ponds puzzle over an unlikely invasion of Earth, as millions of sinister black cubes arrive overnight. But what are they? Also in HD.', 'crid://fp.bbc.co.uk/1FTWP2', '1FTWP2', '2012-09-22T18:30:00+00:00', 2700, 40, 'f', 13, 1, 1, 't', '5858244338718389296', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(50, 'Doctor Who', '3/5. A Town Called Mercy: The Doctor gets a Stetson (and a gun!), and finds himself a reluctant sheriff. Also in HD.', 'crid://fp.bbc.co.uk/1FTWP1', '1FTWP1', '2012-09-15T18:35:00+00:00', 2700, 30, 'f', 13, 1, 1, 't', '5856029424083841904', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(51, 'Doctor Who', '2/5. Dinosaurs on a Spaceship: The Doctor battles to save an unmanned spaceship and its impossible cargo... of dinosaurs! Also in HD.', 'crid://fp.bbc.co.uk/1FTWP0', '1FTWP0', '2012-09-08T18:35:00+00:00', 2700, 20, 'f', 13, 1, 1, 't', '5855650607968334532', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(52, 'Doctor Who', 'New series. 1/5. Asylum of the Daleks: When the Doctor is kidnapped by his oldest foe, he goes on an impossible mission - to a place even the Daleks are terrified of. Also in HD.', 'crid://fp.bbc.co.uk/1FTWOZ', '1FTWOZ', '2012-09-01T18:20:00+00:00', 3000, 10, 'f', 13, 1, 1, 't', '5904992051258251649', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(53, 'Doctor Who', '13/13. The Wedding of River Song: Sci-fi drama. By the shores of Lake Silencio in Utah, all of time and space hang in the balance - for this is the day the Doctor dies. Also in HD.', 'crid://fp.bbc.co.uk/1FTWAL', '1FTWAL', '2011-10-01T18:05:00+00:00', 2700, 1000000, 'f', 15, 1, 1, 't', '5658570879622510147', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(54, 'Doctor Who', '12/13. Closing Time: Sci-fi drama. The Doctor''s final days are upon him - but when he drops in on an old friend, the Cybermen are waiting. Also in HD.', 'crid://fp.bbc.co.uk/1FTWAK', '1FTWAK', '2011-09-24T18:10:00+00:00', 2700, 1000000, 'f', 15, 1, 1, 't', '5655974571892075921', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(55, 'Doctor Who', '11/13. The God Complex: Sci-fi drama. The TARDIS lands in a hotel where every visitor''s room contains their deepest, darkest fears. What lies in wait in the Doctor''s room? Also in HD.', 'crid://fp.bbc.co.uk/1FTWAJ', '1FTWAJ', '2011-09-17T18:10:00+00:00', 3000, 1000000, 'f', 15, 1, 1, 't', '5653376975671454897', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(56, 'Doctor Who', '10/13. The Girl Who Waited: Amy is trapped in a quarantine facility for victims of an alien plague. Can Rory save her before she is killed by kindness? Also in HD.', 'crid://fp.bbc.co.uk/1FTWAI', '1FTWAI', '2011-09-10T18:15:00+00:00', 2700, 1000000, 'f', 15, 1, 1, 't', '5650780667941020919', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(57, 'Doctor Who', '9/13. Night Terrors: Classic sci-fi drama series. The Doctor and his companions come to the aid of a terrified child, whose monsters appear to be real. Also in HD.', 'crid://fp.bbc.co.uk/1FTWAH', '1FTWAH', '2011-09-03T18:00:00+00:00', 2700, 1000000, 'f', 15, 1, 1, 't', '5648179206249831310', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(58, 'Doctor Who', 'New series. 8/13. Let''s Kill Hitler: The search for Melody Pond sees the TARDIS crash-landing in 1930s Berlin. Also in HD.', 'crid://fp.bbc.co.uk/1FTWAG', '1FTWAG', '2011-08-27T18:10:00+00:00', 3000, 1000000, 'f', 15, 1, 1, 't', '5645584187009587369', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(59, 'Doctor Who', '7/13. A Good Man Goes to War: Science fiction drama. The Doctor assembles an army to face the Battle of Demons Run - and River Song has something to tell him. Also in HD.', 'crid://fp.bbc.co.uk/1FTWAF', '1FTWAF', '2011-06-04T17:40:00+00:00', 3000, 1000000, 'f', 15, 1, 1, 't', '5614405301421005386', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(60, 'Doctor Who', '6/13. The Almost People: Science fiction drama. The Doctor must convince terrified factory workers to work with their doppelgangers to overcome a monster of their own making. Also in HD.', 'crid://fp.bbc.co.uk/1FTWAE', '1FTWAE', '2011-05-28T17:45:00+00:00', 2700, 1000000, 'f', 15, 1, 1, 't', '5611808993690570663', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(61, 'Doctor Who', '5/13. The Rebel Flesh: A solar tsunami liberates doppelgangers from their human ''originals'' in a factory. Also in HD.', 'crid://fp.bbc.co.uk/1FTWAD', '1FTWAD', '2011-05-21T17:45:00+00:00', 2700, 1000000, 'f', 15, 1, 1, 't', '5609211397469947247', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(62, 'Doctor Who', '4/13. The Doctor''s Wife: Science fiction drama. When he follows a Time Lord distress signal, the Doctor puts Amy, Rory and his beloved TARDIS in grave danger. Also in HD.', 'crid://fp.bbc.co.uk/1FTWAC', '1FTWAC', '2011-05-14T17:30:00+00:00', 3000, 1000000, 'f', 15, 1, 1, 't', '5606609935778757900', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(67, 'Doctor Who', '3/13. The Curse of the Black Spot: Science fiction drama. The Doctor, Amy and Rory must solve the mystery of the disappearance of a pirate crew at the hands of a beautiful Siren. Also in HD.', 'crid://fp.bbc.co.uk/1FTWAB', '1FTWAB', '2011-05-07T17:15:00+00:00', 2700, 1000000, 'f', 15, 1, 1, 't', '5604008474087570454', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(68, 'Doctor Who', '2/13. Day of the Moon: Science fiction drama. The Doctor mounts a rebellion against an alien invasion dating back to the very beginnings of human civilisation. Also in HD.', 'crid://fp.bbc.co.uk/1FTWAA', '1FTWAA', '2011-04-30T17:00:00+00:00', 2700, 1000000, 'f', 15, 1, 1, 't', '5601407012396381010', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(69, 'Doctor Who', 'New series. 1/13. The Impossible Astronaut: The Doctor is summoned to assist President Nixon in saving a terrified little girl. Also in HD.', 'crid://fp.bbc.co.uk/1FTWA9', '1FTWA9', '2011-04-23T17:00:00+00:00', 2700, 1000000, 'f', 15, 1, 1, 't', '5598809416175758906', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(70, 'Doctor Who', '13/13. The Big Bang: Science fiction drama. The last hope for all of reality is a little girl who still believes in stars. Also in HD.', 'crid://fp.bbc.co.uk/1FTW6F', '1FTW6F', '2010-06-26T17:05:00+00:00', 3300, 130, 'f', 17, 1, 1, 't', '5487114067179272553', 594676, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(71, 'Doctor Who', '12/13. The Pandorica Opens: The Doctor''s friends unite to warn him that the Pandorica is opening. What is inside? Also in HD.', 'crid://fp.bbc.co.uk/1FTW6E', '1FTW6E', '2010-06-19T17:40:00+00:00', 3000, 120, 'f', 17, 1, 1, 't', '5484525490389973352', 2910178, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(72, 'Doctor Who', '11/13. The Lodger: Science fiction drama. The Doctor must pass himself off as a human being to solve the mystery of a staircase that people go up but never go down. Also in HD.', 'crid://fp.bbc.co.uk/1FTW6D', '1FTW6D', '2010-06-12T17:45:00+00:00', 2700, 110, 'f', 17, 1, 1, 't', '5481929182659536685', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(73, 'Doctor Who', '10/13. Vincent and the Doctor: Science fiction drama. The Doctor and Amy Pond meet Vincent van Gogh. Also in HD.', 'crid://fp.bbc.co.uk/1FTW6C', '1FTW6C', '2010-06-05T17:40:00+00:00', 3000, 100, 'f', 17, 1, 1, 't', '5479330297948725730', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(74, 'Doctor Who', '9/13. Cold Blood: Science fiction drama. The Earth faces the dawn of a new age of harmony, or the start of its final war. Also in HD.', 'crid://fp.bbc.co.uk/1FTW6B', '1FTW6B', '2010-05-29T18:00:00+00:00', 3000, 90, 'f', 17, 1, 1, 't', '5476737855688857707', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(75, 'Doctor Who', '8/13. The Hungry Earth: Science fiction drama. The most ambitious drilling project ever reaches far below the Earth''s crust - but the ground is fighting back. Also in HD.', 'crid://fp.bbc.co.uk/1FTW6A', '1FTW6A', '2010-05-22T17:15:00+00:00', 2700, 80, 'f', 17, 1, 1, 't', '5474128663056535077', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(76, 'Doctor Who', '7/13. Amy''s Choice: Science fiction drama. Five years have passed since Amy Pond last saw the Doctor. But when one day he reappears in her life, she faces a terrible decision. Also in HD.', 'crid://fp.bbc.co.uk/1FTW69', '1FTW69', '2010-05-15T17:25:00+00:00', 2700, 70, 'f', 17, 1, 1, 't', '5471533643816288961', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(77, 'Doctor Who', '6/13. The Vampires of Venice: Science fiction drama. Desiccated corpses and terror fill the canals as the Doctor takes Amy and Rory to 16th Century Venice. Also in HD.', 'crid://fp.bbc.co.uk/1FTW68', '1FTW68', '2010-05-08T17:00:00+00:00', 2700, 60, 'f', 17, 1, 1, 't', '5468929605144722514', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(78, 'Doctor Who', '5/13. Flesh and Stone: Science fiction drama. Surrounded by an army of Weeping Angels, the Doctor and his friends must escape through the forest vault. Also in HD.', 'crid://fp.bbc.co.uk/1FTW67', '1FTW67', '2010-05-01T17:25:00+00:00', 2700, 50, 'f', 17, 1, 1, 't', '5466338451375045467', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(79, 'Doctor Who', '4/13. The Time of Angels: Science fiction drama. The Doctor is recruited by Father Octavian to track the last of the Weeping Angels through the terrifying Maze of the Dead. Also in HD.', 'crid://fp.bbc.co.uk/1FTW66', '1FTW66', '2010-04-24T17:20:00+00:00', 2700, 40, 'f', 17, 1, 1, 't', '5463739566664235654', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(80, 'Doctor Who', '3/13. Victory of the Daleks: The Doctor is summoned to Blitz-torn London by Winston Churchill, and the Daleks are waiting for him!', 'crid://fp.bbc.co.uk/1FTW65', '1FTW65', '2010-04-17T17:30:00+00:00', 2700, 30, 'f', 17, 1, 1, 't', '5461144547423989477', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(81, 'Doctor Who', '2/13. The Beast Below: The Doctor takes Amy to the distant future, where she finds all of Britain in a giant spaceship. Also in HD.', 'crid://fp.bbc.co.uk/1FTW64', '1FTW64', '2010-04-10T17:15:00+00:00', 2700, 20, 'f', 17, 1, 1, 't', '5458543085732800327', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(82, 'Doctor Who', 'New series. 1/13. The Eleventh Hour: The newly-regenerated Doctor has twenty minutes to save the world, and only Amy Pond can help him. Also in HD.', 'crid://fp.bbc.co.uk/1FTW63', '1FTW63', '2010-04-03T17:20:00+00:00', 3900, 10, 'f', 17, 1, 1, 't', '5985529130683705264', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(83, 'Doctor Who', '2/2. The End of Time, Part Two: The Doctor faces the end of his life, as the Master''s victory unleashes the greatest terror of all. Also in HD.', 'crid://fp.bbc.co.uk/1FTW61', '1FTW61', '2010-01-01T18:40:00+00:00', 4500, 1000000, 'f', 24, 1, 1, 't', '5421843019685202391', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(84, 'Doctor Who', '1/2. The End of Time, Part One: It is Christmas Eve, and the Doctor is reunited with Wilf to face the return of an old enemy. Also in HD.', 'crid://fp.bbc.co.uk/1FTW60', '1FTW60', '2009-12-25T18:00:00+00:00', 3600, 1000000, 'f', 24, 1, 1, 't', '5419235115543071049', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(85, 'Doctor Who', 'The Waters of Mars: Mars, 2059. Bowie Base One. Last recorded message: ''Don''t drink the water. Don''t even touch it. Not one drop.'' Also in HD.', 'crid://fp.bbc.co.uk/1FTW62', '1FTW62', '2009-11-15T19:00:00+00:00', 3600, 1000000, 'f', 24, 1, 1, 't', '5404407170450378653', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(86, 'Doctor Who', 'The Next Doctor: Christmas Eve, 1851, and Cybermen stalk the snow of Victorian London. But when the Doctor meets another Doctor, the two must combine forces to stop the rise of the CyberKing.', 'crid://fp.bbc.co.uk/1FTW5O', '1FTW5O', '2008-12-25T18:00:00+00:00', 3600, 1000000, 'f', 24, 1, 1, 't', '5283789026896393049', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(87, 'Doctor Who', 'Journey''s End: As Davros and the Daleks threaten the entire universe, the Doctor''s companions join forces. But the prophecy declares that one of them will die...', 'crid://fp.bbc.co.uk/54BXKY', '54BXKY', '2008-07-05T17:40:00+00:00', 3900, 1000000, 'f', 24, 1, 1, 't', '5219570675886598331', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(88, 'Doctor Who', 'The Stolen Earth: Earth''s greatest heroes assemble to fight the New Dalek Empire. But a fearsome old enemy waits in the shadows... Starring David Tennant and Catherine Tate.', 'crid://fp.bbc.co.uk/54BXKX', '54BXKX', '2008-06-28T18:10:00+00:00', 3000, 1000000, 'f', 24, 1, 1, 't', '5216980810607108643', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(89, 'Doctor Who', 'Turn Left: As Donna''s world collapses, she finds help from a mysterious blonde woman - but can Donna and Rose stop the approaching Darkness?', 'crid://fp.bbc.co.uk/54BXKW', '54BXKW', '2008-06-21T17:40:00+00:00', 3000, 1000000, 'f', 24, 1, 1, 't', '5214375483445355207', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(90, 'Doctor Who', 'Midnight: The Doctor is trapped, powerless and terrified, on the planet Midnight, as the knocking on the wall begins... Starring David Tennant and Catherine Tate.', 'crid://fp.bbc.co.uk/54BXKV', '54BXKV', '2008-06-14T18:10:00+00:00', 2700, 1000000, 'f', 24, 1, 1, 't', '5211785618165862871', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(91, 'Doctor Who', 'Forest of the Dead: As the shadows rise, the Doctor forges an alliance with the mysterious River Song. But can anyone stop the Vashta Nerada? Starring David Tennant and Catherine Tate.', 'crid://fp.bbc.co.uk/54BXKU', '54BXKU', '2008-06-07T18:00:00+00:00', 2700, 1000000, 'f', 24, 1, 1, 't', '5209185444964862650', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(92, 'Doctor Who', 'Silence in the Library: The Doctor and Donna enter a world of terror inside an abandoned library. They are given only one warning: "Count the shadows".', 'crid://fp.bbc.co.uk/54BXKT', '54BXKT', '2008-05-31T18:00:00+00:00', 2700, 1000000, 'f', 24, 1, 1, 't', '5206587848744268357', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(93, 'Doctor Who', 'The Unicorn and the Wasp: In 1926, Agatha Christie disappeared for ten days. Was it amnesia? A nervous breakdown? Or a giant alien wasp...?', 'crid://fp.bbc.co.uk/54BXKS', '54BXKS', '2008-05-17T18:00:00+00:00', 2700, 1000000, 'f', 24, 1, 1, 't', '5201392656303022524', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(94, 'Doctor Who', 'The Doctor''s Daughter: On the planet Messaline, in the middle of an endless war, the Doctor meets the most important woman of his life.', 'crid://fp.bbc.co.uk/54BXKR', '54BXKR', '2008-05-10T17:45:00+00:00', 2700, 1000000, 'f', 24, 1, 1, 't', '5198791194611832979', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(95, 'Doctor Who', 'The Poison Sky: As the Sontarans choke the Earth, the Doctor battles to keep both Martha and Donna alive.', 'crid://fp.bbc.co.uk/54BXKQ', '54BXKQ', '2008-05-03T17:20:00+00:00', 2700, 1000000, 'f', 24, 1, 1, 't', '5196187155940266119', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(96, 'Doctor Who', 'The Sontaran Stratagem: Martha Jones summons the Doctor back to modern-day Earth, but an old enemy lies in wait.', 'crid://fp.bbc.co.uk/54BXKP', '54BXKP', '2008-04-26T17:20:00+00:00', 2700, 1000000, 'f', 24, 1, 1, 't', '5193589559719643111', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(97, 'Doctor Who', 'Planet of the Ood: The Doctor takes Donna to her first alien world, but the Ood-Sphere reveals some terrible truths about the human race. Starring David Tennant and Catherine Tate.', 'crid://fp.bbc.co.uk/54BXKO', '54BXKO', '2008-04-19T17:20:00+00:00', 2700, 1000000, 'f', 24, 1, 1, 't', '5190991963499020053', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(98, 'Doctor Who', 'The Fires of Pompeii: Psychic powers and stone beasts run riot in old Pompeii, but can Donna dare the Doctor to change established history?', 'crid://fp.bbc.co.uk/54BXKN', '54BXKN', '2008-04-12T17:45:00+00:00', 3000, 1000000, 'f', 24, 1, 1, 't', '5188400809729341019', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(99, 'Doctor Who', 'Partners in Crime: Donna is determined to find the Doctor again - even if it means braving the villainous Miss Foster and her hordes of sinister Adipose.', 'crid://fp.bbc.co.uk/54BXKM', '54BXKM', '2008-04-05T17:20:00+00:00', 3000, 1000000, 'f', 24, 1, 1, 't', '5185796771057773878', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(100, 'Doctor Who', 'Voyage of the Dammed: When disaster hits the Titanic, the Doctor uncovers a threat to the human race. Battling alongside aliens, saboteurs and robot angels, can he stop the inferno?', 'crid://fp.bbc.co.uk/54BXKZ', '54BXKZ', '2007-12-25T18:50:00+00:00', 4200, 140, 'f', 31, 1, 1, 't', '5147984737977246330', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(101, 'Doctor Who', '13/13. Doomsday: Two armies wage war across the Earth with humans caught in the middle. But the Doctor faces a greater dilemma. Does saving the world mean the death of Rose?', 'crid://fp.bbc.co.uk/54BVA1', '54BVA1', '2007-08-29T18:00:00+00:00', 3000, 140, 'f', 26, 4, 1, 't', '5104168340629188990', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(102, 'Doctor Who', '12/13. Army of Ghosts: The human race rejoices as the ghosts of loved ones return home. But as the Doctor, Rose and Jackie investigate, a trap is being sprung that threatens Earth.', 'crid://fp.bbc.co.uk/54BVA0', '54BVA0', '2007-08-28T18:00:00+00:00', 2700, 130, 'f', 26, 4, 1, 't', '5103797255454814549', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(103, 'Doctor Who', '11/13. Fear Her: When the Tardis lands in 2012, the Doctor plans to show Rose the London Olympics. On a nearby housing estate, a desperate mother is hiding her daughter''s unearthly powers.', 'crid://fp.bbc.co.uk/54BV9Z', '54BV9Z', '2007-08-27T18:00:00+00:00', 2700, 120, 'f', 26, 4, 1, 't', '5103426170280440122', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(104, 'Doctor Who', '10/13. Love and Monsters: A man called Elton becomes obsessed with the Doctor and Rose and the Tardis. But this harmless hobby suddenly plunges Elton into a world of living nightmares.', 'crid://fp.bbc.co.uk/54BV9Y', '54BV9Y', '2007-08-23T18:00:00+00:00', 2700, 110, 'f', 26, 4, 1, 't', '5101941829582941391', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(105, 'Doctor Who', '9/13. The Satan Pit: Rose battles the murderous Ood, and the Doctor finds his every belief being challenged to the core. As the Pit beckons, he must make the ultimate sacrifice.', 'crid://fp.bbc.co.uk/54BV9X', '54BV9X', '2007-08-21T18:00:00+00:00', 3000, 100, 'f', 26, 4, 1, 't', '5101199659234192165', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(106, 'Doctor Who', '8/13. The Impossible Planet: The Doctor and Rose arrive on a world in the orbit of a black hole. Trapped with a human expedition and the alien Ood, they realise something evil is waking up.', 'crid://fp.bbc.co.uk/54BV9W', '54BV9W', '2007-08-20T18:00:00+00:00', 3000, 90, 'f', 26, 4, 1, 't', '5100828574059817091', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(107, 'Doctor Who', '7/13. The Idiot''s Lantern: As the 1953 celebrations surrounding the coronation of Queen Elizabeth II continue, there are rumours of monsters on the streets.', 'crid://fp.bbc.co.uk/54BV9V', '54BV9V', '2007-08-19T18:00:00+00:00', 2700, 80, 'f', 26, 4, 1, 't', '5100457488885442680', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(108, 'Doctor Who', '6/13. The Age of Steel: Cybermen take control of London and start converting the populace. While Jackie falls under Lumic''s control, the Doctor, Rose and Mickey are reduced to fugitives.', 'crid://fp.bbc.co.uk/54BV9U', '54BV9U', '2007-08-17T18:00:00+00:00', 3000, 70, 'f', 26, 4, 1, 't', '5099715318536693507', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(109, 'Doctor Who', '5/13. Rise of the Cybermen: When the Tardis is trapped on a parallel earth, Rose discovers that her father is alive. An enemy of the Doctor''s is about to be reborn in a new and terrible shape.', 'crid://fp.bbc.co.uk/54BV9T', '54BV9T', '2007-08-16T18:00:00+00:00', 3000, 60, 'f', 26, 4, 1, 't', '5099344233362318934', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(110, 'Doctor Who', '4/13. The Girl in the Fireplace: When Madame de Pompadour finds the court at Versailles under attack from clockwork killers, her only hope of salvation lies with the Doctor. Then 60 Seconds.', 'crid://fp.bbc.co.uk/54BV9S', '54BV9S', '2007-08-15T19:15:00+00:00', 2700, 50, 'f', 26, 4, 1, 't', '5098992475540776329', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(111, 'Doctor Who', '3/13. School Reunion: When the Doctor investigates a London school haunted by bat-like creatures, he finds an old friend already working undercover. Followed by 60 Seconds.', 'crid://fp.bbc.co.uk/54BV9R', '54BV9R', '2007-08-15T18:30:00+00:00', 2700, 40, 'f', 26, 4, 1, 't', '5098980879129077122', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(112, 'Doctor Who', '2/13. Tooth and Claw: The Doctor and Rose travel back to 1879, where an encounter in the Scottish Highlands with Queen Victoria and a band of warrior monks reveals a deadly trap.', 'crid://fp.bbc.co.uk/54BV9Q', '54BV9Q', '2007-08-14T18:00:00+00:00', 2700, 30, 'f', 26, 4, 1, 't', '5098602063013569512', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(113, 'Doctor Who', '1/13. New Earth: When the Doctor and Rose visit mankind''s new home, far in the future, they find gruesome secrets hidden inside a luxury hospital.', 'crid://fp.bbc.co.uk/54BV9P', '54BV9P', '2007-08-13T18:00:00+00:00', 2700, 20, 'f', 26, 4, 1, 't', '5098230977839194856', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(114, 'Doctor Who', '13/13. Parting of the Ways: Friendships are put to the test as Earth plunges into an epic war. With the human race being slaughtered, the Doctor is forced into terrible action.', 'crid://fp.bbc.co.uk/54BUGO', '54BUGO', '2007-08-10T18:00:00+00:00', 2700, 260, 'f', 32, 4, 1, 't', '5097117722316069794', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(115, 'Doctor Who', '12/13. Bad Wolf: The Doctor, Rose and Captain Jack have to fight for their lives on board the Game Station, but a more dangerous threat is lurking just out of sight.', 'crid://fp.bbc.co.uk/54BUGN', '54BUGN', '2007-08-09T18:00:00+00:00', 2700, 250, 'f', 32, 4, 1, 't', '5096746637141695352', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(116, 'Doctor Who', '11/13. Boom Town: The Doctor encounters an enemy he thought long since dead. A plan to build a nuclear power station in Cardiff disguises an alien plot to rip the world apart.', 'crid://fp.bbc.co.uk/54BUGM', '54BUGM', '2007-08-08T18:00:00+00:00', 2700, 240, 'f', 32, 4, 1, 't', '5096375551967320695', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(117, 'Doctor Who', '10/13. The Doctor Dances: The Child''s plague is spreading throughout wartime London, and its zombie army is on the march. The Doctor and Rose are trapped in an abandoned hospital.', 'crid://fp.bbc.co.uk/54BUGL', '54BUGL', '2007-08-07T18:00:00+00:00', 2700, 230, 'f', 32, 4, 1, 't', '5096004466792946099', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(118, 'Doctor Who', '9/13. The Empty Child: During WWII, a mysterious cylinder is being guarded by the army, while homeless children living on the bombsites are being terrorised by an unearthly child.', 'crid://fp.bbc.co.uk/54BUGK', '54BUGK', '2007-08-06T18:00:00+00:00', 2700, 220, 'f', 32, 4, 1, 't', '5095633381618571585', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(119, 'Doctor Who', '8/13. Father''s Day: Rose travels back to 1987 to witness the day her father died but when she interferes in the course of events, the monstrous Reapers are unleashed upon the world.', 'crid://fp.bbc.co.uk/54BUGJ', '54BUGJ', '2007-08-05T18:00:00+00:00', 2700, 210, 'f', 32, 4, 1, 't', '5095262296444197158', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(120, 'Doctor Who', '7/13. The Long Game: In the future, Satellite 5 broadcasts to the Earth Empire, but anyone promoted to Floor 500 is never seen again and the Doctor suspects mankind is being manipulated.', 'crid://fp.bbc.co.uk/54BUGI', '54BUGI', '2007-08-03T18:00:00+00:00', 2700, 200, 'f', 32, 4, 1, 't', '5094520126095447238', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(121, 'Doctor Who', '6/13. Dalek: The Doctor and Rose discover that the Doctor''s oldest and most deadly enemy is about to break free, after being held captive beneath the salt plains of Utah.', 'crid://fp.bbc.co.uk/54BUGH', '54BUGH', '2007-08-02T18:00:00+00:00', 3000, 190, 'f', 32, 4, 1, 't', '5094149040921072787', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(122, 'Doctor Who', '5/13. World War Three: The Doctor, Rose and Harriet Jones race against time to unmask the villainous Slitheen, but only Rose''s mum and boyfriend hold the key to salvation.', 'crid://fp.bbc.co.uk/54BUGG', '54BUGG', '2007-08-01T18:00:00+00:00', 2700, 180, 'f', 32, 4, 1, 't', '5093777955746698189', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(123, 'Doctor Who', '4/13. Aliens of London: The Doctor takes Rose home, but when a spaceship crash-lands in the Thames, London is closed off and the whole world goes on red alert.', 'crid://fp.bbc.co.uk/54BUGF', '54BUGF', '2007-07-31T18:00:00+00:00', 2700, 170, 'f', 32, 4, 1, 't', '5093406870572323382', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(124, 'Doctor Who', '3/13. The Unquiet Dead: The Doctor takes Rose back through time to 1869. But in Victorian Cardiff, the dead are walking and creatures made of gas are on the loose.', 'crid://fp.bbc.co.uk/54BUGE', '54BUGE', '2007-07-30T18:00:00+00:00', 2700, 160, 'f', 32, 4, 1, 't', '5093035785397948944', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(125, 'Doctor Who', '2/13. The End of the World: The Doctor takes Rose on her first voyage through time, to the year five billion as the sun is about to expand and swallow the Earth.', 'crid://fp.bbc.co.uk/54BUGD', '54BUGD', '2007-07-29T18:00:00+00:00', 2700, 150, 'f', 32, 4, 1, 't', '5092664700223574240', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(126, 'Doctor Who', 'Rose: When Rose Tyler meets a mysterious stranger called the Doctor she feels that her life will never be the same again. Soon she realises that the whole of planet Earth is in danger.', 'crid://fp.bbc.co.uk/54BUG9', '54BUG9', '2007-07-28T18:00:00+00:00', 3000, 140, 'f', 32, 4, 1, 't', '5092293615049199511', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(127, 'Doctor Who', '10/13. Blink: In an old, abandoned house, the Weeping Angels wait. Only the Doctor can stop them, but he''s lost in time.', 'crid://fp.bbc.co.uk/54BW1M', '54BW1M', '2007-07-24T18:00:00+00:00', 2700, 100, 'f', 31, 4, 1, 't', '5090809274351699720', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(128, 'Doctor Who', '9/13. The Family of Blood: It is 1913, and war has come to England a year in advance, as the terrifying Family hunt for the Doctor. Followed by 60 Seconds.', 'crid://fp.bbc.co.uk/54BW1L', '54BW1L', '2007-07-23T18:00:00+00:00', 2700, 90, 'f', 31, 4, 1, 't', '5090438189177325273', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(129, 'Doctor Who', '8/13. Human Nature. Part 1: England 1913, and a schoolteacher called John Smith has strange dreams of adventures in time and space.', 'crid://fp.bbc.co.uk/54BW1K', '54BW1K', '2007-07-22T18:00:00+00:00', 2700, 80, 'f', 31, 4, 1, 't', '5090067104002950868', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(130, 'Doctor Who', '7/13. 42: As a spaceship hurtles towards the sun, the Doctor and Martha have only 42 minutes to save the day.', 'crid://fp.bbc.co.uk/54BW1J', '54BW1J', '2007-07-20T18:00:00+00:00', 2700, 70, 'f', 31, 4, 1, 't', '5089324933654201966', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(131, 'Doctor Who', 'The Lazarus Experiment: Time-travelling traumas with the Timelord in the TARDIS. Martha returns home, but has to save her family from the schemes of the monstrous Professor Lazarus.', 'crid://fp.bbc.co.uk/54BW1I', '54BW1I', '2007-07-19T18:00:00+00:00', 2700, 60, 'f', 31, 4, 1, 't', '5088953848479827452', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(132, 'Doctor Who', 'Evolution of the Daleks: As a new Dalek Empire rises in 1930s New York, the Doctor must enter an unholy alliance.', 'crid://fp.bbc.co.uk/54BW1H', '54BW1H', '2007-07-18T18:00:00+00:00', 2700, 50, 'f', 31, 4, 1, 't', '5088582763305452892', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(133, 'Doctor Who', '4/13. Daleks in Manhattan: The Doctor finds his oldest enemies at work on top of the Empire State Building when he and Martha travel to 1930s New York.', 'crid://fp.bbc.co.uk/54BW1G', '54BW1G', '2007-07-17T18:00:00+00:00', 3000, 40, 'f', 31, 4, 1, 't', '5088211678131078478', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(134, 'Doctor Who', '3/13. Gridlock: The Doctor takes Martha to New Earth, in the far future, only to find that an entire city has become a deadly trap. Followed by 60 Seconds.', 'crid://fp.bbc.co.uk/54BW1F', '54BW1F', '2007-07-16T18:00:00+00:00', 2700, 30, 'f', 31, 4, 1, 't', '5087840592956702317', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(135, 'Doctor Who', '2/13. The Shakespeare Code: The Doctor takes Martha to Elizabethan England, where William Shakespeare is under the control of deadly witch-like creatures.', 'crid://fp.bbc.co.uk/54BW1E', '54BW1E', '2007-07-15T18:00:00+00:00', 2700, 20, 'f', 31, 4, 1, 't', '5087469507782327904', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(136, 'Doctor Who', '1/13. Smith and Jones: When Martha Jones finds herself on the moon, she meets a mysterious stranger called the Doctor, and her life will never be the same again. Then 60 Seconds.', 'crid://fp.bbc.co.uk/54BW1D', '54BW1D', '2007-07-13T18:00:00+00:00', 3000, 10, 'f', 31, 4, 1, 't', '5086727337433578919', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(137, 'Doctor Who', '13/13. Last of the Time Lords: Earth has been conquered and the Master rules supreme, with the Doctor his prisoner. Can Martha Jones save the world?', 'crid://fp.bbc.co.uk/54BW1P', '54BW1P', '2007-06-30T18:05:00+00:00', 3000, 120, 'f', 31, 1, 1, 't', '5081904518644642147', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(138, 'Doctor Who', '12/13. The Sound of Drums: Harry Saxon becomes Prime Minister, but his dark ambitions reach beyond the stars.', 'crid://fp.bbc.co.uk/54BW1O', '54BW1O', '2007-06-29T20:00:00+00:00', 2700, 130, 'f', 31, 4, 1, 't', '5081563068756863848', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(139, 'Doctor Who', '11/13. Utopia: Jack''s back! As Captain Jack storms back into the Doctor''s life, the Tardis is thrown to the end of the universe itself.', 'crid://fp.bbc.co.uk/54BW1N', '54BW1N', '2007-06-29T19:00:00+00:00', 2700, 110, 'f', 31, 4, 1, 't', '5081547606874598243', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(227, 'Doctor Who', 'The Doctor, the Widow and the Wardrobe: A madcap caretaker leads an evacuee and her two children into a magical wintry world. Also in HD.', 'crid://fp.bbc.co.uk/1FTW9P', '1FTW9P', '2011-12-25T19:00:00+00:00', 3600, 1000000, 'f', 15, 1, 1, 't', '5690142754718650869', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(351, 'Doctor Who', 'The Christmas Invasion: The Tardis falls to earth on Christmas Eve, bringing the new Doctor home to Rose''s family. Followed by 60 Seconds.', 'crid://fp.bbc.co.uk/54BV9O', '54BV9O', '2007-08-12T18:00:00+00:00', 3600, 10, 'f', 26, 4, 1, 't', '5097859892664820189', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(352, 'Doctor Who', 'The Runaway Bride: The Doctor finds himself with a new companion, Donna, but she''s late for her wedding. As they race to get to the church, the mysterious Empress joins the chase.', 'crid://fp.bbc.co.uk/54BW1Q', '54BW1Q', '2010-12-28T13:40:00+00:00', 3600, 150, 'f', 26, 1, 1, 't', '5085258458618345706', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(353, 'Doctor Who', 'Planet of the Dead: A London bus takes a detour to an alien world, but can the Doctor defeat the terrifying Swarm? Also in HD.', 'crid://fp.bbc.co.uk/1FTW5Z', '1FTW5Z', '2009-04-11T17:45:00+00:00', 3600, 1000000, 'f', 24, 1, 1, 't', '5323475813201660716', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(354, 'Doctor Who: The Time of the Doctor', 'Sci-fi drama. Orbiting a quiet backwater planet, the universe''s deadliest species gather, drawn to a mysterious message that echoes out to the stars. And amongst them, the Doctor. Also in HD.', 'crid://fp.bbc.co.uk/1FTW2S', '1FTW2S', '2013-12-25T19:30:00+00:00', 3600, 160, 'f', 13, 1, 1, 't', '5961413748127481733', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(355, 'Doctor Who: The Day of the Doctor', 'The Doctors embark on their greatest adventure in this anniversary special. All of reality is at stake as the Doctor''s dangerous past comes back to haunt him. Also in HD.', 'crid://fp.bbc.co.uk/1FTW2Q', '1FTW2Q', '2013-11-23T19:50:00+00:00', 4500, 150, 'f', 13, 1, 1, 't', '5949544176508245292', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(356, 'Happy Valley', '6/6. Catherine''s fears grow when she learns that Tommy has been spending time with Ryan. Contains some strong language and some violence. Also in HD.', 'crid://fp.bbc.co.uk/1FN65Q', '1FN65Q', '2014-06-03T20:00:00+00:00', 3600, 1000000, 'f', 90, 1, 2, 't', '6020795106968526005', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(357, 'Happy Valley', '5/6. Drama series. Catherine sinks into a depression as she learns that Tommy is still at large. The net closes in on Kevin. Contains some violence and some upsetting scenes. Also in HD.', 'crid://fp.bbc.co.uk/1FN64B', '1FN64B', '2014-05-27T20:00:00+00:00', 3600, 1000000, 'f', 90, 1, 2, 't', '6018197510747894328', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(358, 'Happy Valley', '4/6. Catherine and Tommy finally come face to face when he discovers he is a father. Contains some strong language, some violence and disturbing scenes. Also in HD.', 'crid://fp.bbc.co.uk/1FN64A', '1FN64A', '2014-05-20T20:00:00+00:00', 3600, 1000000, 'f', 90, 1, 2, 't', '6015599914527270823', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(359, 'Happy Valley', '3/6. Tommy brutally takes control of a situation when PC Kirsten McAskill pulls him and Lewis over. His actions have devastating consequences. Contains upsetting scenes. Also in HD.', 'crid://fp.bbc.co.uk/1FN649', '1FN649', '2014-05-13T20:00:00+00:00', 3600, 1000000, 'f', 90, 1, 2, 't', '6013002318306646896', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(360, 'Happy Valley', '2/6. Drama series. Catherine gets a tip-off regarding Tommy''s whereabouts. Helen absorbs the news that Ann has been abducted. Contains some strong language and upsetting scenes. Also in HD. [AD,S]', 'crid://fp.bbc.co.uk/1FN648', '1FN648', '2015-04-25T22:10:00+01:00', 3600, 1000000, 'f', 566, 4, 2, 't', '6141786912685348091', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(361, 'Happy Valley', 'New series. 1/6. Drama series. Sergeant Cawood''s world stops when the man who drove her daughter to suicide is released from prison. Contains adult themes. Also in HD.', 'crid://fp.bbc.co.uk/1FN647', '1FN647', '2014-04-29T20:00:00+00:00', 3600, 1000000, 'f', 90, 1, 2, 't', '6007807125865403315', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(362, 'The Vicar of Dibley', '1/8. The Arrival: Sitcom about a female vicar. When the 102-year-old vicar of Dibley village dies suddenly, the locals are shocked to discover that his replacement is a woman.', 'crid://fp.bbc.co.uk/4GYN95', '4GYN95', '2013-03-08T20:30:00+00:00', 1800, 1000000, 'f', 91, 1, 2, 't', '5123506001370432578', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(363, 'The Vicar of Dibley', 'Winter: Ecclesiastical sitcom about the unconventional Rev Geraldine Granger. Alice miraculously solves the problem of the Christmas show by proposing an unusual Nativity.', 'crid://fp.bbc.co.uk/3CWPPF', '3CWPPF', '2012-12-25T23:00:00+00:00', 2400, 1000000, 'f', 92, 1, 2, 't', '6096531271776001194', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(364, 'The Vicar of Dibley', 'The Christmas Lunch Incident: The Christmas 1996 episode of the clerical sitcom. Geraldine agrees to attend three Christmas lunches, in order not to hurt anyone''s feelings.', 'crid://fp.bbc.co.uk/4D917W', '4D917W', '2012-12-24T22:45:00+00:00', 2700, 1000000, 'f', 92, 1, 2, 't', '5961474307166356317', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(365, 'The Vicar of Dibley', 'Love and Marriage: Geraldine is busy preparing for Alice and Hugo''s wedding, but she is totally unprepared for Alice''s shock revelation, or for her first meeting with David''s dashing brother.', 'crid://fp.bbc.co.uk/4D919C', '4D919C', '2008-02-02T21:40:00+00:00', 1800, 1000000, 'f', 93, 1, 2, 't', '5162500868444278667', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(366, 'The Vicar of Dibley', 'Election: It''s time for the local elections and David is as confident as ever of total victory. He plans to twin-town Dibley with every single country in Europe, except of course, Belgium.', 'crid://fp.bbc.co.uk/4GYN99', '4GYN99', '2008-01-13T21:40:00+00:00', 1800, 1000000, 'f', 94, 1, 2, 't', '5155079164956785187', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(367, 'The Vicar of Dibley', 'At last the Vicar will attend a wedding in a dress, not a dog collar. Or will she? The Vicar chosen for the service seems a bit too fond of Geraldine.', 'crid://fp.bbc.co.uk/35VA6K', '35VA6K', '2008-01-09T21:00:00+00:00', 3600, 1000000, 'f', 95, 1, 2, 't', '5153584516337775417', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(368, 'The Vicar of Dibley', 'The Handsome Stranger: Alice has worked out the clues in the Da Vinci Code and concluded, somewhat worryingly, that she is the last living descendant of Jesus Christ.', 'crid://fp.bbc.co.uk/35VA6J', '35VA6J', '2007-12-29T21:10:00+00:00', 3300, 1000000, 'f', 95, 1, 2, 't', '5149505156400032461', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(369, 'The Vicar of Dibley', 'Window and the Weather: After an unfortunate accident with a big tree and a great storm, St Barnabus'' church finds itself in need of a new window. Language may offend.', 'crid://fp.bbc.co.uk/4GYN98', '4GYN98', '2007-11-03T21:40:00+00:00', 1800, 1000000, 'f', 96, 1, 2, 't', '5128732117576210320', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(370, 'The Vicar of Dibley', 'Songs of Praise is coming to film Dibley and its new woman vicar. Unfortunately, Dibley hasn''t actually got a choir - a bit of a drawback in a programme full of hymns. Language may offend.', 'crid://fp.bbc.co.uk/4GYN96', '4GYN96', '2007-10-27T20:40:00+00:00', 1800, 1000000, 'f', 96, 1, 2, 't', '5126103597591055382', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(371, 'The Vicar of Dibley', 'Ecclesiastical sitcom about the unconventional Rev Geraldine Granger.', 'crid://fp.bbc.co.uk/3CWPPE', '3CWPPE', '2007-09-29T20:25:00+00:00', 2400, 1000000, 'f', 97, 1, 2, 't', '5115709347237997032', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(372, 'The Vicar of Dibley', 'Community Spirit: It''s time for the Autumn fayre, and Vicar Geraldine sets out to quadruple last year''s tiny takings by finding a huge star to open it.', 'crid://fp.bbc.co.uk/4GYN97', '4GYN97', '2007-09-15T20:40:00+00:00', 1800, 1000000, 'f', 97, 1, 2, 't', '5110518020267317670', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(373, 'The Vicar of Dibley', 'Dibley Live: When Radio Dibley is live on air for one week, Geraldine presents a ''Brain of Dibley'' competition, and Owen offers to give a commentary whilst gelding horses. Some offensive language.', 'crid://fp.bbc.co.uk/4D919A', '4D919A', '2007-08-18T20:40:00+00:00', 1800, 1000000, 'f', 98, 1, 2, 't', '5100127635384855294', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(374, 'The Vicar of Dibley', 'Animals: Geraldine has a radical idea for an off-beat Sunday service and parish council chairman David is far from impressed.', 'crid://fp.bbc.co.uk/4GYN9A', '4GYN9A', '2007-08-16T20:30:00+00:00', 1800, 1000000, 'f', 98, 1, 2, 't', '5099382888055727832', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(375, 'Luther', '4/4. Accused of crimes he has not committed, Luther must clear his name and stop the vigilante killer from becoming a martyr. Contains some violence. Also in HD.', 'crid://fp.bbc.co.uk/1FHO1Q', '1FHO1Q', '2013-07-23T20:00:00+00:00', 3600, 1000000, 'f', 99, 1, 2, 't', '5903903277040588256', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(376, 'Luther', '3/4. A vigilante killer embarks on a crusade to punish past offenders. Meanwhile, the campaign against Luther knows no bounds. Contains some violence and upsetting scenes. Also in HD.', 'crid://fp.bbc.co.uk/1FHO1P', '1FHO1P', '2013-07-16T20:00:00+00:00', 3600, 1000000, 'f', 99, 1, 2, 't', '5901305680819965287', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(377, 'Luther', '2/4. Crime drama series. The killer has struck again. Luther trawls through cold case files, determined to try and predict the fetishist''s next move. Contains disturbing scenes. Also in HD.', 'crid://fp.bbc.co.uk/1FHO1O', '1FHO1O', '2013-07-14T21:25:00+00:00', 3600, 1000000, 'f', 99, 1, 2, 't', '5898708084599343208', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(378, 'Luther', 'New series. 1/4. Luther investigates two horrific cases, unaware his every step is under scrutiny. Contains some violence and disturbing scenes. Also in HD.', 'crid://fp.bbc.co.uk/1FHO1N', '1FHO1N', '2013-07-02T20:00:00+00:00', 3600, 1000000, 'f', 99, 1, 2, 't', '5896110488378721561', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(379, 'Luther', '4/4. Luther has a murderer in custody, a copycat killer on the loose, Toby''s body to dispose of and a suspicious Baba to appease. Contains some violence and disturbing scenes. Also in HD.', 'crid://fp.bbc.co.uk/1FH74U', '1FH74U', '2011-07-05T20:00:00+00:00', 3600, 1000000, 'f', 100, 1, 2, 't', '5625945019551878439', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(380, 'Luther', '3/4. Luther must outmanoeuvre a man whose brutal and escalating murders seem to have no motive. Contains some violence and upsetting scenes. Also in HD.', 'crid://fp.bbc.co.uk/1FH74T', '1FH74T', '2011-06-28T20:00:00+00:00', 3600, 1000000, 'f', 100, 1, 2, 't', '5623347423331285372', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(381, 'Luther', '2/4. Luther must save Ripley''s life in time to stop Cameron''s final murderous set piece. Contains some violence and disturbing scenes. Also in HD.', 'crid://fp.bbc.co.uk/1FH74S', '1FH74S', '2011-06-21T20:00:00+00:00', 3600, 1000000, 'f', 100, 1, 2, 't', '5620749827110663376', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(382, 'Luther', 'New series. 1/4. Luther faces a surreal and nightmarish case of a man who murders wearing a Punch mask. Contains some violence and upsetting scenes. Also in HD.', 'crid://fp.bbc.co.uk/1FH74R', '1FH74R', '2011-06-14T20:00:00+00:00', 3600, 1000000, 'f', 100, 1, 2, 't', '5618152230890041491', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(383, 'Luther', '6/6. Crime drama. Luther, suspected of murder, goes on the run to try and prove his innocence. He and Alice set out to exact revenge on the real killer. Contains some violence. Also in HD.', 'crid://fp.bbc.co.uk/1FH6AC', '1FH6AC', '2010-06-08T20:00:00+00:00', 3600, 1000000, 'f', 101, 1, 2, 't', '5480479631197136533', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(384, 'Luther', '5/6. Things become personal for Luther when a wealthy couple are taken hostage. Contains some strong language and some violence. Also in HD.', 'crid://fp.bbc.co.uk/1FH6AB', '1FH6AB', '2010-06-01T20:00:00+00:00', 3600, 1000000, 'f', 101, 1, 2, 't', '5477882034976514414', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(385, 'Luther', '4/6. When three girls are found murdered, Luther is forced to put personal matters aside. Contains some strong language, some violence and some upsetting scenes. Also in HD.', 'crid://fp.bbc.co.uk/1FH6AA', '1FH6AA', '2010-05-25T20:00:00+00:00', 3600, 1000000, 'f', 101, 1, 2, 't', '5475284438755891059', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(386, 'Luther', '3/6. John Luther must catch a satanic occult killer accused of kidnap and murder. Contains disturbing scenes. Also in HD.', 'crid://fp.bbc.co.uk/1FH6A9', '1FH6A9', '2010-05-18T20:00:00+00:00', 3600, 1000000, 'f', 101, 1, 2, 't', '5472686842535267723', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(387, 'Luther', '2/6. Luther must outmanoeuvre a trained sniper on a mission to gun down police officers. Contains some violence. Also in HD.', 'crid://fp.bbc.co.uk/1FH6A8', '1FH6A8', '2010-05-11T20:00:00+00:00', 3600, 1000000, 'f', 101, 1, 2, 't', '5470089246314644032', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(388, 'Luther', 'New series. 1/6. Luther, back from suspension, must solve a seemingly perfect double murder. Contains some upsetting scenes. Also in HD.', 'crid://fp.bbc.co.uk/1FH6A7', '1FH6A7', '2010-05-04T20:00:00+00:00', 3600, 1000000, 'f', 101, 1, 2, 't', '5467491650094023007', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(781, 'Doctor Who', 'Part 4: The Hand of Fear: Eldrad reconfigures his body to its final, male form. Furious with finding his world dead, he states that he will return to Earth to rule it.', 'crid://fp.bbc.co.uk/1FHO0C', '1FHO0C', '2011-05-10T19:05:00+00:00', 1500, 1000000, 'f', 159, 3, 1, 't', '5605150077225072001', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(782, 'Doctor Who', 'Part 3: The Hand of Fear: The hand has regenerated into a Kastrian called Eldrad who has modelled his form on Sarah Jane. He persuades the Doctor to take him back to Kastria.', 'crid://fp.bbc.co.uk/1FHO0B', '1FHO0B', '2011-05-10T18:40:00+00:00', 1500, 1000000, 'f', 159, 3, 1, 't', '5605143634774128000', 70296, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(783, 'Doctor Who', 'Part 2: The Hand of Fear: The fossilised hand is now in the possession of a technician called Driscoll at Nunton power station. He places it in the reactor core, causing disaster.', 'crid://fp.bbc.co.uk/1FHO0A', '1FHO0A', '2011-05-09T19:05:00+00:00', 1500, 1000000, 'f', 159, 3, 1, 't', '5604778992050697596', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(784, 'Doctor Who', 'Part 1: The Hand of Fear: Sarah Jane finds a fossilised hand and places a ring from it on her finger. She is knocked unconscious by an explosion and is taken to hospital.', 'crid://fp.bbc.co.uk/1FHO09', '1FHO09', '2011-05-09T18:40:00+00:00', 1500, 1000000, 'f', 159, 3, 1, 't', '5604772549599753595', 70744, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(904, 'Death in Paradise', '8/8. Detective drama series. The team investigates the apparent suicide of an elderly resident at a retirement home. Humphrey is surprised when his wife pays a visit to the island. Also in HD.', 'crid://fp.bbc.co.uk/1FN67Q', '1FN67Q', '2014-03-04T21:00:00+00:00', 3600, 1000000, 'f', 184, 1, 2, 't', '5987041817982708206', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(905, 'Death in Paradise', '7/8. Detective drama series. Following a murder on a privately-owned island, DI Goodman and the team find themselves spending the night locked in a house with the killer. Also in HD.', 'crid://fp.bbc.co.uk/1FN67P', '1FN67P', '2014-02-25T21:00:00+00:00', 3600, 1000000, 'f', 184, 1, 2, 't', '5984444221762083271', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(906, 'Death in Paradise', '6/8. Detective drama series set on a Caribbean island. DI Goodman and the team are faced with a conundrum when a birdwatcher is discovered murdered in the Saint-Marie jungle. Also in HD. [AD,S]', 'crid://fp.bbc.co.uk/1FN67O', '1FN67O', '2015-08-06T21:00:00+01:00', 3600, 1000000, 'f', 766, 1, 2, 't', '6179990646775138958', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(907, 'Death in Paradise', '5/8. Detective drama series set on a Caribbean island. DI Goodman and his team are drawn into the world of politics when Saint-Marie''s commerce minister is discovered dead. Also in HD. [AD,S]', 'crid://fp.bbc.co.uk/1FN67N', '1FN67N', '2015-07-21T21:00:00+01:00', 3600, 1000000, 'f', 761, 1, 2, 't', '6174053283985144088', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(908, 'Death in Paradise', '4/8. Detective drama series. Humphrey and the team are faced with the seemingly impossible murder of an air stewardess found poisoned in her hotel bedroom. Also in HD.', 'crid://fp.bbc.co.uk/1FN67M', '1FN67M', '2014-02-04T21:00:00+00:00', 3600, 1000000, 'f', 184, 1, 2, 't', '5976651433100241441', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(909, 'Death in Paradise', '3/8. Detective drama series. The murder of a local gigolo brings DI Goodman and his team into contact with the social elite of Saint Marie. Also in HD.', 'crid://fp.bbc.co.uk/1FN67L', '1FN67L', '2014-01-28T21:00:00+00:00', 3600, 1000000, 'f', 184, 1, 2, 't', '5974053836879618507', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(910, 'Death in Paradise', '2/8. DI Humphrey Goodman and his team are called to investigate a murder on a film set. Also in HD.', 'crid://fp.bbc.co.uk/1FN67K', '1FN67K', '2014-01-21T21:00:00+00:00', 3600, 1000000, 'f', 184, 1, 2, 't', '5971456240658996647', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(911, 'Death in Paradise', 'New series. 1/8. Detective drama series. A university reunion party that DI Richard Poole is attending is brought to an abrupt halt when one of the group is murdered. Also in HD.', 'crid://fp.bbc.co.uk/1FN67J', '1FN67J', '2014-01-14T21:00:00+00:00', 3600, 1000000, 'f', 184, 1, 2, 't', '5968858644438375440', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(912, 'Death in Paradise', 'Detective drama series. The pressure is on for DI Richard Poole and his team to solve an audacious murder carried out in the presence of DS Bordey on a Caribbean party boat. Also in HD.', 'crid://fp.bbc.co.uk/1FN62N', '1FN62N', '2013-08-19T20:00:00+00:00', 3600, 1000000, 'f', 185, 1, 2, 't', '5913922576748679006', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(913, 'Death in Paradise', '4/8. Detective drama series. Camille attempts to persuade Richard to take an interest in the history and folklore of Saint Marie. Richard remains focused on work. Also in HD.', 'crid://fp.bbc.co.uk/1FN62M', '1FN62M', '2013-08-12T20:00:00+00:00', 3600, 1000000, 'f', 185, 1, 2, 't', '5911324980528086582', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(914, 'Death in Paradise', '1/8. Detective drama series. DI Richard Poole struggles to muster that loving feeling for the local voodoo festival celebrating romance and friendship. Also in HD.', 'crid://fp.bbc.co.uk/1FN62J', '1FN62J', '2013-07-29T20:00:00+00:00', 3600, 1000000, 'f', 185, 1, 2, 't', '5906129788086838216', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(915, 'Death in Paradise', '8/8. Detective drama series. When a philanthropist is murdered in broad daylight at a charity fundraiser, DI Poole and his colleagues find themselves up against a daring opponent. Also in HD.', 'crid://fp.bbc.co.uk/1FN62Q', '1FN62Q', '2013-02-26T21:00:00+00:00', 3600, 1000000, 'f', 186, 1, 2, 't', '5849369218289806143', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(916, 'Death in Paradise', '7/8. Detective drama series. A storm is brewing as a hurricane heads for Saint Marie. Is the storm to blame for a death at the university, or is something more sinister afoot? Also in HD.', 'crid://fp.bbc.co.uk/1FN62P', '1FN62P', '2013-02-19T21:00:00+00:00', 3600, 1000000, 'f', 186, 1, 2, 't', '5846771622069183014', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(917, 'Death in Paradise', '6/8. Crime series. There is a blast from the past for DI Poole when an ex-colleague turns up, and the team investigate a murder. Contains moderate violence. Also in HD.', 'crid://fp.bbc.co.uk/1FN62O', '1FN62O', '2013-02-12T21:00:00+00:00', 3600, 1000000, 'f', 186, 1, 2, 't', '5844174025848581494', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(918, 'Death in Paradise', '3/8. Detective drama series. DI Richard Poole is baffled by an apparent suicide at a plastic surgery clinic, but is determined to prove that Valerie Dupree was murdered. Also in HD.', 'crid://fp.bbc.co.uk/1FN62L', '1FN62L', '2013-01-22T21:00:00+00:00', 3600, 1000000, 'f', 187, 1, 2, 't', '5836381237186712060', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(919, 'Death in Paradise', '2/8. DI Poole is baffled by a fatal fire at the convent. Will he and his team manage to unravel the mysteries at the heart of this murder? Contains some upsetting scenes. Also in HD.', 'crid://fp.bbc.co.uk/1FN62K', '1FN62K', '2013-01-15T21:00:00+00:00', 3600, 1000000, 'f', 187, 1, 2, 't', '6034154173245987884', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(920, 'Death in Paradise', '8/8. Detective drama series. Dwayne becomes embroiled in a murder investigation when incriminating evidence is found at the crime scene. Contains some upsetting scenes. Also in HD.', 'crid://fp.bbc.co.uk/1FN5W2', '1FN5W2', '2011-12-13T21:00:00+00:00', 3600, 1000000, 'f', 188, 1, 2, 't', '5685720656390712188', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(921, 'Death in Paradise', '7/8. Detective drama series. Richard sees the dark side of show business when a comeback concert ends in a public murder. Contains adult themes. Also in HD.', 'crid://fp.bbc.co.uk/1FN5W1', '1FN5W1', '2011-12-06T21:00:00+00:00', 3600, 1000000, 'f', 188, 1, 2, 't', '5683123060170088228', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(922, 'Death in Paradise', '6/8. Detective drama series. With Richard hit by a tropical disease and Camille in Paris, it is left to Dwayne and Fidel to solve the apparently impossible murder of a local diver. Also in HD.', 'crid://fp.bbc.co.uk/1FN5W0', '1FN5W0', '2011-11-29T21:00:00+00:00', 3600, 1000000, 'f', 188, 1, 2, 't', '5680525463949464766', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(923, 'Death in Paradise', '5/8. Detective drama series. A murder investigation becomes more than personal for Richard when the victim is murdered while handcuffed to him. Also in HD.', 'crid://fp.bbc.co.uk/1FN5VZ', '1FN5VZ', '2011-11-22T21:00:00+00:00', 3600, 1000000, 'f', 188, 1, 2, 't', '5677927867728842302', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(924, 'Death in Paradise', '4/8. A confession of murder proves problematic for DI Richard Poole and the team. Contains moderate violence. Also in HD.', 'crid://fp.bbc.co.uk/1FN5VY', '1FN5VY', '2011-11-15T21:00:00+00:00', 3600, 1000000, 'f', 188, 1, 2, 't', '5675330271508218675', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(925, 'Death in Paradise', '3/8. Detective drama series. When a woman predicts her own murder and gives a description of the killer, it all feels too easy for DI Richard Poole. Contains adult themes. Also in HD.', 'crid://fp.bbc.co.uk/1FN5VX', '1FN5VX', '2011-11-08T21:00:00+00:00', 3600, 1000000, 'f', 188, 1, 2, 't', '5672732675287595378', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(926, 'Death in Paradise', '2/8. Detective drama series. A bride is murdered on her wedding day. Could the killer be one of her family? Contains some violence. Also in HD.', 'crid://fp.bbc.co.uk/1FN5VW', '1FN5VW', '2011-11-01T21:00:00+00:00', 3600, 1000000, 'f', 188, 1, 2, 't', '5670135079066971816', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(927, 'Death in Paradise', 'New series. 1/8. DI Richard Poole is sent to investigate an impossible murder on a tiny paradise island. Also in HD.', 'crid://fp.bbc.co.uk/1FN5VV', '1FN5VV', '2011-10-25T20:00:00+00:00', 3600, 1000000, 'f', 188, 1, 2, 't', '5667506559081818693', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(928, 'The Tudors', '5/10. Imprisoned Sir Thomas More refuses to relent to the King''s religious rulings, much to Henry''s anger and distress. Anne suffers a miscarriage. Contains some sexual content. Also in HD.', 'crid://fp.bbc.co.uk/4J5ER9', '4J5ER9', '2013-05-30T22:20:00+00:00', 3300, 1000000, 'f', 189, 2, 2, 't', '5240016438206684022', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(929, 'The Tudors', '4/6. Historical drama series. More than one nobleman is troubled by conscience as Brandon must revisit and redouble the retribution against the rebel forces, and Robert Aske''s fate is sealed.', 'crid://fp.bbc.co.uk/4J623Y', '4J623Y', '2011-08-04T23:20:00+00:00', 3000, 1000000, 'f', 190, 2, 2, 't', '5637129114394864440', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(930, 'The Tudors', '3/6. Historical drama series. The season of goodwill has Henry reconciled and rewarded on family matters, but the northern nobles face consequences for their uprising.', 'crid://fp.bbc.co.uk/4J623X', '4J623X', '2011-08-03T23:20:00+00:00', 3000, 1000000, 'f', 190, 2, 2, 't', '5636758029220490004', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(931, 'The Tudors', '2/6. Pained by an old wound, Henry orders the insurrection in Yorkshire to be squashed, but fears that those closest to him sympathise with the rebels. Contains adult themes.', 'crid://fp.bbc.co.uk/4J623W', '4J623W', '2011-08-02T23:20:00+00:00', 3000, 1000000, 'f', 190, 2, 2, 't', '5636386944046115566', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(932, 'The Tudors', '1/6. Wedded to Jane Seymour, Henry hopes for stability, but he is disturbed by an insurrection. Contains adult themes.', 'crid://fp.bbc.co.uk/4J623V', '4J623V', '2011-08-01T23:15:00+00:00', 3000, 1000000, 'f', 190, 2, 2, 't', '5636014570381552330', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(933, 'The Tudors', '10/10. Historical drama series. Troubled by visions, Henry takes out his volatile mood swings on a confused court and queen during a time of reckonings and partings. Also in HD.', 'crid://fp.bbc.co.uk/4J62EU', '4J62EU', '2011-04-02T21:00:00+00:00', 3300, 1000000, 'f', 191, 2, 2, 't', '5591078475047144698', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(934, 'The Tudors', '9/10. Historical drama series. Queen Catherine faces a fall from favour as the King encourages the hunt for heretics, while Henry Howard''s foes hope to hasten his disgrace. Also in HD.', 'crid://fp.bbc.co.uk/4J62ET', '4J62ET', '2011-03-26T22:00:00+00:00', 3300, 1000000, 'f', 191, 2, 2, 't', '5588511802591083128', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(935, 'The Tudors', '8/10. Laying siege takes its toll on Henry''s forces in France. Contains some sexual content. Also in HD.', 'crid://fp.bbc.co.uk/4J62ES', '4J62ES', '2011-03-19T23:00:00+00:00', 3000, 1000000, 'f', 191, 2, 2, 't', '5585929668252725611', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(936, 'The Tudors', '7/10. Impatient to show military might, Henry rushes his army to lay siege outside Boulogne, though the campaign proves costly. Contains some strong language. Also in HD.', 'crid://fp.bbc.co.uk/4J62ER', '4J62ER', '2011-03-12T22:45:00+00:00', 3300, 1000000, 'f', 191, 2, 2, 't', '5583328206561536645', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(937, 'The Tudors', '6/10. France and Spain each seek to woo Henry into an alliance abroad. Contains very strong language. Also in HD.', 'crid://fp.bbc.co.uk/4J62EQ', '4J62EQ', '2011-02-26T22:30:00+00:00', 3000, 1000000, 'f', 191, 2, 2, 't', '5578129148649722915', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(938, 'The Tudors', '5/10. Historical drama series. The careless talk of Katherine''s former lover, Francis Dereham, result in his torture and painful death. Contains some sexual content. Also in HD.', 'crid://fp.bbc.co.uk/4J62EP', '4J62EP', '2011-02-19T22:00:00+00:00', 3000, 1000000, 'f', 191, 2, 2, 't', '5575523821487966740', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(939, 'The Tudors', '4/10. The triumphal royal visit to Yorkshire has disappointing results for Henry. Contains very strong language and sexual content. Also in HD.', 'crid://fp.bbc.co.uk/4J62EO', '4J62EO', '2011-02-12T22:00:00+00:00', 3000, 1000000, 'f', 191, 2, 2, 't', '5572926225267343640', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(940, 'The Tudors', '3/10. Feeling healthier, Henry VIII prepares to go to Lincoln. Contains sexual content. Also in HD.', 'crid://fp.bbc.co.uk/4J62EN', '4J62EN', '2011-02-05T22:00:00+00:00', 3000, 1000000, 'f', 191, 2, 2, 't', '5570328629046720420', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(941, 'The Tudors', '2/10. Unaware Henry is ailing, Queen Katherine''s growing resentment prompts a rash liaison. Contains strong language and some sexual content. Also in HD.', 'crid://fp.bbc.co.uk/4J62EM', '4J62EM', '2011-01-29T21:45:00+00:00', 3300, 1000000, 'f', 191, 2, 2, 't', '5567727167355530731', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(942, 'The Tudors', 'New series. 1/10. Henry reveals his marriage to Katherine Howard. Contains sexual content. Also in HD.', 'crid://fp.bbc.co.uk/4J62EL', '4J62EL', '2011-01-22T21:45:00+00:00', 3300, 1000000, 'f', 191, 2, 2, 't', '5565129571134908381', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(943, 'The Tudors', '6/6. Historical drama series. The failure of Henry''s fourth marriage hastens Cromwell''s downfall, while the king''s friends find a more tempting bed-mate for the monarch. Contains adult themes.', 'crid://fp.bbc.co.uk/4J6242', '4J6242', '2009-09-25T20:00:00+00:00', 3600, 1000000, 'f', 192, 2, 2, 't', '5385481826561490278', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(944, 'The Tudors', '5/6. With England''s enemies rallying, Cromwell connives to have Henry accept an advantageous arranged marriage - but the King resents the resulting match. Contains some sexual content.', 'crid://fp.bbc.co.uk/4J6241', '4J6241', '2009-09-18T20:00:00+00:00', 3600, 1000000, 'f', 192, 2, 2, 't', '5382884230340868330', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(945, 'The Tudors', '4/6. The hunt for Henry''s new bride is on, but political and practical obstacles emerge. Contains some strong language. Also in HD.', 'crid://fp.bbc.co.uk/4J6240', '4J6240', '2009-09-11T20:00:00+00:00', 3600, 1000000, 'f', 192, 2, 2, 't', '5380286634120244681', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(946, 'The Tudors', '3/6. With mournful Henry a recluse, troubled Cromwell tries to maintain authority. Contains sexual content and some violence. Also in HD.', 'crid://fp.bbc.co.uk/4J623Z', '4J623Z', '2009-09-04T20:00:00+00:00', 3000, 1000000, 'f', 192, 2, 2, 't', '5377689037899623698', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(947, 'The Tudors', '2/6. As the Yorkshire nobles face the consequences of rebellion, Cromwell reaps the rewards. Contains sexual content and some violence. Also in HD.', 'crid://fp.bbc.co.uk/4J6244', '4J6244', '2009-08-28T20:00:00+00:00', 5400, 1000000, 'f', 193, 2, 2, 't', '5375091441679001184', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(948, 'The Tudors', '1/6. The year is 1536. Wedded to Jane Seymour, Henry hopes for stability, but he is disturbed by an insurrection of commoners in support of Catholicism. Contains some nudity. Also in HD.', 'crid://fp.bbc.co.uk/4J6243', '4J6243', '2009-08-21T20:05:00+00:00', 5340, 1000000, 'f', 193, 2, 2, 't', '5372495133948565997', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(949, 'The Tudors', '10/10. May 1536. Anne Boleyn is to be beheaded, with few allies left to mourn her, while Henry has hopes of a fresh start in life and love. Moderate violence. Also in HD.', 'crid://fp.bbc.co.uk/4J5ERE', '4J5ERE', '2008-10-03T20:00:00+00:00', 3000, 1000000, 'f', 194, 2, 2, 't', '5253004419309766527', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(950, 'The Tudors', '9/10. Anne Boleyn''s fall from Henry''s favour escalates as scandalous rumours are circulated at court, threatening her whole family. Some strong language and some violence. Also in HD.', 'crid://fp.bbc.co.uk/4J5ERD', '4J5ERD', '2008-09-26T20:00:00+00:00', 3000, 1000000, 'f', 194, 2, 2, 't', '5250406823089173468', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(951, 'The Tudors', '8/10. While Henry''s foreign foes conspire, his own acts at court and on the jousting field endanger his family''s future far more. Also in HD.', 'crid://fp.bbc.co.uk/4J5ERC', '4J5ERC', '2008-09-19T20:00:00+00:00', 3000, 1000000, 'f', 194, 2, 2, 't', '5247809226868551238', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(952, 'The Tudors', '7/10. Anne revives Henry''s passion for her, but as one rival for his heart departs, another appears. The sacking of religious institutions rewards the ''reformers''. Sexual content. Also in HD.', 'crid://fp.bbc.co.uk/4J5ERB', '4J5ERB', '2008-09-12T20:00:00+00:00', 3300, 1000000, 'f', 194, 2, 2, 't', '5245211630647928946', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(953, 'The Tudors', '6/10. Propaganda and paranoia are exploited as Henry''s Reformation hits home, while Anne fears for her future. Some sexual content. Also in HD.', 'crid://fp.bbc.co.uk/4J5ERA', '4J5ERA', '2008-09-05T20:00:00+00:00', 3000, 1000000, 'f', 194, 2, 2, 't', '5242614034427306512', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(954, 'The Tudors', '4/10. The King''s insistence on an oath affirming him as head of the church pushes Sir Thomas More further from favour. Anne attempts to fix Henry''s wandering eye.', 'crid://fp.bbc.co.uk/4J5ER8', '4J5ER8', '2008-08-22T20:00:00+00:00', 3300, 1000000, 'f', 194, 2, 2, 't', '5237418841986061649', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(955, 'The Tudors', '3/10. With Anne Boleyn finally to be crowned his queen, Henry ignores the splits within his court and kingdom as he awaits the male heir she has promised him. Some strong language. Also in HD.', 'crid://fp.bbc.co.uk/4J5ER7', '4J5ER7', '2008-08-15T20:00:00+00:00', 3000, 1000000, 'f', 194, 2, 2, 't', '5234821245765439378', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(956, 'The Tudors', '2/10. Henry''s court lacks Christmas cheer with Queen Catherine excluded, Thomas More alienated and Anne Boleyn rumoured against. Adult themes.', 'crid://fp.bbc.co.uk/4J5ER6', '4J5ER6', '2008-08-08T20:00:00+00:00', 3600, 1000000, 'f', 194, 2, 2, 't', '5232223649544816989', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(957, 'The Tudors', '1/10. While Henry''s clashes with the Catholic church worsen, the King seeks to placate impatient Anne Boleyn, and a poisoning plot is put in motion. Some sexual content. Also in HD.', 'crid://fp.bbc.co.uk/4J5ER5', '4J5ER5', '2008-08-01T20:00:00+00:00', 3600, 1000000, 'f', 194, 2, 2, 't', '5229626053324194368', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(958, 'The Tudors', 'Cardinal Wolsey attempts to save his career by finding a surprising ally - Queen Katherine, who has also lost the King''s favour. Some strong language and some sexual content.', 'crid://fp.bbc.co.uk/4J5EDS', '4J5EDS', '2007-12-07T21:00:00+00:00', 3600, 1000000, 'f', 195, 2, 2, 't', '5141338705587604520', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(959, 'The Tudors', 'Confounded by the Catholic church stalling on his annulment, Henry turns against Cardinal Wolsey. Very strong language.', 'crid://fp.bbc.co.uk/4J5EDR', '4J5EDR', '2007-11-30T21:00:00+00:00', 3000, 1000000, 'f', 195, 2, 2, 't', '5138741109366981685', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(960, 'The Tudors', 'The promised Papal envoy convenes a court to rule upon Henry''s marriage - putting great pressure on old adversaries Wolsey and the Queen. Some strong language.', 'crid://fp.bbc.co.uk/4J5EDQ', '4J5EDQ', '2007-11-23T21:00:00+00:00', 3600, 1000000, 'f', 195, 2, 2, 't', '5136143513146387202', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(961, 'The Tudors', 'In the face of a deadly epidemic, Henry seeks refuge away from court, and far from those he holds most dear. Some sexual content.', 'crid://fp.bbc.co.uk/4J5EDP', '4J5EDP', '2007-11-16T21:00:00+00:00', 3600, 1000000, 'f', 195, 2, 2, 't', '5133545916925764594', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(962, 'The Tudors', 'Rumour and intrigue taint court life and weaken Wolsey''s position in the face of Henry''s vigorous desire to divorce so that he can marry Anne. Some strong language.', 'crid://fp.bbc.co.uk/4J5EDO', '4J5EDO', '2007-11-09T21:00:00+00:00', 3600, 1000000, 'f', 195, 2, 2, 't', '5130948320705142124', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(963, 'The Tudors', 'Henry is angered by the actions of Emperor Charles and Brandon''s marriage to Margaret, but promises patience in his relationship with Anne Boleyn. Some strong language and some sexual content.', 'crid://fp.bbc.co.uk/4J5EDN', '4J5EDN', '2007-11-02T21:00:00+00:00', 3600, 1000000, 'f', 195, 2, 2, 't', '5128350724484518420', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(964, 'The Tudors', 'Brushes with death focus Henry''s desire for an heir (and Anne Boleyn) while his sister Margaret is repulsed at doing her royal duty in Portugal. Some sexual contant.', 'crid://fp.bbc.co.uk/4J5EDM', '4J5EDM', '2007-10-26T20:00:00+00:00', 3600, 1000000, 'f', 195, 2, 2, 't', '5125722204499364572', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(965, 'The Tudors', 'New alliances and liaisons tempt King Henry. Spain''s Charles V and Anne Boleyn claim his attention, while his sister is meant to accept an arranged marriage. Contains very strong language.', 'crid://fp.bbc.co.uk/4J5EDL', '4J5EDL', '2007-10-19T20:00:00+00:00', 3600, 1000000, 'f', 195, 2, 2, 't', '5123124608278741596', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(966, 'The Tudors', 'After French treachery, angry young Henry VIII prepares for war while Cardinal Wolsey conspires for peace. However, affairs closer to home pose potential threats to the king. Sexual content.', 'crid://fp.bbc.co.uk/4J5EDK', '4J5EDK', '2007-10-12T20:00:00+00:00', 3600, 1000000, 'f', 195, 2, 2, 't', '5120527012058118572', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(967, 'The Tudors', 'Historical drama series. After French treachery, angry young Henry VIII prepares for war while Cardinal Wolsey conspires for peace.', 'crid://fp.bbc.co.uk/4J5EDJ', '4J5EDJ', '2007-10-05T20:00:00+00:00', 3600, 1000000, 'f', 195, 2, 2, 't', '5117929415837495707', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(2020, 'Doctor Who', '1/12. Deep Breath: Sci-fi drama. When the Doctor arrives in Victorian London he finds a dinosaur rampant in the Thames and a spate of deadly spontaneous combustions. Also in HD. [AD,S]', 'crid://fp.bbc.co.uk/1FTWWH', '1FTWWH', '2014-08-23T18:50:00+00:00', 4800, 1000000, 'f', 785, 1, 1, 'f', '6050834967230210362', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(2025, 'Doctor Who', '2/12. Into the Dalek: Sci-fi drama. A Dalek fleet surrounds a lone rebel ship, and only the Doctor can help them. As he faces his greatest enemy, he needs Clara by his side. Also in HD. [AD,S]', 'crid://fp.bbc.co.uk/1FTWWI', '1FTWWI', '2014-08-30T18:30:00+00:00', 2700, 1000000, 'f', 785, 1, 1, 'f', '6053427409490077819', 5455, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(2053, 'Doctor Who', '4/12. Listen: Sci-fi drama. What will the Doctor find at the end of the universe? What scares the Doctor? Ghosts of the past and future. Listen! Also in HD. [AD,S]', 'crid://fp.bbc.co.uk/1FTWWK', '1FTWWK', '2014-09-13T18:30:00+00:00', 3000, 1000000, 'f', 785, 1, 1, 'f', '6058622601931324156', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(2060, 'Doctor Who', '3/12. Robot of Sherwood: Sci-fi drama. When robots threaten Sherwood Forest, the Doctor must join forces with Robin Hood to stop the evil reign of the Sheriff of Nottingham. Also in HD. [AD,S]', 'crid://fp.bbc.co.uk/1FTWWJ', '1FTWWJ', '2014-09-06T18:30:00+00:00', 3000, 1000000, 'f', 785, 1, 1, 'f', '6056025005710700365', 2206, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(2233, 'Doctor Who', '5/12. Time Heist: Sci-fi drama. The Doctor turns bank robber when he is given a task he cannot refuse - steal from the most dangerous bank in the cosmos. Also in HD. [AD,S]', 'crid://fp.bbc.co.uk/1FTWWL', '1FTWWL', '2014-09-20T18:30:00+00:00', 3000, 1000000, 'f', 785, 1, 1, 'f', '6061220198151924475', 577094, 'f', 'bbcredux', 1449746644459);
INSERT INTO "programmes" VALUES(2351, 'Doctor Who', '6/12. The Caretaker: Sci-fi drama. The terrifying Skovox Blitzer is ready to destroy all humanity - and worse, Danny Pink and the Doctor are going to meet. Also in HD. [AD,S]', 'crid://fp.bbc.co.uk/1FTWWM', '1FTWWM', '2014-09-27T19:30:00+00:00', 2700, 1000000, 'f', 785, 1, 1, 'f', '6063833256254810935', 223877, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(2352, 'Doctor Who', '7/12. Kill the Moon: The Doctor and Clara crash-land on the moon to find a base full of corpses, vicious spider-like creatures poised to attack and a terrible dilemma. Also in HD. [AD,S]', 'crid://fp.bbc.co.uk/1FTWWN', '1FTWWN', '2014-10-04T19:30:00+00:00', 2700, 1000000, 'f', 785, 1, 1, 'f', '6066430852475440561', 60000, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(2440, 'Homeland', 'Pilot: US thriller starring Claire Danes and Damian Lewis. A soldier left for dead in Iraq is rescued after years in captivity, but a CIA agent suspects the returning hero can''t be trusted.', 'crid://www.channel4.com/52804/001', '52804-001', '2012-02-19T21:30:00+00:00', 4200, 1000000, 'f', 295, 12, 2, 'f', '5710962179465813667', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(2441, 'Homeland', 'Grace: Carrie watches surveillance footage of life in Brody''s home as he struggles with post-traumatic stress. Then an undercover CIA agent passes on a new piece of evidence to her.', 'crid://www.channel4.com/52804/002', '52804-002', '2012-02-26T21:00:00+00:00', 3600, 1000000, 'f', 295, 12, 2, 'f', '5713552044745301522', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(2442, 'Homeland', 'Clean Skin: Carrie and her team begin to unravel an al-Qaeda plot to fund a terrorist attack on the United States. Surprisingly, Brody agrees to take part in a network television interview.', 'crid://www.channel4.com/52804/003', '52804-003', '2012-03-04T21:00:00+00:00', 3600, 1000000, 'f', 295, 12, 2, 'f', '5716149640965926988', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(2443, 'Homeland', 'Semper I: Brody''s erratic behaviour threatens his media darling status. Carrie is running out of time to link Brody with al-Qaeda and Saul orders her to focus on Abu Nazir''s money trail.', 'crid://www.channel4.com/52804/004', '52804-004', '2012-03-11T21:00:00+00:00', 3600, 1000000, 'f', 295, 12, 2, 'f', '5718747237186548114', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(2444, 'Homeland', 'Blind Spot: Afzal Hamid, the lone surviving terrorist from the compound in Afghanistan from where Brody was rescued, has been captured, and Estes wants Brody to help with the interrogation.', 'crid://www.channel4.com/52804/005', '52804-005', '2012-03-18T21:00:00+00:00', 3900, 1000000, 'f', 295, 12, 2, 'f', '5721344833407169180', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(2445, 'Homeland', 'The Good Soldier: When the CIA director authorises polygraph tests for all those who came into contact with Hamid, including Brody, Carrie is convinced that the truth will come out at last.', 'crid://www.channel4.com/52804/006', '52804-006', '2012-03-25T20:00:00+00:00', 3600, 1000000, 'f', 295, 12, 2, 'f', '5723911505863259056', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(2446, 'Homeland', 'The Weekend: The relationship between Carrie and Brody becomes more complicated. Aileen continues her escape by buying a bus ticket to Mexico, but Saul is hot on her heels.', 'crid://www.channel4.com/52804/007', '52804-007', '2012-04-01T20:00:00+00:00', 4200, 1000000, 'f', 295, 12, 2, 'f', '5726509102083883590', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(2447, 'Homeland', 'Achilles Heel: The news that Walker is alive and working with al-Qaeda leaves Carrie and Saul scrambling to locate him. Brody finds out a shocking truth about his long years in captivity.', 'crid://www.channel4.com/52804/008', '52804-008', '2012-04-08T20:00:00+00:00', 3600, 1000000, 'f', 295, 12, 2, 'f', '5729106698304504609', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(2448, 'Homeland', 'Crossfire: After trying to sever ties with Abu Nazir, Brody starts re-living his time in captivity. Carrie is in the middle of a public relations nightmare after the shooting at the mosque.', 'crid://www.channel4.com/52804/009', '52804-009', '2012-04-15T20:00:00+00:00', 3600, 1000000, 'f', 295, 12, 2, 'f', '5731704294525125675', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(2449, 'Homeland', 'Representative Brody: Brody is approached to run for disgraced congressman Richard Johnson''s seat in the House of Representatives, while Carrie and Saul identify Tom Walker''s contact.', 'crid://www.channel4.com/52804/010', '52804-010', '2012-04-22T20:00:00+00:00', 3600, 1000000, 'f', 295, 12, 2, 'f', '5734301890745746714', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(2450, 'Homeland', 'The Vest: In the wake of the explosion, Saul finds Carrie hospitalised and manic, but realises her chaotic theories have merit. Brody retrieves an important item during a weekend trip away.', 'crid://www.channel4.com/52804/011', '52804-011', '2012-04-29T20:00:00+00:00', 3900, 1000000, 'f', 295, 12, 2, 'f', '5736899486966367880', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(2451, 'Homeland', 'Marine One: While a catatonic Carrie is confined to bed, Saul investigates the implications of her timeline, Walker secures a perch for his mission and Brody prepares for the policy summit.', 'crid://www.channel4.com/52804/012', '52804-012', '2012-05-06T20:00:00+00:00', 6300, 1000000, 'f', 295, 12, 2, 'f', '5739497083186992957', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(2452, 'Homeland', 'The Smile: Series two of the dark, compelling US thriller starring Claire Danes and Damian Lewis begins as Carrie walks a slow path to recovery and Brody finds political life difficult.', 'crid://www.channel4.com/53613/001', '53613-001', '2012-10-07T20:00:00+00:00', 3900, 1000000, 'f', 296, 12, 2, 'f', '5927330605933699739', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(2453, 'Homeland', 'Beirut Is Back: Carrie gets involved in an operation which may see the end of Abu Nazir, and Captain Mike Faber has questions to ask about the shooting of Elizabeth Gaines.', 'crid://www.channel4.com/53613/002', '53613-002', '2012-10-14T20:00:00+00:00', 3600, 1000000, 'f', 296, 12, 2, 'f', '5927709422049206962', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(2454, 'Homeland', 'State of Independence: Carrie convinces herself that a triumphant return to the CIA may be on the cards. Brody finds out that the Gettysburg bomb-maker is on a terrorist watch list.', 'crid://www.channel4.com/53613/003', '53613-003', '2012-10-21T20:00:00+00:00', 3900, 1000000, 'f', 296, 12, 2, 'f', '5928074064772637379', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(2455, 'Homeland', 'New Car Smell: Estes is stunned by information given to him by Saul during a secret debrief and authorises a covert operation. Brody gets a shock when he runs into Carrie at Langley.', 'crid://www.channel4.com/53613/004', '53613-004', '2012-10-28T21:00:00+00:00', 3600, 1000000, 'f', 296, 12, 2, 'f', '5928446438437200596', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(2456, 'Homeland', 'Q&A: Brody finds himself a prisoner again, but this time on American soil. Carrie is forced to play second fiddle after her rash judgement call at the hotel, while Estes is kept busy.', 'crid://www.channel4.com/53613/005', '53613-005', '2012-11-04T21:00:00+00:00', 4200, 1000000, 'f', 296, 12, 2, 'f', '5928814946631197411', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(2457, 'Homeland', 'A Gettysburg Address: Dana visits the hospital and is shocked by what she sees there. Faber gets tangled up with the CIA, and Brody''s loyalties are questioned.', 'crid://www.channel4.com/53613/006', '53613-006', '2012-11-11T21:00:00+00:00', 3600, 1000000, 'f', 296, 12, 2, 'f', '5929195051236893436', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(2458, 'Homeland', 'The Clearing: Dana pressures Finn to come clean about their hidden crime. But her quest to tell the truth collides with her father''s secret mission in ways neither could have foreseen.', 'crid://www.channel4.com/53613/007', '53613-007', '2012-11-18T21:00:00+00:00', 3900, 1000000, 'f', 296, 12, 2, 'f', '5929558405470135187', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(2459, 'Homeland', 'I''ll Fly Away: The lies that tangle his relationships with Carrie, Roya and Jessica leave Brody heading for a serious meltdown as he struggles to keep his complicated alliances separate.', 'crid://www.channel4.com/53613/008', '53613-008', '2012-11-25T21:00:00+00:00', 3600, 1000000, 'f', 296, 12, 2, 'f', '5929928202154327293', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(2460, 'Homeland', 'Two Hats: Brody makes a necessary phone call, Saul teams up with Virgil and Max to dig up some information, and Carrie prepares for the most important breakfast meeting of her career.', 'crid://www.channel4.com/53613/009', '53613-009', '2012-12-02T21:00:00+00:00', 3600, 1000000, 'f', 296, 12, 2, 'f', '5930308306760023312', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(2461, 'Homeland', 'Broken Hearts: When Saul catches up with an old friend, he discovers evidence of covert activities by Estes. Brody and Walden find themselves at odds over their political relationship.', 'crid://www.channel4.com/53613/010', '53613-010', '2012-12-09T21:00:00+00:00', 3600, 1000000, 'f', 296, 12, 2, 'f', '5930672949483453731', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(2462, 'Homeland', 'In Memoriam: Close to exhaustion, Carrie continues her hunt for Nazir, her suspicion turning towards the CIA itself. Roya reveals her true colours under interrogation.', 'crid://www.channel4.com/53613/011', '53613-011', '2012-12-16T21:00:00+00:00', 3600, 1000000, 'f', 296, 12, 2, 'f', '5931042746167639348', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(2463, 'Homeland', 'The Choice: In the last episode of season two, Carrie has a big decision to make, Brody shares a drink with Faber to consider the future of his family, and Saul is given a secret mission.', 'crid://www.channel4.com/53613/012', '53613-012', '2012-12-23T21:00:00+00:00', 5100, 1000000, 'f', 296, 12, 2, 'f', '5931428004734090563', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(2464, 'Homeland', 'Tin Man Is Down: In the first episode of season three, alleged bomber Brody remains at large, Saul plots a risky counterstrike, and Carrie is the focus of a hostile Senate investigation. [AD,S]', 'crid://www.channel4.com/55757/001', '55757-001', '2014-08-10T02:55:00+01:00', 3900, 1000000, 'f', 554, 12, 2, 'f', '6045749296731557957', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(2465, 'Homeland', 'Uh... Oh... Ah... - Saul recruits an unlikely expert to his team, Quinn is troubled by the collateral damage from a recent mission, and an embattled Carrie learns who is really on her side. [AD,S]', 'crid://www.channel4.com/55757/002', '55757-002', '2014-08-17T02:20:00+01:00', 3300, 1000000, 'f', 554, 12, 2, 'f', '6048337873520858098', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(2466, 'Homeland', 'Tower of David: As Brody''s situation becomes increasingly desperate, he returns to his faith for guidance. Carrie struggles to connect with Saul when a mysterious man offers to help her. [AD,S]', 'crid://www.channel4.com/55757/003', '55757-003', '2014-08-17T03:15:00+01:00', 3300, 1000000, 'f', 554, 12, 2, 'f', '6048352046912934089', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(2467, 'Homeland', 'Game On: Carrie finds out that the CIA can still exercise power when they have to, Dana goes AWOL, and Saul and Fara follow the money trail to an unexpected location. [AD,S]', 'crid://www.channel4.com/55757/004', '55757-004', '2014-08-24T01:50:00+01:00', 3300, 1000000, 'f', 554, 12, 2, 'f', '6050927738800346505', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(2468, 'Homeland', 'The Yoga Play: A mysterious man enters the country at the US-Canadian border. Carrie puts her mission on the line to perform a risky favour. Saul rubs shoulders with Senator Lockhart. [AD,S]', 'crid://www.channel4.com/55757/005', '55757-005', '2014-08-31T03:00:00+01:00', 3300, 1000000, 'f', 554, 12, 2, 'f', '6053543373883610365', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(2469, 'Homeland', 'Still Positive: Carrie turns the tables on the mastermind of the Langley bombing, but discovers that recruiting one of Iran''s most powerful operatives has dangerous consequences.', 'crid://www.channel4.com/55757/006', '55757-006', '2013-11-10T21:00:00+00:00', 3900, 1000000, 'f', 297, 12, 2, 'f', '5944738108380595884', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(2470, 'Homeland', 'Gerontion: With his old adversary in custody, Saul takes the gamble of his career. Carrie and Quinn rush to contain a local police investigation. Mira''s marriage arrives at a crossroads. [AD,S]', 'crid://www.channel4.com/55757/007', '55757-007', '2014-09-07T00:50:00+01:00', 3300, 1000000, 'f', 554, 12, 2, 'f', '6056107469359328660', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(2471, 'Homeland', 'A Red Wheelbarrow: New information allows Carrie and Quinn to pursue a key suspect in the Langley bombing. Saul deals with a political backlash. The Brody family gets some startling news. [AD,S]', 'crid://www.channel4.com/55757/008', '55757-008', '2014-09-14T02:40:00+01:00', 3300, 1000000, 'f', 554, 12, 2, 'f', '6058733412364103300', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(2472, 'Homeland', 'One Last Time: Carrie reunites with Brody under extremely difficult circumstances, Saul gets a win from an unlikely source, and Dana grapples with her new life away from home. [AD,S]', 'crid://www.channel4.com/55757/009', '55757-009', '2014-09-21T02:05:00+01:00', 3600, 1000000, 'f', 554, 12, 2, 'f', '6061321989153402776', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(2473, 'Homeland', 'Good Night: Brody embarks on a high-stakes mission, but his fragile condition threatens the success of the entire operation. Meanwhile, Quinn makes an uncomfortable discovery about Carrie. [AD,S]', 'crid://www.channel4.com/55757/010', '55757-010', '2014-09-28T02:50:00+01:00', 3000, 1000000, 'f', 554, 12, 2, 'f', '6063931181785717970', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(2474, 'Homeland', 'Big Man in Tehran: Carrie infiltrates Tehran to support the mission. Brody''s loyalty wavers on meeting a ghost from his past. As Lockhart''s confirmation looms, Saul stares over a precipice. [AD,S]', 'crid://www.channel4.com/55757/011', '55757-011', '2014-10-05T01:40:00+01:00', 3600, 1000000, 'f', 554, 12, 2, 'f', '6066510739143703740', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(2475, 'Homeland', 'The Star: In the last episode of the third series, Carrie and Brody seek refuge on the edge of the desert. Security forces are closing in but Saul is planning a last-ditch rescue operation. [AD,S]', 'crid://www.channel4.com/55757/012', '55757-012', '2014-10-12T02:00:00+01:00', 3900, 1000000, 'f', 554, 12, 2, 'f', '6069113489325080011', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(2527, 'Lewis', 'Feature-length drama following on from the Inspector Morse series. Inspector Lewis investigates the death of a brilliant young maths student at Oxford University. [AD,S]', 'crid://www.itv.com/5714373', '5714373', '2015-09-22T00:15:00+01:00', 6300, 1000000, 'f', 763, 10, 2, 'f', '6197110816692511485', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(2530, 'Lewis', 'The Great and the Good: A rape case appears to be solved when the chief suspect is murdered. But nothing is what it seems - and soon the upper echelons of Oxford society close ranks. [AD,S]', 'crid://www.itv.com/8775087', '8775087', '2015-09-26T10:35:00+01:00', 7500, 1000000, 'f', 763, 10, 2, 'f', '6198754930173420607', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(2531, 'Lewis', 'Life Born of Fire: When an old friend of Hathaway''s commits suicide, Lewis investigates a link between his death and a religious group whose members are being targeted by a killer. [AD,S]', 'crid://www.itv.com/8457345', '8457345', '2014-12-14T21:00:00+00:00', 7200, 1000000, 'f', 557, 10, 2, 'f', '6092801093458230258', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(2532, 'Lewis', 'The Dead of Winter: After a body is found on an Oxford tour bus, Lewis and Hathaway are led to Crevecoeur Hall, a sprawling Oxford estate where Hathaway spent much of his childhood. [AD,S]', 'crid://www.itv.com/22444807', '22444807', '2015-10-11T12:25:00+01:00', 7200, 1000000, 'f', 763, 10, 2, 'f', '6204349554573191546', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(2533, 'Lewis', 'Dark Matter: When the master of a college is found dead at the foot of the observatory stairs, suspicion falls on all of the staff - from senior tutors right down to the scouts. [AD,S]', 'crid://www.itv.com/22514963', '22514963', '2015-10-31T17:00:00+00:00', 7200, 1000000, 'f', 798, 10, 2, 'f', '6211857586903330473', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(2534, 'Lewis', 'Your Sudden Death Question: On a bank holiday weekend Lewis and Hathaway are called in when a top quiz competitor is found floating dead in the fountain of an Oxford college. [AD,S]', 'crid://www.itv.com/22575564', '22575564', '2015-10-17T17:00:00+01:00', 7200, 1000000, 'f', 791, 10, 2, 'f', '6206646932579822295', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(2535, 'Lewis', 'Falling Darkness: Lewis and Hathaway investigate the murder of a university friend of pathologist Laura Hobson. As more deaths occur, they realise that Laura''s past may hold the key.', 'crid://www.itv.com/22732791', '22732791', '2010-05-30T19:00:00+00:00', 7200, 1000000, 'f', 307, 8, 2, 'f', '5710954449026986683', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(2536, 'Lewis', 'Whom the Gods Would Destroy: Kevin Whately stars as DI Lewis. When an Oxford graduate is killed, Lewis and Hathaway launch an investigation that implicates a senior university figure. [AD,S]', 'crid://www.itv.com/6372405', '6372405', '2015-10-10T22:00:00+01:00', 7500, 1000000, 'f', 791, 10, 2, 'f', '6204126645770526872', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(2537, 'Lewis', 'Old Unhappy Far Off Things: A reunion at Oxford''s last all-female college ends in tragedy when one of the alumnae is killed. Is it connected to an attack there ten years before? [AD,S]', 'crid://www.itv.com/28722451', '28722451', '2015-10-01T20:00:00+01:00', 7200, 1000000, 'f', 791, 10, 2, 'f', '6200755955436625199', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(2538, 'Lewis', 'Wild Justice: Lewis investigates when a visiting female bishop is poisoned. Then two more deaths occur, both mirroring macabre murders from Jacobean revenge tragedy. [AD,S]', 'crid://www.itv.com/28913762', '28913762', '2015-09-24T20:00:00+01:00', 7200, 1000000, 'f', 763, 10, 2, 'f', '6198158359216006097', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(2539, 'Lewis', 'The Mind Has Mountains: When a student dies during a clinical trial for a new drug, Lewis uncovers a web of lies, jealousy and madness - to which he himself could fall victim. [AD,S]', 'crid://www.itv.com/29111040', '29111040', '2015-09-17T20:00:00+01:00', 7200, 1000000, 'f', 763, 10, 2, 'f', '6195560762995382488', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(2540, 'Lewis', 'The Gift of Promise: When a businesswoman is bludgeoned to death, it looks like a case of blackmail gone wrong. But there is a decades-old secret at the heart of the case. [AD,S]', 'crid://www.itv.com/29259776', '29259776', '2015-09-29T20:00:00+01:00', 7200, 1000000, 'f', 763, 10, 2, 'f', '6200013785087875619', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(2541, 'Lewis', 'The Soul of Genius: When a botanist accidentally digs up the body of the recently buried Murray Hawes, Lewis and Hathaway are set upon a seemingly impossible quest. [AD,S]', 'crid://www.itv.com/43137854', '43137854', '2015-08-08T20:00:00+01:00', 7200, 1000000, 'f', 763, 10, 2, 'f', '6180717356020403861', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(2542, 'Lewis', 'Generation of Vipers: Lewis and Hathaway are drawn into a world of virtual bullying, but very real murder, when a professor is found dead after her dating video is leaked online. [AD,S]', 'crid://www.itv.com/43396527', '43396527', '2015-08-01T20:00:00+01:00', 7200, 1000000, 'f', 763, 10, 2, 'f', '6178119759799782429', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(2543, 'Lewis', 'The Indelible Stain: Lewis and Hathaway investigate when a controversial American academic is murdered after speaking at Oxford''s Department of Criminology. [AD,S]', 'crid://www.itv.com/43960339', '43960339', '2015-08-15T20:00:00+01:00', 7200, 1000000, 'f', 763, 10, 2, 'f', '6183314952241025106', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(2544, 'Lewis', 'Falling Darkness: Lewis and Hathaway investigate the murder of a university friend of pathologist Laura Hobson. As more deaths occur, they realise that Laura''s past may hold the key. [AD,S]', 'crid://www.itv.com/21162749', '21162749', '2015-10-24T17:00:00+01:00', 7200, 1000000, 'f', 798, 10, 2, 'f', '6209244528800443607', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(2545, 'Lewis', 'Down Among the Fearful (Part 1): When psychologist Reuben Beatty is murdered while moonlighting as a psychic, Lewis and Hathaway struggle to unpick his baffling double life.', 'crid://www.itv.com/48720160', '48720160', '2013-01-07T21:00:00+00:00', 3600, 1000000, 'f', 312, 8, 2, 'f', '6049724289466261655', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(2547, 'Lewis', 'The Ramblin'' Boy (Part 1): Jack Cornish goes missing and a recently embalmed body is discovered next to an isolated farm track - could there be a link?', 'crid://www.itv.com/48969552', '48969552', '2013-01-21T21:00:00+00:00', 3600, 1000000, 'f', 312, 8, 2, 'f', '6088719156540110426', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(2549, 'Lewis', 'Intelligent Design (Part 1): As Lewis and Hobson embark on a relationship, a former don is murdered on the night of his release from prison - crushed to death by a Jaguar Mark 2.', 'crid://www.itv.com/49411431', '49411431', '2013-02-04T21:00:00+00:00', 3600, 1000000, 'f', 312, 8, 2, 'f', '6054919481907504468', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(2550, 'Lewis', 'Intelligent Design (Part 2): The body of a missing student is discovered in the attic of a college chapel. What does she have to do with the murder of biochemist Colin Seager?', 'crid://www.itv.com/49550067', '49550067', '2013-02-11T21:00:00+00:00', 3600, 1000000, 'f', 312, 8, 2, 'f', '6016713170318886007', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(2551, 'Lewis', 'Fearful Symmetry: When a babysitter is found dead, Lewis and Hathaway are drawn into diverse new worlds including squats, swinging suburbia, primate labs and fetish photography. [AD,S]', 'crid://www.itv.com/43711265', '43711265', '2015-08-22T20:00:00+01:00', 7200, 1000000, 'f', 763, 10, 2, 'f', '6185912548461646934', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(2552, 'Lewis', 'Down Among the Fearful: When psychologist Reuben Beatty is murdered while moonlighting as a psychic, Lewis and Hathaway struggle to unpick his baffling double life. [AD,S]', 'crid://www.itv.com/50577303', '50577303', '2015-08-29T20:00:00+01:00', 7200, 1000000, 'f', 763, 10, 2, 'f', '6188510144682267906', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(2553, 'Lewis', 'The Ramblin'' Boy: Detective Jack Cornish goes missing and a recently embalmed body is discovered next to an isolated farm track - could there be a link? [AD,S]', 'crid://www.itv.com/100620651', '100620651', '2015-09-05T20:00:00+01:00', 7200, 1000000, 'f', 763, 10, 2, 'f', '6191107740902889572', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(2554, 'Lewis', 'Intelligent Design: As Lewis and Hobson embark on a relationship, a former Oxford don is murdered on the night of his release from prison - crushed to death by a Jaguar Mark 2. [AD,S]', 'crid://www.itv.com/101320335', '101320335', '2015-09-12T20:00:00+01:00', 7200, 1000000, 'f', 763, 10, 2, 'f', '6193705337123510529', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(2555, 'Lewis', 'Entry Wounds (Part 1): Crime drama series. Ch Supt Innocent asks Lewis to come out of retirement to help newly promoted DI Hathaway with his first murder investigation.', 'crid://www.itv.com/130851036', '130851036', '2014-10-10T20:00:00+00:00', 3600, 1000000, 'f', 315, 8, 2, 'f', '6068665094731272475', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(2952, 'Doctor Who', '8/12. Mummy on the Orient Express: Sci-fi drama. On the most beautiful train in history, speeding among the stars of the future, a deadly creature is stalking the passengers. Also in HD. [AD,S]', 'crid://fp.bbc.co.uk/1FTWWO', '1FTWWO', '2014-10-11T19:35:00+00:00', 3000, 1000000, 'f', 785, 1, 1, 'f', '6069029737186253828', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(2954, 'Doctor Who', '9/12. Flatline: Sci-fi drama. With people to save and the Doctor trapped, Clara goes against an enemy that exists beyond human perception. Also in HD. [AD,S]', 'crid://fp.bbc.co.uk/1FTWWP', '1FTWWP', '2014-10-18T19:25:00+00:00', 2700, 1000000, 'f', 785, 1, 1, 'f', '6071624756426500350', 2568490, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(2955, 'Doctor Who', '10/12. In the Forest of the Night: The human race wakes up to face the most surprising invasion yet, and the Doctor discovers that the final days of humanity have arrived. Also in HD. [AD,S]', 'crid://fp.bbc.co.uk/1FTWWQ', '1FTWWQ', '2014-10-25T19:20:00+00:00', 2700, 1000000, 'f', 785, 1, 1, 'f', '6074221064156932458', 1160026, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(3089, 'Doctor Who', '11/12. Dark Water: Sci-fi drama. In the mysterious Nethersphere, plans have been drawn. Missy is about to come face to face with the Doctor, and an impossible choice is looming. Also in HD. [AD,S]', 'crid://fp.bbc.co.uk/1FTWWR', '1FTWWR', '2014-11-01T20:15:00+00:00', 2700, 1000000, 'f', 785, 1, 1, 'f', '6076832833769633851', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(3116, 'Doctor Who', '12/12. Death in Heaven: Sci-fi drama. With Cybermen on the streets of London, old friends unite against old enemies and the Doctor takes to the air in a startling new role. Also in HD. [AD,S]', 'crid://fp.bbc.co.uk/1FTWWS', '1FTWWS', '2014-11-08T20:00:00+00:00', 3600, 1000000, 'f', 785, 1, 1, 'f', '6079426564519661856', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(3268, 'The Wrong Mans', 'New series. 1/6. The Wrong Mans: Sitcom. A case of mistaken identity catapults two council employees into a conspiracy. Contains some strong language. Also in HD.', 'crid://fp.bbc.co.uk/156KPJ', '156KPJ', '2013-09-24T20:00:00+00:00', 1800, 1000000, 'f', 381, 2, 2, 'f', '5927281643034229765', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(3269, 'The Wrong Mans', '2/6. Bad Mans: Sam and Phil are sent to rescue a hostage, but end up with an angry hostage of their own. Contains very strong language. Also in HD.', 'crid://fp.bbc.co.uk/156KPK', '156KPK', '2013-10-01T20:00:00+00:00', 1800, 1000000, 'f', 381, 2, 2, 'f', '5929879239254852623', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(3270, 'The Wrong Mans', '3/6. Dead Mans: As the kidnap situation goes from bad to worse, Sam and Phil fall deeper into a sinister world. Contains some strong language and some violence. Also in HD.', 'crid://fp.bbc.co.uk/156KPL', '156KPL', '2013-10-08T20:00:00+00:00', 1800, 1000000, 'f', 381, 2, 2, 'f', '5932476835475473602', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(3271, 'The Wrong Mans', '4/6. Inside Mans: Sam and Phil gatecrash a party, inadvertently interrupting an assassination plot. Contains some strong language and some violence. Also in HD.', 'crid://fp.bbc.co.uk/156KPM', '156KPM', '2013-10-15T20:00:00+00:00', 1800, 1000000, 'f', 381, 2, 2, 'f', '5935074431696096610', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(3272, 'The Wrong Mans', '5/6. Wanted Mans: Sam and Phil bring the dangerous plot right to their doorsteps and nowhere is safe. Contains some strong language and some upsetting scenes. Also in HD.', 'crid://fp.bbc.co.uk/156KPN', '156KPN', '2013-10-22T20:00:00+00:00', 1800, 1000000, 'f', 381, 2, 2, 'f', '5937672027916719867', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(3273, 'The Wrong Mans', '6/6. Running Mans: Sam and Phil''s only option is to turn back and confront the people that are endangering their lives and their loved ones. Contains some strong language. Also in HD.', 'crid://fp.bbc.co.uk/156KPO', '156KPO', '2013-10-29T21:00:00+00:00', 1800, 1000000, 'f', 381, 2, 2, 'f', '5940285086019608503', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(3274, 'The Wrong Mans', '1/2. X-Mans/White Mans: Sam and Phil embark on an international quest to prove once again they are The Wrong Mans. Contains some strong language and some violence. Also in HD.', 'crid://fp.bbc.co.uk/156LLR', '156LLR', '2014-12-22T21:00:00+00:00', 3600, 1000000, 'f', 382, 2, 2, 'f', '6095769774082481301', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(3275, 'The Wrong Mans', '2/2. Action Mans/Wise Mans: With enemies amassing, Sam and Phil must risk everything to make it back home. Contains adult humour and some strong language. Also in HD.', 'crid://fp.bbc.co.uk/156LLS', '156LLS', '2014-12-23T21:00:00+00:00', 3600, 1000000, 'f', 382, 2, 2, 'f', '6096140859256855760', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(3276, 'Doctor Who', 'Last Christmas: The Doctor and Clara face their last Christmas. Trapped on an Arctic base, under attack from terrifying creatures, who are you going to call? Santa Claus! Also in HD. [AD,S]', 'crid://fp.bbc.co.uk/1FTW2V', '1FTW2V', '2014-12-25T18:15:00+00:00', 3600, 1000000, 'f', 785, 1, 1, 'f', '6096840509421312821', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(3787, 'Torchwood', '13/13. Exit Wounds: Captain John returns to have his revenge on Torchwood. Taking Captain Jack prisoner he sends him back in time for a long overdue reunion. Moderate violence. Also in HD. [AD,S]', 'crid://fp.bbc.co.uk/54BXLO', '54BXLO', '2008-04-04T21:00:00+01:00', 3000, 1000000, 'f', 454, 2, 1, 'f', '5185466917573634949', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(3788, 'Torchwood', '12/13. Fragments: An explosion knocks the team unconscious. As their lives flash before their eyes, it''s revealed how each of them was recruited to Torchwood. Also in HD. [AD,S] ', 'crid://fp.bbc.co.uk/54BXLN', '54BXLN', '2008-03-28T21:00:00+00:00', 3000, 1000000, 'f', 454, 2, 1, 'f', '5182900245117542521', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(3789, 'Torchwood', '11/13. Adrift: A teenager disappears and Gwen is drawn into an investigation that reveals a dark side of Torchwood. Some strong language. Also in HD [AD,S] Then 60 Seconds', 'crid://fp.bbc.co.uk/54BXLM', '54BXLM', '2008-03-19T22:00:00+00:00', 3000, 1000000, 'f', 454, 4, 1, 'f', '5179575940438497273', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(3790, 'Torchwood', '10/13. From Out of the Rain: When a cinema re-opens, past horrors stalk the streets of Cardiff. As bodies are found caught between life and death, Torchwood must act. Also in HD [AD,S] Then 60 Seconds', 'crid://fp.bbc.co.uk/54BXLL', '54BXLL', '2008-03-12T21:50:00+00:00', 2700, 1000000, 'f', 454, 4, 1, 'f', '5176975767237496151', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(3791, 'Torchwood', '9/13. Something Borrowed: It''s the night before her wedding and an alien shape-shifter leaves Gwen carrying more than she bargained for. Some strong language. [AD,S] Then 60 Seconds.', 'crid://fp.bbc.co.uk/54BXLK', '54BXLK', '2008-03-05T21:50:00+00:00', 3000, 1000000, 'f', 454, 4, 1, 'f', '5174378171016873437', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(3792, 'Torchwood', '8/13. A Day in the Death: As a mission to retrieve an alien device proves increasingly dangerous, Owen''s new circumstances lead him to look for absolution. Moderate violence. [AD,S] Then 60 Seconds.', 'crid://fp.bbc.co.uk/54BXLJ', '54BXLJ', '2008-02-27T21:50:00+00:00', 3000, 1000000, 'f', 454, 4, 1, 'f', '5171780574796279156', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(3793, 'Torchwood ', '7/13. Dead Man Walking: Captain Jack Harkness unleashes a primal force that uses Torchwood as a conduit to wreak havoc across Earth. Some upsetting scenes. [AD,S] Then 60 Seconds.', 'crid://fp.bbc.co.uk/54BXLI', '54BXLI', '2008-02-20T22:00:00+00:00', 3000, 1000000, 'f', 454, 4, 1, 'f', '5169185555556033991', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(3794, 'Torchwood', '6/13. Reset: Captain Jack calls in Martha Jones to investigate a spate of mysterious deaths. The trail leads to a sinister medical testing centre. Some upsetting scenes. [AD,S] Then 60 Seconds.', 'crid://fp.bbc.co.uk/54BXLH', '54BXLH', '2008-02-13T21:50:00+00:00', 3000, 1000000, 'f', 454, 4, 1, 'f', '5166585382355033475', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(3795, 'Torchwood', '5/13. Adam: When an alien with the power to change memories infiltrates Torchwood, Captain Jack gets caught up in memories of his lost family. Some strong language. [AD,S]', 'crid://fp.bbc.co.uk/54BXLG', '54BXLG', '2008-02-13T21:00:00+00:00', 3000, 1000000, 'f', 454, 2, 1, 'f', '5166572497445084668', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(3796, 'Torchwood', '4/13. Meat: Rhys discovers the truth about Torchwood and becomes part of the team as they investigate a mysterious alien meat supply. Some strong language. [AD,S]', 'crid://fp.bbc.co.uk/54BXLF', '54BXLF', '2008-02-06T21:00:00+00:00', 3000, 1000000, 'f', 454, 2, 1, 'f', '5163974901224461203', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(3797, 'Torchwood', '3/13. To the Last Man: Toshiko falls for a handsome soldier trapped out of his time, and a crisis foreseen by Torchwood 90 years ago is about to reach it''s climax. Adult themes. [AD,S]', 'crid://fp.bbc.co.uk/54BXLE', '54BXLE', '2008-01-30T21:00:00+00:00', 3000, 1000000, 'f', 454, 2, 1, 'f', '5161377305003838309', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(3798, 'Torchwood', '2/13. Sleeper: When a burglary turns into a slaughter, Torchwood suspect alien involvement. Who is Beth, and can she be as innocent as she seems? Some strong language. [AD,S]', 'crid://fp.bbc.co.uk/54BXLD', '54BXLD', '2008-01-23T21:00:00+00:00', 3000, 1000000, 'f', 454, 2, 1, 'f', '5158779708783215468', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(3799, 'Torchwood', 'Kiss Kiss, Bang Bang: The team reunite to fight a rogue Time Agent but with Gwen''s life in danger, and cluster bombs threatening the city, whose side is Captain Jack on? Some violence. [AD,S] ', 'crid://fp.bbc.co.uk/54BXLC', '54BXLC', '2008-01-16T21:00:00+00:00', 3000, 1000000, 'f', 454, 2, 1, 'f', '5156182112562593052', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(3800, 'Torchwood', '13/13. End of Days: Science fiction and crime drama series. The rift has been opened, and time is splintering. Can Captain Jack save the world? Some strong language. [AD,S]', 'crid://fp.bbc.co.uk/54BW0O', '54BW0O', '2007-12-21T21:00:00+00:00', 2700, 1000000, 'f', 456, 4, 1, 'f', '5146533898036910674', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(3801, 'Torchwood', '12/13. Captain Jack Harkness: Trapped in 1941, Jack and Toshiko meet an American squadron leader by the name of Captain Jack Harkness. Some strong language. [AD,S]', 'crid://fp.bbc.co.uk/54BW0N', '54BW0N', '2007-12-14T21:00:00+00:00', 3000, 1000000, 'f', 456, 4, 1, 'f', '5143936301816289268', 2125536, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(3802, 'Torchwood', '11/13. Combat: Owen is sent undercover to discover why aliens are being kidnapped from the streets of Cardiff. Some strong language. [AD,S]', 'crid://fp.bbc.co.uk/54BW0M', '54BW0M', '2007-12-07T21:00:00+00:00', 3000, 1000000, 'f', 456, 4, 1, 'f', '5141338705595665729', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(3803, 'Torchwood', '10/13. Out of Time: When a plane from 1953 makes an unexpected landing in present-day Cardiff, there are painful consequences for all concerned. Some strong language. [AD,S]', 'crid://fp.bbc.co.uk/54BW0L', '54BW0L', '2007-11-30T21:00:00+00:00', 3000, 1000000, 'f', 456, 4, 1, 'f', '5138741109375071522', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(3804, 'Torchwood', 'Random Shoes: When Eugene wakes to find himself (a) dead and (b) invisible, he knows only Gwen Cooper can help him. Some strong language. [AD,S]', 'crid://fp.bbc.co.uk/54BW0K', '54BW0K', '2007-11-23T21:00:00+00:00', 3000, 1000000, 'f', 456, 4, 1, 'f', '5136143513154448672', 261320, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(3805, 'Torchwood', 'They Keep Killing Suzie: Sci-fi and crime drama series centred around the Torchwood Institute. An investigation into a murder leads to a familiar face. Some violence. [AD,S] Then 60 Seconds.', 'crid://fp.bbc.co.uk/54BW0J', '54BW0J', '2007-11-16T21:00:00+00:00', 3600, 1000000, 'f', 456, 4, 1, 'f', '5133545916933825006', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(3806, 'Torchwood', 'Greeks Bearing Gifts: Toshiko is given an alien pendant which enables her to hear other people''s thoughts. [AD,S]', 'crid://fp.bbc.co.uk/54BW0I', '54BW0I', '2007-10-26T21:00:00+01:00', 3000, 1000000, 'f', 456, 4, 1, 'f', '5125722204507424376', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(3807, 'Torchwood', 'Small Worlds: What are the supernatural forces stalking the Cardiff suburbs - and what do they want with the seemingly normal Pierce family? [S]', 'crid://fp.bbc.co.uk/54BW0G', '54BW0G', '2007-10-12T21:00:00+01:00', 3000, 1000000, 'f', 456, 4, 1, 'f', '5120527012066179682', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(3808, 'Torchwood', 'Cyberwoman: A Japanese doctor tries to rescue the soul of a half-Cybernised woman. Some strong language. [S]', 'crid://fp.bbc.co.uk/54BW0F', '54BW0F', '2007-10-05T21:00:00+01:00', 3000, 1000000, 'f', 456, 4, 1, 'f', '5117929415845556658', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(3809, 'Torchwood', 'Ghost Machine: An alien object shows visions of the past to the Torchwood team, bringing a long-buried crime to the surface. Adult themes. [S]', 'crid://fp.bbc.co.uk/54BW0E', '54BW0E', '2007-09-28T21:00:00+01:00', 3000, 1000000, 'f', 456, 4, 1, 'f', '5115331819624933386', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(3810, 'Torchwood', '2/12. Day One: Torchwood must stop a sex addicted alien as it leaves a trail of gruesome deaths in its wake. Contains scenes of a sexual nature. [AD,S] Followed by 60 Seconds.', 'crid://fp.bbc.co.uk/54BW0D', '54BW0D', '2007-09-21T21:00:00+01:00', 3000, 1000000, 'f', 456, 4, 1, 'f', '5112734223404310511', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(3811, 'Torchwood', '1/13. Everything Changes: Science-fiction drama created by Russell T Davies. When WPC Gwen Cooper witnesses the resurrection of a murdered man, her life changes forever. Some strong language. [S]', 'crid://fp.bbc.co.uk/54BW0C', '54BW0C', '2007-09-14T21:00:00+01:00', 3000, 1000000, 'f', 456, 4, 1, 'f', '5110136627183687701', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(3891, 'OOglies', '2/15. Compilation 2: The OOglies embark on a series of adventures that find them slipping, sliding and always splatting onto television screens. Also in HD. [S]', 'crid://fp.bbc.co.uk/T2QNC', 'T2QNC', '2015-10-08T18:45:00+01:00', 300, 1000000, 'f', 792, 6, 11, 'f', '6203334223554720631', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(3892, 'OOglies', '1/15. Compilation 1: The OOglies embark on a series of adventures that find them slipping, sliding and always splatting onto television screens. [S]', 'fp.bbc.co.uk/T2QNB', 'T2QNB', '2012-10-25T10:15:00+01:00', 300, 1000000, 'f', 471, 6, 11, 'f', '5803172979579878416', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(3893, 'OOglies', '11/13. When the humans are away, the OOglies play! The cheeky carrots attempt a carrot pyramid in the dark, and Grater gets in the groove with a right ''nana'' of a companion. [S]', 'fp.bbc.co.uk/T2POB', 'T2POB', '2012-09-28T11:25:00+01:00', 900, 1000000, 'f', 471, 6, 11, 'f', '5793171718734410972', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(3894, 'OOglies', '6/13. When the humans are away the OOglies play! An accident waits to happen when Slippy Nana tries his luck at Strictly Come Grating, and the Scrambler tries a motorcycle stunt. [S]', 'fp.bbc.co.uk/T2PO6', 'T2PO6', '2012-09-21T11:25:00+01:00', 900, 1000000, 'f', 471, 6, 11, 'f', '5790574122513789435', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(3895, 'OOglies', '5/13. When the humans are away the OOglies play! While cheeky Cheese sets a trap for strongman Monkey Nut, Stunt Tomato tries his latest death-defying balance trick. [S]', 'fp.bbc.co.uk/T2PO5', 'T2PO5', '2012-09-20T11:25:00+01:00', 900, 1000000, 'f', 471, 6, 11, 'f', '5790203037339415012', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(3896, 'OOglies', '4/13. When the humans are away the OOglies play! Sugar Cube holds on for dear life as the husky dog teabags yap into action for another speedy kitchen sled run. Also in HD. [S]', 'crid://fp.bbc.co.uk/T2PO4', 'T2PO4', '2015-08-05T17:50:00+01:00', 900, 1000000, 'f', 746, 6, 11, 'f', '6179570599002671856', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(3897, 'OOglies', '3/13. When the humans are away the OOglies play! Action hero Sock swings into more trouble as he tries to cross Snake-Belt Pit, and the chillies are stampeding. Also in HD. [S]', 'crid://fp.bbc.co.uk/T2PO3', 'T2PO3', '2015-07-29T17:45:00+01:00', 1200, 1000000, 'f', 746, 6, 11, 'f', '6176971714291891798', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(3898, 'OOglies', '2/13. When the humans are away the OOglies play! Mr Magnetic attracts trouble in the form of some tin foil. The waste disposal bin produces more bad smells. Also in HD. [S]', 'crid://fp.bbc.co.uk/T2PO2', 'T2PO2', '2015-07-22T17:45:00+01:00', 900, 1000000, 'f', 746, 6, 11, 'f', '6174374118071270050', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(3899, 'OOglies', '1/13. When the humans are away the OOglies play. Lonely Sprout is on the hunt for a friendly veggie chum. Will the see-sawing grapes avoid an invasion from clumsy Melonhead? [S]', 'fp.bbc.co.uk/T2PO1', 'T2PO1', '2012-09-14T11:25:00+01:00', 900, 1000000, 'f', 471, 6, 11, 'f', '5787976526293167893', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(3900, 'OOglies', '13/13. When Grumpy Ball receives a gift, he wonders if he has misjudged his bouncy brother. [S] Followed by Newsround.', 'fp.bbc.co.uk/T2POD', 'T2POD', '2012-09-02T13:45:00+01:00', 1200, 1000000, 'f', 471, 6, 11, 'f', '5783559581925959944', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(3901, 'OOglies', 'CBBC. 7/13. When the humans are away the OOglies play! The Fruit Gang go golfing, Devious Blender hopes to bag a hole in one, and Racey Bacon shells out on a new hiding place from Mr Bun. [S]', 'fp.bbc.co.uk/T2PO7', 'T2PO7', '2012-08-30T08:15:00+01:00', 900, 1000000, 'f', 471, 2, 11, 'f', '5782361286029326697', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(3902, 'OOglies', 'CBBC. 13/13. When the humans are away the OOglies play! Love is in the air as Slippy Nana finally meets his slapstick soulmate, but will they slip and slide happily ever after? [S]', 'fp.bbc.co.uk/T2POX', 'T2POX', '2012-08-29T08:15:00+01:00', 900, 1000000, 'f', 471, 2, 11, 'f', '5781990200854952253', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(3903, 'OOglies', 'CBBC. 12/13. When the humans are away the OOglies play! Featuring a morris-dancing scrubbing brush, a flock of marshmallow sheep and an action hero sock driving a remote control car. [S]', 'fp.bbc.co.uk/T2POW', 'T2POW', '2012-08-28T08:15:00+01:00', 900, 1000000, 'f', 471, 2, 11, 'f', '5781619115680577815', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(3904, 'OOglies', 'CBBC. 11/13. Stop-motion animation. There''s a parping blue cheese in the windy waste bin and the farty pants take to the skies for a whiff of adventure. [S]', 'fp.bbc.co.uk/T2POV', 'T2POV', '2012-08-27T08:15:00+01:00', 900, 1000000, 'f', 471, 2, 11, 'f', '5781248030506203376', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(3905, 'OOglies', 'CBBC. 10/13. When the humans are away the OOglies play! The Dopey Doughnut Builders bring down the house again - quite literally. Mr Magnetic loses his bearings and his temper. [S]', 'fp.bbc.co.uk/T2POA', 'T2POA', '2012-08-25T11:30:00+01:00', 900, 1000000, 'f', 471, 2, 11, 'f', '5780556111274824380', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(3906, 'OOglies', 'CBBC. 10/13. Animation. The Battery brothers take charge of a tyrannosaurus rex, the pennies get musical with their old friend Credit Card and Ice Cube goes in search of a new world. [S]', 'fp.bbc.co.uk/T2POU', 'T2POU', '2012-08-24T08:15:00+01:00', 900, 1000000, 'f', 471, 2, 11, 'f', '5780134774983079970', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(3907, 'OOglies', 'CBBC. 9/13. Animation featuring an eccentric ensemble of household pranksters. Toothbrushes have a dance-off, mushrooms perform magic tricks and jelly beans attack a chocolate box castle. [S]', 'fp.bbc.co.uk/T2POT', 'T2POT', '2012-08-23T08:15:00+01:00', 900, 1000000, 'f', 471, 2, 11, 'f', '5779763689808705564', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(3908, 'OOglies', 'CBBC. 8/13. Animation. Pink Marshmallow is up to her old tricks as she ruins Whistle''s chances of rounding up his marshmallow flock. Grumpy Ball gets one over on his brother Bouncy Ball. [S]', 'fp.bbc.co.uk/T2POS', 'T2POS', '2012-08-22T08:15:00+01:00', 900, 1000000, 'f', 471, 2, 11, 'f', '5779392604634331158', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(3909, 'OOglies', 'CBBC. 7/13. When the humans are away, the OOglies play! An OOglie falls prey to the makeover crew, Clippy the barber goes snip-crazy and Kiwi Fruit gets more than a short back and sides. [S]', 'fp.bbc.co.uk/T2POR', 'T2POR', '2012-08-21T08:15:00+01:00', 900, 1000000, 'f', 471, 2, 11, 'f', '5779021519459956752', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(3910, 'OOglies', 'CBBC. 6/13. Animation. An open door on Choccy Castle leads to a jelly bean invasion, the farty pants reach new heights and a raspberry falls into the creepy world of the zombie vegetables. [S]', 'fp.bbc.co.uk/T2POQ', 'T2POQ', '2012-08-20T08:15:00+01:00', 900, 1000000, 'f', 471, 2, 11, 'f', '5778650434285576757', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(3911, 'OOglies', 'CBBC. 5/13. When the humans are away the OOglies play! Strictly Come Grating''s dance star performs ballet with Orange. The Party Box Gang continue their never-ending game of musical chairs. [S]', 'fp.bbc.co.uk/T2POP', 'T2POP', '2012-08-17T08:15:00+01:00', 900, 1000000, 'f', 471, 2, 11, 'f', '5777537178762454404', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(3912, 'OOglies', 'CBBC. 4/13. When the humans are away, the OOglies play! It is all in the balance for the hero in Rubber''s Got Talent, and Pinky Glove reaches new heights as she attempts to light things up. [S]', 'fp.bbc.co.uk/T2POO', 'T2POO', '2012-08-16T08:15:00+01:00', 900, 1000000, 'f', 471, 2, 11, 'f', '5777166093588079971', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(3913, 'OOglies', 'CBBC. 3/13. When the humans are away the OOglies play! Houdini Rubber performs a daring escape act to impress the judges, and the chocolate fingers hatch a scheme to scare Petrified Pud. [S]', 'fp.bbc.co.uk/T2PON', 'T2PON', '2012-08-15T08:15:00+01:00', 900, 1000000, 'f', 471, 2, 11, 'f', '5776795008413705547', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(3914, 'OOglies', 'CBBC. 2/13. When the humans are away, the OOglies play! The inquisitive mushrooms find a jelly trampoline, and crybaby Bauble sneaks a victory over the Christmas Box Gang. [S]', 'fp.bbc.co.uk/T2POM', 'T2POM', '2012-08-14T08:15:00+01:00', 900, 1000000, 'f', 471, 2, 11, 'f', '5776423923239331143', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(3915, 'OOglies', 'CBBC. 1/13. When the humans are away the OOglies play! Boo Potato scares up some laughs, manly Monkey Wrench gets a girly makeover, and the Battery Brothers take over a robot. [S]', 'fp.bbc.co.uk/T2POL', 'T2POL', '2012-08-13T08:15:00+01:00', 900, 1000000, 'f', 471, 2, 11, 'f', '5776052838064956716', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(3916, 'OOglies', 'CBBC. 9/13. When the humans are away the OOglies play! Mr Strawberry takes his quest for love to new heights, and the Playful Grapes try bungee jumping to avoid Clumsy Melonhead. [S]', 'fp.bbc.co.uk/T2PO9', 'T2PO9', '2012-08-11T11:25:00+01:00', 900, 1000000, 'f', 471, 2, 11, 'f', '5775359630343377467', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(3917, 'OOglies', 'CBBC. When the humans are away the OOglies play! Bouncy Ball''s cheeriness makes Grumpy Ball lose his marbles, and Alarming Clock is on the receiving end of Pizza Cutter''s sharp tongue. [S]', 'fp.bbc.co.uk/T2PO8', 'T2PO8', '2012-08-04T11:25:00+01:00', 900, 1000000, 'f', 471, 2, 11, 'f', '5772762034122756651', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(3918, 'OOglies', '12/13. Does Mr Bun finally manage to have his bacon and eat it? [S] Followed by Newsround.', 'fp.bbc.co.uk/T2POC', 'T2POC', '2012-08-14T18:40:00+01:00', 1080, 1000000, 'f', 471, 6, 11, 'f', '5776584984533984013', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(3919, 'OOglies', 'The OOglies embark on a series of adventures that find them slipping, sliding and always splatting onto television screens. [S]', 'crid://fp.bbc.co.uk/T2QNC', 'T2QNC', '2012-03-30T15:00:00+01:00', 300, 1000000, 'f', 471, 6, 11, 'f', '5725674160198232204', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(3920, 'OOglies', 'The OOglies embark on a series of adventures that find them slipping, sliding and always splatting onto television screens. [S] Then Diddy Dick and Dom.', 'crid://fp.bbc.co.uk/T2QNB', 'T2QNB', '2012-03-26T15:00:00+01:00', 600, 1000000, 'f', 471, 6, 11, 'f', '5724189819500734589', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(3921, 'OOglies', '13/13. When the humans are away the OOglies play! Love is in the air as Slippy Nana finally meets his slapstick soulmate, but will they slip and slide happily ever after? [S]', 'crid://fp.bbc.co.uk/T2POX', 'T2POX', '2009-09-14T17:45:00+01:00', 900, 1000000, 'f', 472, 6, 11, 'f', '5381349638555029963', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(3922, 'OOglies', '12/13. When the humans are away the OOglies play! The eccentric ensemble of household pranksters sprout eyes, clown around and embark on a series of adventures. Also in HD. [S]', 'crid://fp.bbc.co.uk/T2POW', 'T2POW', '2009-09-11T17:45:00+01:00', 900, 1000000, 'f', 472, 6, 11, 'f', '5380236383031906527', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(3923, 'OOglies', '11/13. There''s a parping blue cheese in the windy waste bin and the farty pants take to the skies for a whiff of adventure. Smells like OOglies! Also in HD. [S]', 'crid://fp.bbc.co.uk/T2POV', 'T2POV', '2009-09-10T17:45:00+01:00', 900, 1000000, 'f', 472, 6, 11, 'f', '5379865297857532087', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(3924, 'OOglies', '10/13. The Battery Brothers take charge of a T-Rex dinosaur, the pennies get musical with their old friend Credit Card and Ice Cube goes in search of a new world. Also in HD. [S]', 'crid://fp.bbc.co.uk/T2POU', 'T2POU', '2009-09-09T17:45:00+01:00', 900, 1000000, 'f', 472, 6, 11, 'f', '5379494212683157647', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(3925, 'OOglies', '9/13. The toothbrushes have a dance-off on a bathroom sink, and mushrooms perform magic tricks. Also in HD. [S]', 'crid://fp.bbc.co.uk/T2POT', 'T2POT', '2009-09-08T17:45:00+01:00', 900, 1000000, 'f', 472, 6, 11, 'f', '5379123127508783207', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(3926, 'OOglies', '8/13. Pink Marshmallow is up to her old tricks as she ruins Whistle''s chances of rounding up his marshmallow flock. Grumpy Ball gets one over on his brother Bouncy Ball. Also in HD. [S]', 'crid://fp.bbc.co.uk/T2POS', 'T2POS', '2009-09-07T17:45:00+01:00', 900, 1000000, 'f', 472, 6, 11, 'f', '5378752042334408477', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(3927, 'OOglies', '7/13. An OOglie gets lippy when he falls prey to the makeup makeover crew, Clippy the Barber goes snip crazy and Kiwi Fruit gets more than a short back and sides. [S]', 'crid://fp.bbc.co.uk/T2POR', 'T2POR', '2009-09-04T17:45:00+01:00', 900, 1000000, 'f', 472, 6, 11, 'f', '5377638786811285046', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(3928, 'OOglies', '6/13. An open door on Choccy Castle leads to a jelly bean invasion, the farty pants launch laughs to new heights and a raspberry falls into the creepy world of the zombie vegetables. [S]', 'crid://fp.bbc.co.uk/T2POQ', 'T2POQ', '2009-09-03T17:45:00+01:00', 900, 1000000, 'f', 472, 6, 11, 'f', '5377267701636910607', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(3929, 'OOglies', '5/13. When the humans are away the OOglies play! Strictly Come Grating''s dance star performs ballet with Orange. The Party Box Gang continue their never-ending game of musical chairs. Also in HD. [S]', 'crid://fp.bbc.co.uk/T2POP', 'T2POP', '2009-09-02T17:45:00+01:00', 900, 1000000, 'f', 472, 6, 11, 'f', '5376896616462536168', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(3930, 'OOglies', '4/13. It''s all in the balance for the hero in ''Rubber''s Got Talent''. Also in HD. [S]', 'crid://fp.bbc.co.uk/T2POO', 'T2POO', '2009-09-01T17:45:00+01:00', 900, 1000000, 'f', 472, 6, 11, 'f', '5376525531288161729', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(3931, 'OOglies', '3/13. When the humans are away the OOglies play! Houdini Rubber performs a daring escape act to impress the judges, and the chocolate fingers hatch a scheme to scare Petrified Pud. Also in HD. [S]', 'crid://fp.bbc.co.uk/T2PON', 'T2PON', '2009-08-31T17:45:00+01:00', 900, 1000000, 'f', 472, 6, 11, 'f', '5376154446113787290', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(3932, 'OOglies', '2/13. Meatball tries to beat her fear of heights. The inquisitive mushrooms find a jelly trampoline, and cry baby Bauble sneaks a victory over the Christmas Box Gang. Also in HD. [S]', 'crid://fp.bbc.co.uk/T2POM', 'T2POM', '2009-08-28T17:45:00+01:00', 900, 1000000, 'f', 472, 6, 11, 'f', '5375041190590664009', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(3933, 'OOglies', '1/13. When the humans are away the OOglies play! Boo Potato scares up some laughs, manly Monkey Wrench gets a girly makeover, and the Battery Brothers take over a robot. Also in HD. [S]', 'crid://fp.bbc.co.uk/T2POL', 'T2POL', '2009-08-27T17:45:00+01:00', 900, 1000000, 'f', 472, 6, 11, 'f', '5374670105416289466', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(3934, 'OOglies', '13/13. When Grumpy Ball receives a gift, he wonders if he''s misjudged his bouncy brother. Also in HD. [S]', 'crid://fp.bbc.co.uk/T2POD', 'T2POD', '2009-08-26T17:45:00+01:00', 900, 1000000, 'f', 472, 6, 11, 'f', '5374299020241915026', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(3935, 'OOglies', 'When the humans are away the OOglies play! Mr Bun wants to have his bacon and eat it, but is Racey Bacon too quick off the mark? Tomato gets his skates on in his latest stunt. Also in HD. [S]', 'crid://fp.bbc.co.uk/T2POC', 'T2POC', '2009-08-25T17:45:00+01:00', 900, 1000000, 'f', 472, 6, 11, 'f', '5373927935067540586', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(3936, 'OOglies', 'When the humans are away the OOglies play! The cheeky carrots attempt a carrot pyramid in the dark, and Grater gets in the groove with a right ''nana'' of a companion. Also in HD. [S]', 'crid://fp.bbc.co.uk/T2POB', 'T2POB', '2009-08-24T17:45:00+01:00', 900, 1000000, 'f', 472, 6, 11, 'f', '5373556849893166146', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(3937, 'OOglies', 'When the humans are away the OOglies play! The Dopey Doughnut Builders bring down the house again - quite literally. Mr Magnetic loses his bearings and his temper. [S]', 'crid://fp.bbc.co.uk/T2POA', 'T2POA', '2009-08-21T17:45:00+01:00', 900, 1000000, 'f', 472, 6, 11, 'f', '5372443594370042740', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(3938, 'OOglies', 'When the humans are away the OOglies play! Mr Strawberry takes his quest for love to new heights, and the Playful Grapes try out bungee jumping to avoid Clumsy Melonhead. [S]', 'crid://fp.bbc.co.uk/T2PO9', 'T2PO9', '2009-08-20T17:45:00+01:00', 900, 1000000, 'f', 472, 6, 11, 'f', '5372072509195668746', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(3939, 'OOglies', 'When the humans are away the OOglies play! Bouncy Ball''s cheeriness makes Grumpy Ball lose his marbles, and Alarming Clock is on the receiving end of Pizza Cutter''s sharp tongue. [S]', 'crid://fp.bbc.co.uk/T2PO8', 'T2PO8', '2009-08-19T17:45:00+01:00', 900, 1000000, 'f', 472, 6, 11, 'f', '5371701424021293865', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(3940, 'OOglies', 'When the humans are away the OOglies play! When the Fruit Gang go golfing, Devious Blender hopes to bag a whole in one, and Racey Bacon shells out on a new hiding place from Mr Bun. [S]', 'crid://fp.bbc.co.uk/T2PO7', 'T2PO7', '2009-08-18T17:45:00+01:00', 900, 1000000, 'f', 472, 6, 11, 'f', '5371330338846919428', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(3941, 'OOglies', 'When the humans are away the OOglies play! An accident waits to happen when Slippy Nana tries his luck at Strictly Come Grating, and the Scrambler tries a motorcycle stunt. [S]', 'crid://fp.bbc.co.uk/T2PO6', 'T2PO6', '2009-08-17T17:45:00+01:00', 900, 1000000, 'f', 472, 6, 11, 'f', '5370959253672544992', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(3942, 'OOglies', 'When the humans are away the OOglies play! While cheeky Cheese sets a trap for strongman Monkey Nut, Stunt Tomato tries his latest death-defying balance trick. Also in HD. [S]', 'crid://fp.bbc.co.uk/T2PO5', 'T2PO5', '2009-08-14T17:45:00+01:00', 900, 1000000, 'f', 472, 6, 11, 'f', '5369845998149421720', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(3943, 'OOglies', 'When the humans are away the OOglies play! Sugar Cube holds on for dear life as the husky dog teabags yap into action for another speedy kitchen sled run. [S]', 'crid://fp.bbc.co.uk/T2PO4', 'T2PO4', '2009-08-13T17:45:00+01:00', 900, 1000000, 'f', 472, 6, 11, 'f', '5369474912975047305', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(3944, 'OOglies', 'When the humans are away the OOglies play! Action hero Sock swings into more trouble as he tries to cross Snake-Belt Pit, and the chillis are stampeding. [S]', 'crid://fp.bbc.co.uk/T2PO3', 'T2PO3', '2009-08-12T17:45:00+01:00', 900, 1000000, 'f', 472, 6, 11, 'f', '5369103827800672897', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(3945, 'OOglies', 'When the humans are away the OOglies play! Mr Magnetic continues to attract trouble in the form of some naughty tin foil. Also in HD. [S]', 'crid://fp.bbc.co.uk/T2PO2', 'T2PO2', '2009-08-11T17:45:00+01:00', 900, 1000000, 'f', 472, 6, 11, 'f', '5368732742626298491', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(3946, 'OOglies', 'When the humans are away the OOglies play. Lonely Sprout is on the hunt for a friendly veggie chum. Will the see-sawing grapes avoid an invasion from clumsy Melonhead? Also in HD. [S]', 'crid://fp.bbc.co.uk/T2PO1', 'T2PO1', '2009-08-10T17:45:00+01:00', 900, 1000000, 'f', 472, 6, 11, 'f', '5368361657451924085', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(3947, 'The Sarah Jane Adventures', '3/6. Part 2: The Man Who Never Was: Children''s science fiction drama. Luke and Sky must help the Skullions, but Sarah Jane is in danger too, so who will they save? [AD,S]', 'crid://fp.bbc.co.uk/T2QIJ', 'T2QIJ', '2011-10-18T17:15:00+01:00', 1800, 1000000, 'f', 473, 6, 11, 'f', '5664850980835948367', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(3948, 'The Sarah Jane Adventures', '3/6. Part 1: The Man Who Never Was: Children''s science fiction drama. Everyone wants the brand-new SerfBoard - and why not? What could be so dangerous about a computer? [AD,S]', 'crid://fp.bbc.co.uk/T2QII', 'T2QII', '2011-10-17T17:20:00+01:00', 1500, 1000000, 'f', 473, 6, 11, 'f', '5664481184151762733', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(3949, 'The Sarah Jane Adventures', '2/6. Part 2: The Curse of Clyde Langer: Children''s science fiction drama. Clyde is living on the streets of London, lost and abandoned - and hiding from the Night Dragon. [AD,S]', 'crid://fp.bbc.co.uk/T2QIH', 'T2QIH', '2011-10-11T17:15:00+01:00', 1800, 1000000, 'f', 473, 6, 11, 'f', '5662253384615327465', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(3950, 'The Sarah Jane Adventures', '2/6. Part 1: The Curse of Clyde Langer: Children''s science fiction drama. The world has a brand new Public Enemy Number One - and his name is Clyde Langer. [AD,S]', 'crid://fp.bbc.co.uk/T2QIG', 'T2QIG', '2011-10-10T17:15:00+01:00', 1800, 1000000, 'f', 473, 6, 11, 'f', '5661882299440953057', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(3951, 'The Sarah Jane Adventures', '2/6. Sky - Part 2: Children''s science fiction drama. Metalkind fights Fleshkind for control of Sarah Jane''s new friend, Sky. Can Sky stop herself destroying the world? [AD,S]', 'crid://fp.bbc.co.uk/T2QIF', 'T2QIF', '2011-10-04T17:15:00+01:00', 1800, 1000000, 'f', 473, 6, 11, 'f', '5659655788394706557', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(3952, 'The Sarah Jane Adventures', '1/6. Sky - Part 1: Children''s science fiction drama. Sarah Jane finds something on her doorstep that leads her to an alien incursion at a power plant. [AD,S]', 'crid://fp.bbc.co.uk/T2QIE', 'T2QIE', '2011-10-03T17:20:00+01:00', 1500, 1000000, 'f', 473, 6, 11, 'f', '5659285991710520954', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(3953, 'The Sarah Jane Adventures', '6/12. Goodbye, Sarah Jane Smith, Part 2: Children''s sci-fi drama following a journalist. Sarah Jane has gone for good, and a new regime begins at Bannerman Road. [AD,S] Followed by Newsround.', 'crid://fp.bbc.co.uk/T2Q1E', 'T2Q1E', '2010-11-16T17:15:00+00:00', 1800, 1000000, 'f', 474, 6, 11, 'f', '5540197286010664264', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(3954, 'The Sarah Jane Adventures', '6/12. Goodbye, Sarah Jane Smith, Part 1: Children''s science fiction drama. No one can defend the earth forever, but who could ever replace Sarah Jane? [AD,S] Followed by Newsround.', 'crid://fp.bbc.co.uk/T2Q1D', 'T2Q1D', '2010-11-15T17:15:00+00:00', 1800, 1000000, 'f', 474, 6, 11, 'f', '5539826200836289829', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(3955, 'The Sarah Jane Adventures', '5/12. Lost in Time, Part 2: Children''s science fiction drama. Sarah Jane, Clyde and Rani fight across the centuries to be reunited. [AD,S] Followed by Newsround.', 'crid://fp.bbc.co.uk/T2Q1C', 'T2Q1C', '2010-11-09T17:15:00+00:00', 1800, 1000000, 'f', 474, 6, 11, 'f', '5537599689790042868', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(3956, 'The Sarah Jane Adventures', '5/12. Lost in Time, Part 1: Children''s science fiction drama. A harmless investigation turns into an epic quest across time and space. [AD,S] Followed by Newsround.', 'crid://fp.bbc.co.uk/T2Q1B', 'T2Q1B', '2010-11-08T17:15:00+00:00', 1800, 1000000, 'f', 474, 6, 11, 'f', '5537228604615668467', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(3957, 'The Sarah Jane Adventures', '4/12. The Empty Planet, Part 2: Children''s science fiction drama. Clyde and Rani race against time - but what is the secret of the robots? [AD,S] Followed by Newsround.', 'crid://fp.bbc.co.uk/T2Q1A', 'T2Q1A', '2010-11-02T17:15:00+00:00', 1800, 1000000, 'f', 474, 6, 11, 'f', '5535002093569421940', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(3958, 'The Sarah Jane Adventures', '4/12. The Empty Planet, Part 1: Children''s science fiction drama. Clyde and Rani discover that they are the only survivors of the human race! [AD,S] Followed by Newsround.', 'crid://fp.bbc.co.uk/T2Q19', 'T2Q19', '2010-11-01T17:15:00+00:00', 1800, 1000000, 'f', 474, 6, 11, 'f', '5534631008395047503', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(3959, 'The Sarah Jane Adventures', '3/12. Death of the Doctor, Part 2: Children''s science fiction drama. Old friends fight together - but is it too late to stop the sinister Shansheeth? [AD,S] Followed by Newsround.', 'crid://fp.bbc.co.uk/T2Q18', 'T2Q18', '2010-10-26T17:15:00+01:00', 1800, 1000000, 'f', 474, 6, 11, 'f', '5532373573584269622', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(3960, 'The Sarah Jane Adventures', '3/12. Death of the Doctor, Part 1: Children''s science fiction drama. When the Doctor is declared dead, Sarah Jane and Jo Grant unite to find out the truth. [AD,S] Followed by Newsround.', 'crid://fp.bbc.co.uk/T2Q17', 'T2Q17', '2010-10-25T17:15:00+01:00', 1800, 1000000, 'f', 474, 6, 11, 'f', '5532002488409895190', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(3961, 'The Sarah Jane Adventures', '2/12. The Vault of Secrets, Part 2: The battle for the Vault reaches a showdown - with planet Earth at stake. [AD,S] Followed by Newsround.', 'crid://fp.bbc.co.uk/T2Q16', 'T2Q16', '2010-10-19T17:15:00+01:00', 1800, 1000000, 'f', 474, 6, 11, 'f', '5529775977363648382', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(3962, 'The Sarah Jane Adventures', '2/12. The Vault of Secrets, Part 1: Children''s sci-fi series. An old enemy returns to Earth - but can the Veil be trusted? [AD,S] Followed by Newsround.', 'crid://fp.bbc.co.uk/T2Q15', 'T2Q15', '2010-10-18T17:15:00+01:00', 1800, 1000000, 'f', 474, 6, 11, 'f', '5529404892189273981', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(3963, 'The Sarah Jane Adventures', '1/12. The Nightmare Man, Part 2: Children''s sci-fi series. With Luke, Clyde and Rani trapped in a bizarre dreamscape, Sarah Jane must fight the Nightmare Man alone. [AD,S] Followed by Newsround.', 'crid://fp.bbc.co.uk/T2Q14', 'T2Q14', '2010-10-12T17:15:00+01:00', 1800, 1000000, 'f', 474, 6, 11, 'f', '5527178381143027816', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(3964, 'The Sarah Jane Adventures', '1/12. The Nightmare Man, Part 1: Children''s sci-fi series. Luke''s first nightmare could be tragic for the human race, and Bannerman Road will never be the same. [AD,S] Followed by Newsround.', 'crid://fp.bbc.co.uk/T2Q13', 'T2Q13', '2010-10-11T17:15:00+01:00', 1800, 1000000, 'f', 474, 6, 11, 'f', '5526807295968653414', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(3965, 'The Sarah Jane Adventures', 'CBBC. 12/12. The Gift - Part 2: When the gift runs riot, Sarah Jane faces the battle of her life to save Luke. Also in HD. [AD,S]', 'crid://fp.bbc.co.uk/T2PJM', 'T2PJM', '2009-11-20T16:35:00+00:00', 1500, 1000000, 'f', 476, 1, 11, 'f', '5406225230106774990', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(3966, 'The Sarah Jane Adventures', 'CBBC. 11/12. The Gift - Part 1: Children''s sci-fi drama featuring a journalist. When the Slitheen''s latest scheme is halted, the Blathereen arrive - but can they be trusted? Also in HD. [AD,S]', 'crid://fp.bbc.co.uk/T2PJL', 'T2PJL', '2009-11-19T16:35:00+00:00', 1500, 1000000, 'f', 476, 1, 11, 'f', '5405854144932400520', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(3967, 'The Sarah Jane Adventures', 'CBBC. 5/12. Mona Lisa''s Revenge - Part 2: Children''s science fiction drama. The Mona Lisa vows to free the dreaded abomination from its prison - and Clyde is the key! Also in HD. [AD,S]', 'crid://fp.bbc.co.uk/T2PJK', 'T2PJK', '2009-11-13T16:35:00+00:00', 1500, 1000000, 'f', 476, 1, 11, 'f', '5403627633886152438', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(3968, 'The Sarah Jane Adventures', 'CBBC. Mona Lisa''s Revenge - Part 1: Children''s science fiction drama. When the Mona Lisa comes to life, Clyde discovers that fine art can be dangerous! Also in HD. [AD,S]', 'crid://fp.bbc.co.uk/T2PJJ', 'T2PJJ', '2009-11-12T16:35:00+00:00', 1500, 1000000, 'f', 476, 1, 11, 'f', '5403256548711774915', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(3969, 'The Sarah Jane Adventures', 'CBBC. The Eternity Trap - Part 2: Sarah Jane and the gang discover the secret of Erasmus Darkening - but are they too late? Also in HD. [AD,S]', 'crid://fp.bbc.co.uk/T2PJI', 'T2PJI', '2009-11-06T16:35:00+00:00', 1500, 1000000, 'f', 476, 1, 11, 'f', '5401030037665528479', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(3970, 'The Sarah Jane Adventures', 'CBBC. The Eternity Trap - Part 1: Children''s science fiction drama. A haunted house, with mysterious whispers and secrets in the shadows - time for Sarah Jane Smith! Also in HD. [AD,S]', 'crid://fp.bbc.co.uk/T2PJH', 'T2PJH', '2009-11-05T16:35:00+00:00', 1500, 1000000, 'f', 476, 1, 11, 'f', '5400658952491154043', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(3971, 'The Sarah Jane Adventures', 'CBBC. The Wedding of Sarah Jane Smith - Part 2: The Doctor joins the battle, but is he too late to save both Sarah Jane and the Earth? Also in HD. [AD,S]', 'crid://fp.bbc.co.uk/T2PJG', 'T2PJG', '2009-10-30T16:35:00+00:00', 1500, 1000000, 'f', 476, 1, 11, 'f', '5398432441444905512', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(3972, 'The Sarah Jane Adventures', 'CBBC. The Wedding of Sarah Jane Smith - Part 1: The Doctor returns on the happiest day of Sarah Jane''s life, but a deadly trap awaits. Also in HD. [AD,S]', 'crid://fp.bbc.co.uk/T2PJF', 'T2PJF', '2009-10-29T16:35:00+00:00', 1500, 1000000, 'f', 476, 1, 11, 'f', '5398061356270531074', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(3973, 'The Sarah Jane Adventures', 'CBBC. The Mad Woman in the Attic - Part 2: Children''s sci-fi drama series. Eve''s powers grow out of control, catching everyone in her endless sinister games. Also in HD. [AD,S]', 'crid://fp.bbc.co.uk/T2PJE', 'T2PJE', '2009-10-23T16:35:00+01:00', 1500, 1000000, 'f', 476, 1, 11, 'f', '5395803921459750822', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(3974, 'The Sarah Jane Adventures', 'CBBC. 2/12. The Mad Woman in the Attic - Part 1: Children''s sci-fi drama. Far in the future, in the year 2059, Old Rani remembers the day when her whole life went wrong. Also in HD. [AD,S]', 'crid://fp.bbc.co.uk/T2PJD', 'T2PJD', '2009-10-22T16:35:00+01:00', 1500, 1000000, 'f', 476, 1, 11, 'f', '5395432836285376385', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(3975, 'The Sarah Jane Adventures', 'CBBC. 1/12. Prisoner of the Judoon - Part 2: Children''s sci-fi drama featuring a journalist. Luke, Clyde and Rani must fight their most fearsome enemy yet - Sarah Jane Smith. Also in HD. [AD,S]', 'crid://fp.bbc.co.uk/T2PJC', 'T2PJC', '2009-10-16T16:35:00+01:00', 1500, 1000000, 'f', 476, 1, 11, 'f', '5393206325239128510', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(3976, 'The Sarah Jane Adventures', 'New series. CBBC. 1/12. Prisoner of the Judoon - Part 1: Children''s sci-fi drama. The rhino-like Judoon return, as their prisoner crash-lands on Earth. A Veil is on the loose. Also in HD. [AD,S]', 'crid://fp.bbc.co.uk/T2PJB', 'T2PJB', '2009-10-15T16:35:00+01:00', 1500, 1000000, 'f', 476, 1, 11, 'f', '5392835240064754080', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(3977, 'The Sarah Jane Adventures', 'Enemy of the Bane, part 2: Children''s drama series. The team discovers a traitor in their midst when Luke is kidnapped by Mrs Wormwood and Kaagh, and they prepare for a showdown. [AD,S]', 'fp.bbc.co.uk/T2PCE', 'T2PCE', '2008-12-02T17:15:00+00:00', 1800, 1000000, 'f', 477, 6, 11, 'f', '5799172217543653505', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(3978, 'The Sarah Jane Adventures', 'Enemy of the Bane: Part 1: Children''s drama series. When former enemy Mrs Wormwood appears asking for help, Sarah Jane must turn to an old friend from her time with the Doctor. [S]', 'crid://fp.bbc.co.uk/T2PCD', 'T2PCD', '2008-12-01T17:15:00+00:00', 1800, 1000000, 'f', 477, 6, 11, 'f', '5274871386332959123', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(3979, 'The Sarah Jane Adventures', '5/12. The Temptation of Sarah Jane Smith, Part 2: Children''s drama series. Sarah Jane has to make a devastating sacrifice in order to save Earth from The Trickster. [S]', 'crid://fp.bbc.co.uk/T2PCC', 'T2PCC', '2008-11-24T17:15:00+00:00', 1800, 1000000, 'f', 477, 6, 11, 'f', '5272273790112337980', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(3980, 'The Sarah Jane Adventures', '5/12. The Temptation of Sarah Jane Smith, Part 1: Children''s drama series. Sarah Jane can''t resist going back in time to meet the parents she never knew - with disastrous consequences. [S]', 'crid://fp.bbc.co.uk/T2PCB', 'T2PCB', '2008-11-17T17:15:00+00:00', 1800, 1000000, 'f', 477, 6, 11, 'f', '5269676193891716756', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(3981, 'The Sarah Jane Adventures', '4/12. The Mark of the Berserker, Part 2: Children''s drama series. Luke and Rani, with Clyde''s mum, track Clyde and his father to a waterside confrontation with The Berserker. [S]', 'crid://fp.bbc.co.uk/T2PCA', 'T2PCA', '2008-11-10T17:15:00+00:00', 1800, 1000000, 'f', 477, 6, 11, 'f', '5267078597671095559', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(3982, 'The Sarah Jane Adventures', '4/12. The Mark of the Berserker, Part 1: Children''s drama series. An alien pendant, which gives its wearer the power to control others, is stolen from Sarah Jane''s attic. [S]', 'crid://fp.bbc.co.uk/T2PC9', 'T2PC9', '2008-11-03T17:15:00+00:00', 1800, 1000000, 'f', 477, 6, 11, 'f', '5264481001450473830', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(3983, 'The Sarah Jane Adventures', '3/12. Secrets of the Stars - Part 2: Children''s drama series. Sarah Jane and the others infiltrate Trueman''s circle as he takes over the population through their star signs. [S]', 'crid://fp.bbc.co.uk/T2PC8', 'T2PC8', '2008-10-27T17:15:00+00:00', 1800, 1000000, 'f', 477, 6, 11, 'f', '5261883405229883108', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(3984, 'The Sarah Jane Adventures', '3/12. Secrets of the Stars - Part 1: Children''s drama series. An astrologer attracts Sarah Jane''s interest with his uncanny predictions. [S]', 'crid://fp.bbc.co.uk/T2PC7', 'T2PC7', '2008-10-20T17:15:00+01:00', 1800, 1000000, 'f', 477, 6, 11, 'f', '5259254885244730750', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(3985, 'The Sarah Jane Adventures', '2/12. The Day of the Clown - Part 2: Children''s drama series. Luke is taken by Spellman and Sarah Jane has to confront her oldest fears to save him. [S]', 'crid://fp.bbc.co.uk/T2PC6', 'T2PC6', '2008-10-13T17:15:00+01:00', 1800, 1000000, 'f', 477, 6, 11, 'f', '5256657289024109568', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(3986, 'The Sarah Jane Adventures', '2/12. The Day of the Clown - Part 1: Children''s drama series. New girl Rani is haunted by a sinister clown. Has the Pied Piper come to Bannerman Road? [S]', 'crid://fp.bbc.co.uk/T2PC5', 'T2PC5', '2008-10-06T17:15:00+01:00', 1800, 1000000, 'f', 477, 6, 11, 'f', '5254059692803488410', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(3987, 'The Sarah Jane Adventures', '1/12. The Last Sontaran - Part 2: Children''s drama series from the makers of Doctor Who. Sarah Jane has 40 minutes to stop Sontaran Commander Kaagh from destroying the Earth. [S].', 'crid://fp.bbc.co.uk/T2PC4', 'T2PC4', '2008-09-29T17:15:00+01:00', 1800, 1000000, 'f', 477, 6, 11, 'f', '5251462096582867496', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(3988, 'The Sarah Jane Adventures', 'CBBC. The Last Sontaran. Part One: Sarah Jane investigates alien lights and encounters an enemy from the past. Maria faces a big decision. [S]', 'crid://fp.bbc.co.uk/T2PC3', 'T2PC3', '2008-09-29T16:35:00+01:00', 1500, 1000000, 'f', 477, 1, 11, 'f', '5251451788628067408', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(3989, 'The Sarah Jane Adventures', '2/2. The Lost Boy: With her old enemies triumphant, it seems that Sarah Jane has finally been defeated. [S]', 'crid://fp.bbc.co.uk/54BXLA', '54BXLA', '2007-11-19T17:30:00+00:00', 1800, 1000000, 'f', 478, 6, 11, 'f', '5134605055889991488', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(3990, 'The Sarah Jane Adventures', 'The Lost Boy. Part One. A couple appear claiming to be Luke''s real parents. Is it time for Sarah Jane to stop adventuring? [S]', 'crid://fp.bbc.co.uk/54BXL9', '54BXL9', '2007-11-12T17:30:00+00:00', 1800, 1000000, 'f', 478, 6, 11, 'f', '5132007459669369297', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(3991, 'The Sarah Jane Adventures', '2/2. Whatever Happened To Sarah Jane?: Maria is lost in time, and a meteor heads for Earth - with no Sarah Jane to stop it. [S]', 'crid://fp.bbc.co.uk/54BXL8', '54BXL8', '2007-11-05T17:30:00+00:00', 1800, 1000000, 'f', 478, 6, 11, 'f', '5129409863448745862', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(3992, 'The Sarah Jane Adventures', '1/2. Whatever Happened To Sarah Jane?: Maria wakes one morning to discover Sarah Jane has disappeared - and she is the only person in the world who remembers her. [S]', 'crid://fp.bbc.co.uk/54BXL7', '54BXL7', '2007-10-29T17:30:00+00:00', 1800, 1000000, 'f', 478, 6, 11, 'f', '5126812267228123137', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(3993, 'The Sarah Jane Adventures', 'Warriors of Kudlak. Part 2: Luke and Clyde have been kidnapped - to become soldiers in an endless intergalactic war. [S]', 'crid://fp.bbc.co.uk/54BXL6', '54BXL6', '2007-10-22T17:30:00+01:00', 1800, 1000000, 'f', 478, 6, 11, 'f', '5124183747242967875', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(3994, 'The Sarah Jane Adventures', 'Warriors of Kudlak. Part 1: Luke and Clyde enter Combat 3000 - a game designed to train warriors - run by the sinister Kudlak. [S]', 'crid://fp.bbc.co.uk/54BXL5', '54BXL5', '2007-10-15T17:30:00+01:00', 1800, 1000000, 'f', 478, 6, 11, 'f', '5121586151022345247', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(3995, 'The Sarah Jane Adventures', 'Eye of the Gorgon. Part 2. Sinister nuns plan to unleash the Gorgon on the world. Will Sarah Jane stop them? [S] ', 'crid://fp.bbc.co.uk/54BXL4', '54BXL4', '2007-10-08T17:30:00+01:00', 1800, 1000000, 'f', 478, 6, 11, 'f', '5118988554801722752', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(3996, 'The Sarah Jane Adventures', 'Eye of the Gorgon. Part 1: Sarah Jane and her team encounter the Gorgon - a terrifying creature that turns its victims to stone. [S] ', 'crid://fp.bbc.co.uk/54BXL3', '54BXL3', '2007-10-01T17:30:00+01:00', 1800, 1000000, 'f', 478, 6, 11, 'f', '5116390958581099488', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(3997, 'The Sarah Jane Adventures', 'Revenge of the Slitheen. Part 2: Sarah Jane, Maria, Luke and Clyde must save Earth before the Slitheen switch off the sun. [S]', 'crid://fp.bbc.co.uk/54BXL2', '54BXL2', '2007-09-24T17:30:00+01:00', 1800, 1000000, 'f', 478, 6, 11, 'f', '5113793362360476330', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(3998, 'The Sarah Jane Adventures', 'Revenge of the Slitheen. Part 1: Sarah Jane, Maria, Luke and Clyde discover the monstrous Slitheen are hiding in a school. [S]', 'crid://fp.bbc.co.uk/54BXL1', '54BXL1', '2007-09-24T17:00:00+01:00', 1500, 1000000, 'f', 478, 1, 11, 'f', '5113785631386117145', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(3999, 'The Sarah Jane Adventures', 'Invasion of the Bane: After discovering that the Bane, creators of a soft drink called Bubble Shock!, harbour a destructive secret, Maria Jackson teams up with investigative journalist Sarah Jane Smith to prevent their plans.', 'crid://fp.bbc.co.uk/54BW4M', '54BW4M', '2007-09-23T17:10:00+01:00', 3600, 1000000, 'f', 478, 6, 11, 'f', '5113417123225346540', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4039, 'Horrid Henry', 'Horrid Henry: I Am Not a Hamster: Henry finds out that sometimes you can take your best friends for granted, especially when your best friend is a hamster - or is he? [AD,S]', 'crid://www.itv.com/132738016', '132738016', '2015-01-18T08:30:00+00:00', 1200, 1000000, 'f', 483, 8, 11, 'f', '6105595800522688040', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4040, 'Horrid Henry', 'Horrid Henry Rewrites the Rules: Adventures of a mischievous boy. Peter discovers that you can please everyone most of the time, at least he thinks he can. [AD,S]', 'crid://www.itv.com/132737982', '132737982', '2015-01-17T08:30:00+00:00', 1200, 1000000, 'f', 483, 8, 11, 'f', '6105224715348313578', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4041, 'Horrid Henry', 'Horrid Henry Does his Homework: The animated adventures of the mischievous anti-hero. Can it be true? Is Henry about to break the rule of a lifetime and actually do his homework? [AD,S]', 'crid://www.itv.com/132107157', '132107157', '2015-01-10T08:30:00+00:00', 1200, 1000000, 'f', 483, 8, 11, 'f', '6102627119127702576', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4042, 'Horrid Henry', 'Horrid Henry Knows It All: The animated adventures of the mischievous anti-hero. Henry hears that there are Killer Boy Rats tickets for sale - and nothing is going to stop him. [AD,S]', 'crid://www.itv.com/131504077', '131504077', '2015-01-04T08:15:00+00:00', 900, 1000000, 'f', 483, 8, 11, 'f', '6100396742610889492', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4043, 'Horrid Henry', 'Horrid Henry''s Comic Caper: The animated adventures of the mischievous anti-hero. It is not easy being Henry when all you want to do is read your Gross Class Zero comic. [AD,S]', 'crid://www.itv.com/131504069', '131504069', '2015-01-03T08:15:00+00:00', 900, 1000000, 'f', 483, 8, 11, 'f', '6100025657436515052', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4044, 'Horrid Henry', 'Horrid Henry Meets Mr Tiddler: Animated adventures. When Peter finds out that his favourite author lives just down the road, Henry has to turn writer to stop things going wrong. [AD,S]', 'crid://www.itv.com/139392961', '139392961', '2014-12-27T08:10:00+00:00', 900, 1000000, 'f', 483, 8, 11, 'f', '6097426772725705132', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4045, 'Horrid Henry', 'Horrid Henry and the Early Christmas Present: The adventures of the eponymous mischievous boy. Christmas never seems to come early, except when you don''t want it to - bah, humbug! [AD,S]', 'crid://www.itv.com/36518227', '36518227', '2014-12-25T08:10:00+00:00', 900, 1000000, 'f', 483, 8, 11, 'f', '6096684602376955036', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4046, 'Horrid Henry', 'Horrid Henry and the Perfect Panto: Animated adventures. When Henry''s school panto is cancelled, Margaret will not take no for an answer - which is a good thing and a bad thing! [AD,S]', 'crid://www.itv.com/139392923', '139392923', '2014-12-21T08:15:00+00:00', 900, 1000000, 'f', 483, 8, 11, 'f', '6095201550169645980', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4047, 'Horrid Henry', 'Horrid Henry and the Horrid Hat: The animated adventures of the mischievous anti-hero. Henry''s horrid hat is not the only thing breaking the rules - according to Soggy Sid! [AD,S]', 'crid://www.itv.com/132107165', '132107165', '2014-12-20T08:15:00+00:00', 900, 1000000, 'f', 483, 8, 11, 'f', '6094830464995274371', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4048, 'Horrid Henry', 'Horrid Henry''s Marvellous Motto: The animated adventures of the mischievous anti-hero. There is a motto for every occasion, as Henry finds out to his cost! [AD,S]', 'crid://www.itv.com/138723517', '138723517', '2014-12-14T08:15:00+00:00', 900, 1000000, 'f', 483, 8, 11, 'f', '6092603953949025885', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4049, 'Horrid Henry', 'Horrid Henry Gives It All Away: The animated adventures of the mischievous anti-hero. Henry decides that he has got too much stuff, but giving it all away is easier said than done! [AD,S]', 'crid://www.itv.com/138723479', '138723479', '2014-12-13T08:15:00+00:00', 900, 1000000, 'f', 483, 8, 11, 'f', '6092232868774649672', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4050, 'Horrid Henry', 'Horrid Henry and the Dangerous Data: Animated adventures. Data can be dangerous, as Henry is about to find out when Peter takes over as chief secretary of the Purple Hand Gang! [AD,S]', 'crid://www.itv.com/133901506', '133901506', '2014-12-07T08:15:00+00:00', 900, 1000000, 'f', 483, 8, 11, 'f', '6090006357728402521', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4051, 'Horrid Henry', 'Moody Margaret for President: The animated adventures of the mischievous anti-hero. Margaret decides there is only one way to get things done and that is by becoming President. [AD,S]', 'crid://www.itv.com/138299964', '138299964', '2014-12-06T08:15:00+00:00', 900, 1000000, 'f', 483, 8, 11, 'f', '6089635272554028081', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4052, 'Horrid Henry', 'Horrid Henry and the Phantom Phone: The animated adventures of the mischievous anti-hero. Henry has finally got his very own mobile phone - or has he? [AD,S]', 'crid://www.itv.com/137667277', '137667277', '2014-11-30T08:15:00+00:00', 900, 1000000, 'f', 483, 8, 11, 'f', '6087408761507780310', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4053, 'Horrid Henry', 'Horrid Henry Goes to School: The animated adventures of the mischievous anti-hero. Henry tries to go to school - no, really! [AD,S]', 'crid://www.itv.com/137667265', '137667265', '2014-11-29T08:15:00+00:00', 900, 1000000, 'f', 483, 8, 11, 'f', '6087037676333405851', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4054, 'Horrid Henry', 'Horrid Henry Eco Warrior: Animated adventures of the mischievous anti-hero. When Henry becomes the school''s recycling ambassador, he finds that a bit of power can go a long way! [AD,S]', 'crid://www.itv.com/134883893', '134883893', '2014-11-23T08:15:00+00:00', 900, 1000000, 'f', 483, 8, 11, 'f', '6084811165287160188', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4055, 'Horrid Henry', 'Horrid Henry Loses Rude Ralph: The animated adventures of the mischievous anti-hero. Rude Ralph is missing! Could the Evil Guardian really be responsible? [AD,S]', 'crid://www.itv.com/134883881', '134883881', '2014-11-22T08:15:00+00:00', 900, 1000000, 'f', 483, 8, 11, 'f', '6084440080112784430', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4056, 'Horrid Henry', 'Horrid Henry Flicks the Bogey: The animated adventures of the mischievous anti-hero. Horrid Henry discovers that sometimes wormy little brothers can be very useful! [AD,S]', 'crid://www.itv.com/133901478', '133901478', '2014-11-16T08:15:00+00:00', 900, 1000000, 'f', 483, 8, 11, 'f', '6082213569066536534', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4057, 'Horrid Henry', 'Horrid Henry Tells the Truth: The animated adventures of the mischievous anti-hero. Henry discovers that telling the truth is not always easy, especially when it is Moody Margaret. [AD,S]', 'crid://www.itv.com/134390439', '134390439', '2014-11-15T08:15:00+00:00', 900, 1000000, 'f', 483, 8, 11, 'f', '6081842483892162774', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4058, 'Horrid Henry', 'Horrid Henry Takes the Blame: The animated adventures of the mischievous anti-hero. Why does Henry always get the blame for everything? [AD,S]', 'crid://www.itv.com/133901466', '133901466', '2014-11-09T08:15:00+00:00', 900, 1000000, 'f', 483, 8, 11, 'f', '6079615972845919945', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4059, 'Horrid Henry', 'Horrid Henry and the Perfect Parents: The animated adventures of the mischievous anti-hero. Henry discovers that sometimes you have to be careful what you wish for! [AD,S]', 'crid://www.itv.com/133901456', '133901456', '2014-11-08T08:15:00+00:00', 900, 1000000, 'f', 483, 8, 11, 'f', '6079244887671541244', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4060, 'Horrid Henry', 'Horrid Henry and the Single Sock Saga: Animated adventures. It is sock sorting time again, but this time Henry finds he has got a secret helper - if it can be called help! [AD,S]', 'crid://www.itv.com/133381683', '133381683', '2014-11-02T08:15:00+00:00', 900, 1000000, 'f', 483, 8, 11, 'f', '6077018376625295532', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4061, 'Horrid Henry', 'Horrid Henry Plays Air Guitar: The animated adventures of the mischievous anti-hero. A bad day can quickly become a good day, as Henry discovers when Doddery Donald comes to visit. [AD,S]', 'crid://www.itv.com/133381673', '133381673', '2014-11-01T08:15:00+00:00', 900, 1000000, 'f', 483, 8, 11, 'f', '6076647291450919794', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4062, 'Horrid Henry', 'Horrid Henry Hit Song: The animated adventures of the anti-hero. Henry is all set to make the best music video ever, but it''s not that easy when everyone wants to be in on the act. [AD,S]', 'crid://www.itv.com/132630143', '132630143', '2014-10-19T08:20:00+01:00', 600, 1000000, 'f', 483, 8, 11, 'f', '6071809010791978414', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4063, 'Horrid Henry', 'Horrid Henry and the Climbing Frame Clincher: It''s the Purple Hand Gang vs the Secret Club when Henry and Margaret can''t agree on who gets to go on the climbing frame! [AD,S]', 'crid://www.itv.com/32605594', '32605594', '2014-07-06T07:45:00+01:00', 900, 1000000, 'f', 483, 8, 11, 'f', '6032836048051341274', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4064, 'Horrid Henry', 'Horrid Henry Skipping Lesson: A day out with Great Aunt Greta! Henry thinks this could be his worst nightmare - but sometimes things just don''t turn out the way you think! [AD,S]', 'crid://www.itv.com/32133707', '32133707', '2014-07-05T07:45:00+01:00', 900, 1000000, 'f', 483, 8, 11, 'f', '6032464962876975443', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4065, 'Horrid Henry', 'Horrid Henry and the Time Manager: Henry is not the only one worried by Dad''s brilliant new idea to make the most of the day. [AD,S]', 'crid://www.itv.com/32133683', '32133683', '2014-06-29T07:45:00+01:00', 900, 1000000, 'f', 483, 8, 11, 'f', '6030238451830728075', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4066, 'Horrid Henry', 'Horrid Henry and the Perfect Plane: Henry finally gets a chance to fly the perfect plane - but then Stuck-Up Steve appears to spoil the fun. [AD,S]', 'crid://www.itv.com/32133657', '32133657', '2014-06-28T07:45:00+01:00', 900, 1000000, 'f', 483, 8, 11, 'f', '6029867366656353638', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4067, 'Horrid Henry', 'Horrid Henry Delivers a Message: Henry knows that teachers can be weird, but he doesn''t realise just how weird they can be until he has to deliver a message or two! [AD,S]', 'crid://www.itv.com/32133579', '32133579', '2014-06-22T07:45:00+01:00', 900, 1000000, 'f', 483, 8, 11, 'f', '6027640855610100528', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4068, 'Horrid Henry', 'Horrid Henry and the Weird Werewolf: There is a full moon and Henry knows that is when the werewolves come out to play. Peter is worried about having hairy hands. [AD,S]', 'crid://www.itv.com/32133615', '32133615', '2014-06-21T07:45:00+01:00', 900, 1000000, 'f', 483, 8, 11, 'f', '6027269770435725952', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4069, 'Horrid Henry', 'Horrid Henry and the Special Spinner: The adventures of a mischievous boy. [AD,S]', 'crid://www.itv.com/28683450', '28683450', '2014-06-15T07:45:00+01:00', 900, 1000000, 'f', 483, 8, 11, 'f', '6025043259389485783', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4070, 'Horrid Henry', 'Horrid Henry, Rockstar: Henry is going to be a rockstar, and no-one is going to stop him - except maybe Moody Margaret, who is up to her usual tricks! [AD,S]', 'crid://www.itv.com/28683436', '28683436', '2014-06-14T07:45:00+01:00', 900, 1000000, 'f', 483, 8, 11, 'f', '6024672174215110615', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4071, 'Horrid Henry', 'Horrid Henry Goes Bananas: The animated adventures of the mischievous anti-hero. It all started with a banana - or at least that is Horrid Henry''s story - and he is sticking to it! [AD,S]', 'crid://www.itv.com/46623717', '46623717', '2014-06-08T07:45:00+01:00', 900, 1000000, 'f', 483, 8, 11, 'f', '6022445663168863328', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4072, 'Horrid Henry', 'Horrid Henry and the King of Bling: The adventures of the mischievous anti-hero. All Horrid Henry wants is a mobile phone, while all Perfect Peter wants is to be the King of Bling. [AD,S]', 'crid://www.itv.com/46469867', '46469867', '2014-06-07T07:45:00+01:00', 900, 1000000, 'f', 483, 8, 11, 'f', '6022074577994488894', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4073, 'Horrid Henry', 'Horrid Henry Sells the School: Finally Horrid Henry gets the chance to do what he has always wanted to do - sell the school to the highest bidder! [AD,S]', 'crid://www.itv.com/46469865', '46469865', '2014-06-01T07:45:00+01:00', 900, 1000000, 'f', 483, 8, 11, 'f', '6019848066948242045', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4074, 'Horrid Henry', 'Horrid Henry, Money Talks: Follow the money, that is Horrid Henry''s motto, even when it takes you into enemy territory and you find yourself up against Moody Margaret! [AD,S]', 'crid://www.itv.com/38279108', '38279108', '2014-05-31T07:45:00+01:00', 900, 1000000, 'f', 483, 8, 11, 'f', '6019476981773867614', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4075, 'Horrid Henry', 'Horrid Henry Goes Gross: The animated adventures of the mischievous anti-hero. Someone is spying on the Purple Hand Gang, and Horrid Henry is determined to find out who! [AD,S]', 'crid://www.itv.com/46271814', '46271814', '2014-05-25T07:45:00+01:00', 900, 1000000, 'f', 483, 8, 11, 'f', '6017250470727620638', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4076, 'Horrid Henry', 'Horrid Henry Delivers the Milk: The animated adventures of the mischievous anti-hero. Horrid Henry finds he has got a new job, which means getting up very early indeed! [AD,S]', 'crid://www.itv.com/46131159', '46131159', '2014-05-24T07:45:00+01:00', 900, 1000000, 'f', 483, 8, 11, 'f', '6016879385553246164', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4077, 'Horrid Henry', 'Horrid Henry - Nothing but the Truth: The animated adventures of the mischievous anti-hero. Perfect Peter has had enough and he is ready to spill the beans, big time! [AD,S]', 'crid://www.itv.com/46131157', '46131157', '2014-05-18T07:45:00+01:00', 900, 1000000, 'f', 483, 8, 11, 'f', '6014652874506998737', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4078, 'Horrid Henry', 'Horrid Henry, Rocking the World: When Rude Ralph decides to become an air guitar superstar, Horrid Henry''s not going to stand in his way - but someone else will if he lets them! [AD,S]', 'crid://www.itv.com/45862321', '45862321', '2014-05-17T07:45:00+01:00', 900, 1000000, 'f', 483, 8, 11, 'f', '6014281789332624305', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4079, 'Horrid Henry', 'Horrid Henry, It''s All Your Fault: The animated adventures of the mischievous anti-hero. Horrid Henry''s convinced that it''s not his fault, even when it is! [AD,S]', 'crid://www.itv.com/45862319', '45862319', '2014-05-11T07:45:00+01:00', 900, 1000000, 'f', 483, 8, 11, 'f', '6012055278286377351', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4080, 'Horrid Henry', 'Horrid Henry, My Weird Family: The adventures of a mischievous boy. Horrid Henry spends his whole day in the fresh air and meets a stinky girl called Finola. [AD,S]', 'crid://www.itv.com/45602200', '45602200', '2014-05-10T07:45:00+01:00', 900, 1000000, 'f', 483, 8, 11, 'f', '6011684193112002910', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4081, 'Horrid Henry', 'Horrid Henry and the Code Crackers: Horrid Henry and Rude Ralph will do anything to crack the secret code - until Henry learns that sometimes the solution is right under your nose. [AD,S]', 'crid://www.itv.com/38848105', '38848105', '2014-05-04T07:45:00+01:00', 900, 1000000, 'f', 483, 8, 11, 'f', '6009457682065756276', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4082, 'Horrid Henry', 'Horrid Henry in Detention: Horrid Henry lands everyone in detention, but will he manage to get them all out again in time for that all important football match? [AD,S]', 'crid://www.itv.com/38507673', '38507673', '2014-05-03T07:45:00+01:00', 900, 1000000, 'f', 483, 8, 11, 'f', '6009086596891381837', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4083, 'Horrid Henry', 'Horrid Henry, Here to Entertain You: Horrid Henry and Perfect Peter become entertainers in a desperate attempt to gatecrash Moody Margaret''s party, but will they get away with it? [AD,S]', 'crid://www.itv.com/45623791', '45623791', '2014-04-27T07:45:00+01:00', 900, 1000000, 'f', 483, 8, 11, 'f', '6006860085845135385', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4084, 'Horrid Henry', 'Horrid Henry So Not a Girl!: Moody Margaret decides it is time the boys learnt their lesson as she teaches Sour Susan all about being a girl. [AD,S]', 'crid://www.itv.com/38875509', '38875509', '2014-04-26T07:45:00+01:00', 900, 1000000, 'f', 483, 8, 11, 'f', '6006489000670760982', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4085, 'Horrid Henry', 'Horrid Henry, Horrid Boy?: When Dad offers to do Horrid Henry''s homework for him, Horrid Henry knows there is something going on, but he cannot quite work out what it is. [AD,S]', 'crid://www.itv.com/46612146', '46612146', '2014-04-20T07:55:00+01:00', 1500, 1000000, 'f', 483, 8, 11, 'f', '6004265066604898558', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4086, 'Horrid Henry', 'Horrid Henry and the New Best Friend: Animated adventures of the anti-hero. Horrid Henry gets himself a new best friend, but it''s not long before Nice Nicola turns into Nasty Nicola. [AD,S]', 'crid://www.itv.com/45553172', '45553172', '2014-04-19T08:30:00+01:00', 1200, 1000000, 'f', 483, 8, 11, 'f', '6003903000861845710', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4087, 'Horrid Henry', 'Horrid Henry and the Boodle Poodle: When Fang is challenged by a Boodle Poodle, Horrid Henry is sure he is going to win, but Fang has got a bit of work to do to come out on top! [AD,S]', 'crid://www.itv.com/45553130', '45553130', '2014-04-13T07:55:00+01:00', 1500, 1000000, 'f', 483, 8, 11, 'f', '6001667470384277708', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4088, 'Horrid Henry', 'Horrid Henry Goes to the Theatre: Animated adventures of the mischievous anti-hero. Henry decides that going to the theatre is not all bad - especially when it is as good as this! [AD,S]', 'crid://www.itv.com/38560387', '38560387', '2014-04-12T08:30:00+01:00', 1200, 1000000, 'f', 483, 8, 11, 'f', '6001305404641223852', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4089, 'Horrid Henry', 'Horrid Henry Joins the Best Boys'' Club: Animated adventures. Where there''s a will there''s a way, and if the only way is to join the Best Boys'' Club, then never say never! [AD,S]', 'crid://www.itv.com/38254215', '38254215', '2014-04-06T07:55:00+01:00', 1500, 1000000, 'f', 483, 8, 11, 'f', '5999069874163655850', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4090, 'Horrid Henry', 'Horrid Henry''s Perfect Protest: Animated adventures. Life''s not fair! Horrid Henry knows that already, but when he discovers he can do something about it, he does something! [AD,S]', 'crid://www.itv.com/38011872', '38011872', '2014-04-05T08:30:00+01:00', 1200, 1000000, 'f', 483, 8, 11, 'f', '5998707808420603000', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4091, 'Horrid Henry', 'Horrid Henry''s Special Spa Day: The adventures of a mischievous boy. Henry''s Mother''s Day present is something really special - something that only Henry can deliver! [AD,S]', 'crid://www.itv.com/34829090', '34829090', '2014-03-30T07:55:00+01:00', 1200, 1000000, 'f', 483, 8, 11, 'f', '5996472277943033549', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4092, 'Horrid Henry', 'Horrid Henry and the Movie Star: The animated adventures of the mischievous anti-hero. Horrid Henry finds out what acting is all about when he lands a part in a movie - groovy! [AD,S]', 'crid://www.itv.com/38011870', '38011870', '2014-03-29T08:30:00+00:00', 1200, 1000000, 'f', 483, 8, 11, 'f', '5996125674082247798', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4093, 'Horrid Henry', 'Horrid Henry and the Bogey Brain Sleepover: Animated adventures of the anti-hero. Horrid Henry gets invited to the bogiest sleepover ever - and there is nothing he can do about it! [AD,S]', 'crid://www.itv.com/37421530', '37421530', '2014-03-23T07:55:00+00:00', 1500, 1000000, 'f', 483, 8, 11, 'f', '5993890143604679337', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4094, 'Horrid Henry', 'Moody Margaret, Superstar: Animated adventures of the anti-hero. Sometimes a girl''s gotta do what a girl''s gotta do, and this time Moody Margaret just has to be a superstar - fact! [AD,S]', 'crid://www.itv.com/37421528', '37421528', '2014-03-22T08:30:00+00:00', 1200, 1000000, 'f', 483, 8, 11, 'f', '5993528077861626535', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4095, 'Horrid Henry', 'Horrid Henry and the Fashion Show: One boy''s junk is another girl''s treasure, as Horrid Henry discovers when he decides to sell off all his old clothes. [AD,S]', 'crid://www.itv.com/37271651', '37271651', '2014-03-16T07:55:00+00:00', 1500, 1000000, 'f', 483, 8, 11, 'f', '5991292547384058491', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4096, 'Horrid Henry', 'Horrid Henry, Bogus Babysitter: Horrid Henry discovers that babysitting can sometimes be useful, especially when you are about to get into trouble, big time! [AD,S]', 'crid://www.itv.com/37271649', '37271649', '2014-03-15T08:30:00+00:00', 1200, 1000000, 'f', 483, 8, 11, 'f', '5990930481641005689', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4097, 'Horrid Henry', 'Horrid Henry''s Stamp Collection: The adventures of a mischievous boy. Henry''s new hobby is stamp-collecting, but he finds that it''s not as easy as it looks! [AD,S]', 'crid://www.itv.com/35587995', '35587995', '2014-03-09T07:55:00+00:00', 1500, 1000000, 'f', 483, 8, 11, 'f', '5988694951163437417', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4098, 'Horrid Henry', 'Horrid Henry and the Christening Crisis: The adventures of a mischievous boy. This time it''s really not Henry''s fault when the baby goes missing! [AD,S]', 'crid://www.itv.com/35586511', '35586511', '2014-03-08T08:30:00+00:00', 1200, 1000000, 'f', 483, 8, 11, 'f', '5988332885420384615', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4099, 'Horrid Henry', 'Horrid Henry and the Silly Siblings: The adventures of a mischievous boy. Some people never change - as Henry finds out when Fussy Uncle Francis comes to visit. [AD,S]', 'crid://www.itv.com/35316848', '35316848', '2014-03-02T07:55:00+00:00', 1500, 1000000, 'f', 483, 8, 11, 'f', '5986097354942816572', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4100, 'Horrid Henry', 'Horrid Henry, Purple Hand Gang Rules OK!: Henry is well known as Lord High Excellent Majesty of the Purple Hand Gang and loves money, comics and practical jokes. [AD,S]', 'crid://www.itv.com/35119800', '35119800', '2014-03-01T08:30:00+00:00', 1200, 1000000, 'f', 483, 8, 11, 'f', '5985735289199763770', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4101, 'Horrid Henry', 'Horrid Henry and the Scary Scooter: At last Henry has got a scooter! He thinks it is the best thing ever - but he soon finds out that not everything is as it seems! [AD,S]', 'crid://www.itv.com/35119778', '35119778', '2014-02-23T08:10:00+00:00', 1200, 1000000, 'f', 483, 8, 11, 'f', '5983503624192761888', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4102, 'Horrid Henry', 'Horrid Henry''s Unhappy Day: Henry''s search for the last Gross Class Zero comic looks as though it is going to end in tears, especially when he is up against Moody Margaret! [AD,S]', 'crid://www.itv.com/35119760', '35119760', '2014-02-23T07:50:00+00:00', 1200, 1000000, 'f', 483, 8, 11, 'f', '5983498470232006685', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4103, 'Horrid Henry', 'Horrid Henry Alone at Home: When Horrid Henry gets left behind by mistake, he thinks it is the best thing that has ever happened to him. But is it? [AD,S]', 'crid://www.itv.com/35119742', '35119742', '2014-02-22T08:50:00+00:00', 900, 1000000, 'f', 483, 8, 11, 'f', '5983142846939897836', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4104, 'Horrid Henry', 'Perfect Peter Perfect Day: The adventures of a mischievous boy. Perfect Peter paintballing? Not something you thought would ever happen, but seeing is believing! [AD,S]', 'crid://www.itv.com/35119720', '35119720', '2014-02-22T08:30:00+00:00', 1200, 1000000, 'f', 483, 8, 11, 'f', '5983137692979142634', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4105, 'Horrid Henry', 'Horrid Henry and the Day of the Dinosaur: Henry is having a bad day - a really bad day. And he is about to find out that it is not always easy seeing yourself as others see you. [AD,S]', 'crid://www.itv.com/34829112', '34829112', '2014-02-16T08:15:00+00:00', 1200, 1000000, 'f', 483, 8, 11, 'f', '5980907316462332963', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4106, 'Horrid Henry', 'Horrid Henry Goes to the Park: All Mum wants Henry to do is take a walk in the park. But Henry has other ideas - until he finds out that Ed Banger is the star attraction! [AD,S]', 'crid://www.itv.com/34829062', '34829062', '2014-02-16T07:50:00+00:00', 1500, 1000000, 'f', 483, 8, 11, 'f', '5980900874011385547', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4107, 'Horrid Henry', 'Horrid Henry and the Tickly Treats Thief: Someone is stealing all Mum''s favourite snacks, and Henry is getting the blame. Time for him to turn detective and find the real thief! [AD,S]', 'crid://www.itv.com/34829044', '34829044', '2014-02-15T08:50:00+00:00', 900, 1000000, 'f', 483, 8, 11, 'f', '5980545250719276680', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4108, 'Horrid Henry', 'Horrid Henry and the Terrible Teacher: Miss Battle-Axe decides to take a holiday and Henry reckons it is time to celebrate - but sometimes you have to be careful what you wish for! [AD,S]', 'crid://www.itv.com/34829012', '34829012', '2014-02-15T08:30:00+00:00', 1200, 1000000, 'f', 483, 8, 11, 'f', '5980540096758521476', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4109, 'Horrid Henry', 'Horrid Henry Grown Up: It''s not always easy being a grown up - as Henry finds out when he ends up being grown up for a day! [AD,S]', 'crid://www.itv.com/32808881', '32808881', '2014-02-09T08:10:00+00:00', 1200, 1000000, 'f', 483, 8, 11, 'f', '5978308431751518981', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4110, 'Horrid Henry', 'Aliens Ate My Homework: Henry is master of excuses when it comes to not giving in your homework. But this time it looks as though he may have gone too far! [AD,S]', 'crid://www.itv.com/32133583', '32133583', '2014-02-09T07:50:00+00:00', 1200, 1000000, 'f', 483, 8, 11, 'f', '5978303277790763778', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4111, 'Horrid Henry', 'Horrid Henry''s Horrible Homework: When Henry discovers an unexpected way to not do his homework, Miss Battle-Axe decides to take him on - with unexpected results! [AD,S]', 'crid://www.itv.com/32133581', '32133581', '2014-02-08T08:50:00+00:00', 900, 1000000, 'f', 483, 8, 11, 'f', '5977947654498654933', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4112, 'Horrid Henry', 'Horrid Henry and the Booger Bogey: The adventures of a mischievous boy. Henry discovers an enormous bogey. Soggy Sid isn''t very pleased about it. [AD,S]', 'crid://www.itv.com/32133561', '32133561', '2014-02-08T08:30:00+00:00', 1200, 1000000, 'f', 483, 8, 11, 'f', '5977942500537899730', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4113, 'Horrid Henry', 'Horrid Henry and the Winning Ticket: Henry''s feeling lucky, lucky, lucky, but will it be a case of winner takes all? [AD,S]', 'crid://www.itv.com/32133559', '32133559', '2014-02-02T08:10:00+00:00', 600, 1000000, 'f', 483, 8, 11, 'f', '5975710835530897974', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4114, 'Horrid Henry', 'Horrid Henry and the Wedding: Henry decides to make the most of his role as page boy and help Prissy Polly and Pimply Paul enjoy the best day of their lives. [AD,S]', 'crid://www.itv.com/7412473', '7412473', '2014-01-01T07:05:00+00:00', 900, 1000000, 'f', 484, 8, 11, 'f', '5963819359578460556', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4115, 'Horrid Henry', 'Horrid Henry Tidies Up: Although he''s never been very good at tidying up, Henry finds that there are all sorts of ways to get things done, with a bit of planning! [AD,S]', 'crid://www.itv.com/7394209', '7394209', '2014-01-01T06:50:00+00:00', 900, 1000000, 'f', 484, 8, 11, 'f', '5963815494107894140', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4116, 'Horrid Henry', 'Horrid Henry and the Cracking Christmas: Henry''s all set to win the Frosty Freeze competition with his snowman - then finds there is more to the competition than he bargained for! [AD,S]', 'crid://www.itv.com/19267748', '19267748', '2013-12-26T07:05:00+00:00', 900, 1000000, 'f', 484, 8, 11, 'f', '5961592848532211235', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4117, 'Horrid Henry', 'Horrid Henry''s Christmas: It is Christmas present list time and a Boom Boom Basher is top of Henry''s list. But he has not reckoned on Stuck Up Steve. [AD,S]', 'crid://www.itv.com/6168570', '6168570', '2013-12-25T07:05:00+00:00', 900, 1000000, 'f', 484, 8, 11, 'f', '5961221763357836801', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4118, 'Horrid Henry', 'Horrid Henry, Here to Entertain You: Horrid Henry and Perfect Peter become entertainers in a desperate attempt to gatecrash Moody Margaret''s party, but will they get away with it? [AD,S]', 'crid://www.itv.com/15681163', '15681163', '2012-12-01T08:15:00+00:00', 900, 1000000, 'f', 485, 8, 11, 'f', '5816887669388846142', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4119, 'Horrid Henry', 'Horrid Henry Gets Spots: Lies and deception are catching and can be fatal - Henry and Ralph have got the disease really badly! [AD,S]', 'crid://www.itv.com/19267726', '19267726', '2011-12-31T09:30:00+00:00', 900, 1000000, 'f', 489, 8, 11, 'f', '5692222378151856006', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4120, 'Horrid Henry', 'Horrid Henry Changes a Nappy: The adventures of a mischievous boy. Henry has to look after Vomiting Vera. [AD,S]', 'crid://www.itv.com/19543122', '19543122', '2011-12-11T09:30:00+00:00', 600, 1000000, 'f', 489, 8, 11, 'f', '5684800674664395271', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4121, 'Horrid Henry', 'Horrid Henry Goes to the Movies: More of the adventures of the mischievous and obnoxious Henry, who doesn''t mean to be horrid - he just can''t help it! [AD,S]', 'crid://www.itv.com/21091284', '21091284', '2011-12-04T09:30:00+00:00', 900, 1000000, 'f', 489, 8, 11, 'f', '5682203078443774453', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4122, 'Horrid Henry', 'Horrid Henry and the Killer Boy Rats: More adventures of the mischievous anti-hero. When Ed Banger, the lead singer of The Killer Boy Rats, departs, Henry decides to bring him back. [AD,S]', 'crid://www.itv.com/21424996', '21424996', '2011-11-27T09:25:00+00:00', 1200, 1000000, 'f', 489, 8, 11, 'f', '5679604193732964850', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4123, 'Horrid Henry', 'Horrid Henry and the Antique Rogue Show: The antics of the mischievous and obnoxious Henry. Henry discovers that one person''s rubbish is another person''s treasure. [AD,S]', 'crid://www.itv.com/21091248', '21091248', '2011-11-20T09:45:00+00:00', 900, 1000000, 'f', 489, 8, 11, 'f', '5677011751473099218', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4124, 'Horrid Henry', 'Horrid Henry and the Zombie Hamster: Henry''s hamster Fang has disappeared and no-one knows if he''s coming back! [AD,S]', 'crid://www.itv.com/19543182', '19543182', '2011-11-20T09:30:00+00:00', 900, 1000000, 'f', 489, 8, 11, 'f', '5677007886002532817', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4125, 'Horrid Henry', 'Horrid Henry and the Birthday Present: Mum''s birthday is coming up, so rich Aunt Ruby takes Henry, Peter and Stuck-Up Steve shopping - but they''re not the only ones looking for a bargain! [AD,S]', 'crid://www.itv.com/19543169', '19543169', '2011-11-06T09:35:00+00:00', 900, 1000000, 'f', 489, 8, 11, 'f', '5671813982051480012', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4126, 'Horrid Henry', 'Horrid Henry and the Gross Question: The race is on for the answer to the Gross Question - but no one suspects that the answer might lie in the most unexpected place! [AD,S]', 'crid://www.itv.com/19543156', '19543156', '2011-11-06T09:25:00+00:00', 600, 1000000, 'f', 489, 8, 11, 'f', '5671811405071102344', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4127, 'Horrid Henry', 'Horrid Henry Says Goodbye: When Dad announces that his new job means that they are all going to have to move house, Henry decides on a counter campaign. [AD,S]', 'crid://www.itv.com/19543144', '19543144', '2011-10-30T09:30:00+00:00', 900, 1000000, 'f', 489, 8, 11, 'f', '5669215097340656839', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4128, 'Horrid Henry', 'Horrid Henry Gone Fishing: CITV. Henry and Dad find themselves on a fishing trip together, which is better than being on a shopping trip - or so they think! [AD,S]', 'crid://www.itv.com/16343605', '16343605', '2011-04-30T07:55:00+01:00', 900, 1000000, 'f', 489, 8, 11, 'f', '5601251105352029391', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4129, 'Horrid Henry', 'Horrid Henry''s Smelly Stuff: CITV. When Henry accidentally breaks Mum''s perfume bottle he''s got to replace it, and fast. But how is he going to manage it without Mum knowing? [AD,S]', 'crid://www.itv.com/16343591', '16343591', '2011-04-23T07:55:00+01:00', 900, 1000000, 'f', 489, 8, 11, 'f', '5598653509131408260', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4130, 'Horrid Henry', 'Perfect Peter Popstar: CITV. Peter is a sure bet to win the talent competition with Henry as his manager - but will an ambitious Moody Margaret ruin his chances? [AD,S]', 'crid://www.itv.com/16343577', '16343577', '2011-04-16T07:55:00+01:00', 900, 1000000, 'f', 489, 8, 11, 'f', '5596055912910787054', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4131, 'Horrid Henry', 'Horrid Henry and the Best Boys Club Sleepover: CITV. When Peter has a sleepover, Henry decides if you can''t beat them, then you just have to join them. [AD,S]', 'crid://www.itv.com/14580927', '14580927', '2011-04-09T07:55:00+01:00', 900, 1000000, 'f', 489, 8, 11, 'f', '5593458316690165945', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4132, 'Horrid Henry', 'Horrid Henry''s Favourite Day: It''s Be Nice to Your Brother Day and Henry''s got the chance to win a Gross DVD if he can be nice to Peter all day. How hard can that be? [AD,S]', 'crid://www.itv.com/14580891', '14580891', '2011-04-02T07:55:00+01:00', 900, 1000000, 'f', 489, 8, 11, 'f', '5590860720469544799', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4133, 'Horrid Henry', 'Horrid Henry Takes a Shortcut: If in doubt take a shortcut! But Henry and Ralph discover that it won''t always get you there quicker! [AD,S]', 'crid://www.itv.com/19267810', '19267810', '2011-03-05T07:55:00+00:00', 900, 1000000, 'f', 489, 8, 11, 'f', '5580501259351591273', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4134, 'Horrid Henry', 'Horrid Henry Ace Reporter: Henry is horrid - his family, teachers, neighbours and relatives all say so. Margaret becomes the Magazine Queen, so Henry and William find a scoop. [AD,S]', 'crid://www.itv.com/21091236', '21091236', '2011-01-23T08:20:00+00:00', 600, 1000000, 'f', 491, 8, 11, 'f', '5565293209653182865', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4135, 'Horrid Henry', 'Horrid Henry''s Haircut: Henry gets a haircut - at least that''s Mum''s plan. [AD,S]', 'crid://www.itv.com/19671576', '19671576', '2011-01-22T08:20:00+00:00', 600, 1000000, 'f', 491, 8, 11, 'f', '5564922124478808428', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4136, 'Horrid Henry', 'Horrid Henry Takes the Biscuit: Mum''s cookies are a big hit with everyone - including Henry. Now he just has to figure out how to keep the supplies coming - but Peter wants in on the act too! [AD,S]', 'crid://www.itv.com/19671452', '19671452', '2011-01-16T08:30:00+00:00', 900, 1000000, 'f', 491, 8, 11, 'f', '5562698190412939612', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4137, 'Horrid Henry', 'Horrid Henry on Trial: When Peter is rewarded for something that Henry has done, Henry decides to make sure that justice is done. [AD,S]', 'crid://www.itv.com/19122703', '19122703', '2011-01-16T08:20:00+00:00', 600, 1000000, 'f', 491, 8, 11, 'f', '5562695613432561737', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4138, 'Horrid Henry', 'Horrid Henry, When I''m King: Henry''s always imagining what life would be like if he became King - and this is his chance to find out! [AD,S]', 'crid://www.itv.com/19468422', '19468422', '2011-01-15T08:20:00+00:00', 600, 1000000, 'f', 491, 8, 11, 'f', '5562324528258187299', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4139, 'Horrid Henry', 'Horrid Henry''s Summer Camp: Henry and Peter are off to summer camp - but it''s not going to be a holiday by any means! [AD,S]', 'crid://www.itv.com/19467119', '19467119', '2011-01-09T08:20:00+00:00', 900, 1000000, 'f', 491, 8, 11, 'f', '5560098017211940611', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4140, 'Horrid Henry', 'Horrid Henry and the Green Machine: The family decide to go green - but not if Henry has anything to do with it! [AD,S]', 'crid://www.itv.com/19122683', '19122683', '2011-01-08T08:20:00+00:00', 900, 1000000, 'f', 491, 8, 11, 'f', '5559726932037566171', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4141, 'Horrid Henry', 'Horrid Henry and the Go Kart: The antics of the mischievous and obnoxious Henry. Dad and Henry are building a go kart, and it is going to be the biggest and the best you have ever seen! [AD,S]', 'crid://www.itv.com/21091272', '21091272', '2011-01-02T08:20:00+00:00', 900, 1000000, 'f', 491, 8, 11, 'f', '5557500420991319720', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4142, 'Horrid Henry', 'Horrid Henry, Untouchable: CITV. When Henry sees Miss B and Soggy Sid in a compromising situation he realises he could turn it to his advantage - or can he? [AD,S]', 'crid://www.itv.com/19122665', '19122665', '2011-01-01T07:25:00+00:00', 900, 1000000, 'f', 491, 8, 11, 'f', '5557115162424868243', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4143, 'Horrid Henry', 'Horrid Henry Gets Married: In which Horrid Henry gets married - or does he? [AD,S]', 'crid://www.itv.com/19122641', '19122641', '2010-12-25T07:45:00+00:00', 1200, 1000000, 'f', 491, 8, 11, 'f', '5554522720165002609', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4144, 'Horrid Henry', 'Horrid Henry''s Fun Run: CITV. Horrid Henry exercising - for fun?! Now there''s a thought! [AD,S]', 'crid://www.itv.com/18088932', '18088932', '2010-12-18T08:15:00+00:00', 600, 1000000, 'f', 491, 8, 11, 'f', '5551932854885514628', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4145, 'Horrid Henry', 'Horrid Henry and the Walking Stick Gang: Henry discovers that old age is no excuse for good behaviour! [AD,S]', 'crid://www.itv.com/19122619', '19122619', '2010-12-18T08:05:00+00:00', 600, 1000000, 'f', 491, 8, 11, 'f', '5551930277905137027', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4146, 'Horrid Henry', 'Perfect Peter''s Revenge: Henry''s been horrid for the very last time, as Perfect Peter decides to plot his revenge with the help of the Best Boys Club. [AD,S]', 'crid://www.itv.com/7543591', '7543591', '2010-12-11T08:05:00+00:00', 1200, 1000000, 'f', 491, 8, 11, 'f', '5549332681684515549', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4147, 'Horrid Henry', 'Happy Birthday Peter: Henry and Ralph help out with the magic show at Peter''s birthday party, with disastrous consequences! [AD,S]', 'crid://www.itv.com/7543586', '7543586', '2010-12-04T08:05:00+00:00', 1200, 1000000, 'f', 491, 8, 11, 'f', '5546735085463894736', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4148, 'Horrid Henry', 'Horrid Henry''s Holiday: CITV. Henry''s idea of a real holiday isn''t the same as Mum and Dad''s, until disaster strikes. [AD,S]', 'crid://www.itv.com/7543581', '7543581', '2010-11-27T08:05:00+00:00', 1200, 1000000, 'f', 491, 8, 11, 'f', '5544137489243273921', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4149, 'Horrid Henry', 'Horrid Henry''s School Trip: CITV. Henry looks forward to a school trip to the ice cream factory, and is disappointed when the class goes to a museum instead - but not for long! [AD,S]', 'crid://www.itv.com/7543576', '7543576', '2010-11-20T08:05:00+00:00', 1200, 1000000, 'f', 491, 8, 11, 'f', '5541539893022653114', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4150, 'Horrid Henry', 'Adventures of a mischievous boy. [S]', 'crid://www.itv.com/6150993', '6150993', '2010-09-05T08:15:00+01:00', 900, 1000000, 'f', 491, 8, 11, 'f', '5513309072986064981', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4151, 'Horrid Henry', 'Horrid Henry Cooks a Meal: When Prissy Polly comes to babysit, Henry finds himself in the kitchen - but will his cooking be good enough to eat? [S]', 'crid://www.itv.com/18088956', '18088956', '2009-12-13T09:50:00+00:00', 900, 1000000, 'f', 494, 8, 11, 'f', '5414655821680554846', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4152, 'Horrid Henry', 'Horrid Henry, Happy Family: Who would have thought that Mum, Dad, Peter and Henry could ever be the Happiest Family in Britain? [S]', 'crid://www.itv.com/18088904', '18088904', '2009-12-12T09:25:00+00:00', 900, 1000000, 'f', 494, 8, 11, 'f', '5414278294055230975', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4153, 'Horrid Henry', 'Horrid Henry''s House Party: CITV. Great Aunt Greta comes to look after the boys, so naturally Henry takes advantage of the situation! [S]', 'crid://www.itv.com/18088878', '18088878', '2009-12-06T09:50:00+00:00', 900, 1000000, 'f', 494, 8, 11, 'f', '5412058225459934030', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4154, 'Horrid Henry', 'Horrid Henry on TV: CITV. When the makers of Kidswap come to town, Henry thinks the idea of swapping parents is a great one - but he soon learns how wrong he is! [S]', 'crid://www.itv.com/18088856', '18088856', '2009-12-05T09:40:00+00:00', 900, 1000000, 'f', 494, 8, 11, 'f', '5411684563305175165', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4155, 'Horrid Henry', 'Horrid Henry and the School Uniform: When Henry learns that a school uniform is being introduced to his school, he determines not to let it happen - but how is he going to stop it? [S]', 'crid://www.itv.com/19662572', '19662572', '2009-12-05T09:25:00+00:00', 900, 1000000, 'f', 494, 8, 11, 'f', '5411680697834608764', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4156, 'Horrid Henry', 'Horrid Henry and the Ice Cream Dream: CITV. Henry cannot imagine a world without ice cream, so he tries to make sure that it will never happen! [S]', 'crid://www.itv.com/17992190', '17992190', '2009-11-28T09:25:00+00:00', 900, 1000000, 'f', 494, 8, 11, 'f', '5409083101613986710', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4157, 'Horrid Henry', 'Horrid Henry''s Heist: CITV. When Henry accidentally submits a project at school that could get him grounded for life, the race is on to retrieve it before any real damage is done. [S]', 'crid://www.itv.com/17992162', '17992162', '2009-11-21T09:25:00+00:00', 900, 1000000, 'f', 494, 8, 11, 'f', '5406485505393364698', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4158, 'Horrid Henry', 'Horrid Henry''s Petsitting Service: Henry''s new service to the community - petsitting - comes unstuck when he gets over ambitious. [S]', 'crid://www.itv.com/17992136', '17992136', '2009-11-14T09:25:00+00:00', 900, 1000000, 'f', 494, 8, 11, 'f', '5403887909172742558', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4159, 'Horrid Henry', 'Perfect Peter Pumps Up: When Bossy Bill turns up to make Peter''s life a misery, Henry decides to step in and play big brother for real. [S]', 'crid://www.itv.com/17992108', '17992108', '2009-11-07T09:25:00+00:00', 900, 1000000, 'f', 494, 8, 11, 'f', '5401290312952120453', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4160, 'Horrid Henry', 'Horrid Henry and the Alien Invasion: CITV. When Moody Margaret starts being nice to Henry, there can only be one explanation - she''s been taken over by aliens! [S].', 'crid://www.itv.com/16343563', '16343563', '2009-10-03T09:25:00+01:00', 900, 1000000, 'f', 494, 8, 11, 'f', '5388271408084517662', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4161, 'Horrid Henry', 'Horrid Henry and the Secret Surprise: CITV. Mum, Dad and Peter are being very secretive - could they have something very special planned? Henry certainly thinks so! [S].', 'crid://www.itv.com/15590146', '15590146', '2009-09-26T09:25:00+01:00', 900, 1000000, 'f', 494, 8, 11, 'f', '5385673811863895629', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4162, 'Horrid Henry', 'Horrid Henry and the Big Dig: CITV. Mum decides to extend her veg patch which means requisitioning Henry''s fort - how is Henry going to persuade her to give up her plans? [S].', 'crid://www.itv.com/15542024', '15542024', '2009-09-19T09:25:00+01:00', 900, 1000000, 'f', 494, 8, 11, 'f', '5383076215643273557', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4163, 'Horrid Henry', 'Horrid Henry and the Gross DVD: When Ralph lends Henry the yuckiest DVD ever Henry wants to watch it right away, but try as he might he just can''t manage it! [S].', 'crid://www.itv.com/15542004', '15542004', '2009-09-12T09:25:00+01:00', 900, 1000000, 'f', 494, 8, 11, 'f', '5380478619422651530', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4164, 'Horrid Henry', 'Horrid Henry and the Name Game: Henry and Peter adopt a cat - or rather, it adopts them - but they just can''t decide what to call it! [S].', 'crid://www.itv.com/15541982', '15541982', '2009-09-05T09:25:00+01:00', 900, 1000000, 'f', 494, 8, 11, 'f', '5377881023202029541', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4165, 'Horrid Henry', 'CITV. Dad encourages Henry to take a Saturday job, but he recruits someone to do it for him. Meanwhile Peter is proving that the early bird catches the worm! [S]', 'crid://www.itv.com/14580963', '14580963', '2009-04-12T09:40:00+01:00', 900, 1000000, 'f', 494, 8, 11, 'f', '5323706453213907100', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4166, 'Horrid Henry', 'CITV. Peter and Henry play at being gardeners, but when nature starts to take over the results are disastrous! [S]', 'crid://www.itv.com/14645230', '14645230', '2009-04-04T09:25:00+01:00', 900, 1000000, 'f', 494, 8, 11, 'f', '5320733906348345779', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4167, 'Horrid Henry', 'Perfect Peter''s perfect pen pal Super Sammy comes to stay, but is he really Super, or just downright Slimy? [S]', 'crid://www.itv.com/14784594', '14784594', '2009-03-29T09:40:00+01:00', 900, 1000000, 'f', 494, 8, 11, 'f', '5318526722654931377', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4168, 'Horrid Henry', 'CITV. Perfect Peter''s perfect pen pal, Super Sammy, comes to stay. But is he really Super - or just downright Slimy? [S]', 'crid://www.itv.com/14645206', '14645206', '2009-03-28T09:25:00+00:00', 900, 1000000, 'f', 494, 8, 11, 'f', '5318167233892256175', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4169, 'Horrid Henry', 'CITV. Steve''s birthday tea just happens to clash with a crucial Ashton Athletic match - how will Henry manage to be at both of these unmissable events? [S]', 'crid://www.itv.com/14580945', '14580945', '2009-03-22T09:40:00+00:00', 900, 1000000, 'f', 494, 8, 11, 'f', '5315944588316576172', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4170, 'Horrid Henry', 'CITV. When Peter arranges a sleepover, Henry decides that if you can''t beat them then you just have to join them. [S]', 'crid://www.itv.com/14784656', '14784656', '2009-03-21T09:25:00+00:00', 900, 1000000, 'f', 494, 8, 11, 'f', '5315569637671635371', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4171, 'Horrid Henry', 'CITV. Henry''s always wanted to play the lead in the school play - now''s his chance. But this time he doesn''t want to be the lead, for good reasons. [S]', 'crid://www.itv.com/14580909', '14580909', '2009-03-15T09:40:00+00:00', 900, 1000000, 'f', 494, 8, 11, 'f', '5313346992095955369', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4172, 'Horrid Henry', 'CITV. There''s not much sleep in store for Henry when New Nick invites him over for a sleepover. [AD,S]', 'crid://www.itv.com/7543570', '7543570', '2008-12-21T05:35:00+00:00', 600, 1000000, 'f', 497, 8, 11, 'f', '5282112701429271687', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4173, 'Horrid Henry', 'CITV. Henry finds himself trapped in the cellar with Peter - surely things couldn''t get any worse - or could they? [AD,S]', 'crid://www.itv.com/7521554', '7521554', '2008-12-20T05:35:00+00:00', 600, 1000000, 'f', 497, 8, 11, 'f', '5281741616254897122', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4174, 'Horrid Henry', 'CITV. Henry will stop at nothing to win a competition, even it means he has to read a book or ten! [AD,S]', 'crid://www.itv.com/7459125', '7459125', '2008-11-15T11:25:00+00:00', 900, 1000000, 'f', 497, 8, 11, 'f', '5268843829465009110', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4175, 'Horrid Henry', 'CITV. Henry would rather do karate than dance class. But Mum cannot persuaded otherwise so Henry must show that karate can be just as beautiful as dancing. [AD,S]', 'crid://www.itv.com/7431420', '7431420', '2008-11-02T10:10:00+00:00', 900, 1000000, 'f', 497, 8, 11, 'f', '5264000394845300780', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4176, 'Horrid Henry', 'CITV. Fishy fun at the aquarium as Dad takes Henry and Peter for a day out. But Henry''s after something else, and the shark''s tale turns into a nightmare! [AD,S]', 'crid://www.itv.com/7374360', '7374360', '2008-09-21T09:25:00+01:00', 900, 1000000, 'f', 497, 8, 11, 'f', '5248372297345344505', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4177, 'Horrid Henry', 'CITV. Henry''s not at all pleased with his homework assignment - then he realises that it gives him a perfect chance to tell it like it is, and he gets stuck in! [AD,S]', 'crid://www.itv.com/7338726', '7338726', '2008-09-20T09:40:00+01:00', 900, 1000000, 'f', 497, 8, 11, 'f', '5248005077641530359', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4178, 'Horrid Henry', 'CITV. Henry thinks it a good idea to take Fang, his hamster, to school for show and tell - but Henry finds out that the master isn''t always in control! [AD,S]', 'crid://www.itv.com/7084608', '7084608', '2008-09-14T09:25:00+01:00', 900, 1000000, 'f', 497, 8, 11, 'f', '5245774701124717030', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4462, 'Big Babies', '13/13. Baby Got Talent: Live action cartoon comedy. Carole takes the babies to rich American Calais Savoy''s house and Calais boasts that she is going to be on Britain''s Quite Talented. [S]', 'crid://fp.bbc.co.uk/SQ2D7', 'SQ2D7', '2010-03-31T16:45:00+01:00', 900, 1000000, 'f', 529, 6, 11, 'f', '5454824503081171253', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4463, 'Big Babies', '12/13. Sleepover: Live action cartoon comedy. When Rocco sleeps over, Brooks dreams of a wonderful world in which everyone thinks he''s fantastic. Rocco gatecrashes the dream. [S]', 'crid://fp.bbc.co.uk/SQ2D9', 'SQ2D9', '2010-03-31T07:45:00+01:00', 900, 1000000, 'f', 529, 6, 11, 'f', '5454685346140780877', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4464, 'Big Babies', '11/13. Beside the Seaside: Live action cartoon comedy. Sharks, sea and sand - Rocco and Brooks are very excited about going to the beach. Budge would like to go too and hitches a ride. [S]', 'crid://fp.bbc.co.uk/SQ2D5', 'SQ2D5', '2010-03-30T16:45:00+01:00', 900, 1000000, 'f', 529, 6, 11, 'f', '5454453417906796811', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4465, 'Big Babies', '10/13. The Race: Live action cartoon comedy. The Gonch challenges Brooks and Rocco to a race in the park. Budge hitches a ride in the babies'' buggy as he wants the ice cream trophy. [S]', 'crid://fp.bbc.co.uk/SQ2D2', 'SQ2D2', '2010-03-30T07:45:00+01:00', 900, 1000000, 'f', 529, 6, 11, 'f', '5454314260966406434', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4466, 'Big Babies', 'DinoDinoDinotown: Live action cartoon comedy. Carole takes Rocco and Brooks to DinoDinoDinotown where they travel back in time to see the dinosaurs. [S]', 'crid://fp.bbc.co.uk/SQ2D8', 'SQ2D8', '2010-03-29T16:45:00+01:00', 900, 1000000, 'f', 529, 6, 11, 'f', '5454082332732422370', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4467, 'Big Babies', '8/13. Arts and Crafts: Live action cartoon comedy. Carole takes Rocco and Brooks to the art gallery to see Biscuit Henge. Where there are biscuits, there must be Budge - and trouble. [S]', 'crid://fp.bbc.co.uk/SQ2D3', 'SQ2D3', '2010-03-25T17:45:00+00:00', 900, 1000000, 'f', 529, 6, 11, 'f', '5452628915799455747', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4468, 'Big Babies', 'Rainy Day: Live action cartoon comedy. The babies watch a scary film on the telly. Budge watches it too and is inspired to build an assistant to help him gather more biscuits. [S]', 'crid://fp.bbc.co.uk/SQ2D4', 'SQ2D4', '2010-03-24T17:45:00+00:00', 900, 1000000, 'f', 529, 6, 11, 'f', '5452257830625081304', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4469, 'Big Babies', 'Birthday: Live action cartoon comedy. It is Brooks'' birthday and he is having a party. But when Budge decides to help Nan with the cake, things don''t go quite according to plan. [S]', 'crid://fp.bbc.co.uk/SQ2D0', 'SQ2D0', '2010-03-23T17:45:00+00:00', 900, 1000000, 'f', 529, 6, 11, 'f', '5451886745450706862', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4470, 'Big Babies', 'Pet Shop: Live action cartoon comedy. Carole takes the babies to the pet shop. Rocco wants a hamster and Brooks wants a talking dog. But the toys on the toy shelf don''t want a pet. [S]', 'crid://fp.bbc.co.uk/SQ2CY', 'SQ2CY', '2010-03-22T17:45:00+00:00', 900, 1000000, 'f', 529, 6, 11, 'f', '5451515660276332421', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4471, 'Big Babies', 'Market: Live action cartoon comedy. Rocco and Brooks go to the market and bump into the Gonch, who teaches them about bargains. Budge wants to go too, but he misses the car. [S]', 'crid://fp.bbc.co.uk/SQ2CX', 'SQ2CX', '2010-03-18T17:45:00+00:00', 900, 1000000, 'f', 529, 6, 11, 'f', '5450031319578834731', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4472, 'Big Babies', 'Visiting Nan: Live action cartoon comedy. The babies visit Brooks'' nan. Brooks doesn''t want to go because he hates old stuff. Budge tags along, but for his own selfish reasons. [S]', 'crid://fp.bbc.co.uk/SQ2D6', 'SQ2D6', '2010-03-17T17:45:00+00:00', 900, 1000000, 'f', 529, 6, 11, 'f', '5449660234404460323', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4473, 'Big Babies', 'Pirates: Live action cartoon comedy. Rocco and Brooks search for chocolate pirate treasure in the park while Budge also seeks out the secret stash of chocolate coins. [S]', 'crid://fp.bbc.co.uk/SQ2CZ', 'SQ2CZ', '2010-03-16T17:45:00+00:00', 900, 1000000, 'f', 529, 6, 11, 'f', '5449289149230085914', 892633, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4474, 'Big Babies', 'Ducks: Live action cartoon comedy. Mum takes Rocco and Brooks to feed the ducks in the park. Home alone, Budge seizes his chance to raid the biscuit tin, causing chaos. [S]', 'crid://fp.bbc.co.uk/SQ2D1', 'SQ2D1', '2010-03-15T17:45:00+00:00', 900, 1000000, 'f', 529, 6, 11, 'f', '5448918064055711507', 558329, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4558, 'Orphan Black', '10/10. By Means Which Have Never Yet Been Tried: The war with Dyad is all but lost when Rachel''s plan forces a broken Sarah to... Contains some violence and some upsetting scenes. Also in HD. [S]', 'crid://fp.bbc.co.uk/4J63J4', '4J63J4', '2014-07-02T22:00:00+01:00', 2700, 1000000, 'f', 538, 4, 1, 'f', '6031572038915774075', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4559, 'Orphan Black', '9/10. Things Which Have Never Yet Been Done: Cosima takes a turn for the worst, forcing Sarah to take desperate action. Contains some sexual content. Also in HD. [S]', 'crid://fp.bbc.co.uk/4J63J3', '4J63J3', '2014-06-25T23:00:00+01:00', 2700, 1000000, 'f', 538, 4, 1, 'f', '6028989904577418238', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4560, 'Orphan Black', 'NEW. 8/10. Variable and Full of Peturbation: A new player in the clone conspiracy turns up at Felix''s door, sending him into a crisis. Contains some upsetting scenes. Also in HD. [S]', 'crid://fp.bbc.co.uk/4J63J2', '4J63J2', '2014-06-18T22:00:00+01:00', 2700, 1000000, 'f', 538, 4, 1, 'f', '6026376846474531154', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4561, 'Orphan Black', '7/10. Knowledge of Causes, and Secret Motion of Things: A rehab confidante betrays Alison and threatens to expose the truth about Aynsley''s death. Contains some upsetting scenes. Also in HD. [S]', 'crid://fp.bbc.co.uk/4J63J1', '4J63J1', '2014-06-11T22:00:00+01:00', 2700, 1000000, 'f', 538, 4, 1, 'f', '6023779250253909691', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4562, 'Orphan Black', '6/10. To Hound Nature in Her Wandering: Sci-fi drama series. Sarah follows clues that she hopes will lead her to the origins of the experiment. Contains some violence. Also in HD. [S]', 'crid://fp.bbc.co.uk/4J63J0', '4J63J0', '2014-06-04T22:00:00+01:00', 2700, 1000000, 'f', 538, 4, 1, 'f', '6021181654033288224', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4563, 'Orphan Black', '5/10. Ipsa Scientia Potestas Est: Sci-fi drama series. Rachel goes on the warpath and lashes out at Sarah''s loved ones. Contains some sexual content. Also in HD. [S]', 'crid://fp.bbc.co.uk/4J63IZ', '4J63IZ', '2014-05-28T22:00:00+01:00', 2700, 1000000, 'f', 538, 4, 1, 'f', '6018584057812666729', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4564, 'Orphan Black', '4/10. Governed as It Were by Chance: Sci-fi drama series. With Cosima''s help, Sarah digs into the origins of the clone experiment. Contains some violence. Also in HD. [S]', 'crid://fp.bbc.co.uk/4J63IY', '4J63IY', '2014-05-21T22:00:00+01:00', 2700, 1000000, 'f', 538, 4, 1, 'f', '6015986461592045313', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4565, 'Orphan Black', '3/10. Distempers of Learning: After hitting the road with Felix, Sarah is forced to turn to an old flame from her past. Contains some violence. Also in HD. [S]', 'crid://fp.bbc.co.uk/4J63IX', '4J63IX', '2014-05-14T22:00:00+01:00', 2700, 1000000, 'f', 538, 4, 1, 'f', '6013388865371423840', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4566, 'Orphan Black', '2/10. Governed by Sound Reason and True Religion: Sarah enlists Art''s help to find Kira and is shocked when learning where the trail leads. Contains prolonged violence. Also in HD. [S]', 'crid://fp.bbc.co.uk/4J63IW', '4J63IW', '2014-05-07T22:00:00+01:00', 2400, 1000000, 'f', 538, 4, 1, 'f', '6010791269150802373', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4567, 'Orphan Black', 'New series. 1/10. Nature under Constraint and Vexed: Sarah is pursued by deadly adversaries and desperate to find her daughter Kira. Contains some violence. Also in HD. [S]', 'crid://fp.bbc.co.uk/4J63IV', '4J63IV', '2014-04-30T22:00:00+01:00', 2700, 1000000, 'f', 538, 4, 1, 'f', '6008193672930181265', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4568, 'Orphan Black', '10/10. Endless Forms Most Beautiful: Art''s intervention to get answers ruins Sarah''s chance to bring Helena back to sanity. Contains some violence and some upsetting scenes. [S]', 'crid://fp.bbc.co.uk/4J63DU', '4J63DU', '2013-11-01T21:45:00+00:00', 2700, 1000000, 'f', 539, 4, 1, 'f', '5941409937954501991', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4569, 'Orphan Black', '9/10. Unconscious Selection: Sci-fi drama series. Dr Leekie gives Sarah pause for thought about seeking revenge, and Cosima realises the truth about Delphine. Contains some upsetting scenes. [S]', 'crid://fp.bbc.co.uk/4J63DT', '4J63DT', '2013-11-01T21:00:00+00:00', 2700, 1000000, 'f', 539, 4, 1, 'f', '5941398341542802790', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4570, 'Orphan Black', '8/10. Entangled Bank: The Orphans are pitted against each other as Sarah plans what to do next. Contains some upsetting scenes, some upsetting scenes and moderate violence. [S]', 'crid://fp.bbc.co.uk/4J63DS', '4J63DS', '2013-10-25T21:45:00+01:00', 2700, 1000000, 'f', 539, 4, 1, 'f', '5938796879851615168', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4571, 'Orphan Black', '7/10. Parts Developed in an Unusual Manner: Paul goes missing, which compels Sarah to tackle the conspiracy herself. Contains some violence and some upsetting scenes. [S]', 'crid://fp.bbc.co.uk/4J63DR', '4J63DR', '2013-10-25T21:00:00+01:00', 2700, 1000000, 'f', 539, 4, 1, 'f', '5938785283439915594', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4572, 'Orphan Black', '6/10. Variations under Domestication: Sarah has to decide who to entrust with her secret after the separate worlds of Sarah, Alison and Beth collide. Contains moderate violence. [S]', 'crid://fp.bbc.co.uk/4J63DQ', '4J63DQ', '2013-10-18T21:00:00+01:00', 2700, 1000000, 'f', 539, 4, 1, 'f', '5936187687219294305', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4573, 'Orphan Black', '5/10. Conditions of Existence: Sci-fi drama series. Sarah is suspicious of Paul when evidence suggests the Orphans are part of an ongoing experiment. Contains moderate violence. [S]', 'crid://fp.bbc.co.uk/4J63DP', '4J63DP', '2013-10-11T21:00:00+01:00', 2700, 1000000, 'f', 539, 4, 1, 'f', '5933590090998672992', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4574, 'Orphan Black', '4/10. Effects of External Conditions: Sarah realises that the survival of the Orphans will take more than police work. Contains some upsetting scenes. [S]', 'crid://fp.bbc.co.uk/4J63DO', '4J63DO', '2013-10-04T21:00:00+01:00', 2700, 1000000, 'f', 539, 4, 1, 'f', '5930992494778051664', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4575, 'Orphan Black', '3/10. Variation under Nature: Sci-fi. After learning she''s a clone, Sarah''s intention is to leave, but that changes when a body is found and Beth gets the case. Contains some upsetting scenes. [S]', 'crid://fp.bbc.co.uk/4J63DN', '4J63DN', '2013-09-27T21:00:00+01:00', 2700, 1000000, 'f', 539, 4, 1, 'f', '5928394898557430373', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4576, 'Orphan Black', '2/10. Instinct: Sci-fi drama series. With nowhere to turn, Sarah must continue posing as Beth. A killer pursues her and she must find another identical named Alison. Contains adult themes. [S]', 'crid://fp.bbc.co.uk/4J63DM', '4J63DM', '2013-09-20T21:45:00+01:00', 2700, 1000000, 'f', 539, 4, 1, 'f', '5925808898748508474', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4577, 'Orphan Black', 'New series. 1/10. Natural Selection: Sarah takes the identity of a woman who looks just like her after witnessing her suicide. Contains some sexual content and some upsetting scenes. [S]', 'crid://fp.bbc.co.uk/4J63DL', '4J63DL', '2013-09-20T21:00:00+01:00', 2700, 1000000, 'f', 539, 4, 1, 'f', '5925797302336809273', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4578, 'Torchwood', '6/13. Countrycide: Sci-fi and crime drama series centred around the Torchwood Institute. The team investigate some gruesome deaths in the Brecon Beacons, and confront a terrifying enemy.', 'crid://fp.bbc.co.uk/54BW0H', '54BW0H', '2007-10-19T21:00:00+01:00', 3000, 1000000, 'f', 456, 4, 1, 'f', '6031572038915774075', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4579, 'Torchwood: Children of Earth', 'Day Five: Torchwood is defenceless, and Gwen Cooper stands alone. As anarchy prevails, a council estate is the battleground for the future of the human race. Contains adult themes. Also in HD. [AD,S]', 'crid://fp.bbc.co.uk/1FTW5N', '1FTW5N', '2009-07-10T21:00:00+01:00', 3600, 1000000, 'f', 541, 1, 1, 'f', '5356908268130450421', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4580, 'Torchwood: Children of Earth', 'Day Four: Torchwood learns the truth about 1965, as the Ambassador reveals its true intent. Contains adult themes. Also in HD. [AD,S]', 'crid://fp.bbc.co.uk/1FTW5M', '1FTW5M', '2009-07-09T21:00:00+01:00', 3600, 1000000, 'f', 541, 1, 1, 'f', '5356537182956076020', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4581, 'Torchwood: Children of Earth', 'Day Three: The eyes of the world turn to Britain, as the 456 announce, ''We are here''. Contains language which may offend. Also in HD. [AD,S]', 'crid://fp.bbc.co.uk/1FTW5L', '1FTW5L', '2009-07-08T21:00:00+01:00', 3600, 1000000, 'f', 541, 1, 1, 'f', '5356166097781701617', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4582, 'Torchwood: Children of Earth', 'Day Two: Torchwood are forced underground. Only Lois can save the team - but she is helpless as her superiors make plans for Floor 13. Contains language which may offend. Also in HD. [AD,S]', 'crid://fp.bbc.co.uk/1FTW5K', '1FTW5K', '2009-07-07T21:00:00+01:00', 3600, 1000000, 'f', 541, 1, 1, 'f', '5355795012607327210', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4583, 'Torchwood: Children of Earth', 'New series. Day One: When every single child on Earth stops, Torchwood is thrown into a world of terror. Contains language which may offend. Also in HD. [AD,S]', 'crid://fp.bbc.co.uk/1FTW5J', '1FTW5J', '2009-07-06T21:00:00+01:00', 3600, 1000000, 'f', 541, 1, 1, 'f', '5355423927432950406', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4584, 'Torchwood: Miracle Day', '10/10. The Torchwood team is on a final mission - but the Three Families are unstoppable, unless a terrible sacrifice is made. Contains some strong language and some violence. Also in HD. [AD,S]', 'crid://fp.bbc.co.uk/1FH746', '1FH746', '2011-09-15T21:00:00+01:00', 3600, 1000000, 'f', 542, 1, 1, 'f', '5652663152106857610', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4585, 'Torchwood: Miracle Day', '9/10. Sci-fi drama. As the Three Families plunge the world into recession, the Torchwood team must strike a bargain with the devil himself. Contains adult themes. Also in HD. [AD,S]', 'crid://fp.bbc.co.uk/1FH745', '1FH745', '2011-09-08T21:00:00+01:00', 3600, 1000000, 'f', 542, 1, 1, 'f', '5650065555886233647', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4586, 'Torchwood: Miracle Day', '8/10. Captain Jack faces a showdown with a man he thought long since dead. Rex takes extreme action; is it too late to prevent the collapse of society? Contains adult themes. Also in HD. [AD,S]', 'crid://fp.bbc.co.uk/1FH744', '1FH744', '2011-09-01T21:00:00+01:00', 3600, 1000000, 'f', 542, 1, 1, 'f', '5647467959665611484', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4587, 'Torchwood: Miracle Day', '7/10. Gwen must fight to protect her family, and takes a terrifying journey covering both miles and decades as the long history of the Miracle is revealed. Contains some violence. Also in HD. [AD,S]', 'crid://fp.bbc.co.uk/1FH743', '1FH743', '2011-08-25T21:00:00+01:00', 3600, 1000000, 'f', 542, 1, 1, 'f', '5644870363444988516', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4588, 'Torchwood: Miracle Day', '6/10. Jack faces a race against time as he goes straight to the heart of the conspiracy. Contains some upsetting scenes. Also in HD. [AD,S]', 'crid://fp.bbc.co.uk/1FH742', '1FH742', '2011-08-18T21:00:00+01:00', 3600, 1000000, 'f', 542, 1, 1, 'f', '5642272767224365599', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4589, 'Torchwood: Miracle Day', '5/10. Torchwood goes undercover and discovers the terrible truth behind the Miracle. Contains adult themes. Also in HD. [AD,S]', 'crid://fp.bbc.co.uk/1FH741', '1FH741', '2011-08-11T21:00:00+01:00', 3600, 1000000, 'f', 542, 1, 1, 'f', '5639675171003742591', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4590, 'Torchwood: Miracle Day', '4/10. The fight against PhiCorp takes the Torchwood team to California. Contains some upsetting scenes. Also in HD. [AD,S]', 'crid://fp.bbc.co.uk/1FH740', '1FH740', '2011-08-04T21:00:00+01:00', 3600, 1000000, 'f', 542, 1, 1, 'f', '5637077574783118708', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4591, 'Torchwood: Miracle Day', '3/10. Torchwood goes on the run, and Jack must confront the mysterious Oswald Danes. Contains some sexual content. Also in HD. [AD,S]', 'crid://fp.bbc.co.uk/1FH73Z', '1FH73Z', '2011-07-28T21:00:00+01:00', 3600, 1000000, 'f', 542, 1, 1, 'f', '5634479978562496441', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4592, 'Torchwood: Miracle Day', '2/10. As the Torchwood team is reunited, Jack realises he is the most vulnerable man on Earth. Contains some violence and some upsetting scenes. Also in HD. [AD,S]', 'crid://fp.bbc.co.uk/1FH73Y', '1FH73Y', '2011-07-21T21:00:00+01:00', 3600, 1000000, 'f', 542, 1, 1, 'f', '5631882382341873247', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4593, 'Torchwood: Miracle Day', 'New series. 1/10. When death itself comes to a halt, the whole world faces its greatest danger yet. Contains some upsetting scenes. Also in HD. [AD,S]', 'crid://fp.bbc.co.uk/1FH73X', '1FH73X', '2011-07-14T21:00:00+01:00', 3600, 1000000, 'f', 542, 1, 1, 'f', '5629284786121251694', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4627, 'Homeland', 'Long Time Coming: In the last episode of season four of the compelling and contemporary US thriller, once back in the United States, Carrie and Saul investigate what she saw in Islamabad. [AD,S]', 'crid://www.channel4.com/59424/012', '59424-012', '2015-09-24T02:10:00+01:00', 3900, 1000000, 'f', 777, 13, 2, 'f', '6197882621817171185', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4628, 'Homeland', 'Halfway to a Donut: As the US thriller continues, Carrie organises a last-ditch operation, while Lockhart and Martha do their utmost to stall Inter-Services Intelligence. (S4 Ep8/12) [AD,S]', 'crid://www.channel4.com/59424/008', '59424-008', '2015-09-16T02:15:00+01:00', 3600, 1000000, 'f', 777, 13, 2, 'f', '6194915228912364539', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4629, 'Homeland', 'Redux: As the compelling and contemporary US thriller continues, CIA director Andrew Lockhart arrives just as Carrie''s investigation is growing more complicated. (S4 Ep7/12) [AD,S]', 'crid://www.channel4.com/59424/007', '59424-007', '2015-09-10T02:15:00+01:00', 3900, 1000000, 'f', 777, 13, 2, 'f', '6192688717866117914', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4630, 'Homeland', 'From A to B and Back Again: Carrie challenges Fara to show more commitment to their work. Carrie puts her operation in motion but there''s a shock in store. (S4 Ep6/12) [AD,S]', 'crid://www.channel4.com/59424/006', '59424-006', '2015-09-09T02:15:00+01:00', 3600, 1000000, 'f', 777, 13, 2, 'f', '6192317632691743492', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4631, 'Homeland', 'About a Boy: Carrie tries to earn the trust of a frightened asset. Leaving town, Saul catches a break when he spots a familiar face. Quinn and Fara stake out a new suspect. (S4 Ep5/12) [AD,S]', 'crid://www.channel4.com/59424/005', '59424-005', '2015-09-05T02:25:00+01:00', 3600, 1000000, 'f', 777, 13, 2, 'f', '6190835868974623352', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4632, 'Homeland', 'Iron in the Fire: Carrie gets a tip from Redmond regarding Quinn''s lead, Saul asks an old friend in the Pakistani military a favour, and Fara uncovers a deep-rooted conspiracy. (S4 Ep4/12) [AD,S]', 'crid://www.channel4.com/59424/004', '59424-004', '2015-09-04T02:30:00+01:00', 3600, 1000000, 'f', 777, 13, 2, 'f', '6190466072290437732', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4633, 'Homeland', 'Shalwar Kameez: Carrie ventures to create a delicate alliance, while Fara fails to recruit a key asset. Reeling over events in Islamabad, Quinn zeroes in on a potential lead. (S4 Ep3/12) [AD,S]', 'crid://www.channel4.com/59424/003', '59424-003', '2015-09-03T02:10:00+01:00', 3900, 1000000, 'f', 777, 13, 2, 'f', '6190089833155308112', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4634, 'Homeland', 'Trylon and Perisphere: An official inquiry brings Carrie back to the US, Quinn spirals out of control, and a disgraced former case officer reveals disturbing new information. (S4 Ep2/12) [AD,S]', 'crid://www.channel4.com/59424/002', '59424-002', '2015-09-02T02:10:00+01:00', 3900, 1000000, 'f', 777, 13, 2, 'f', '6189718747980933689', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4635, 'Homeland', 'Krieg Nicht Lieb: In the penultimate episode of the compelling and contemporary US thriller, Carrie is forced to put her life on the line in order to get her team out of Pakistan. [AD,S]', 'crid://www.channel4.com/59424/011', '59424-011', '2015-09-23T02:15:00+01:00', 3600, 1000000, 'f', 777, 13, 2, 'f', '6197512825132985565', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4636, 'Homeland', 'The Drone Queen: US thriller series. As CIA Chief of Station in Kabul, Carrie makes a critical decision. Back in the USA, Saul struggles to adjust to his new role. (S4 Ep1/12) [AD,S]', 'crid://www.channel4.com/59424/001', '59424-001', '2015-09-01T02:10:00+01:00', 4200, 1000000, 'f', 777, 13, 2, 'f', '6189347662806552172', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4637, 'Homeland', '13 Hours in Islamabad: As the compelling and contemporary US thriller continues, the security breach at the embassy has a number of far-reaching consequences. (S4 Ep10/12) [AD,S]', 'crid://www.channel4.com/59424/010', '59424-010', '2015-09-18T02:15:00+01:00', 3600, 1000000, 'f', 777, 13, 2, 'f', '6195657399261113381', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4638, 'Homeland', 'There''s Something Else Going On: As the US thriller continues, Carrie is forced to improvise in order to salvage her mission, while the CIA swiftly closes in on a leak. (S4 Ep9/12) [AD,S]', 'crid://www.channel4.com/59424/009', '59424-009', '2015-09-17T02:15:00+01:00', 3600, 1000000, 'f', 777, 13, 2, 'f', '6195286314086738960', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4639, 'Lewis', 'Old School Ties: When an ambitious Oxford student is found dead in her hotel room after inviting a reformed computer hacker to speak at the Union, Lewis and Hathaway investigate. [AD,S]', 'crid://www.itv.com/6396155', '6396155', '2015-09-25T10:55:00+01:00', 7500, 1000000, 'f', 763, 10, 2, 'f', '6198388998959801097', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4640, 'Lewis', 'Music to Die For: Lewis and Hathaway investigate a link between the murder of a professor of German history and the recent winner of a local underground boxing bout. [AD,S]', 'crid://www.itv.com/8405581', '8405581', '2015-10-31T22:00:00+00:00', 7500, 1000000, 'f', 798, 10, 2, 'f', '6211934896314656013', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4641, 'Lewis', 'And the Moonbeams Kiss the Sea: When a man is found dead at the Bodleian Library, Lewis investigates a link between the death and an intruder on a local professor''s property. [AD,S]', 'crid://www.itv.com/8363572', '8363572', '2015-10-24T22:00:00+01:00', 7200, 1000000, 'f', 798, 10, 2, 'f', '6209321838211769445', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4642, 'Lewis', 'Expiation: When an Oxford housewife is found hanged in her home, Lewis and Hathaway unearth a far darker case than the initial suicide verdict suggests. [AD,S]', 'crid://www.itv.com/6404632', '6404632', '2015-10-17T22:00:00+01:00', 7200, 1000000, 'f', 791, 10, 2, 'f', '6206724241991147837', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4643, 'Lewis', 'The Quality of Mercy: When Lewis and Hathaway are called in to investigate the murder of a rising Oxford theatre star, they focus their suspicions on his acting colleagues. [AD,S]', 'crid://www.itv.com/15284307', '15284307', '2014-09-14T18:55:00+01:00', 7500, 1000000, 'f', 559, 10, 2, 'f', '6058984668453169582', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4644, 'Lewis', 'Allegory of Love: Detective drama. Lewis investigates the murder of a beautiful young Eastern European woman whose death comes straight from the pages of a popular fantasy novel. [AD,S]', 'crid://www.itv.com/15167364', '15167364', '2015-09-26T00:15:00+01:00', 6000, 1000000, 'f', 763, 10, 2, 'f', '6198595157390009101', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4645, 'Lewis', 'The Point of Vanishing: When religious fanatic Steven Mullan is murdered, Lewis investigates celebrity atheist Tom Rattenbury and his family, who had been attacked by Mullan. [AD,S]', 'crid://www.itv.com/15433907', '15433907', '2015-09-06T14:25:00+01:00', 7800, 1000000, 'f', 763, 10, 2, 'f', '6191392497234616152', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4646, 'Lewis', 'Counter Culture Blues: When Lewis and Hathaway investigate a murder in town, forensic evidence leads them to suspect there is a connection with the reforming of an old rock band. [AD,S]', 'crid://www.itv.com/15587773', '15587773', '2015-09-02T20:00:00+01:00', 7200, 1000000, 'f', 763, 10, 2, 'f', '6189994485379767662', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4647, 'Lewis', 'Beyond Good and Evil (Part 2): Police drama. As Maddox''s life hangs by a thread, can Lewis and Hathaway put aside their differences and become as good a team as they once were? [AD,S]', 'crid://www.itv.com/133902618', '133902618', '2014-11-14T21:00:00+00:00', 3600, 1000000, 'f', 558, 8, 2, 'f', '6081668537716665223', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4648, 'Lewis', 'Beyond Good and Evil (Part 1): As Lewis learns that a serial killer he arrested 13 years ago may be released on appeal, Hathaway and Maddox investigate the killing of a policeman. [AD,S]', 'crid://www.itv.com/133382226', '133382226', '2014-11-07T21:00:00+00:00', 3600, 1000000, 'f', 315, 8, 2, 'f', '6079070941496040762', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4649, 'Lewis', 'The Lions of Nemea (Part 2): Crime drama series. While Lewis attempts to discern the logic behind two murders, DI Hathaway is convinced the solution to the mystery lies in the stars. [AD,S]', 'crid://www.itv.com/132738318', '132738318', '2014-10-31T21:00:00+00:00', 3600, 1000000, 'f', 315, 8, 2, 'f', '6076473345275417531', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4650, 'Lewis', 'The Lions of Nemea (Part 1): When a classics scholar is stabbed to death and dumped in the Oxford Canal, Lewis, Hathaway and Maddox find themselves sorely tested by a bizarre case. [AD,S]', 'crid://www.itv.com/132108039', '132108039', '2014-10-24T21:00:00+01:00', 3600, 1000000, 'f', 315, 8, 2, 'f', '6073860287172528312', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4651, 'Lewis', 'Entry Wounds (Part 2): Crime drama series. Hathaway''s murder theory has fallen apart. It might take Lewis''s insight to close the case - but will his former protege listen? [AD,S]', 'crid://www.itv.com/131568570', '131568570', '2014-10-17T21:00:00+01:00', 3600, 1000000, 'f', 315, 8, 2, 'f', '6071262690951894861', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4712, 'Doctor Who', 'Part 1: Warriors'' Gate: The TARDIS is drawn into an empty white void, somewhere between universes. But they are not the only ones trapped there.', 'crid://fp.bbc.co.uk/WG01', 'WG01', '1981-01-03T17:20:00+00:00', 1500, 1000000, 'f', 579, 1, 1, 'f', NULL, 0, 'f', 'gomes', 0);
INSERT INTO "programmes" VALUES(4713, 'Doctor Who', 'Part 2: Warriors'' Gate: When Rorvik learns that Romana is a time sensitive, he takes her prisoner, forcing her to find a way out of the void. The Doctor attempts to discover what lies beyond the mirror.', 'crid://fp.bbc.co.uk/WG01', 'WG02', '1981-01-10T17:10:00+00:00', 1500, 1000000, 'f', 579, 1, 1, 'f', NULL, 0, 'f', 'gomes', 0);
INSERT INTO "programmes" VALUES(4714, 'Doctor Who', 'Part 3: Warriors'' Gate: As the void begins to shrink around them, Rorvik plans to take desperate measures to escape through the mirror. The Doctor discovers the dark secret of the Tharils'' past.', 'crid://fp.bbc.co.uk/WG01', 'WG03', '1981-01-17T17:10:00+00:00', 1500, 1000000, 'f', 579, 1, 1, 'f', NULL, 80834, 'f', 'gomes', 0);
INSERT INTO "programmes" VALUES(4715, 'Doctor Who', 'Part 4: Warriors'' Gate: With the void collapsing around them, time is running out. Rorvik ignores the Doctor''s warnings and takes a desperate gamble which could have fatal consequences.', 'crid://fp.bbc.co.uk/WG01', 'WG04', '1981-01-24T17:10:00+00:00', 1500, 1000000, 'f', 579, 1, 1, 'f', NULL, 0, 'f', 'gomes', 0);
INSERT INTO "programmes" VALUES(4745, 'Jonathan Strange & Mr Norrell', '5/7. Arabella: Strange returns from Waterloo hoping for a peaceful new life, but the Gentleman''s scheme for revenge wrecks all of his and Arabella''s plans. Also in HD. [AD,S]', 'crid://fp.bbc.co.uk/1FTWXZ', '1FTWXZ', '2015-06-14T21:00:00+01:00', 3600, 1000000, 'f', 591, 1, 1, 'f', '6160323132533280203', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4746, 'Jonathan Strange & Mr Norrell', '4/7. All the Mirrors of the World: Norrell''s refusal to let Strange study ancient magic causes a split between them. Also in HD. [AD,S]', 'crid://fp.bbc.co.uk/1FTWXY', '1FTWXY', '2015-06-07T21:00:00+01:00', 3600, 1000000, 'f', 591, 1, 1, 'f', '6157725536312688171', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4747, 'Jonathan Strange & Mr Norrell', '3/7. The Education of a Magician: Historical fantasy drama. Jonathan Strange accesses ancient and troubling magic as he fights the Napoleonic armies. Also in HD. [AD,S]', 'crid://fp.bbc.co.uk/1FTWXX', '1FTWXX', '2015-05-31T21:00:00+01:00', 3600, 1000000, 'f', 591, 1, 1, 'f', '6155127940092065568', 131826, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4748, 'Jonathan Strange & Mr Norrell', '2/7. How Is Lady Pole?: Historical fantasy drama. Mr Norrell takes on Jonathan Strange as his apprentice. However, it soon becomes clear that the pupil outshines the master. [AD,S]', 'crid://fp.bbc.co.uk/1FTWXW', '1FTWXW', '2015-05-24T21:00:00+01:00', 3600, 1000000, 'f', 591, 1, 1, 'f', '6152530343871441102', 12478, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4749, 'Jonathan Strange & Mr Norrell', '1/7. The Friends of English Magic: Historical fantasy drama. Determined to prove himself England''s greatest magician, Mr Norrell makes a dangerous pact with a mysterious being. Also in HD. [AD,S]', 'crid://fp.bbc.co.uk/1FTWXV', '1FTWXV', '2015-05-17T21:00:00+01:00', 3600, 1000000, 'f', 591, 1, 1, 'f', '6149932747650818695', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4767, 'Rise of the Planet of the Apes', '(2011) Sci-fi action reboot. A scientist (James Franco) seeking a cure for Alzheimer''s bestows super-intelligence on a chimpanzee (Andy Serkis)... and endangers all mankind. Violence. [AD,S]', 'crid://www.channel4.com/55977/001', '55977-001', '2011-01-01T00:00:00+00:00', 7800, 1000000, 'f', 597, 12, 1, 'f', '6152159258973593413', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4768, 'Planet of the Apes', '(1968) Sci-fi. An astronaut (Charlton Heston) lands on a planet where apes rule, humans are seen as a subspecies and the gorillas, who act as the army, treat everyone else ruthlessly. [S]', 'crid://www.channel4.com/23318/001', '23318-001', '1968-01-01T00:00:00+00:00', 8100, 1000000, 'f', 597, 13, 1, 'f', '6128269362386840317', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4769, 'Planet of the Apes', '(2001) Tim Burton''s powerful remake stars Mark Wahlberg as the astronaut stranded on a strange planet where apes rule humans. With Helena Bonham Carter and Tim Roth. [AD,S]', 'crid://www.channel4.com/36130/001', '36130-001', '2001-01-01T00:00:00+00:00', 8400, 1000000, 'f', 597, 14, 1, 'f', '5430068741331226402', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4770, 'Escape From the Planet of The Apes', '(1971) Sci-fi drama starring Roddy McDowall and Kim Hunter. Fleeing catastrophe on their planet, apes Cornelius and Zira end up in 1970s LA. But they soon find themselves back in danger. [S]', 'crid://www.channel4.com/23233/001', '23233-001', '1971-01-01T00:00:00+00:00', 6900, 1000000, 'f', 597, 13, 1, 'f', '6081886292570457096', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4771, 'Conquest of the Planet of the Apes', '(1972) The fourth Apes film is set on Earth, where apes are the humans'' slaves. But Caesar (Roddy McDowall) keeps his intelligence secret until the time is ripe for rebellion. [S]', 'crid://www.channel4.com/16562/001', '16562-001', '1972-01-01T00:00:00+00:00', 5400, 1000000, 'f', 597, 12, 1, 'f', '5643078073868914393', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4772, 'Beneath the Planet of the Apes', '(1970) Charlton Heston and James Franciscus star as the time-travelling astronauts trapped on the planet where apes rule and humans are slaves in this gripping sequel. [S]', 'crid://www.channel4.com/23204/001', '23204-001', '1970-01-01T00:00:00+00:00', 6000, 1000000, 'f', 597, 12, 1, 'f', '5641236821389119158', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4773, 'Battle for the Planet of the Apes', '(1973) The final film in the series sees Roddy McDowall and the intelligent apes try to live in peaceful co-existence with humans but end up in conflict with militant gorillas. [S]', 'crid://www.channel4.com/16557/001', '16557-001', '1973-01-01T00:00:00+00:00', 6000, 1000000, 'f', 597, 12, 1, 'f', '5436239320841198807', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4774, 'Pirates of the Caribbean: On Stranger...', '...Tides. Swashbuckling adventure which sees Jack Sparrow hunting for the Fountain of Youth. Contains moderate violence. Also in HD. [2011] [AD,S]', 'crid://fp.bbc.co.uk/4J62HT', '4J62HT', '2011-01-01T00:00:00+00:00', 7500, 1000000, 'f', 598, 1, 1, 'f', '5962905819766113217', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4775, 'Pirates of the Caribbean: At World''s End', 'Action adventure with Johnny Depp. Elizabeth and Will join forces with Captain Barbossa to save Jack Sparrow from the underworld and stop the East India Company. Also in HD. [2007] [AD,S]', 'fp.bbc.co.uk/4J3ZJG', '4J3ZJG', '2007-01-01T00:00:00+00:00', 9300, 1000000, 'f', 598, 1, 1, 'f', '5830102424496686751', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4776, 'Pirates of the Caribbean: The Curse...', '...of the Black Pearl. Swashbuckler in which a governor''s daughter is kidnapped by pirates. A dashing swordsman sets out to rescue her. Starring Johnny Depp and Keira Knightley. [2003] [AD,S]', 'crid://fp.bbc.co.uk/4J3Z3J', '4J3Z3J', '2003-01-01T00:00:00+00:00', 8100, 1000000, 'f', 598, 1, 1, 'f', '5147639422606647797', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4777, 'Pirates of the Caribbean: Dead Man''s...', '...Chest. Captain Jack Sparrow (Johnny Depp) returns in another swashbuckling adventure. He must retrieve the Dead Man''s Chest or face Davy Jones'' locker. Also in HD. [2006] [AD,S]', 'crid://fp.bbc.co.uk/4J3ZIU', '4J3ZIU', '2006-01-01T00:00:00+00:00', 8400, 1000000, 'f', 598, 1, 1, 'f', '5284198766776431625', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4779, 'Episode VI - Return of the Jedi', 'Starring Mark Hamill and Harrison Ford, 1983. Luke and his friends reunite to destroy the new and improved Death Star. [S]', 'crid://www.itv.com/1759486', '1759486', '1983-01-01T00:00:00+00:00', 9900, 1000000, 'f', 600, 8, 1, 'f', '5274484839511577526', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4780, 'Episode III - Revenge of the Sith', 'Space action adventure starring Ewan McGregor and Hayden Christensen, 2005. The final Star Wars prequel sees Anakin Skywalker drawn further toward the dark side of the force [AD,S]', 'crid://www.itv.com/12304187', '12304187', '2005-01-01T00:00:00+00:00', 10500, 1000000, 'f', 600, 9, 1, 'f', '6014438985139841959', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4781, 'Episode II - Attack of the Clones', '...Attack of the Clones. Starring Ewan McGregor and Natalie Portman, 2002. Second of the prequels. Obi-Wan Kenobi and Anakin Skywalker protect Queen Amidala from an assassin. [AD,S]', 'crid://www.itv.com/5396448', '5396448', '2002-01-01T00:00:00+00:00', 10500, 1000000, 'f', 600, 8, 1, 'f', '5279677454972447139', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4782, 'Episode I - The Phantom Menace', 'Blockbuster prequel starring Liam Neeson and Ewan McGregor, 1999. A Jedi Knight and his apprentice embark on a mission to save a peaceful planet from the evil Federation [AD,S]', 'crid://www.itv.com/1763312', '1763312', '1999-01-01T00:00:00+00:00', 9900, 1000000, 'f', 600, 9, 1, 'f', '6009241215718220595', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4783, 'Episode IV - A New Hope', 'Classic sci-fi epic starring Mark Hamill and Carrie Fisher, 1977. Luke Skywalker joins Obi Wan Kenobi and embarks on a mission to rescue a rebel princess and thwart the Empire [AD,S]', 'crid://www.itv.com/1751096', '1751096', '1977-01-01T00:00:00+00:00', 9300, 1000000, 'f', 600, 9, 1, 'f', '6017059774183861823', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4784, 'Episode V - The Empire Strikes Back', 'Star Wars sequel starring Mark Hamill and Harrison Ford, 1980. Luke Skywalker undergoes Jedi training from Yoda, while romance blossoms between Han Solo and Leia [AD,S]', 'crid://www.itv.com/1752820', '1752820', '1980-01-01T00:00:00+00:00', 9300, 1000000, 'f', 600, 9, 1, 'f', '6019657370404483186', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4813, 'Harry Potter and the Prisoner of Azkaban', 'Fantasy adventure starring Daniel Radcliffe and Emma Watson, 2004. Harry, Hermione and Ron return to Hogwarts for a third year to discover Sirius Black has escaped prison [AD,S]', 'crid://www.itv.com/24649730', '24649730', '2004-01-01T00:00:00+00:00', 9600, 1000000, 'f', 616, 8, 11, 'f', '6092350121381802836', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4814, 'Harry Potter and the Chamber of Secrets', 'Fantasy adventure sequel starring Daniel Radcliffe and Rupert Grint, 2002. A mysterious elf tells boy wizard Harry to expect trouble during his second year at Hogwarts [AD,S]', 'crid://www.itv.com/5649759', '5649759', '2002-01-01T00:00:00+00:00', 10800, 1000000, 'f', 616, 8, 11, 'f', '6154658929931796582', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4815, 'Harry Potter and the Philosopher''s Stone', 'Big-screen adaptation starring Daniel Radcliffe and Emma Watson, 2001. A youngster living with his cruel aunt and uncle learns that he is the orphaned son of powerful wizards [AD,S]', 'crid://www.itv.com/24571264', '24571264', '2001-01-01T00:00:00+00:00', 10200, 1000000, 'f', 616, 8, 11, 'f', '6152061333711172518', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4816, 'Harry Potter and the Deathly Hallows pt2', 'Fantasy starring Daniel Radcliffe and Rupert Grint, 2011. Harry, Ron and Hermione attempt to find the secret to Voldemort''s immortality leading to an epic battle [AD,S]', 'crid://www.itv.com/43077458', '43077458', '2011-01-01T00:00:00+00:00', 9000, 1000000, 'f', 616, 8, 11, 'f', '6098722993855613203', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4817, 'Harry Potter and the Deathly Hallows pt1', 'Fantasy sequel starring Daniel Radcliffe and Rupert Grint, 2010. Harry attempts to find the secret to Voldemort''s immortality - parts of his soul that he has hidden [AD,S]', 'crid://www.itv.com/36111458', '36111458', '2010-01-01T00:00:00+00:00', 10200, 1000000, 'f', 616, 8, 11, 'f', '6097594276450223792', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4818, 'Harry Potter and the Half-Blood Prince', 'Fantasy sequel starring Daniel Radcliffe and Rupert Grint, 2009. With Hogwarts under threat, Harry investigates Voldemort''s past and learns the disturbing truth of his origins [AD,S]', 'crid://www.itv.com/22627865', '22627865', '2009-01-01T00:00:00+00:00', 10800, 1000000, 'f', 616, 8, 11, 'f', '6094996680229601792', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4819, 'Harry Potter and the Order of the Phoenix', 'Fantasy sequel starring Daniel Radcliffe and Emma Watson, 2007. The Hogwarts students prepare for battle by forming a secret duelling club, with Harry as their teacher [AD,S]', 'crid://www.itv.com/19720285', '19720285', '2007-01-01T00:00:00+00:00', 9600, 1000000, 'f', 616, 8, 11, 'f', '6012979125751716464', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4820, 'Harry Potter and the Goblet of Fire', 'Fantasy adventure sequel starring Daniel Radcliffe and Emma Watson, 2005. Harry may no longer be safe at Hogwarts when a series of events indicate that Voldemort''s return is imminent [AD,S]', 'crid://www.itv.com/24668982', '24668982', '2005-01-01T00:00:00+00:00', 10500, 1000000, 'f', 616, 8, 11, 'f', '5958445067000956108', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4821, 'Harry Potter and the Goblet of Fire', 'Fantasy adventure sequel starring Daniel Radcliffe and Emma Watson, 2005. Harry may no longer be safe at Hogwarts when a series of events indicate that Voldemort''s return is imminent [AD,S]', 'crid://www.itv.com/24668982', '24668982', '2005-01-01T00:00:00+00:00', 10800, 1000000, 'f', 617, 8, 1, 'f', '6162518720083484880', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4822, 'Harry Potter and the Prisoner of Azkaban', 'Fantasy adventure starring Daniel Radcliffe and Emma Watson, 2004. Harry, Hermione and Ron return to Hogwarts for a third year to discover Sirius Black has escaped prison [AD,S]', 'crid://www.itv.com/24649730', '24649730', '2004-01-01T00:00:00+00:00', 9600, 1000000, 'f', 617, 8, 1, 'f', '6092350121381802836', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4823, 'Harry Potter and the Chamber of Secrets', 'Fantasy adventure sequel starring Daniel Radcliffe and Rupert Grint, 2002. A mysterious elf tells boy wizard Harry to expect trouble during his second year at Hogwarts [AD,S]', 'crid://www.itv.com/5649759', '5649759', '2002-01-01T00:00:00+00:00', 10800, 1000000, 'f', 617, 8, 1, 'f', '6154658929931796582', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4824, 'Harry Potter and the Philosopher''s Stone', 'Big-screen adaptation starring Daniel Radcliffe and Emma Watson, 2001. A youngster living with his cruel aunt and uncle learns that he is the orphaned son of powerful wizards [AD,S]', 'crid://www.itv.com/24571264', '24571264', '2001-01-01T00:00:00+00:00', 10200, 1000000, 'f', 617, 8, 1, 'f', '6152061333711172518', 59082, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4825, 'Harry Potter and the Deathly Hallows pt2', 'Fantasy starring Daniel Radcliffe and Rupert Grint, 2011. Harry, Ron and Hermione attempt to find the secret to Voldemort''s immortality leading to an epic battle [AD,S]', 'crid://www.itv.com/43077458', '43077458', '2011-01-01T00:00:00+00:00', 9000, 1000000, 'f', 617, 8, 1, 'f', '6098722993855613203', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4826, 'Harry Potter and the Deathly Hallows pt1', 'Fantasy sequel starring Daniel Radcliffe and Rupert Grint, 2010. Harry attempts to find the secret to Voldemort''s immortality - parts of his soul that he has hidden [AD,S]', 'crid://www.itv.com/36111458', '36111458', '2010-01-01T00:00:00+00:00', 10200, 1000000, 'f', 617, 8, 1, 'f', '6097594276450223792', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4827, 'Harry Potter and the Half-Blood Prince', 'Fantasy sequel starring Daniel Radcliffe and Rupert Grint, 2009. With Hogwarts under threat, Harry investigates Voldemort''s past and learns the disturbing truth of his origins [AD,S]', 'crid://www.itv.com/22627865', '22627865', '2009-01-01T00:00:00+00:00', 10800, 1000000, 'f', 617, 8, 1, 'f', '6094996680229601792', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4828, 'Harry Potter and the Order of the Phoenix', 'Fantasy sequel starring Daniel Radcliffe and Emma Watson, 2007. The Hogwarts students prepare for battle by forming a secret duelling club, with Harry as their teacher [AD,S]', 'crid://www.itv.com/19720285', '19720285', '2007-01-01T00:00:00+00:00', 9600, 1000000, 'f', 617, 8, 1, 'f', '6012979125751716464', 0, 'f', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4829, 'Top Gun', 'Starring Tom Cruise and Kelly McGillis, 1986. A US Navy recruit bids to become the training centre''s best pilot, but falls in love with his instructor.', 'crid://www.itv.com/619810', '619810', '1986-01-01T00:00:00+00:00', 8400, 1000000, 'f', 618, 9, 1, 'f', '5288659520082741859', 4085836, 't', 'bbcredux', 0);
INSERT INTO "programmes" VALUES(4885, 'Jonathan Strange & Mr Norrell', '6/7. The Black Tower: Strange attempts to drive himself insane as a way of gaining access to fairy magic. Also in HD. [AD,S]', 'crid://fp.bbc.co.uk/1FTWY0', '1FTWY0', '2015-06-21T21:00:00+01:00', 3600, 1000000, 'f', 591, 1, 1, 'f', '6162920728753906285', 0, 'f', 'bbcredux', 0);