-
Notifications
You must be signed in to change notification settings - Fork 1
/
dump.sql
executable file
·12980 lines (12890 loc) · 537 KB
/
dump.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
-- phpMyAdmin SQL Dump
-- version 3.4.10.1deb1
-- http://www.phpmyadmin.net
--
-- Servidor: localhost
-- Tiempo de generación: 23-10-2014 a las 09:10:28
-- Versión del servidor: 5.5.37
-- Versión de PHP: 5.3.10-1ubuntu3.11
SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";
SET time_zone = "+00:00";
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
--
-- Base de datos: `ci`
--
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `actor`
--
CREATE TABLE IF NOT EXISTS `actor` (
`actor_id` smallint(5) unsigned NOT NULL AUTO_INCREMENT,
`fullname` varchar(250) NOT NULL,
`last_update` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`actor_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=201 ;
--
-- Volcado de datos para la tabla `actor`
--
INSERT INTO `actor` (`actor_id`, `fullname`, `last_update`) VALUES
(1, 'GUINESS PENELOPE', '2011-04-24 17:27:25'),
(2, 'WAHLBERG NICK', '2011-04-24 17:27:25'),
(3, 'CHASE ED', '2011-04-24 17:27:25'),
(4, 'DAVIS JENNIFER', '2011-04-24 17:27:25'),
(5, 'LOLLOBRIGIDA JOHNNY', '2011-04-24 17:27:25'),
(6, 'NICHOLSON BETTE', '2011-04-24 17:27:25'),
(7, 'MOSTEL GRACE', '2011-04-24 17:27:25'),
(8, 'JOHANSSON MATTHEW', '2011-04-24 17:27:25'),
(9, 'SWANK JOE', '2011-04-24 17:27:25'),
(10, 'GABLE CHRISTIAN', '2011-04-24 17:27:25'),
(11, 'CAGE ZERO', '2011-04-24 17:27:25'),
(12, 'BERRY KARL', '2011-04-24 17:27:25'),
(13, 'WOOD UMA', '2011-04-24 17:27:25'),
(14, 'BERGEN VIVIEN', '2011-04-24 17:27:25'),
(15, 'OLIVIER CUBA', '2011-04-24 17:27:25'),
(16, 'COSTNER FRED', '2011-04-24 17:27:25'),
(17, 'VOIGHT HELEN', '2011-04-24 17:27:25'),
(18, 'TORN DAN', '2011-04-24 17:27:25'),
(19, 'FAWCETT BOB', '2011-04-24 17:27:25'),
(20, 'TRACY LUCILLE', '2011-04-24 17:27:25'),
(21, 'PALTROW KIRSTEN', '2011-04-24 17:27:25'),
(22, 'MARX ELVIS', '2011-04-24 17:27:25'),
(23, 'KILMER SANDRA', '2011-04-24 17:27:25'),
(24, 'STREEP CAMERON', '2011-04-24 17:27:25'),
(25, 'BLOOM KEVIN', '2011-04-24 17:27:25'),
(26, 'CRAWFORD RIP', '2011-04-24 17:27:25'),
(27, 'MCQUEEN JULIA', '2011-04-24 17:27:25'),
(28, 'HOFFMAN WOODY', '2011-04-24 17:27:25'),
(29, 'WAYNE ALEC', '2011-04-24 17:27:25'),
(30, 'PECK SANDRA', '2011-04-24 17:27:25'),
(31, 'SOBIESKI SISSY', '2011-04-24 17:27:25'),
(32, 'HACKMAN TIM', '2011-04-24 17:27:25'),
(33, 'PECK MILLA', '2011-04-24 17:27:25'),
(34, 'OLIVIER AUDREY', '2011-04-24 17:27:25'),
(35, 'DEAN JUDY', '2011-04-24 17:27:25'),
(36, 'DUKAKIS BURT', '2011-04-24 17:27:25'),
(37, 'BOLGER VAL', '2011-04-24 17:27:25'),
(38, 'MCKELLEN TOM', '2011-04-24 17:27:25'),
(39, 'BRODY GOLDIE', '2011-04-24 17:27:25'),
(40, 'CAGE JOHNNY', '2011-04-24 17:27:25'),
(41, 'DEGENERES JODIE', '2011-04-24 17:27:25'),
(42, 'MIRANDA TOM', '2011-04-24 17:27:25'),
(43, 'JOVOVICH KIRK', '2011-04-24 17:27:25'),
(44, 'STALLONE NICK', '2011-04-24 17:27:25'),
(45, 'KILMER REESE', '2011-04-24 17:27:25'),
(46, 'GOLDBERG PARKER', '2011-04-24 17:27:25'),
(47, 'BARRYMORE JULIA', '2011-04-24 17:27:25'),
(48, 'DAY-LEWIS FRANCES', '2011-04-24 17:27:25'),
(49, 'CRONYN ANNE', '2011-04-24 17:27:25'),
(50, 'HOPKINS NATALIE', '2011-04-24 17:27:25'),
(51, 'PHOENIX GARY', '2011-04-24 17:27:25'),
(52, 'HUNT CARMEN', '2011-04-24 17:27:25'),
(53, 'TEMPLE MENA', '2011-04-24 17:27:25'),
(54, 'PINKETT PENELOPE', '2011-04-24 17:27:25'),
(55, 'KILMER FAY', '2011-04-24 17:27:25'),
(56, 'HARRIS DAN', '2011-04-24 17:27:25'),
(57, 'CRUISE JUDE', '2011-04-24 17:27:25'),
(58, 'AKROYD CHRISTIAN', '2011-04-24 17:27:25'),
(59, 'TAUTOU DUSTIN', '2011-04-24 17:27:25'),
(60, 'BERRY HENRY', '2011-04-24 17:27:25'),
(61, 'NEESON CHRISTIAN', '2011-04-24 17:27:25'),
(62, 'NEESON JAYNE', '2011-04-24 17:27:25'),
(63, 'WRAY CAMERON', '2011-04-24 17:27:25'),
(64, 'JOHANSSON RAY', '2011-04-24 17:27:25'),
(65, 'HUDSON ANGELA', '2011-04-24 17:27:25'),
(66, 'TANDY MARY', '2011-04-24 17:27:25'),
(67, 'BAILEY JESSICA', '2011-04-24 17:27:25'),
(68, 'WINSLET RIP', '2011-04-24 17:27:25'),
(69, 'PALTROW KENNETH', '2011-04-24 17:27:25'),
(70, 'MCCONAUGHEY MICHELLE', '2011-04-24 17:27:25'),
(71, 'GRANT ADAM', '2011-04-24 17:27:25'),
(72, 'WILLIAMS SEAN', '2011-04-24 17:27:25'),
(73, 'PENN GARY', '2011-04-24 17:27:25'),
(74, 'KEITEL MILLA', '2011-04-24 17:27:25'),
(75, 'POSEY BURT', '2011-04-24 17:27:25'),
(76, 'ASTAIRE ANGELINA', '2011-04-24 17:27:25'),
(77, 'MCCONAUGHEY CARY', '2011-04-24 17:27:25'),
(78, 'SINATRA GROUCHO', '2011-04-24 17:27:25'),
(79, 'HOFFMAN MAE', '2011-04-24 17:27:25'),
(80, 'CRUZ RALPH', '2011-04-24 17:27:25'),
(81, 'DAMON SCARLETT', '2011-04-24 17:27:25'),
(82, 'JOLIE WOODY', '2011-04-24 17:27:25'),
(83, 'WILLIS BEN', '2011-04-24 17:27:25'),
(84, 'PITT JAMES', '2011-04-24 17:27:25'),
(85, 'ZELLWEGER MINNIE', '2011-04-24 17:27:25'),
(86, 'CHAPLIN GREG', '2011-04-24 17:27:25'),
(87, 'PECK SPENCER', '2011-04-24 17:27:25'),
(88, 'PESCI KENNETH', '2011-04-24 17:27:25'),
(89, 'DENCH CHARLIZE', '2011-04-24 17:27:25'),
(90, 'GUINESS SEAN', '2011-04-24 17:27:25'),
(91, 'BERRY CHRISTOPHER', '2011-04-24 17:27:25'),
(92, 'AKROYD KIRSTEN', '2011-04-24 17:27:25'),
(93, 'PRESLEY ELLEN', '2011-04-24 17:27:25'),
(94, 'TORN KENNETH', '2011-04-24 17:27:25'),
(95, 'WAHLBERG DARYL', '2011-04-24 17:27:25'),
(96, 'WILLIS GENE', '2011-04-24 17:27:25'),
(97, 'HAWKE MEG', '2011-04-24 17:27:25'),
(98, 'BRIDGES CHRIS', '2011-04-24 17:27:25'),
(99, 'MOSTEL JIM', '2011-04-24 17:27:25'),
(100, 'DEPP SPENCER', '2011-04-24 17:27:25'),
(101, 'DAVIS SUSAN', '2011-04-24 17:27:25'),
(102, 'TORN WALTER', '2011-04-24 17:27:25'),
(103, 'LEIGH MATTHEW', '2011-04-24 17:27:25'),
(104, 'CRONYN PENELOPE', '2011-04-24 17:27:25'),
(105, 'CROWE SIDNEY', '2011-04-24 17:27:25'),
(106, 'DUNST GROUCHO', '2011-04-24 17:27:25'),
(107, 'DEGENERES GINA', '2011-04-24 17:27:25'),
(108, 'NOLTE WARREN', '2011-04-24 17:27:25'),
(109, 'DERN SYLVESTER', '2011-04-24 17:27:25'),
(110, 'DAVIS SUSAN', '2011-04-24 17:27:25'),
(111, 'ZELLWEGER CAMERON', '2011-04-24 17:27:25'),
(112, 'BACALL RUSSELL', '2011-04-24 17:27:25'),
(113, 'HOPKINS MORGAN', '2011-04-24 17:27:25'),
(114, 'MCDORMAND MORGAN', '2011-04-24 17:27:25'),
(115, 'BALE HARRISON', '2011-04-24 17:27:25'),
(116, 'STREEP DAN', '2011-04-24 17:27:25'),
(117, 'TRACY RENEE', '2011-04-24 17:27:25'),
(118, 'ALLEN CUBA', '2011-04-24 17:27:25'),
(119, 'JACKMAN WARREN', '2011-04-24 17:27:25'),
(120, 'MONROE PENELOPE', '2011-04-24 17:27:25'),
(121, 'BERGMAN LIZA', '2011-04-24 17:27:25'),
(122, 'NOLTE SALMA', '2011-04-24 17:27:25'),
(123, 'DENCH JULIANNE', '2011-04-24 17:27:25'),
(124, 'BENING SCARLETT', '2011-04-24 17:27:25'),
(125, 'NOLTE ALBERT', '2011-04-24 17:27:25'),
(126, 'TOMEI FRANCES', '2011-04-24 17:27:25'),
(127, 'GARLAND KEVIN', '2011-04-24 17:27:25'),
(128, 'MCQUEEN CATE', '2011-04-24 17:27:25'),
(129, 'CRAWFORD DARYL', '2011-04-24 17:27:25'),
(130, 'KEITEL GRETA', '2011-04-24 17:27:25'),
(131, 'JACKMAN JANE', '2011-04-24 17:27:25'),
(132, 'HOPPER ADAM', '2011-04-24 17:27:25'),
(133, 'PENN RICHARD', '2011-04-24 17:27:25'),
(134, 'HOPKINS GENE', '2011-04-24 17:27:25'),
(135, 'REYNOLDS RITA', '2011-04-24 17:27:25'),
(136, 'MANSFIELD ED', '2011-04-24 17:27:25'),
(137, 'WILLIAMS MORGAN', '2011-04-24 17:27:25'),
(138, 'DEE LUCILLE', '2011-04-24 17:27:25'),
(139, 'GOODING EWAN', '2011-04-24 17:27:25'),
(140, 'HURT WHOOPI', '2011-04-24 17:27:25'),
(141, 'HARRIS CATE', '2011-04-24 17:27:25'),
(142, 'RYDER JADA', '2011-04-24 17:27:25'),
(143, 'DEAN RIVER', '2011-04-24 17:27:25'),
(144, 'WITHERSPOON ANGELA', '2011-04-24 17:27:25'),
(145, 'ALLEN KIM', '2011-04-24 17:27:25'),
(146, 'JOHANSSON ALBERT', '2011-04-24 17:27:25'),
(147, 'WINSLET FAY', '2011-04-24 17:27:25'),
(148, 'DEE EMILY', '2011-04-24 17:27:25'),
(149, 'TEMPLE RUSSELL', '2011-04-24 17:27:25'),
(150, 'NOLTE JAYNE', '2011-04-24 17:27:25'),
(151, 'HESTON GEOFFREY', '2011-04-24 17:27:25'),
(152, 'HARRIS BEN', '2011-04-24 17:27:25'),
(153, 'KILMER MINNIE', '2011-04-24 17:27:25'),
(154, 'GIBSON MERYL', '2011-04-24 17:27:25'),
(155, 'TANDY IAN', '2011-04-24 17:27:25'),
(156, 'WOOD FAY', '2011-04-24 17:27:25'),
(157, 'MALDEN GRETA', '2011-04-24 17:27:25'),
(158, 'BASINGER VIVIEN', '2011-04-24 17:27:25'),
(159, 'BRODY LAURA', '2011-04-24 17:27:25'),
(160, 'DEPP CHRIS', '2011-04-24 17:27:25'),
(161, 'HOPE HARVEY', '2011-04-24 17:27:25'),
(162, 'KILMER OPRAH', '2011-04-24 17:27:25'),
(163, 'WEST CHRISTOPHER', '2011-04-24 17:27:25'),
(164, 'WILLIS HUMPHREY', '2011-04-24 17:27:25'),
(165, 'GARLAND AL', '2011-04-24 17:27:25'),
(166, 'DEGENERES NICK', '2011-04-24 17:27:25'),
(167, 'BULLOCK LAURENCE', '2011-04-24 17:27:25'),
(168, 'WILSON WILL', '2011-04-24 17:27:25'),
(169, 'HOFFMAN KENNETH', '2011-04-24 17:27:25'),
(170, 'HOPPER MENA', '2011-04-24 17:27:25'),
(171, 'PFEIFFER OLYMPIA', '2011-04-24 17:27:25'),
(172, 'WILLIAMS GROUCHO', '2011-04-24 17:27:25'),
(173, 'DREYFUSS ALAN', '2011-04-24 17:27:25'),
(174, 'BENING MICHAEL', '2011-04-24 17:27:25'),
(175, 'HACKMAN WILLIAM', '2011-04-24 17:27:25'),
(176, 'CHASE JON', '2011-04-24 17:27:25'),
(177, 'MCKELLEN GENE', '2011-04-24 17:27:25'),
(178, 'MONROE LISA', '2011-04-24 17:27:25'),
(179, 'GUINESS ED', '2011-04-24 17:27:25'),
(180, 'SILVERSTONE JEFF', '2011-04-24 17:27:25'),
(181, 'CARREY MATTHEW', '2011-04-24 17:27:25'),
(182, 'AKROYD DEBBIE', '2011-04-24 17:27:25'),
(183, 'CLOSE RUSSELL', '2011-04-24 17:27:25'),
(184, 'GARLAND HUMPHREY', '2011-04-24 17:27:25'),
(185, 'BOLGER MICHAEL', '2011-04-24 17:27:25'),
(186, 'ZELLWEGER JULIA', '2011-04-24 17:27:25'),
(187, 'BALL RENEE', '2011-04-24 17:27:25'),
(188, 'DUKAKIS ROCK', '2011-04-24 17:27:25'),
(189, 'BIRCH CUBA', '2011-04-24 17:27:25'),
(190, 'BAILEY AUDREY', '2011-04-24 17:27:25'),
(191, 'GOODING GREGORY', '2011-04-24 17:27:25'),
(192, 'SUVARI JOHN', '2011-04-24 17:27:25'),
(193, 'TEMPLE BURT', '2011-04-24 17:27:25'),
(194, 'ALLEN MERYL', '2011-04-24 17:27:25'),
(195, 'SILVERSTONE JAYNE', '2011-04-24 17:27:25'),
(196, 'WALKEN BELA', '2011-04-24 17:27:25'),
(197, 'WEST REESE', '2011-04-24 17:27:25'),
(198, 'KEITEL MARY', '2011-04-24 17:27:25'),
(199, 'FAWCETT JULIA', '2011-04-24 17:27:25'),
(200, 'TEMPLE THORA', '2011-04-24 17:27:25');
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `category`
--
CREATE TABLE IF NOT EXISTS `category` (
`category_id` tinyint(3) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(25) NOT NULL,
PRIMARY KEY (`category_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=17 ;
--
-- Volcado de datos para la tabla `category`
--
INSERT INTO `category` (`category_id`, `name`) VALUES
(1, 'Action'),
(2, 'Animation'),
(3, 'Children'),
(4, 'Classics'),
(5, 'Comedy'),
(6, 'Documentary'),
(7, 'Drama'),
(8, 'Family'),
(9, 'Foreign'),
(10, 'Games'),
(11, 'Horror'),
(12, 'Music'),
(13, 'New'),
(14, 'Sci-Fi'),
(15, 'Sports'),
(16, 'Travel');
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `customers`
--
CREATE TABLE IF NOT EXISTS `customers` (
`customerNumber` int(11) NOT NULL AUTO_INCREMENT,
`customerName` varchar(50) NOT NULL,
`contactLastName` varchar(50) NOT NULL,
`contactFirstName` varchar(50) NOT NULL,
`phone` varchar(50) NOT NULL,
`addressLine1` varchar(50) NOT NULL,
`addressLine2` varchar(50) DEFAULT NULL,
`city` varchar(50) NOT NULL,
`state` varchar(50) DEFAULT NULL,
`postalCode` varchar(15) DEFAULT NULL,
`country` varchar(50) NOT NULL,
`salesRepEmployeeNumber` int(11) DEFAULT NULL,
`creditLimit` double DEFAULT NULL,
PRIMARY KEY (`customerNumber`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=497 ;
--
-- Volcado de datos para la tabla `customers`
--
INSERT INTO `customers` (`customerNumber`, `customerName`, `contactLastName`, `contactFirstName`, `phone`, `addressLine1`, `addressLine2`, `city`, `state`, `postalCode`, `country`, `salesRepEmployeeNumber`, `creditLimit`) VALUES
(103, 'Atelier graphique', 'Schmitt', 'Carine ', '40.32.2555', '54, rue Royale', NULL, 'Nantes', NULL, '44000', 'France', 1370, 21000),
(112, 'Signal Gift Stores', 'King', 'Jean', '7025551838', '8489 Strong St.', NULL, 'Las Vegas', 'NV', '83030', 'USA', 1166, 71800),
(114, 'Australian Collectors, Co.', 'Ferguson', 'Peter', '03 9520 4555', '636 St Kilda Road', 'Level 3', 'Melbourne', 'Victoria', '3004', 'Australia', 1611, 117300),
(119, 'La Rochelle Gifts', 'Labrune', 'Janine ', '40.67.8555', '67, rue des Cinquante Otages', NULL, 'Nantes', NULL, '44000', 'France', 1370, 118200),
(121, 'Baane Mini Imports', 'Bergulfsen', 'Jonas ', '07-98 9555', 'Erling Skakkes gate 78', NULL, 'Stavern', NULL, '4110', 'Norway', 1504, 81700),
(124, 'Mini Gifts Distributors Ltd.', 'Nelson', 'Susan', '4155551450', '5677 Strong St.', NULL, 'San Rafael', 'CA', '97562', 'USA', 1165, 210500),
(125, 'Havel & Zbyszek Co', 'Piestrzeniewicz', 'Zbyszek ', '(26) 642-7555', 'ul. Filtrowa 68', NULL, 'Warszawa', NULL, '01-012', 'Poland', NULL, 0),
(128, 'Blauer See Auto, Co.', 'Keitel', 'Roland', '+49 69 66 90 2555', 'Lyonerstr. 34', NULL, 'Frankfurt', NULL, '60528', 'Germany', 1504, 59700),
(129, 'Mini Wheels Co.', 'Murphy', 'Julie', '6505555787', '5557 North Pendale Street', NULL, 'San Francisco', 'CA', '94217', 'USA', 1165, 64600),
(131, 'Land of Toys Inc.', 'Lee', 'Kwai', '2125557818', '897 Long Airport Avenue', NULL, 'NYC', 'NY', '10022', 'USA', 1323, 114900),
(141, 'Euro+ Shopping Channel', 'Freyre', 'Diego ', '(91) 555 94 44', 'C/ Moralzarzal, 86', NULL, 'Madrid', NULL, '28034', 'Spain', 1370, 227600),
(144, 'Volvo Model Replicas, Co', 'Berglund', 'Christina ', '0921-12 3555', 'Berguvsvägen 8', NULL, 'Luleå', NULL, 'S-958 22', 'Sweden', 1504, 53100),
(145, 'Danish Wholesale Imports', 'Petersen', 'Jytte ', '31 12 3555', 'Vinbæltet 34', NULL, 'Kobenhavn', NULL, '1734', 'Denmark', 1401, 83400),
(146, 'Saveley & Henriot, Co.', 'Saveley', 'Mary ', '78.32.5555', '2, rue du Commerce', NULL, 'Lyon', NULL, '69004', 'France', 1337, 123900),
(148, 'Dragon Souveniers, Ltd.', 'Natividad', 'Eric', '+65 221 7555', 'Bronz Sok.', 'Bronz Apt. 3/6 Tesvikiye', 'Singapore', NULL, '079903', 'Singapore', 1621, 103800),
(151, 'Muscle Machine Inc', 'Young', 'Jeff', '2125557413', '4092 Furth Circle', 'Suite 400', 'NYC', 'NY', '10022', 'USA', 1286, 138500),
(157, 'Diecast Classics Inc.', 'Leong', 'Kelvin', '2155551555', '7586 Pompton St.', NULL, 'Allentown', 'PA', '70267', 'USA', 1216, 100600),
(161, 'Technics Stores Inc.', 'Hashimoto', 'Juri', '6505556809', '9408 Furth Circle', NULL, 'Burlingame', 'CA', '94217', 'USA', 1165, 84600),
(166, 'Handji Gifts& Co', 'Victorino', 'Wendy', '+65 224 1555', '106 Linden Road Sandown', '2nd Floor', 'Singapore', NULL, '069045', 'Singapore', 1612, 97900),
(167, 'Herkku Gifts', 'Oeztan', 'Veysel', '+47 2267 3215', 'Brehmen St. 121', 'PR 334 Sentrum', 'Bergen', NULL, 'N 5804', 'Norway ', 1504, 96800),
(168, 'American Souvenirs Inc', 'Franco', 'Keith', '2035557845', '149 Spinnaker Dr.', 'Suite 101', 'New Haven', 'CT', '97823', 'USA', 1286, 0),
(169, 'Porto Imports Co.', 'de Castro', 'Isabel ', '(1) 356-5555', 'Estrada da saúde n. 58', NULL, 'Lisboa', NULL, '1756', 'Portugal', NULL, 0),
(171, 'Daedalus Designs Imports', 'Rancé', 'Martine ', '20.16.1555', '184, chaussée de Tournai', NULL, 'Lille', NULL, '59000', 'France', 1370, 82900),
(172, 'La Corne D''abondance, Co.', 'Bertrand', 'Marie', '(1) 42.34.2555', '265, boulevard Charonne', NULL, 'Paris', NULL, '75012', 'France', 1337, 84300),
(173, 'Cambridge Collectables Co.', 'Tseng', 'Jerry', '6175555555', '4658 Baden Av.', NULL, 'Cambridge', 'MA', '51247', 'USA', 1188, 43400),
(175, 'Gift Depot Inc.', 'King', 'Julie', '2035552570', '25593 South Bay Ln.', NULL, 'Bridgewater', 'CT', '97562', 'USA', 1323, 84300),
(177, 'Osaka Souveniers Co.', 'Kentary', 'Mory', '+81 06 6342 5555', '1-6-20 Dojima', NULL, 'Kita-ku', 'Osaka', ' 530-0003', 'Japan', 1621, 81200),
(181, 'Vitachrome Inc.', 'Frick', 'Michael', '2125551500', '2678 Kingston Rd.', 'Suite 101', 'NYC', 'NY', '10022', 'USA', 1286, 76400),
(186, 'Toys of Finland, Co.', 'Karttunen', 'Matti', '90-224 8555', 'Keskuskatu 45', NULL, 'Helsinki', NULL, '21240', 'Finland', 1501, 96500),
(187, 'AV Stores, Co.', 'Ashworth', 'Rachel', '(171) 555-1555', 'Fauntleroy Circus', NULL, 'Manchester', NULL, 'EC2 5NT', 'UK', 1501, 136800),
(189, 'Clover Collections, Co.', 'Cassidy', 'Dean', '+353 1862 1555', '25 Maiden Lane', 'Floor No. 4', 'Dublin', NULL, '2', 'Ireland', 1504, 69400),
(198, 'Auto-Moto Classics Inc.', 'Taylor', 'Leslie', '6175558428', '16780 Pompton St.', NULL, 'Brickhaven', 'MA', '58339', 'USA', 1216, 23000),
(201, 'UK Collectables, Ltd.', 'Devon', 'Elizabeth', '(171) 555-2282', '12, Berkeley Gardens Blvd', NULL, 'Liverpool', NULL, 'WX1 6LT', 'UK', 1501, 92700),
(202, 'Canadian Gift Exchange Network', 'Tamuri', 'Yoshi ', '(604) 555-3392', '1900 Oak St.', NULL, 'Vancouver', 'BC', 'V3F 2K1', 'Canada', 1323, 90300),
(204, 'Online Mini Collectables', 'Barajas', 'Miguel', '6175557555', '7635 Spinnaker Dr.', NULL, 'Brickhaven', 'MA', '58339', 'USA', 1188, 68700),
(205, 'Toys4GrownUps.com', 'Young', 'Julie', '6265557265', '78934 Hillside Dr.', NULL, 'Pasadena', 'CA', '90003', 'USA', 1166, 90700),
(206, 'Asian Shopping Network, Co', 'Walker', 'Brydey', '+612 9411 1555', 'Suntec Tower Three', '8 Temasek', 'Singapore', NULL, '038988', 'Singapore', NULL, 0),
(209, 'Mini Caravy', 'Citeaux', 'Frédérique ', '88.60.1555', '24, place Kléber', NULL, 'Strasbourg', NULL, '67000', 'France', 1370, 53800),
(211, 'King Kong Collectables, Co.', 'Gao', 'Mike', '+852 2251 1555', 'Bank of China Tower', '1 Garden Road', 'Central Hong Kong', NULL, NULL, 'Hong Kong', 1621, 58600),
(216, 'Enaco Distributors', 'Saavedra', 'Eduardo ', '(93) 203 4555', 'Rambla de Cataluña, 23', NULL, 'Barcelona', NULL, '08022', 'Spain', 1702, 60300),
(219, 'Boards & Toys Co.', 'Young', 'Mary', '3105552373', '4097 Douglas Av.', NULL, 'Glendale', 'CA', '92561', 'USA', 1166, 11000),
(223, 'Natürlich Autos', 'Kloss', 'Horst ', '0372-555188', 'Taucherstraße 10', NULL, 'Cunewalde', NULL, '01307', 'Germany', NULL, 0),
(227, 'Heintze Collectables', 'Ibsen', 'Palle', '86 21 3555', 'Smagsloget 45', NULL, 'Århus', NULL, '8200', 'Denmark', 1401, 120800),
(233, 'Québec Home Shopping Network', 'Fresnière', 'Jean ', '(514) 555-8054', '43 rue St. Laurent', NULL, 'Montréal', 'Québec', 'H1J 1C3', 'Canada', 1286, 48700),
(237, 'ANG Resellers', 'Camino', 'Alejandra ', '(91) 745 6555', 'Gran Vía, 1', NULL, 'Madrid', NULL, '28001', 'Spain', NULL, 0),
(239, 'Collectable Mini Designs Co.', 'Thompson', 'Valarie', '7605558146', '361 Furth Circle', NULL, 'San Diego', 'CA', '91217', 'USA', 1166, 105000),
(240, 'giftsbymail.co.uk', 'Bennett', 'Helen ', '(198) 555-8888', 'Garden House', 'Crowther Way 23', 'Cowes', 'Isle of Wight', 'PO31 7PJ', 'UK', 1501, 93900),
(242, 'Alpha Cognac', 'Roulet', 'Annette ', '61.77.6555', '1 rue Alsace-Lorraine', NULL, 'Toulouse', NULL, '31000', 'France', 1370, 61100),
(247, 'Messner Shopping Network', 'Messner', 'Renate ', '069-0555984', 'Magazinweg 7', NULL, 'Frankfurt', NULL, '60528', 'Germany', NULL, 0),
(249, 'Amica Models & Co.', 'Accorti', 'Paolo ', '011-4988555', 'Via Monte Bianco 34', NULL, 'Torino', NULL, '10100', 'Italy', 1401, 113000),
(250, 'Lyon Souveniers', 'Da Silva', 'Daniel', '+33 1 46 62 7555', '27 rue du Colonel Pierre Avia', NULL, 'Paris', NULL, '75508', 'France', 1337, 68100),
(256, 'Auto Associés & Cie.', 'Tonini', 'Daniel ', '30.59.8555', '67, avenue de l''Europe', NULL, 'Versailles', NULL, '78000', 'France', 1370, 77900),
(259, 'Toms Spezialitäten, Ltd', 'Pfalzheim', 'Henriette ', '0221-5554327', 'Mehrheimerstr. 369', NULL, 'Köln', NULL, '50739', 'Germany', 1504, 120400),
(260, 'Royal Canadian Collectables, Ltd.', 'Lincoln', 'Elizabeth ', '(604) 555-4555', '23 Tsawassen Blvd.', NULL, 'Tsawassen', 'BC', 'T2F 8M4', 'Canada', 1323, 89600),
(273, 'Franken Gifts, Co', 'Franken', 'Peter ', '089-0877555', 'Berliner Platz 43', NULL, 'München', NULL, '80805', 'Germany', NULL, 0),
(276, 'Anna''s Decorations, Ltd', 'O''Hara', 'Anna', '02 9936 8555', '201 Miller Street', 'Level 15', 'North Sydney', 'NSW', '2060', 'Australia', 1611, 107800),
(278, 'Rovelli Gifts', 'Rovelli', 'Giovanni ', '035-640555', 'Via Ludovico il Moro 22', NULL, 'Bergamo', NULL, '24100', 'Italy', 1401, 119600),
(282, 'Souveniers And Things Co.', 'Huxley', 'Adrian', '+61 2 9495 8555', 'Monitor Money Building', '815 Pacific Hwy', 'Chatswood', 'NSW', '2067', 'Australia', 1611, 93300),
(286, 'Marta''s Replicas Co.', 'Hernandez', 'Marta', '6175558555', '39323 Spinnaker Dr.', NULL, 'Cambridge', 'MA', '51247', 'USA', 1216, 123700),
(293, 'BG&E Collectables', 'Harrison', 'Ed', '+41 26 425 50 01', 'Rte des Arsenaux 41 ', NULL, 'Fribourg', NULL, '1700', 'Switzerland', NULL, 0),
(298, 'Vida Sport, Ltd', 'Holz', 'Mihael', '0897-034555', 'Grenzacherweg 237', NULL, 'Genève', NULL, '1203', 'Switzerland', 1702, 141300),
(299, 'Norway Gifts By Mail, Co.', 'Klaeboe', 'Jan', '+47 2212 1555', 'Drammensveien 126A', 'PB 211 Sentrum', 'Oslo', NULL, 'N 0106', 'Norway ', 1504, 95100),
(303, 'Schuyler Imports', 'Schuyler', 'Bradley', '+31 20 491 9555', 'Kingsfordweg 151', NULL, 'Amsterdam', NULL, '1043 GR', 'Netherlands', NULL, 0),
(307, 'Der Hund Imports', 'Andersen', 'Mel', '030-0074555', 'Obere Str. 57', NULL, 'Berlin', NULL, '12209', 'Germany', NULL, 0),
(311, 'Oulu Toy Supplies, Inc.', 'Koskitalo', 'Pirkko', '981-443655', 'Torikatu 38', NULL, 'Oulu', NULL, '90110', 'Finland', 1501, 90500),
(314, 'Petit Auto', 'Dewey', 'Catherine ', '(02) 5554 67', 'Rue Joseph-Bens 532', NULL, 'Bruxelles', NULL, 'B-1180', 'Belgium', 1401, 79900),
(319, 'Mini Classics', 'Frick', 'Steve', '9145554562', '3758 North Pendale Street', NULL, 'White Plains', 'NY', '24067', 'USA', 1323, 102700),
(320, 'Mini Creations Ltd.', 'Huang', 'Wing', '5085559555', '4575 Hillside Dr.', NULL, 'New Bedford', 'MA', '50553', 'USA', 1188, 94500),
(321, 'Corporate Gift Ideas Co.', 'Brown', 'Julie', '6505551386', '7734 Strong St.', NULL, 'San Francisco', 'CA', '94217', 'USA', 1165, 105000),
(323, 'Down Under Souveniers, Inc', 'Graham', 'Mike', '+64 9 312 5555', '162-164 Grafton Road', 'Level 2', 'Auckland ', NULL, NULL, 'New Zealand', 1612, 88000),
(324, 'Stylish Desk Decors, Co.', 'Brown', 'Ann ', '(171) 555-0297', '35 King George', NULL, 'London', NULL, 'WX3 6FW', 'UK', 1501, 77000),
(328, 'Tekni Collectables Inc.', 'Brown', 'William', '2015559350', '7476 Moss Rd.', NULL, 'Newark', 'NJ', '94019', 'USA', 1323, 43000),
(333, 'Australian Gift Network, Co', 'Calaghan', 'Ben', '61-7-3844-6555', '31 Duncan St. West End', NULL, 'South Brisbane', 'Queensland', '4101', 'Australia', 1611, 51600),
(334, 'Suominen Souveniers', 'Suominen', 'Kalle', '+358 9 8045 555', 'Software Engineering Center', 'SEC Oy', 'Espoo', NULL, 'FIN-02271', 'Finland', 1501, 98800),
(335, 'Cramer Spezialitäten, Ltd', 'Cramer', 'Philip ', '0555-09555', 'Maubelstr. 90', NULL, 'Brandenburg', NULL, '14776', 'Germany', NULL, 0),
(339, 'Classic Gift Ideas, Inc', 'Cervantes', 'Francisca', '2155554695', '782 First Street', NULL, 'Philadelphia', 'PA', '71270', 'USA', 1188, 81100),
(344, 'CAF Imports', 'Fernandez', 'Jesus', '+34 913 728 555', 'Merchants House', '27-30 Merchant''s Quay', 'Madrid', NULL, '28023', 'Spain', 1702, 59600),
(347, 'Men ''R'' US Retailers, Ltd.', 'Chandler', 'Brian', '2155554369', '6047 Douglas Av.', NULL, 'Los Angeles', 'CA', '91003', 'USA', 1166, 57700),
(348, 'Asian Treasures, Inc.', 'McKenna', 'Patricia ', '2967 555', '8 Johnstown Road', NULL, 'Cork', 'Co. Cork', NULL, 'Ireland', NULL, 0),
(350, 'Marseille Mini Autos', 'Lebihan', 'Laurence ', '91.24.4555', '12, rue des Bouchers', NULL, 'Marseille', NULL, '13008', 'France', 1337, 65000),
(353, 'Reims Collectables', 'Henriot', 'Paul ', '26.47.1555', '59 rue de l''Abbaye', NULL, 'Reims', NULL, '51100', 'France', 1337, 81100),
(356, 'SAR Distributors, Co', 'Kuger', 'Armand', '+27 21 550 3555', '1250 Pretorius Street', NULL, 'Hatfield', 'Pretoria', '0028', 'South Africa', NULL, 0),
(357, 'GiftsForHim.com', 'MacKinlay', 'Wales', '64-9-3763555', '199 Great North Road', NULL, 'Auckland', NULL, NULL, 'New Zealand', 1612, 77700),
(361, 'Kommission Auto', 'Josephs', 'Karin', '0251-555259', 'Luisenstr. 48', NULL, 'Münster', NULL, '44087', 'Germany', NULL, 0),
(362, 'Gifts4AllAges.com', 'Yoshido', 'Juri', '6175559555', '8616 Spinnaker Dr.', NULL, 'Boston', 'MA', '51003', 'USA', 1216, 41900),
(363, 'Online Diecast Creations Co.', 'Young', 'Dorothy', '6035558647', '2304 Long Airport Avenue', NULL, 'Nashua', 'NH', '62005', 'USA', 1216, 114200),
(369, 'Lisboa Souveniers, Inc', 'Rodriguez', 'Lino ', '(1) 354-2555', 'Jardim das rosas n. 32', NULL, 'Lisboa', NULL, '1675', 'Portugal', NULL, 0),
(376, 'Precious Collectables', 'Urs', 'Braun', '0452-076555', 'Hauptstr. 29', NULL, 'Bern', NULL, '3012', 'Switzerland', 1702, 0),
(379, 'Collectables For Less Inc.', 'Nelson', 'Allen', '6175558555', '7825 Douglas Av.', NULL, 'Brickhaven', 'MA', '58339', 'USA', 1188, 70700),
(381, 'Royale Belge', 'Cartrain', 'Pascale ', '(071) 23 67 2555', 'Boulevard Tirou, 255', NULL, 'Charleroi', NULL, 'B-6000', 'Belgium', 1401, 23500),
(382, 'Salzburg Collectables', 'Pipps', 'Georg ', '6562-9555', 'Geislweg 14', NULL, 'Salzburg', NULL, '5020', 'Austria', 1401, 71700),
(385, 'Cruz & Sons Co.', 'Cruz', 'Arnold', '+63 2 555 3587', '15 McCallum Street', 'NatWest Center #13-03', 'Makati City', NULL, '1227 MM', 'Philippines', 1621, 81500),
(386, 'L''ordine Souveniers', 'Moroni', 'Maurizio ', '0522-556555', 'Strada Provinciale 124', NULL, 'Reggio Emilia', NULL, '42100', 'Italy', 1401, 121400),
(398, 'Tokyo Collectables, Ltd', 'Shimamura', 'Akiko', '+81 3 3584 0555', '2-2-8 Roppongi', NULL, 'Minato-ku', 'Tokyo', '106-0032', 'Japan', 1621, 94400),
(406, 'Auto Canal+ Petit', 'Perrier', 'Dominique', '(1) 47.55.6555', '25, rue Lauriston', NULL, 'Paris', NULL, '75016', 'France', 1337, 95000),
(409, 'Stuttgart Collectable Exchange', 'Müller', 'Rita ', '0711-555361', 'Adenauerallee 900', NULL, 'Stuttgart', NULL, '70563', 'Germany', NULL, 0),
(412, 'Extreme Desk Decorations, Ltd', 'McRoy', 'Sarah', '04 499 9555', '101 Lambton Quay', 'Level 11', 'Wellington', NULL, NULL, 'New Zealand', 1612, 86800),
(415, 'Bavarian Collectables Imports, Co.', 'Donnermeyer', 'Michael', ' +49 89 61 08 9555', 'Hansastr. 15', NULL, 'Munich', NULL, '80686', 'Germany', 1504, 77000),
(424, 'Classic Legends Inc.', 'Hernandez', 'Maria', '2125558493', '5905 Pompton St.', 'Suite 750', 'NYC', 'NY', '10022', 'USA', 1286, 67500),
(443, 'Feuer Online Stores, Inc', 'Feuer', 'Alexander ', '0342-555176', 'Heerstr. 22', NULL, 'Leipzig', NULL, '04179', 'Germany', NULL, 0),
(447, 'Gift Ideas Corp.', 'Lewis', 'Dan', '2035554407', '2440 Pompton St.', NULL, 'Glendale', 'CT', '97561', 'USA', 1323, 49700),
(448, 'Scandinavian Gift Ideas', 'Larsson', 'Martha', '0695-34 6555', 'Åkergatan 24', NULL, 'Bräcke', NULL, 'S-844 67', 'Sweden', 1504, 116400),
(450, 'The Sharp Gifts Warehouse', 'Frick', 'Sue', '4085553659', '3086 Ingle Ln.', NULL, 'San Jose', 'CA', '94217', 'USA', 1165, 77600),
(452, 'Mini Auto Werke', 'Mendel', 'Roland ', '7675-3555', 'Kirchgasse 6', NULL, 'Graz', NULL, '8010', 'Austria', 1401, 45300),
(455, 'Super Scale Inc.', 'Murphy', 'Leslie', '2035559545', '567 North Pendale Street', NULL, 'New Haven', 'CT', '97823', 'USA', 1286, 95400),
(456, 'Microscale Inc.', 'Choi', 'Yu', '2125551957', '5290 North Pendale Street', 'Suite 200', 'NYC', 'NY', '10022', 'USA', 1286, 39800),
(458, 'Corrida Auto Replicas, Ltd', 'Sommer', 'Martín ', '(91) 555 22 82', 'C/ Araquil, 67', NULL, 'Madrid', NULL, '28023', 'Spain', 1702, 104600),
(459, 'Warburg Exchange', 'Ottlieb', 'Sven ', '0241-039123', 'Walserweg 21', NULL, 'Aachen', NULL, '52066', 'Germany', NULL, 0),
(462, 'FunGiftIdeas.com', 'Benitez', 'Violeta', '5085552555', '1785 First Street', NULL, 'New Bedford', 'MA', '50553', 'USA', 1216, 85800),
(465, 'Anton Designs, Ltd.', 'Anton', 'Carmen', '+34 913 728555', 'c/ Gobelas, 19-1 Urb. La Florida', NULL, 'Madrid', NULL, '28023', 'Spain', NULL, 0),
(471, 'Australian Collectables, Ltd', 'Clenahan', 'Sean', '61-9-3844-6555', '7 Allen Street', NULL, 'Glen Waverly', 'Victoria', '3150', 'Australia', 1611, 60300),
(473, 'Frau da Collezione', 'Ricotti', 'Franco', '+39 022515555', '20093 Cologno Monzese', 'Alessandro Volta 16', 'Milan', NULL, NULL, 'Italy', 1401, 34800),
(475, 'West Coast Collectables Co.', 'Thompson', 'Steve', '3105553722', '3675 Furth Circle', NULL, 'Burbank', 'CA', '94019', 'USA', 1166, 55400),
(477, 'Mit Vergnügen & Co.', 'Moos', 'Hanna ', '0621-08555', 'Forsterstr. 57', NULL, 'Mannheim', NULL, '68306', 'Germany', NULL, 0),
(480, 'Kremlin Collectables, Co.', 'Semenov', 'Alexander ', '+7 812 293 0521', '2 Pobedy Square', NULL, 'Saint Petersburg', NULL, '196143', 'Russia', NULL, 0),
(481, 'Raanan Stores, Inc', 'Altagar,G M', 'Raanan', '+ 972 9 959 8555', '3 Hagalim Blv.', NULL, 'Herzlia', NULL, '47625', 'Israel', NULL, 0),
(484, 'Iberia Gift Imports, Corp.', 'Roel', 'José Pedro ', '(95) 555 82 82', 'C/ Romero, 33', NULL, 'Sevilla', NULL, '41101', 'Spain', 1702, 65700),
(486, 'Motor Mint Distributors Inc.', 'Salazar', 'Rosa', '2155559857', '11328 Douglas Av.', NULL, 'Philadelphia', 'PA', '71270', 'USA', 1323, 72600),
(487, 'Signal Collectibles Ltd.', 'Taylor', 'Sue', '4155554312', '2793 Furth Circle', NULL, 'Brisbane', 'CA', '94217', 'USA', 1165, 60300),
(489, 'Double Decker Gift Stores, Ltd', 'Smith', 'Thomas ', '(171) 555-7555', '120 Hanover Sq.', NULL, 'London', NULL, 'WA1 1DP', 'UK', 1501, 43300),
(495, 'Diecast Collectables', 'Franco', 'Valarie', '6175552555', '6251 Ingle Ln.', NULL, 'Boston', 'MA', '51003', 'USA', 1188, 85100),
(496, 'Kelly''s Gift Shop', 'Snowden', 'Tony', '+64 9 5555500', 'Arenales 1938 3''A''', NULL, 'Auckland ', NULL, NULL, 'New Zealand', 1612, 110000);
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `employees`
--
CREATE TABLE IF NOT EXISTS `employees` (
`employeeNumber` int(11) NOT NULL AUTO_INCREMENT,
`lastName` varchar(50) NOT NULL,
`firstName` varchar(50) NOT NULL,
`extension` varchar(10) NOT NULL,
`email` varchar(100) NOT NULL,
`officeCode` varchar(10) NOT NULL,
`file_url` varchar(250) CHARACTER SET utf8 NOT NULL,
`jobTitle` varchar(50) NOT NULL,
PRIMARY KEY (`employeeNumber`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1703 ;
--
-- Volcado de datos para la tabla `employees`
--
INSERT INTO `employees` (`employeeNumber`, `lastName`, `firstName`, `extension`, `email`, `officeCode`, `file_url`, `jobTitle`) VALUES
(1002, 'Murphy', 'Diane', 'x5800', '[email protected]', '1', '', 'President'),
(1056, 'Patterson', 'Mary', 'x4611', '[email protected]', '1', '', 'VP Sales'),
(1076, 'Firrelli', 'Jeff', 'x9273', '[email protected]', '1', '', 'VP Marketing'),
(1088, 'Patterson', 'William', 'x4871', '[email protected]', '6', '', 'Sales Manager (APAC)'),
(1102, 'Bondur', 'Gerard', 'x5408', '[email protected]', '4', 'pdftest.pdf', 'Sale Manager (EMEA)'),
(1143, 'Bow', 'Anthony', 'x5428', '[email protected]', '1', '', 'Sales Manager (NA)'),
(1165, 'Jennings', 'Leslie', 'x3291', '[email protected]', '1', '', 'Sales Rep'),
(1166, 'Thompson', 'Leslie', 'x4065', '[email protected]', '1', '', 'Sales Rep'),
(1188, 'Firrelli', 'Julie', 'x2173', '[email protected]', '2', 'test-2.pdf', 'Sales Rep'),
(1216, 'Patterson', 'Steve', 'x4334', '[email protected]', '2', '', 'Sales Rep'),
(1286, 'Tseng', 'Foon Yue', 'x2248', '[email protected]', '3', '', 'Sales Rep'),
(1323, 'Vanauf', 'George', 'x4102', '[email protected]', '3', '', 'Sales Rep'),
(1337, 'Bondur', 'Loui', 'x6493', '[email protected]', '4', '', 'Sales Rep'),
(1370, 'Hernandez', 'Gerard', 'x2028', '[email protected]', '4', '', 'Sales Rep'),
(1401, 'Castillo', 'Pamela', 'x2759', '[email protected]', '4', '', 'Sales Rep'),
(1501, 'Bott', 'Larry', 'x2311', '[email protected]', '7', '', 'Sales Rep'),
(1504, 'Jones', 'Barry', 'x102', '[email protected]', '7', '', 'Sales Rep'),
(1611, 'Fixter', 'Andy', 'x101', '[email protected]', '6', '', 'Sales Rep'),
(1612, 'Marsh', 'Peter', 'x102', '[email protected]', '6', '', 'Sales Rep'),
(1619, 'King', 'Tom', 'x103', '[email protected]', '6', '', 'Sales Rep'),
(1621, 'Nishi', 'Mami', 'x101', '[email protected]', '5', '', 'Sales Rep'),
(1625, 'Kato', 'Yoshimi', 'x102', '[email protected]', '5', '', 'Sales Rep'),
(1702, 'Gerard', 'Martin', 'x2312', '[email protected]', '4', '', 'Sales Rep');
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `film`
--
CREATE TABLE IF NOT EXISTS `film` (
`film_id` smallint(5) unsigned NOT NULL AUTO_INCREMENT,
`title` varchar(255) NOT NULL,
`description` text,
`release_year` year(4) DEFAULT NULL,
`rental_duration` tinyint(3) unsigned NOT NULL DEFAULT '3',
`rental_rate` decimal(4,2) NOT NULL DEFAULT '4.99',
`length` smallint(5) unsigned DEFAULT NULL,
`replacement_cost` decimal(5,2) NOT NULL DEFAULT '19.99',
`rating` enum('G','PG','PG-13','R','NC-17') DEFAULT 'G',
`special_features` set('Trailers','Commentaries','Deleted Scenes','Behind the Scenes') DEFAULT NULL,
`last_update` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`film_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1001 ;
--
-- Volcado de datos para la tabla `film`
--
INSERT INTO `film` (`film_id`, `title`, `description`, `release_year`, `rental_duration`, `rental_rate`, `length`, `replacement_cost`, `rating`, `special_features`, `last_update`) VALUES
(1, 'ACADEMY DINOSAUR', '<p>A Epic Drama of a Feminist And a Mad Scientist who must Battle a Teacher in The Canadian Rockies</p>', 2006, 6, 0.99, 86, 20.99, 'PG', 'Deleted Scenes,Behind the Scenes', '2006-02-15 04:03:42'),
(2, 'ACE GOLDFINGER', 'A Astounding Epistle of a Database Administrator And a Explorer who must Find a Car in Ancient China', 2006, 3, 4.99, 48, 12.99, 'G', 'Trailers,Deleted Scenes', '2006-02-15 04:03:42'),
(3, 'ADAPTATION HOLES', 'A Astounding Reflection of a Lumberjack And a Car who must Sink a Lumberjack in A Baloon Factory', 2006, 7, 2.99, 50, 18.99, 'NC-17', 'Trailers,Deleted Scenes', '2006-02-15 04:03:42'),
(4, 'AFFAIR PREJUDICE', 'A Fanciful Documentary of a Frisbee And a Lumberjack who must Chase a Monkey in A Shark Tank', 2006, 5, 2.99, 117, 26.99, 'G', 'Commentaries,Behind the Scenes', '2006-02-15 04:03:42'),
(5, 'AFRICAN EGG', 'A Fast-Paced Documentary of a Pastry Chef And a Dentist who must Pursue a Forensic Psychologist in The Gulf of Mexico', 2006, 6, 2.99, 130, 22.99, 'G', 'Deleted Scenes', '2006-02-15 04:03:42'),
(6, 'AGENT TRUMAN', 'A Intrepid Panorama of a Robot And a Boy who must Escape a Sumo Wrestler in Ancient China', 2006, 3, 2.99, 169, 17.99, 'PG', 'Deleted Scenes', '2006-02-15 04:03:42'),
(7, 'AIRPLANE SIERRA', 'A Touching Saga of a Hunter And a Butler who must Discover a Butler in A Jet Boat', 2006, 6, 4.99, 62, 28.99, 'PG-13', 'Trailers,Deleted Scenes', '2006-02-15 04:03:42'),
(8, 'AIRPORT POLLOCK', 'A Epic Tale of a Moose And a Girl who must Confront a Monkey in Ancient India', 2006, 6, 4.99, 54, 15.99, 'R', 'Trailers', '2006-02-15 04:03:42'),
(9, 'ALABAMA DEVIL', 'A Thoughtful Panorama of a Database Administrator And a Mad Scientist who must Outgun a Mad Scientist in A Jet Boat', 2006, 3, 2.99, 114, 21.99, 'PG-13', 'Trailers,Deleted Scenes', '2006-02-15 04:03:42'),
(10, 'ALADDIN CALENDAR', 'A Action-Packed Tale of a Man And a Lumberjack who must Reach a Feminist in Ancient China', 2006, 6, 4.99, 63, 24.99, 'NC-17', 'Trailers,Deleted Scenes', '2006-02-15 04:03:42'),
(11, 'ALAMO VIDEOTAPE', 'A Boring Epistle of a Butler And a Cat who must Fight a Pastry Chef in A MySQL Convention', 2006, 6, 0.99, 126, 16.99, 'G', 'Commentaries,Behind the Scenes', '2006-02-15 04:03:42'),
(12, 'ALASKA PHANTOM', 'A Fanciful Saga of a Hunter And a Pastry Chef who must Vanquish a Boy in Australia', 2006, 6, 0.99, 136, 22.99, 'PG', 'Commentaries,Deleted Scenes', '2006-02-15 04:03:42'),
(13, 'ALI FOREVER', 'A Action-Packed Drama of a Dentist And a Crocodile who must Battle a Feminist in The Canadian Rockies', 2006, 4, 4.99, 150, 21.99, 'PG', 'Deleted Scenes,Behind the Scenes', '2006-02-15 04:03:42'),
(14, 'ALICE FANTASIA', 'A Emotional Drama of a A Shark And a Database Administrator who must Vanquish a Pioneer in Soviet Georgia', 2006, 6, 0.99, 94, 23.99, 'NC-17', 'Trailers,Deleted Scenes,Behind the Scenes', '2006-02-15 04:03:42'),
(15, 'ALIEN CENTER', 'A Brilliant Drama of a Cat And a Mad Scientist who must Battle a Feminist in A MySQL Convention', 2006, 5, 2.99, 46, 10.99, 'NC-17', 'Trailers,Commentaries,Behind the Scenes', '2006-02-15 04:03:42'),
(16, 'ALLEY EVOLUTION', 'A Fast-Paced Drama of a Robot And a Composer who must Battle a Astronaut in New Orleans', 2006, 6, 2.99, 180, 23.99, 'NC-17', 'Trailers,Commentaries', '2006-02-15 04:03:42'),
(17, 'ALONE TRIP', 'A Fast-Paced Character Study of a Composer And a Dog who must Outgun a Boat in An Abandoned Fun House', 2006, 3, 0.99, 82, 14.99, 'R', 'Trailers,Behind the Scenes', '2006-02-15 04:03:42'),
(18, 'ALTER VICTORY', 'A Thoughtful Drama of a Composer And a Feminist who must Meet a Secret Agent in The Canadian Rockies', 2006, 6, 0.99, 57, 27.99, 'PG-13', 'Trailers,Behind the Scenes', '2006-02-15 04:03:42'),
(19, 'AMADEUS HOLY', 'A Emotional Display of a Pioneer And a Technical Writer who must Battle a Man in A Baloon', 2006, 6, 0.99, 113, 20.99, 'PG', 'Commentaries,Deleted Scenes,Behind the Scenes', '2006-02-15 04:03:42'),
(20, 'AMELIE HELLFIGHTERS', 'A Boring Drama of a Woman And a Squirrel who must Conquer a Student in A Baloon', 2006, 4, 4.99, 79, 23.99, 'R', 'Commentaries,Deleted Scenes,Behind the Scenes', '2006-02-15 04:03:42'),
(21, 'AMERICAN CIRCUS', 'A Insightful Drama of a Girl And a Astronaut who must Face a Database Administrator in A Shark Tank', 2006, 3, 4.99, 129, 17.99, 'R', 'Commentaries,Behind the Scenes', '2006-02-15 04:03:42'),
(22, 'AMISTAD MIDSUMMER', 'A Emotional Character Study of a Dentist And a Crocodile who must Meet a Sumo Wrestler in California', 2006, 6, 2.99, 85, 10.99, 'G', 'Commentaries,Behind the Scenes', '2006-02-15 04:03:42'),
(23, 'ANACONDA CONFESSIONS', 'A Lacklusture Display of a Dentist And a Dentist who must Fight a Girl in Australia', 2006, 3, 0.99, 92, 9.99, 'R', 'Trailers,Deleted Scenes', '2006-02-15 04:03:42'),
(24, 'ANALYZE HOOSIERS', 'A Thoughtful Display of a Explorer And a Pastry Chef who must Overcome a Feminist in The Sahara Desert', 2006, 6, 2.99, 181, 19.99, 'R', 'Trailers,Behind the Scenes', '2006-02-15 04:03:42'),
(25, 'ANGELS LIFE', 'A Thoughtful Display of a Woman And a Astronaut who must Battle a Robot in Berlin', 2006, 3, 2.99, 74, 15.99, 'G', 'Trailers', '2006-02-15 04:03:42'),
(26, 'ANNIE IDENTITY', 'A Amazing Panorama of a Pastry Chef And a Boat who must Escape a Woman in An Abandoned Amusement Park', 2006, 3, 0.99, 86, 15.99, 'G', 'Commentaries,Deleted Scenes', '2006-02-15 04:03:42'),
(27, 'ANONYMOUS HUMAN', 'A Amazing Reflection of a Database Administrator And a Astronaut who must Outrace a Database Administrator in A Shark Tank', 2006, 7, 0.99, 179, 12.99, 'NC-17', 'Deleted Scenes,Behind the Scenes', '2006-02-15 04:03:42'),
(28, 'ANTHEM LUKE', 'A Touching Panorama of a Waitress And a Woman who must Outrace a Dog in An Abandoned Amusement Park', 2006, 5, 4.99, 91, 16.99, 'PG-13', 'Deleted Scenes,Behind the Scenes', '2006-02-15 04:03:42'),
(29, 'ANTITRUST TOMATOES', 'A Fateful Yarn of a Womanizer And a Feminist who must Succumb a Database Administrator in Ancient India', 2006, 5, 2.99, 168, 11.99, 'NC-17', 'Trailers,Commentaries,Deleted Scenes', '2006-02-15 04:03:42'),
(30, 'ANYTHING SAVANNAH', 'A Epic Story of a Pastry Chef And a Woman who must Chase a Feminist in An Abandoned Fun House', 2006, 4, 2.99, 82, 27.99, 'R', 'Trailers,Deleted Scenes,Behind the Scenes', '2006-02-15 04:03:42'),
(31, 'APACHE DIVINE', 'A Awe-Inspiring Reflection of a Pastry Chef And a Teacher who must Overcome a Sumo Wrestler in A U-Boat', 2006, 5, 4.99, 92, 16.99, 'NC-17', 'Commentaries,Deleted Scenes,Behind the Scenes', '2006-02-15 04:03:42'),
(32, 'APOCALYPSE FLAMINGOS', 'A Astounding Story of a Dog And a Squirrel who must Defeat a Woman in An Abandoned Amusement Park', 2006, 6, 4.99, 119, 11.99, 'R', 'Trailers,Commentaries', '2006-02-15 04:03:42'),
(33, 'APOLLO TEEN', 'A Action-Packed Reflection of a Crocodile And a Explorer who must Find a Sumo Wrestler in An Abandoned Mine Shaft', 2006, 5, 2.99, 153, 15.99, 'PG-13', 'Trailers,Commentaries,Deleted Scenes,Behind the Scenes', '2006-02-15 04:03:42'),
(34, 'ARABIA DOGMA', 'A Touching Epistle of a Madman And a Mad Cow who must Defeat a Student in Nigeria', 2006, 6, 0.99, 62, 29.99, 'NC-17', 'Commentaries,Deleted Scenes', '2006-02-15 04:03:42'),
(35, 'ARACHNOPHOBIA ROLLERCOASTER', 'A Action-Packed Reflection of a Pastry Chef And a Composer who must Discover a Mad Scientist in The First Manned Space Station', 2006, 4, 2.99, 147, 24.99, 'PG-13', 'Trailers,Deleted Scenes,Behind the Scenes', '2006-02-15 04:03:42'),
(36, 'ARGONAUTS TOWN', 'A Emotional Epistle of a Forensic Psychologist And a Butler who must Challenge a Waitress in An Abandoned Mine Shaft', 2006, 7, 0.99, 127, 12.99, 'PG-13', 'Trailers,Commentaries', '2006-02-15 04:03:42'),
(37, 'ARIZONA BANG', 'A Brilliant Panorama of a Mad Scientist And a Mad Cow who must Meet a Pioneer in A Monastery', 2006, 3, 2.99, 121, 28.99, 'PG', 'Trailers,Deleted Scenes', '2006-02-15 04:03:42'),
(38, 'ARK RIDGEMONT', 'A Beautiful Yarn of a Pioneer And a Monkey who must Pursue a Explorer in The Sahara Desert', 2006, 6, 0.99, 68, 25.99, 'NC-17', 'Trailers,Commentaries,Deleted Scenes,Behind the Scenes', '2006-02-15 04:03:42'),
(39, 'ARMAGEDDON LOST', 'A Fast-Paced Tale of a Boat And a Teacher who must Succumb a Composer in An Abandoned Mine Shaft', 2006, 5, 0.99, 99, 10.99, 'G', 'Trailers', '2006-02-15 04:03:42'),
(40, 'ARMY FLINTSTONES', 'A Boring Saga of a Database Administrator And a Womanizer who must Battle a Waitress in Nigeria', 2006, 4, 0.99, 148, 22.99, 'R', 'Trailers,Commentaries', '2006-02-15 04:03:42'),
(41, 'ARSENIC INDEPENDENCE', 'A Fanciful Documentary of a Mad Cow And a Womanizer who must Find a Dentist in Berlin', 2006, 4, 0.99, 137, 17.99, 'PG', 'Trailers,Deleted Scenes,Behind the Scenes', '2006-02-15 04:03:42'),
(42, 'ARTIST COLDBLOODED', 'A Stunning Reflection of a Robot And a Moose who must Challenge a Woman in California', 2006, 5, 2.99, 170, 10.99, 'NC-17', 'Trailers,Behind the Scenes', '2006-02-15 04:03:42'),
(43, 'ATLANTIS CAUSE', 'A Thrilling Yarn of a Feminist And a Hunter who must Fight a Technical Writer in A Shark Tank', 2006, 6, 2.99, 170, 15.99, 'G', 'Behind the Scenes', '2006-02-15 04:03:42'),
(44, 'ATTACKS HATE', 'A Fast-Paced Panorama of a Technical Writer And a Mad Scientist who must Find a Feminist in An Abandoned Mine Shaft', 2006, 5, 4.99, 113, 21.99, 'PG-13', 'Trailers,Behind the Scenes', '2006-02-15 04:03:42'),
(45, 'ATTRACTION NEWTON', 'A Astounding Panorama of a Composer And a Frisbee who must Reach a Husband in Ancient Japan', 2006, 5, 4.99, 83, 14.99, 'PG-13', 'Trailers,Behind the Scenes', '2006-02-15 04:03:42'),
(46, 'AUTUMN CROW', 'A Beautiful Tale of a Dentist And a Mad Cow who must Battle a Moose in The Sahara Desert', 2006, 3, 4.99, 108, 13.99, 'G', 'Trailers,Commentaries,Deleted Scenes,Behind the Scenes', '2006-02-15 04:03:42'),
(47, 'BABY HALL', 'A Boring Character Study of a A Shark And a Girl who must Outrace a Feminist in An Abandoned Mine Shaft', 2006, 5, 4.99, 153, 23.99, 'NC-17', 'Commentaries', '2006-02-15 04:03:42'),
(48, 'BACKLASH UNDEFEATED', 'A Stunning Character Study of a Mad Scientist And a Mad Cow who must Kill a Car in A Monastery', 2006, 3, 4.99, 118, 24.99, 'PG-13', 'Trailers,Behind the Scenes', '2006-02-15 04:03:42'),
(49, 'BADMAN DAWN', 'A Emotional Panorama of a Pioneer And a Composer who must Escape a Mad Scientist in A Jet Boat', 2006, 6, 2.99, 162, 22.99, 'R', 'Trailers,Commentaries,Behind the Scenes', '2006-02-15 04:03:42'),
(50, 'BAKED CLEOPATRA', 'A Stunning Drama of a Forensic Psychologist And a Husband who must Overcome a Waitress in A Monastery', 2006, 3, 2.99, 182, 20.99, 'G', 'Commentaries,Behind the Scenes', '2006-02-15 04:03:42'),
(51, 'BALLOON HOMEWARD', 'A Insightful Panorama of a Forensic Psychologist And a Mad Cow who must Build a Mad Scientist in The First Manned Space Station', 2006, 5, 2.99, 75, 10.99, 'NC-17', 'Deleted Scenes', '2006-02-15 04:03:42'),
(52, 'BALLROOM MOCKINGBIRD', 'A Thrilling Documentary of a Composer And a Monkey who must Find a Feminist in California', 2006, 6, 0.99, 173, 29.99, 'G', 'Commentaries,Deleted Scenes', '2006-02-15 04:03:42'),
(53, 'BANG KWAI', 'A Epic Drama of a Madman And a Cat who must Face a A Shark in An Abandoned Amusement Park', 2006, 5, 2.99, 87, 25.99, 'NC-17', 'Commentaries,Deleted Scenes,Behind the Scenes', '2006-02-15 04:03:42'),
(54, 'BANGER PINOCCHIO', 'A Awe-Inspiring Drama of a Car And a Pastry Chef who must Chase a Crocodile in The First Manned Space Station', 2006, 5, 0.99, 113, 15.99, 'R', 'Trailers,Commentaries,Deleted Scenes', '2006-02-15 04:03:42'),
(55, 'BARBARELLA STREETCAR', 'A Awe-Inspiring Story of a Feminist And a Cat who must Conquer a Dog in A Monastery', 2006, 6, 2.99, 65, 27.99, 'G', 'Behind the Scenes', '2006-02-15 04:03:42'),
(56, 'BAREFOOT MANCHURIAN', 'A Intrepid Story of a Cat And a Student who must Vanquish a Girl in An Abandoned Amusement Park', 2006, 6, 2.99, 129, 15.99, 'G', 'Trailers,Commentaries', '2006-02-15 04:03:42'),
(57, 'BASIC EASY', 'A Stunning Epistle of a Man And a Husband who must Reach a Mad Scientist in A Jet Boat', 2006, 4, 2.99, 90, 18.99, 'PG-13', 'Deleted Scenes', '2006-02-15 04:03:42'),
(58, 'BEACH HEARTBREAKERS', 'A Fateful Display of a Womanizer And a Mad Scientist who must Outgun a A Shark in Soviet Georgia', 2006, 6, 2.99, 122, 16.99, 'G', 'Deleted Scenes,Behind the Scenes', '2006-02-15 04:03:42'),
(59, 'BEAR GRACELAND', 'A Astounding Saga of a Dog And a Boy who must Kill a Teacher in The First Manned Space Station', 2006, 4, 2.99, 160, 20.99, 'R', 'Deleted Scenes', '2006-02-15 04:03:42'),
(60, 'BEAST HUNCHBACK', 'A Awe-Inspiring Epistle of a Student And a Squirrel who must Defeat a Boy in Ancient China', 2006, 3, 4.99, 89, 22.99, 'R', 'Deleted Scenes,Behind the Scenes', '2006-02-15 04:03:42'),
(61, 'BEAUTY GREASE', 'A Fast-Paced Display of a Composer And a Moose who must Sink a Robot in An Abandoned Mine Shaft', 2006, 5, 4.99, 175, 28.99, 'G', 'Trailers,Commentaries', '2006-02-15 04:03:42'),
(62, 'BED HIGHBALL', 'A Astounding Panorama of a Lumberjack And a Dog who must Redeem a Woman in An Abandoned Fun House', 2006, 5, 2.99, 106, 23.99, 'NC-17', 'Trailers,Commentaries,Deleted Scenes', '2006-02-15 04:03:42'),
(63, 'BEDAZZLED MARRIED', 'A Astounding Character Study of a Madman And a Robot who must Meet a Mad Scientist in An Abandoned Fun House', 2006, 6, 0.99, 73, 21.99, 'PG', 'Trailers,Deleted Scenes,Behind the Scenes', '2006-02-15 04:03:42'),
(64, 'BEETHOVEN EXORCIST', 'A Epic Display of a Pioneer And a Student who must Challenge a Butler in The Gulf of Mexico', 2006, 6, 0.99, 151, 26.99, 'PG-13', 'Commentaries,Behind the Scenes', '2006-02-15 04:03:42'),
(65, 'BEHAVIOR RUNAWAY', 'A Unbelieveable Drama of a Student And a Husband who must Outrace a Sumo Wrestler in Berlin', 2006, 3, 4.99, 100, 20.99, 'PG', 'Trailers,Deleted Scenes,Behind the Scenes', '2006-02-15 04:03:42'),
(66, 'BENEATH RUSH', 'A Astounding Panorama of a Man And a Monkey who must Discover a Man in The First Manned Space Station', 2006, 6, 0.99, 53, 27.99, 'NC-17', 'Commentaries,Deleted Scenes', '2006-02-15 04:03:42'),
(67, 'BERETS AGENT', 'A Taut Saga of a Crocodile And a Boy who must Overcome a Technical Writer in Ancient China', 2006, 5, 2.99, 77, 24.99, 'PG-13', 'Deleted Scenes', '2006-02-15 04:03:42'),
(68, 'BETRAYED REAR', 'A Emotional Character Study of a Boat And a Pioneer who must Find a Explorer in A Shark Tank', 2006, 5, 4.99, 122, 26.99, 'NC-17', 'Commentaries,Deleted Scenes,Behind the Scenes', '2006-02-15 04:03:42'),
(69, 'BEVERLY OUTLAW', 'A Fanciful Documentary of a Womanizer And a Boat who must Defeat a Madman in The First Manned Space Station', 2006, 3, 2.99, 85, 21.99, 'R', 'Trailers', '2006-02-15 04:03:42'),
(70, 'BIKINI BORROWERS', 'A Astounding Drama of a Astronaut And a Cat who must Discover a Woman in The First Manned Space Station', 2006, 7, 4.99, 142, 26.99, 'NC-17', 'Commentaries,Deleted Scenes', '2006-02-15 04:03:42'),
(71, 'BILKO ANONYMOUS', 'A Emotional Reflection of a Teacher And a Man who must Meet a Cat in The First Manned Space Station', 2006, 3, 4.99, 100, 25.99, 'PG-13', 'Commentaries,Deleted Scenes,Behind the Scenes', '2006-02-15 04:03:42'),
(72, 'BILL OTHERS', 'A Stunning Saga of a Mad Scientist And a Forensic Psychologist who must Challenge a Squirrel in A MySQL Convention', 2006, 6, 2.99, 93, 12.99, 'PG', 'Trailers,Commentaries', '2006-02-15 04:03:42'),
(73, 'BINGO TALENTED', 'A Touching Tale of a Girl And a Crocodile who must Discover a Waitress in Nigeria', 2006, 5, 2.99, 150, 22.99, 'PG-13', 'Trailers,Commentaries', '2006-02-15 04:03:42'),
(74, 'BIRCH ANTITRUST', 'A Fanciful Panorama of a Husband And a Pioneer who must Outgun a Dog in A Baloon', 2006, 4, 4.99, 162, 18.99, 'PG', 'Trailers,Commentaries,Deleted Scenes', '2006-02-15 04:03:42'),
(75, 'BIRD INDEPENDENCE', 'A Thrilling Documentary of a Car And a Student who must Sink a Hunter in The Canadian Rockies', 2006, 6, 4.99, 163, 14.99, 'G', 'Commentaries,Behind the Scenes', '2006-02-15 04:03:42'),
(76, 'BIRDCAGE CASPER', 'A Fast-Paced Saga of a Frisbee And a Astronaut who must Overcome a Feminist in Ancient India', 2006, 4, 0.99, 103, 23.99, 'NC-17', 'Commentaries,Deleted Scenes,Behind the Scenes', '2006-02-15 04:03:42'),
(77, 'BIRDS PERDITION', 'A Boring Story of a Womanizer And a Pioneer who must Face a Dog in California', 2006, 5, 4.99, 61, 15.99, 'G', 'Trailers,Behind the Scenes', '2006-02-15 04:03:42'),
(78, 'BLACKOUT PRIVATE', 'A Intrepid Yarn of a Pastry Chef And a Mad Scientist who must Challenge a Secret Agent in Ancient Japan', 2006, 7, 2.99, 85, 12.99, 'PG', 'Trailers,Deleted Scenes', '2006-02-15 04:03:42'),
(79, 'BLADE POLISH', 'A Thoughtful Character Study of a Frisbee And a Pastry Chef who must Fight a Dentist in The First Manned Space Station', 2006, 5, 0.99, 114, 10.99, 'PG-13', 'Trailers,Behind the Scenes', '2006-02-15 04:03:42'),
(80, 'BLANKET BEVERLY', 'A Emotional Documentary of a Student And a Girl who must Build a Boat in Nigeria', 2006, 7, 2.99, 148, 21.99, 'G', 'Trailers', '2006-02-15 04:03:42'),
(81, 'BLINDNESS GUN', 'A Touching Drama of a Robot And a Dentist who must Meet a Hunter in A Jet Boat', 2006, 6, 4.99, 103, 29.99, 'PG-13', 'Trailers,Behind the Scenes', '2006-02-15 04:03:42'),
(82, 'BLOOD ARGONAUTS', 'A Boring Drama of a Explorer And a Man who must Kill a Lumberjack in A Manhattan Penthouse', 2006, 3, 0.99, 71, 13.99, 'G', 'Trailers,Commentaries,Behind the Scenes', '2006-02-15 04:03:42'),
(83, 'BLUES INSTINCT', 'A Insightful Documentary of a Boat And a Composer who must Meet a Forensic Psychologist in An Abandoned Fun House', 2006, 5, 2.99, 50, 18.99, 'G', 'Trailers,Deleted Scenes,Behind the Scenes', '2006-02-15 04:03:42'),
(84, 'BOILED DARES', 'A Awe-Inspiring Story of a Waitress And a Dog who must Discover a Dentist in Ancient Japan', 2006, 7, 4.99, 102, 13.99, 'PG', 'Trailers,Commentaries', '2006-02-15 04:03:42'),
(85, 'BONNIE HOLOCAUST', 'A Fast-Paced Story of a Crocodile And a Robot who must Find a Moose in Ancient Japan', 2006, 4, 0.99, 63, 29.99, 'G', 'Deleted Scenes', '2006-02-15 04:03:42'),
(86, 'BOOGIE AMELIE', 'A Lacklusture Character Study of a Husband And a Sumo Wrestler who must Succumb a Technical Writer in The Gulf of Mexico', 2006, 6, 4.99, 121, 11.99, 'R', 'Commentaries,Behind the Scenes', '2006-02-15 04:03:42'),
(87, 'BOONDOCK BALLROOM', 'A Fateful Panorama of a Crocodile And a Boy who must Defeat a Monkey in The Gulf of Mexico', 2006, 7, 0.99, 76, 14.99, 'NC-17', 'Behind the Scenes', '2006-02-15 04:03:42'),
(88, 'BORN SPINAL', 'A Touching Epistle of a Frisbee And a Husband who must Pursue a Student in Nigeria', 2006, 7, 4.99, 179, 17.99, 'PG', 'Trailers,Commentaries,Deleted Scenes', '2006-02-15 04:03:42'),
(89, 'BORROWERS BEDAZZLED', 'A Brilliant Epistle of a Teacher And a Sumo Wrestler who must Defeat a Man in An Abandoned Fun House', 2006, 7, 0.99, 63, 22.99, 'G', 'Commentaries,Deleted Scenes,Behind the Scenes', '2006-02-15 04:03:42'),
(90, 'BOULEVARD MOB', 'A Fateful Epistle of a Moose And a Monkey who must Confront a Lumberjack in Ancient China', 2006, 3, 0.99, 63, 11.99, 'R', 'Trailers', '2006-02-15 04:03:42'),
(91, 'BOUND CHEAPER', 'A Thrilling Panorama of a Database Administrator And a Astronaut who must Challenge a Lumberjack in A Baloon', 2006, 5, 0.99, 98, 17.99, 'PG', 'Behind the Scenes', '2006-02-15 04:03:42'),
(92, 'BOWFINGER GABLES', 'A Fast-Paced Yarn of a Waitress And a Composer who must Outgun a Dentist in California', 2006, 7, 4.99, 72, 19.99, 'NC-17', 'Trailers,Deleted Scenes', '2006-02-15 04:03:42'),
(93, 'BRANNIGAN SUNRISE', 'A Amazing Epistle of a Moose And a Crocodile who must Outrace a Dog in Berlin', 2006, 4, 4.99, 121, 27.99, 'PG', 'Trailers', '2006-02-15 04:03:42'),
(94, 'BRAVEHEART HUMAN', 'A Insightful Story of a Dog And a Pastry Chef who must Battle a Girl in Berlin', 2006, 7, 2.99, 176, 14.99, 'PG-13', 'Trailers,Deleted Scenes', '2006-02-15 04:03:42'),
(95, 'BREAKFAST GOLDFINGER', 'A Beautiful Reflection of a Student And a Student who must Fight a Moose in Berlin', 2006, 5, 4.99, 123, 18.99, 'G', 'Trailers,Commentaries,Deleted Scenes', '2006-02-15 04:03:42'),
(96, 'BREAKING HOME', 'A Beautiful Display of a Secret Agent And a Monkey who must Battle a Sumo Wrestler in An Abandoned Mine Shaft', 2006, 4, 2.99, 169, 21.99, 'PG-13', 'Trailers,Commentaries', '2006-02-15 04:03:42'),
(97, 'BRIDE INTRIGUE', 'A Epic Tale of a Robot And a Monkey who must Vanquish a Man in New Orleans', 2006, 7, 0.99, 56, 24.99, 'G', 'Trailers,Commentaries,Behind the Scenes', '2006-02-15 04:03:42'),
(98, 'BRIGHT ENCOUNTERS', 'A Fateful Yarn of a Lumberjack And a Feminist who must Conquer a Student in A Jet Boat', 2006, 4, 4.99, 73, 12.99, 'PG-13', 'Trailers', '2006-02-15 04:03:42'),
(99, 'BRINGING HYSTERICAL', 'A Fateful Saga of a A Shark And a Technical Writer who must Find a Woman in A Jet Boat', 2006, 7, 2.99, 136, 14.99, 'PG', 'Trailers', '2006-02-15 04:03:42'),
(100, 'BROOKLYN DESERT', 'A Beautiful Drama of a Dentist And a Composer who must Battle a Sumo Wrestler in The First Manned Space Station', 2006, 7, 4.99, 161, 21.99, 'R', 'Commentaries', '2006-02-15 04:03:42'),
(101, 'BROTHERHOOD BLANKET', 'A Fateful Character Study of a Butler And a Technical Writer who must Sink a Astronaut in Ancient Japan', 2006, 3, 0.99, 73, 26.99, 'R', 'Behind the Scenes', '2006-02-15 04:03:42'),
(102, 'BUBBLE GROSSE', 'A Awe-Inspiring Panorama of a Crocodile And a Moose who must Confront a Girl in A Baloon', 2006, 4, 4.99, 60, 20.99, 'R', 'Trailers,Commentaries,Deleted Scenes,Behind the Scenes', '2006-02-15 04:03:42'),
(103, 'BUCKET BROTHERHOOD', 'A Amazing Display of a Girl And a Womanizer who must Succumb a Lumberjack in A Baloon Factory', 2006, 7, 4.99, 133, 27.99, 'PG', 'Commentaries,Deleted Scenes', '2006-02-15 04:03:42'),
(104, 'BUGSY SONG', 'A Awe-Inspiring Character Study of a Secret Agent And a Boat who must Find a Squirrel in The First Manned Space Station', 2006, 4, 2.99, 119, 17.99, 'G', 'Commentaries', '2006-02-15 04:03:42'),
(105, 'BULL SHAWSHANK', 'A Fanciful Drama of a Moose And a Squirrel who must Conquer a Pioneer in The Canadian Rockies', 2006, 6, 0.99, 125, 21.99, 'NC-17', 'Deleted Scenes', '2006-02-15 04:03:42'),
(106, 'BULWORTH COMMANDMENTS', 'A Amazing Display of a Mad Cow And a Pioneer who must Redeem a Sumo Wrestler in The Outback', 2006, 4, 2.99, 61, 14.99, 'G', 'Trailers', '2006-02-15 04:03:42'),
(107, 'BUNCH MINDS', 'A Emotional Story of a Feminist And a Feminist who must Escape a Pastry Chef in A MySQL Convention', 2006, 4, 2.99, 63, 13.99, 'G', 'Behind the Scenes', '2006-02-15 04:03:42'),
(108, 'BUTCH PANTHER', 'A Lacklusture Yarn of a Feminist And a Database Administrator who must Face a Hunter in New Orleans', 2006, 6, 0.99, 67, 19.99, 'PG-13', 'Trailers,Commentaries,Deleted Scenes', '2006-02-15 04:03:42'),
(109, 'BUTTERFLY CHOCOLAT', 'A Fateful Story of a Girl And a Composer who must Conquer a Husband in A Shark Tank', 2006, 3, 0.99, 89, 17.99, 'G', 'Behind the Scenes', '2006-02-15 04:03:42'),
(110, 'CABIN FLASH', 'A Stunning Epistle of a Boat And a Man who must Challenge a A Shark in A Baloon Factory', 2006, 4, 0.99, 53, 25.99, 'NC-17', 'Commentaries,Deleted Scenes', '2006-02-15 04:03:42'),
(111, 'CADDYSHACK JEDI', 'A Awe-Inspiring Epistle of a Woman And a Madman who must Fight a Robot in Soviet Georgia', 2006, 3, 0.99, 52, 17.99, 'NC-17', 'Commentaries,Deleted Scenes', '2006-02-15 04:03:42'),
(112, 'CALENDAR GUNFIGHT', 'A Thrilling Drama of a Frisbee And a Lumberjack who must Sink a Man in Nigeria', 2006, 4, 4.99, 120, 22.99, 'NC-17', 'Trailers,Commentaries,Behind the Scenes', '2006-02-15 04:03:42'),
(113, 'CALIFORNIA BIRDS', 'A Thrilling Yarn of a Database Administrator And a Robot who must Battle a Database Administrator in Ancient India', 2006, 4, 4.99, 75, 19.99, 'NC-17', 'Trailers,Commentaries,Deleted Scenes', '2006-02-15 04:03:42'),
(114, 'CAMELOT VACATION', 'A Touching Character Study of a Woman And a Waitress who must Battle a Pastry Chef in A MySQL Convention', 2006, 3, 0.99, 61, 26.99, 'NC-17', 'Trailers,Commentaries,Deleted Scenes,Behind the Scenes', '2006-02-15 04:03:42'),
(115, 'CAMPUS REMEMBER', 'A Astounding Drama of a Crocodile And a Mad Cow who must Build a Robot in A Jet Boat', 2006, 5, 2.99, 167, 27.99, 'R', 'Behind the Scenes', '2006-02-15 04:03:42'),
(116, 'CANDIDATE PERDITION', 'A Brilliant Epistle of a Composer And a Database Administrator who must Vanquish a Mad Scientist in The First Manned Space Station', 2006, 4, 2.99, 70, 10.99, 'R', 'Deleted Scenes,Behind the Scenes', '2006-02-15 04:03:42'),
(117, 'CANDLES GRAPES', 'A Fanciful Character Study of a Monkey And a Explorer who must Build a Astronaut in An Abandoned Fun House', 2006, 6, 4.99, 135, 15.99, 'NC-17', 'Trailers,Deleted Scenes', '2006-02-15 04:03:42'),
(118, 'CANYON STOCK', 'A Thoughtful Reflection of a Waitress And a Feminist who must Escape a Squirrel in A Manhattan Penthouse', 2006, 7, 0.99, 85, 26.99, 'R', 'Trailers,Deleted Scenes', '2006-02-15 04:03:42'),
(119, 'CAPER MOTIONS', 'A Fateful Saga of a Moose And a Car who must Pursue a Woman in A MySQL Convention', 2006, 6, 0.99, 176, 22.99, 'G', 'Trailers,Commentaries,Deleted Scenes', '2006-02-15 04:03:42'),
(120, 'CARIBBEAN LIBERTY', 'A Fanciful Tale of a Pioneer And a Technical Writer who must Outgun a Pioneer in A Shark Tank', 2006, 3, 4.99, 92, 16.99, 'NC-17', 'Commentaries,Deleted Scenes', '2006-02-15 04:03:42'),
(121, 'CAROL TEXAS', 'A Astounding Character Study of a Composer And a Student who must Overcome a Composer in A Monastery', 2006, 4, 2.99, 151, 15.99, 'PG', 'Trailers,Behind the Scenes', '2006-02-15 04:03:42'),
(122, 'CARRIE BUNCH', 'A Amazing Epistle of a Student And a Astronaut who must Discover a Frisbee in The Canadian Rockies', 2006, 7, 0.99, 114, 11.99, 'PG', 'Trailers,Commentaries,Behind the Scenes', '2006-02-15 04:03:42'),
(123, 'CASABLANCA SUPER', 'A Amazing Panorama of a Crocodile And a Forensic Psychologist who must Pursue a Secret Agent in The First Manned Space Station', 2006, 6, 4.99, 85, 22.99, 'G', 'Trailers,Deleted Scenes,Behind the Scenes', '2006-02-15 04:03:42'),
(124, 'CASPER DRAGONFLY', 'A Intrepid Documentary of a Boat And a Crocodile who must Chase a Robot in The Sahara Desert', 2006, 3, 4.99, 163, 16.99, 'PG-13', 'Trailers', '2006-02-15 04:03:42'),
(125, 'CASSIDY WYOMING', 'A Intrepid Drama of a Frisbee And a Hunter who must Kill a Secret Agent in New Orleans', 2006, 5, 2.99, 61, 19.99, 'NC-17', 'Commentaries,Behind the Scenes', '2006-02-15 04:03:42'),
(126, 'CASUALTIES ENCINO', 'A Insightful Yarn of a A Shark And a Pastry Chef who must Face a Boy in A Monastery', 2006, 3, 4.99, 179, 16.99, 'G', 'Trailers', '2006-02-15 04:03:42'),
(127, 'CAT CONEHEADS', 'A Fast-Paced Panorama of a Girl And a A Shark who must Confront a Boy in Ancient India', 2006, 5, 4.99, 112, 14.99, 'G', 'Commentaries,Deleted Scenes', '2006-02-15 04:03:42'),
(128, 'CATCH AMISTAD', 'A Boring Reflection of a Lumberjack And a Feminist who must Discover a Woman in Nigeria', 2006, 7, 0.99, 183, 10.99, 'G', 'Trailers,Behind the Scenes', '2006-02-15 04:03:42'),
(129, 'CAUSE DATE', 'A Taut Tale of a Explorer And a Pastry Chef who must Conquer a Hunter in A MySQL Convention', 2006, 3, 2.99, 179, 16.99, 'R', 'Commentaries,Deleted Scenes,Behind the Scenes', '2006-02-15 04:03:42'),
(130, 'CELEBRITY HORN', 'A Amazing Documentary of a Secret Agent And a Astronaut who must Vanquish a Hunter in A Shark Tank', 2006, 7, 0.99, 110, 24.99, 'PG-13', 'Deleted Scenes,Behind the Scenes', '2006-02-15 04:03:42'),
(131, 'CENTER DINOSAUR', 'A Beautiful Character Study of a Sumo Wrestler And a Dentist who must Find a Dog in California', 2006, 5, 4.99, 152, 12.99, 'PG', 'Deleted Scenes', '2006-02-15 04:03:42'),
(132, 'CHAINSAW UPTOWN', 'A Beautiful Documentary of a Boy And a Robot who must Discover a Squirrel in Australia', 2006, 6, 0.99, 114, 25.99, 'PG', 'Deleted Scenes,Behind the Scenes', '2006-02-15 04:03:42'),
(133, 'CHAMBER ITALIAN', 'A Fateful Reflection of a Moose And a Husband who must Overcome a Monkey in Nigeria', 2006, 7, 4.99, 117, 14.99, 'NC-17', 'Trailers', '2006-02-15 04:03:42'),
(134, 'CHAMPION FLATLINERS', 'A Amazing Story of a Mad Cow And a Dog who must Kill a Husband in A Monastery', 2006, 4, 4.99, 51, 21.99, 'PG', 'Trailers', '2006-02-15 04:03:42'),
(135, 'CHANCE RESURRECTION', 'A Astounding Story of a Forensic Psychologist And a Forensic Psychologist who must Overcome a Moose in Ancient China', 2006, 3, 2.99, 70, 22.99, 'R', 'Commentaries,Deleted Scenes,Behind the Scenes', '2006-02-15 04:03:42'),
(136, 'CHAPLIN LICENSE', 'A Boring Drama of a Dog And a Forensic Psychologist who must Outrace a Explorer in Ancient India', 2006, 7, 2.99, 146, 26.99, 'NC-17', 'Behind the Scenes', '2006-02-15 04:03:42'),
(137, 'CHARADE DUFFEL', 'A Action-Packed Display of a Man And a Waitress who must Build a Dog in A MySQL Convention', 2006, 3, 2.99, 66, 21.99, 'PG', 'Trailers,Deleted Scenes,Behind the Scenes', '2006-02-15 04:03:42'),
(138, 'CHARIOTS CONSPIRACY', 'A Unbelieveable Epistle of a Robot And a Husband who must Chase a Robot in The First Manned Space Station', 2006, 5, 2.99, 71, 29.99, 'R', 'Deleted Scenes,Behind the Scenes', '2006-02-15 04:03:42'),
(139, 'CHASING FIGHT', 'A Astounding Saga of a Technical Writer And a Butler who must Battle a Butler in A Shark Tank', 2006, 7, 4.99, 114, 21.99, 'PG', 'Trailers,Commentaries', '2006-02-15 04:03:42'),
(140, 'CHEAPER CLYDE', 'A Emotional Character Study of a Pioneer And a Girl who must Discover a Dog in Ancient Japan', 2006, 6, 0.99, 87, 23.99, 'G', 'Trailers,Commentaries,Behind the Scenes', '2006-02-15 04:03:42'),
(141, 'CHICAGO NORTH', 'A Fateful Yarn of a Mad Cow And a Waitress who must Battle a Student in California', 2006, 6, 4.99, 185, 11.99, 'PG-13', 'Deleted Scenes,Behind the Scenes', '2006-02-15 04:03:42'),
(142, 'CHICKEN HELLFIGHTERS', 'A Emotional Drama of a Dog And a Explorer who must Outrace a Technical Writer in Australia', 2006, 3, 0.99, 122, 24.99, 'PG', 'Trailers,Commentaries,Deleted Scenes,Behind the Scenes', '2006-02-15 04:03:42'),
(143, 'CHILL LUCK', 'A Lacklusture Epistle of a Boat And a Technical Writer who must Fight a A Shark in The Canadian Rockies', 2006, 6, 0.99, 142, 17.99, 'PG', 'Trailers,Commentaries,Deleted Scenes', '2006-02-15 04:03:42'),
(144, 'CHINATOWN GLADIATOR', 'A Brilliant Panorama of a Technical Writer And a Lumberjack who must Escape a Butler in Ancient India', 2006, 7, 4.99, 61, 24.99, 'PG', 'Trailers,Commentaries,Deleted Scenes', '2006-02-15 04:03:42'),
(145, 'CHISUM BEHAVIOR', 'A Epic Documentary of a Sumo Wrestler And a Butler who must Kill a Car in Ancient India', 2006, 5, 4.99, 124, 25.99, 'G', 'Trailers,Commentaries,Behind the Scenes', '2006-02-15 04:03:42'),
(146, 'CHITTY LOCK', 'A Boring Epistle of a Boat And a Database Administrator who must Kill a Sumo Wrestler in The First Manned Space Station', 2006, 6, 2.99, 107, 24.99, 'G', 'Commentaries', '2006-02-15 04:03:42'),
(147, 'CHOCOLAT HARRY', 'A Action-Packed Epistle of a Dentist And a Moose who must Meet a Mad Cow in Ancient Japan', 2006, 5, 0.99, 101, 16.99, 'NC-17', 'Commentaries,Behind the Scenes', '2006-02-15 04:03:42'),
(148, 'CHOCOLATE DUCK', 'A Unbelieveable Story of a Mad Scientist And a Technical Writer who must Discover a Composer in Ancient China', 2006, 3, 2.99, 132, 13.99, 'R', 'Trailers,Commentaries,Behind the Scenes', '2006-02-15 04:03:42'),
(149, 'CHRISTMAS MOONSHINE', 'A Action-Packed Epistle of a Feminist And a Astronaut who must Conquer a Boat in A Manhattan Penthouse', 2006, 7, 0.99, 150, 21.99, 'NC-17', 'Trailers,Commentaries,Behind the Scenes', '2006-02-15 04:03:42'),
(150, 'CIDER DESIRE', 'A Stunning Character Study of a Composer And a Mad Cow who must Succumb a Cat in Soviet Georgia', 2006, 7, 2.99, 101, 9.99, 'PG', 'Behind the Scenes', '2006-02-15 04:03:42'),
(151, 'CINCINATTI WHISPERER', 'A Brilliant Saga of a Pastry Chef And a Hunter who must Confront a Butler in Berlin', 2006, 5, 4.99, 143, 26.99, 'NC-17', 'Deleted Scenes', '2006-02-15 04:03:42'),
(152, 'CIRCUS YOUTH', 'A Thoughtful Drama of a Pastry Chef And a Dentist who must Pursue a Girl in A Baloon', 2006, 5, 2.99, 90, 13.99, 'PG-13', 'Trailers,Deleted Scenes,Behind the Scenes', '2006-02-15 04:03:42'),
(153, 'CITIZEN SHREK', 'A Fanciful Character Study of a Technical Writer And a Husband who must Redeem a Robot in The Outback', 2006, 7, 0.99, 165, 18.99, 'G', 'Commentaries,Deleted Scenes', '2006-02-15 04:03:42'),
(154, 'CLASH FREDDY', 'A Amazing Yarn of a Composer And a Squirrel who must Escape a Astronaut in Australia', 2006, 6, 2.99, 81, 12.99, 'G', 'Commentaries,Deleted Scenes', '2006-02-15 04:03:42'),
(155, 'CLEOPATRA DEVIL', 'A Fanciful Documentary of a Crocodile And a Technical Writer who must Fight a A Shark in A Baloon', 2006, 6, 0.99, 150, 26.99, 'PG-13', 'Trailers,Deleted Scenes,Behind the Scenes', '2006-02-15 04:03:42'),
(156, 'CLERKS ANGELS', 'A Thrilling Display of a Sumo Wrestler And a Girl who must Confront a Man in A Baloon', 2006, 3, 4.99, 164, 15.99, 'G', 'Commentaries', '2006-02-15 04:03:42'),
(157, 'CLOCKWORK PARADISE', 'A Insightful Documentary of a Technical Writer And a Feminist who must Challenge a Cat in A Baloon', 2006, 7, 0.99, 143, 29.99, 'PG-13', 'Trailers,Commentaries,Deleted Scenes,Behind the Scenes', '2006-02-15 04:03:42'),
(158, 'CLONES PINOCCHIO', 'A Amazing Drama of a Car And a Robot who must Pursue a Dentist in New Orleans', 2006, 6, 2.99, 124, 16.99, 'R', 'Behind the Scenes', '2006-02-15 04:03:42'),
(159, 'CLOSER BANG', 'A Unbelieveable Panorama of a Frisbee And a Hunter who must Vanquish a Monkey in Ancient India', 2006, 5, 4.99, 58, 12.99, 'R', 'Trailers,Behind the Scenes', '2006-02-15 04:03:42'),
(160, 'CLUB GRAFFITI', 'A Epic Tale of a Pioneer And a Hunter who must Escape a Girl in A U-Boat', 2006, 4, 0.99, 65, 12.99, 'PG-13', 'Trailers,Deleted Scenes', '2006-02-15 04:03:42'),
(161, 'CLUE GRAIL', 'A Taut Tale of a Butler And a Mad Scientist who must Build a Crocodile in Ancient China', 2006, 6, 4.99, 70, 27.99, 'NC-17', 'Trailers,Commentaries,Behind the Scenes', '2006-02-15 04:03:42'),
(162, 'CLUELESS BUCKET', 'A Taut Tale of a Car And a Pioneer who must Conquer a Sumo Wrestler in An Abandoned Fun House', 2006, 4, 2.99, 95, 13.99, 'R', 'Trailers,Deleted Scenes,Behind the Scenes', '2006-02-15 04:03:42'),
(163, 'CLYDE THEORY', 'A Beautiful Yarn of a Astronaut And a Frisbee who must Overcome a Explorer in A Jet Boat', 2006, 4, 0.99, 139, 29.99, 'PG-13', 'Commentaries,Deleted Scenes,Behind the Scenes', '2006-02-15 04:03:42'),
(164, 'COAST RAINBOW', 'A Astounding Documentary of a Mad Cow And a Pioneer who must Challenge a Butler in The Sahara Desert', 2006, 4, 0.99, 55, 20.99, 'PG', 'Trailers,Commentaries,Deleted Scenes,Behind the Scenes', '2006-02-15 04:03:42'),
(165, 'COLDBLOODED DARLING', 'A Brilliant Panorama of a Dentist And a Moose who must Find a Student in The Gulf of Mexico', 2006, 7, 4.99, 70, 27.99, 'G', 'Trailers,Deleted Scenes', '2006-02-15 04:03:42'),
(166, 'COLOR PHILADELPHIA', 'A Thoughtful Panorama of a Car And a Crocodile who must Sink a Monkey in The Sahara Desert', 2006, 6, 2.99, 149, 19.99, 'G', 'Commentaries,Behind the Scenes', '2006-02-15 04:03:42'),
(167, 'COMA HEAD', 'A Awe-Inspiring Drama of a Boy And a Frisbee who must Escape a Pastry Chef in California', 2006, 6, 4.99, 109, 10.99, 'NC-17', 'Commentaries', '2006-02-15 04:03:42'),
(168, 'COMANCHEROS ENEMY', 'A Boring Saga of a Lumberjack And a Monkey who must Find a Monkey in The Gulf of Mexico', 2006, 5, 0.99, 67, 23.99, 'R', 'Trailers,Behind the Scenes', '2006-02-15 04:03:42'),
(169, 'COMFORTS RUSH', 'A Unbelieveable Panorama of a Pioneer And a Husband who must Meet a Mad Cow in An Abandoned Mine Shaft', 2006, 3, 2.99, 76, 19.99, 'NC-17', 'Commentaries,Behind the Scenes', '2006-02-15 04:03:42'),
(170, 'COMMAND DARLING', 'A Awe-Inspiring Tale of a Forensic Psychologist And a Woman who must Challenge a Database Administrator in Ancient Japan', 2006, 5, 4.99, 120, 28.99, 'PG-13', 'Behind the Scenes', '2006-02-15 04:03:42'),
(171, 'COMMANDMENTS EXPRESS', 'A Fanciful Saga of a Student And a Mad Scientist who must Battle a Hunter in An Abandoned Mine Shaft', 2006, 6, 4.99, 59, 13.99, 'R', 'Trailers,Commentaries,Deleted Scenes', '2006-02-15 04:03:42'),
(172, 'CONEHEADS SMOOCHY', 'A Touching Story of a Womanizer And a Composer who must Pursue a Husband in Nigeria', 2006, 7, 4.99, 112, 12.99, 'NC-17', 'Deleted Scenes,Behind the Scenes', '2006-02-15 04:03:42'),
(173, 'CONFESSIONS MAGUIRE', 'A Insightful Story of a Car And a Boy who must Battle a Technical Writer in A Baloon', 2006, 7, 4.99, 65, 25.99, 'PG-13', 'Behind the Scenes', '2006-02-15 04:03:42'),
(174, 'CONFIDENTIAL INTERVIEW', 'A Stunning Reflection of a Cat And a Woman who must Find a Astronaut in Ancient Japan', 2006, 6, 4.99, 180, 13.99, 'NC-17', 'Commentaries', '2006-02-15 04:03:42'),
(175, 'CONFUSED CANDLES', 'A Stunning Epistle of a Cat And a Forensic Psychologist who must Confront a Pioneer in A Baloon', 2006, 3, 2.99, 122, 27.99, 'PG-13', 'Trailers,Commentaries,Deleted Scenes,Behind the Scenes', '2006-02-15 04:03:42'),
(176, 'CONGENIALITY QUEST', 'A Touching Documentary of a Cat And a Pastry Chef who must Find a Lumberjack in A Baloon', 2006, 6, 0.99, 87, 21.99, 'PG-13', 'Commentaries,Behind the Scenes', '2006-02-15 04:03:42'),
(177, 'CONNECTICUT TRAMP', 'A Unbelieveable Drama of a Crocodile And a Mad Cow who must Reach a Dentist in A Shark Tank', 2006, 4, 4.99, 172, 20.99, 'R', 'Commentaries,Deleted Scenes', '2006-02-15 04:03:42'),
(178, 'CONNECTION MICROCOSMOS', 'A Fateful Documentary of a Crocodile And a Husband who must Face a Husband in The First Manned Space Station', 2006, 6, 0.99, 115, 25.99, 'G', 'Deleted Scenes,Behind the Scenes', '2006-02-15 04:03:42'),
(179, 'CONQUERER NUTS', 'A Taut Drama of a Mad Scientist And a Man who must Escape a Pioneer in An Abandoned Mine Shaft', 2006, 4, 4.99, 173, 14.99, 'G', 'Commentaries,Deleted Scenes,Behind the Scenes', '2006-02-15 04:03:42'),
(180, 'CONSPIRACY SPIRIT', 'A Awe-Inspiring Story of a Student And a Frisbee who must Conquer a Crocodile in An Abandoned Mine Shaft', 2006, 4, 2.99, 184, 27.99, 'PG-13', 'Trailers,Commentaries', '2006-02-15 04:03:42'),
(181, 'CONTACT ANONYMOUS', 'A Insightful Display of a A Shark And a Monkey who must Face a Database Administrator in Ancient India', 2006, 7, 2.99, 166, 10.99, 'PG-13', 'Commentaries', '2006-02-15 04:03:42'),
(182, 'CONTROL ANTHEM', 'A Fateful Documentary of a Robot And a Student who must Battle a Cat in A Monastery', 2006, 7, 4.99, 185, 9.99, 'G', 'Commentaries', '2006-02-15 04:03:42'),
(183, 'CONVERSATION DOWNHILL', 'A Taut Character Study of a Husband And a Waitress who must Sink a Squirrel in A MySQL Convention', 2006, 4, 4.99, 112, 14.99, 'R', 'Commentaries', '2006-02-15 04:03:42'),
(184, 'CORE SUIT', 'A Unbelieveable Tale of a Car And a Explorer who must Confront a Boat in A Manhattan Penthouse', 2006, 3, 2.99, 92, 24.99, 'PG-13', 'Deleted Scenes', '2006-02-15 04:03:42'),
(185, 'COWBOY DOOM', 'A Astounding Drama of a Boy And a Lumberjack who must Fight a Butler in A Baloon', 2006, 3, 2.99, 146, 10.99, 'PG', 'Commentaries,Deleted Scenes,Behind the Scenes', '2006-02-15 04:03:42'),
(186, 'CRAFT OUTFIELD', 'A Lacklusture Display of a Explorer And a Hunter who must Succumb a Database Administrator in A Baloon Factory', 2006, 6, 0.99, 64, 17.99, 'NC-17', 'Deleted Scenes,Behind the Scenes', '2006-02-15 04:03:42'),
(187, 'CRANES RESERVOIR', 'A Fanciful Documentary of a Teacher And a Dog who must Outgun a Forensic Psychologist in A Baloon Factory', 2006, 5, 2.99, 57, 12.99, 'NC-17', 'Commentaries', '2006-02-15 04:03:42'),
(188, 'CRAZY HOME', 'A Fanciful Panorama of a Boy And a Woman who must Vanquish a Database Administrator in The Outback', 2006, 7, 2.99, 136, 24.99, 'PG', 'Commentaries,Deleted Scenes', '2006-02-15 04:03:42'),
(189, 'CREATURES SHAKESPEARE', 'A Emotional Drama of a Womanizer And a Squirrel who must Vanquish a Crocodile in Ancient India', 2006, 3, 0.99, 139, 23.99, 'NC-17', 'Trailers,Deleted Scenes', '2006-02-15 04:03:42'),
(190, 'CREEPERS KANE', 'A Awe-Inspiring Reflection of a Squirrel And a Boat who must Outrace a Car in A Jet Boat', 2006, 5, 4.99, 172, 23.99, 'NC-17', 'Trailers,Behind the Scenes', '2006-02-15 04:03:42'),
(191, 'CROOKED FROGMEN', 'A Unbelieveable Drama of a Hunter And a Database Administrator who must Battle a Crocodile in An Abandoned Amusement Park', 2006, 6, 0.99, 143, 27.99, 'PG-13', 'Commentaries,Deleted Scenes,Behind the Scenes', '2006-02-15 04:03:42'),
(192, 'CROSSING DIVORCE', 'A Beautiful Documentary of a Dog And a Robot who must Redeem a Womanizer in Berlin', 2006, 4, 4.99, 50, 19.99, 'R', 'Commentaries,Deleted Scenes,Behind the Scenes', '2006-02-15 04:03:42'),
(193, 'CROSSROADS CASUALTIES', 'A Intrepid Documentary of a Sumo Wrestler And a Astronaut who must Battle a Composer in The Outback', 2006, 5, 2.99, 153, 20.99, 'G', 'Trailers,Commentaries,Behind the Scenes', '2006-02-15 04:03:42'),
(194, 'CROW GREASE', 'A Awe-Inspiring Documentary of a Woman And a Husband who must Sink a Database Administrator in The First Manned Space Station', 2006, 6, 0.99, 104, 22.99, 'PG', 'Trailers,Commentaries,Behind the Scenes', '2006-02-15 04:03:42'),
(195, 'CROWDS TELEMARK', 'A Intrepid Documentary of a Astronaut And a Forensic Psychologist who must Find a Frisbee in An Abandoned Fun House', 2006, 3, 4.99, 112, 16.99, 'R', 'Trailers,Behind the Scenes', '2006-02-15 04:03:42'),
(196, 'CRUELTY UNFORGIVEN', 'A Brilliant Tale of a Car And a Moose who must Battle a Dentist in Nigeria', 2006, 7, 0.99, 69, 29.99, 'G', 'Deleted Scenes,Behind the Scenes', '2006-02-15 04:03:42'),
(197, 'CRUSADE HONEY', 'A Fast-Paced Reflection of a Explorer And a Butler who must Battle a Madman in An Abandoned Amusement Park', 2006, 4, 2.99, 112, 27.99, 'R', 'Commentaries', '2006-02-15 04:03:42'),
(198, 'CRYSTAL BREAKING', 'A Fast-Paced Character Study of a Feminist And a Explorer who must Face a Pastry Chef in Ancient Japan', 2006, 6, 2.99, 184, 22.99, 'NC-17', 'Trailers,Commentaries', '2006-02-15 04:03:42'),
(199, 'CUPBOARD SINNERS', 'A Emotional Reflection of a Frisbee And a Boat who must Reach a Pastry Chef in An Abandoned Amusement Park', 2006, 4, 2.99, 56, 29.99, 'R', 'Behind the Scenes', '2006-02-15 04:03:42'),
(200, 'CURTAIN VIDEOTAPE', 'A Boring Reflection of a Dentist And a Mad Cow who must Chase a Secret Agent in A Shark Tank', 2006, 7, 0.99, 133, 27.99, 'PG-13', 'Trailers,Commentaries,Deleted Scenes,Behind the Scenes', '2006-02-15 04:03:42'),
(201, 'CYCLONE FAMILY', 'A Lacklusture Drama of a Student And a Monkey who must Sink a Womanizer in A MySQL Convention', 2006, 7, 2.99, 176, 18.99, 'PG', 'Trailers,Deleted Scenes', '2006-02-15 04:03:42'),
(202, 'DADDY PITTSBURGH', 'A Epic Story of a A Shark And a Student who must Confront a Explorer in The Gulf of Mexico', 2006, 5, 4.99, 161, 26.99, 'G', 'Deleted Scenes,Behind the Scenes', '2006-02-15 04:03:42'),
(203, 'DAISY MENAGERIE', 'A Fast-Paced Saga of a Pastry Chef And a Monkey who must Sink a Composer in Ancient India', 2006, 5, 4.99, 84, 9.99, 'G', 'Trailers,Commentaries,Behind the Scenes', '2006-02-15 04:03:42'),
(204, 'DALMATIONS SWEDEN', 'A Emotional Epistle of a Moose And a Hunter who must Overcome a Robot in A Manhattan Penthouse', 2006, 4, 0.99, 106, 25.99, 'PG', 'Trailers,Commentaries,Deleted Scenes', '2006-02-15 04:03:42'),
(205, 'DANCES NONE', 'A Insightful Reflection of a A Shark And a Dog who must Kill a Butler in An Abandoned Amusement Park', 2006, 3, 0.99, 58, 22.99, 'NC-17', 'Trailers,Commentaries,Deleted Scenes,Behind the Scenes', '2006-02-15 04:03:42'),
(206, 'DANCING FEVER', 'A Stunning Story of a Explorer And a Forensic Psychologist who must Face a Crocodile in A Shark Tank', 2006, 6, 0.99, 144, 25.99, 'G', 'Commentaries,Behind the Scenes', '2006-02-15 04:03:42'),
(207, 'DANGEROUS UPTOWN', 'A Unbelieveable Story of a Mad Scientist And a Woman who must Overcome a Dog in California', 2006, 7, 4.99, 121, 26.99, 'PG', 'Commentaries', '2006-02-15 04:03:42'),
(208, 'DARES PLUTO', 'A Fateful Story of a Robot And a Dentist who must Defeat a Astronaut in New Orleans', 2006, 7, 2.99, 89, 16.99, 'PG-13', 'Commentaries,Behind the Scenes', '2006-02-15 04:03:42'),
(209, 'DARKNESS WAR', 'A Touching Documentary of a Husband And a Hunter who must Escape a Boy in The Sahara Desert', 2006, 6, 2.99, 99, 24.99, 'NC-17', 'Deleted Scenes,Behind the Scenes', '2006-02-15 04:03:42'),
(210, 'DARKO DORADO', 'A Stunning Reflection of a Frisbee And a Husband who must Redeem a Dog in New Orleans', 2006, 3, 4.99, 130, 13.99, 'NC-17', 'Trailers,Commentaries,Deleted Scenes,Behind the Scenes', '2006-02-15 04:03:42'),
(211, 'DARLING BREAKING', 'A Brilliant Documentary of a Astronaut And a Squirrel who must Succumb a Student in The Gulf of Mexico', 2006, 7, 4.99, 165, 20.99, 'PG-13', 'Commentaries,Behind the Scenes', '2006-02-15 04:03:42'),
(212, 'DARN FORRESTER', 'A Fateful Story of a A Shark And a Explorer who must Succumb a Technical Writer in A Jet Boat', 2006, 7, 4.99, 185, 14.99, 'G', 'Deleted Scenes', '2006-02-15 04:03:42'),
(213, 'DATE SPEED', 'A Touching Saga of a Composer And a Moose who must Discover a Dentist in A MySQL Convention', 2006, 4, 0.99, 104, 19.99, 'R', 'Commentaries', '2006-02-15 04:03:42'),
(214, 'DAUGHTER MADIGAN', 'A Beautiful Tale of a Hunter And a Mad Scientist who must Confront a Squirrel in The First Manned Space Station', 2006, 3, 4.99, 59, 13.99, 'PG-13', 'Trailers', '2006-02-15 04:03:42'),
(215, 'DAWN POND', 'A Thoughtful Documentary of a Dentist And a Forensic Psychologist who must Defeat a Waitress in Berlin', 2006, 4, 4.99, 57, 27.99, 'PG', 'Trailers,Deleted Scenes,Behind the Scenes', '2006-02-15 04:03:42'),
(216, 'DAY UNFAITHFUL', 'A Stunning Documentary of a Composer And a Mad Scientist who must Find a Technical Writer in A U-Boat', 2006, 3, 4.99, 113, 16.99, 'G', 'Trailers,Commentaries,Deleted Scenes,Behind the Scenes', '2006-02-15 04:03:42'),
(217, 'DAZED PUNK', 'A Action-Packed Story of a Pioneer And a Technical Writer who must Discover a Forensic Psychologist in An Abandoned Amusement Park', 2006, 6, 4.99, 120, 20.99, 'G', 'Commentaries,Deleted Scenes', '2006-02-15 04:03:42'),
(218, 'DECEIVER BETRAYED', 'A Taut Story of a Moose And a Squirrel who must Build a Husband in Ancient India', 2006, 7, 0.99, 122, 22.99, 'NC-17', 'Trailers,Commentaries,Deleted Scenes,Behind the Scenes', '2006-02-15 04:03:42'),
(219, 'DEEP CRUSADE', 'A Amazing Tale of a Crocodile And a Squirrel who must Discover a Composer in Australia', 2006, 6, 4.99, 51, 20.99, 'PG-13', 'Commentaries,Behind the Scenes', '2006-02-15 04:03:42'),
(220, 'DEER VIRGINIAN', 'A Thoughtful Story of a Mad Cow And a Womanizer who must Overcome a Mad Scientist in Soviet Georgia', 2006, 7, 2.99, 106, 13.99, 'NC-17', 'Deleted Scenes', '2006-02-15 04:03:42'),
(221, 'DELIVERANCE MULHOLLAND', 'A Astounding Saga of a Monkey And a Moose who must Conquer a Butler in A Shark Tank', 2006, 4, 0.99, 100, 9.99, 'R', 'Deleted Scenes', '2006-02-15 04:03:42'),
(222, 'DESERT POSEIDON', 'A Brilliant Documentary of a Butler And a Frisbee who must Build a Astronaut in New Orleans', 2006, 4, 4.99, 64, 27.99, 'R', 'Trailers,Behind the Scenes', '2006-02-15 04:03:42'),
(223, 'DESIRE ALIEN', 'A Fast-Paced Tale of a Dog And a Forensic Psychologist who must Meet a Astronaut in The First Manned Space Station', 2006, 7, 2.99, 76, 24.99, 'NC-17', 'Deleted Scenes', '2006-02-15 04:03:42'),
(224, 'DESPERATE TRAINSPOTTING', 'A Epic Yarn of a Forensic Psychologist And a Teacher who must Face a Lumberjack in California', 2006, 7, 4.99, 81, 29.99, 'G', 'Deleted Scenes', '2006-02-15 04:03:42'),
(225, 'DESTINATION JERK', 'A Beautiful Yarn of a Teacher And a Cat who must Build a Car in A U-Boat', 2006, 3, 0.99, 76, 19.99, 'PG-13', 'Trailers,Commentaries,Behind the Scenes', '2006-02-15 04:03:42'),
(226, 'DESTINY SATURDAY', 'A Touching Drama of a Crocodile And a Crocodile who must Conquer a Explorer in Soviet Georgia', 2006, 4, 4.99, 56, 20.99, 'G', 'Trailers,Commentaries,Behind the Scenes', '2006-02-15 04:03:42'),
(227, 'DETAILS PACKER', 'A Epic Saga of a Waitress And a Composer who must Face a Boat in A U-Boat', 2006, 4, 4.99, 88, 17.99, 'R', 'Commentaries,Deleted Scenes', '2006-02-15 04:03:42'),
(228, 'DETECTIVE VISION', 'A Fanciful Documentary of a Pioneer And a Woman who must Redeem a Hunter in Ancient Japan', 2006, 4, 0.99, 143, 16.99, 'PG-13', 'Trailers,Commentaries,Behind the Scenes', '2006-02-15 04:03:42'),
(229, 'DEVIL DESIRE', 'A Beautiful Reflection of a Monkey And a Dentist who must Face a Database Administrator in Ancient Japan', 2006, 6, 4.99, 87, 12.99, 'R', 'Trailers,Behind the Scenes', '2006-02-15 04:03:42'),
(230, 'DIARY PANIC', 'A Thoughtful Character Study of a Frisbee And a Mad Cow who must Outgun a Man in Ancient India', 2006, 7, 2.99, 107, 20.99, 'G', 'Commentaries,Behind the Scenes', '2006-02-15 04:03:42'),
(231, 'DINOSAUR SECRETARY', 'A Action-Packed Drama of a Feminist And a Girl who must Reach a Robot in The Canadian Rockies', 2006, 7, 2.99, 63, 27.99, 'R', 'Trailers,Behind the Scenes', '2006-02-15 04:03:42'),
(232, 'DIRTY ACE', 'A Action-Packed Character Study of a Forensic Psychologist And a Girl who must Build a Dentist in The Outback', 2006, 7, 2.99, 147, 29.99, 'NC-17', 'Commentaries,Deleted Scenes,Behind the Scenes', '2006-02-15 04:03:42'),
(233, 'DISCIPLE MOTHER', 'A Touching Reflection of a Mad Scientist And a Boat who must Face a Moose in A Shark Tank', 2006, 3, 0.99, 141, 17.99, 'PG', 'Trailers,Deleted Scenes,Behind the Scenes', '2006-02-15 04:03:42'),
(234, 'DISTURBING SCARFACE', 'A Lacklusture Display of a Crocodile And a Butler who must Overcome a Monkey in A U-Boat', 2006, 6, 2.99, 94, 27.99, 'R', 'Trailers,Behind the Scenes', '2006-02-15 04:03:42'),
(235, 'DIVIDE MONSTER', 'A Intrepid Saga of a Man And a Forensic Psychologist who must Reach a Squirrel in A Monastery', 2006, 6, 2.99, 68, 13.99, 'PG-13', 'Trailers,Commentaries', '2006-02-15 04:03:42');
INSERT INTO `film` (`film_id`, `title`, `description`, `release_year`, `rental_duration`, `rental_rate`, `length`, `replacement_cost`, `rating`, `special_features`, `last_update`) VALUES
(236, 'DIVINE RESURRECTION', 'A Boring Character Study of a Man And a Womanizer who must Succumb a Teacher in An Abandoned Amusement Park', 2006, 4, 2.99, 100, 19.99, 'R', 'Trailers,Commentaries', '2006-02-15 04:03:42'),
(237, 'DIVORCE SHINING', 'A Unbelieveable Saga of a Crocodile And a Student who must Discover a Cat in Ancient India', 2006, 3, 2.99, 47, 21.99, 'G', 'Trailers,Commentaries,Deleted Scenes', '2006-02-15 04:03:42'),
(238, 'DOCTOR GRAIL', 'A Insightful Drama of a Womanizer And a Waitress who must Reach a Forensic Psychologist in The Outback', 2006, 4, 2.99, 57, 29.99, 'G', 'Trailers,Commentaries,Behind the Scenes', '2006-02-15 04:03:42'),
(239, 'DOGMA FAMILY', 'A Brilliant Character Study of a Database Administrator And a Monkey who must Succumb a Astronaut in New Orleans', 2006, 5, 4.99, 122, 16.99, 'G', 'Commentaries', '2006-02-15 04:03:42'),
(240, 'DOLLS RAGE', 'A Thrilling Display of a Pioneer And a Frisbee who must Escape a Teacher in The Outback', 2006, 7, 2.99, 120, 10.99, 'PG-13', 'Commentaries,Deleted Scenes', '2006-02-15 04:03:42'),
(241, 'DONNIE ALLEY', 'A Awe-Inspiring Tale of a Butler And a Frisbee who must Vanquish a Teacher in Ancient Japan', 2006, 4, 0.99, 125, 20.99, 'NC-17', 'Trailers,Commentaries,Behind the Scenes', '2006-02-15 04:03:42'),
(242, 'DOOM DANCING', 'A Astounding Panorama of a Car And a Mad Scientist who must Battle a Lumberjack in A MySQL Convention', 2006, 4, 0.99, 68, 13.99, 'R', 'Trailers,Commentaries', '2006-02-15 04:03:42'),
(243, 'DOORS PRESIDENT', 'A Awe-Inspiring Display of a Squirrel And a Woman who must Overcome a Boy in The Gulf of Mexico', 2006, 3, 4.99, 49, 22.99, 'NC-17', 'Trailers,Commentaries,Deleted Scenes,Behind the Scenes', '2006-02-15 04:03:42'),
(244, 'DORADO NOTTING', 'A Action-Packed Tale of a Sumo Wrestler And a A Shark who must Meet a Frisbee in California', 2006, 5, 4.99, 139, 26.99, 'NC-17', 'Commentaries', '2006-02-15 04:03:42'),
(245, 'DOUBLE WRATH', 'A Thoughtful Yarn of a Womanizer And a Dog who must Challenge a Madman in The Gulf of Mexico', 2006, 4, 0.99, 177, 28.99, 'R', 'Trailers,Deleted Scenes,Behind the Scenes', '2006-02-15 04:03:42'),
(246, 'DOUBTFIRE LABYRINTH', 'A Intrepid Panorama of a Butler And a Composer who must Meet a Mad Cow in The Sahara Desert', 2006, 5, 4.99, 154, 16.99, 'R', 'Deleted Scenes,Behind the Scenes', '2006-02-15 04:03:42'),
(247, 'DOWNHILL ENOUGH', 'A Emotional Tale of a Pastry Chef And a Forensic Psychologist who must Succumb a Monkey in The Sahara Desert', 2006, 3, 0.99, 47, 19.99, 'G', 'Trailers,Commentaries,Deleted Scenes', '2006-02-15 04:03:42'),
(248, 'DOZEN LION', 'A Taut Drama of a Cat And a Girl who must Defeat a Frisbee in The Canadian Rockies', 2006, 6, 4.99, 177, 20.99, 'NC-17', 'Commentaries,Deleted Scenes,Behind the Scenes', '2006-02-15 04:03:42'),
(249, 'DRACULA CRYSTAL', 'A Thrilling Reflection of a Feminist And a Cat who must Find a Frisbee in An Abandoned Fun House', 2006, 7, 0.99, 176, 26.99, 'G', 'Commentaries', '2006-02-15 04:03:42'),
(250, 'DRAGON SQUAD', 'A Taut Reflection of a Boy And a Waitress who must Outgun a Teacher in Ancient China', 2006, 4, 0.99, 170, 26.99, 'NC-17', 'Deleted Scenes,Behind the Scenes', '2006-02-15 04:03:42'),
(251, 'DRAGONFLY STRANGERS', 'A Boring Documentary of a Pioneer And a Man who must Vanquish a Man in Nigeria', 2006, 6, 4.99, 133, 19.99, 'NC-17', 'Trailers,Behind the Scenes', '2006-02-15 04:03:42'),
(252, 'DREAM PICKUP', 'A Epic Display of a Car And a Composer who must Overcome a Forensic Psychologist in The Gulf of Mexico', 2006, 6, 2.99, 135, 18.99, 'PG', 'Trailers,Commentaries,Behind the Scenes', '2006-02-15 04:03:42'),
(253, 'DRIFTER COMMANDMENTS', 'A Epic Reflection of a Womanizer And a Squirrel who must Discover a Husband in A Jet Boat', 2006, 5, 4.99, 61, 18.99, 'PG-13', 'Trailers,Behind the Scenes', '2006-02-15 04:03:42'),
(254, 'DRIVER ANNIE', 'A Lacklusture Character Study of a Butler And a Car who must Redeem a Boat in An Abandoned Fun House', 2006, 4, 2.99, 159, 11.99, 'PG-13', 'Trailers,Deleted Scenes,Behind the Scenes', '2006-02-15 04:03:42'),
(255, 'DRIVING POLISH', 'A Action-Packed Yarn of a Feminist And a Technical Writer who must Sink a Boat in An Abandoned Mine Shaft', 2006, 6, 4.99, 175, 21.99, 'NC-17', 'Trailers,Deleted Scenes', '2006-02-15 04:03:42'),
(256, 'DROP WATERFRONT', 'A Fanciful Documentary of a Husband And a Explorer who must Reach a Madman in Ancient China', 2006, 6, 4.99, 178, 20.99, 'R', 'Trailers,Commentaries', '2006-02-15 04:03:42'),
(257, 'DRUMLINE CYCLONE', 'A Insightful Panorama of a Monkey And a Sumo Wrestler who must Outrace a Mad Scientist in The Canadian Rockies', 2006, 3, 0.99, 110, 14.99, 'G', 'Commentaries,Deleted Scenes,Behind the Scenes', '2006-02-15 04:03:42'),
(258, 'DRUMS DYNAMITE', 'A Epic Display of a Crocodile And a Crocodile who must Confront a Dog in An Abandoned Amusement Park', 2006, 6, 0.99, 96, 11.99, 'PG', 'Trailers', '2006-02-15 04:03:42'),
(259, 'DUCK RACER', 'A Lacklusture Yarn of a Teacher And a Squirrel who must Overcome a Dog in A Shark Tank', 2006, 4, 2.99, 116, 15.99, 'NC-17', 'Behind the Scenes', '2006-02-15 04:03:42'),
(260, 'DUDE BLINDNESS', 'A Stunning Reflection of a Husband And a Lumberjack who must Face a Frisbee in An Abandoned Fun House', 2006, 3, 4.99, 132, 9.99, 'G', 'Trailers,Deleted Scenes', '2006-02-15 04:03:42'),
(261, 'DUFFEL APOCALYPSE', 'A Emotional Display of a Boat And a Explorer who must Challenge a Madman in A MySQL Convention', 2006, 5, 0.99, 171, 13.99, 'G', 'Commentaries', '2006-02-15 04:03:42'),
(262, 'DUMBO LUST', 'A Touching Display of a Feminist And a Dentist who must Conquer a Husband in The Gulf of Mexico', 2006, 5, 0.99, 119, 17.99, 'NC-17', 'Behind the Scenes', '2006-02-15 04:03:42'),
(263, 'DURHAM PANKY', 'A Brilliant Panorama of a Girl And a Boy who must Face a Mad Scientist in An Abandoned Mine Shaft', 2006, 6, 4.99, 154, 14.99, 'R', 'Trailers,Commentaries', '2006-02-15 04:03:42'),
(264, 'DWARFS ALTER', 'A Emotional Yarn of a Girl And a Dog who must Challenge a Composer in Ancient Japan', 2006, 6, 2.99, 101, 13.99, 'G', 'Commentaries,Deleted Scenes', '2006-02-15 04:03:42'),
(265, 'DYING MAKER', 'A Intrepid Tale of a Boat And a Monkey who must Kill a Cat in California', 2006, 5, 4.99, 168, 28.99, 'PG', 'Behind the Scenes', '2006-02-15 04:03:42'),
(266, 'DYNAMITE TARZAN', 'A Intrepid Documentary of a Forensic Psychologist And a Mad Scientist who must Face a Explorer in A U-Boat', 2006, 4, 0.99, 141, 27.99, 'PG-13', 'Deleted Scenes', '2006-02-15 04:03:42'),
(267, 'EAGLES PANKY', 'A Thoughtful Story of a Car And a Boy who must Find a A Shark in The Sahara Desert', 2006, 4, 4.99, 140, 14.99, 'NC-17', 'Trailers,Commentaries,Behind the Scenes', '2006-02-15 04:03:42'),
(268, 'EARLY HOME', 'A Amazing Panorama of a Mad Scientist And a Husband who must Meet a Woman in The Outback', 2006, 6, 4.99, 96, 27.99, 'NC-17', 'Trailers,Commentaries,Behind the Scenes', '2006-02-15 04:03:42'),
(269, 'EARRING INSTINCT', 'A Stunning Character Study of a Dentist And a Mad Cow who must Find a Teacher in Nigeria', 2006, 3, 0.99, 98, 22.99, 'R', 'Behind the Scenes', '2006-02-15 04:03:42'),
(270, 'EARTH VISION', 'A Stunning Drama of a Butler And a Madman who must Outrace a Womanizer in Ancient India', 2006, 7, 0.99, 85, 29.99, 'NC-17', 'Trailers,Commentaries,Deleted Scenes', '2006-02-15 04:03:42'),
(271, 'EASY GLADIATOR', 'A Fateful Story of a Monkey And a Girl who must Overcome a Pastry Chef in Ancient India', 2006, 5, 4.99, 148, 12.99, 'G', 'Trailers,Commentaries,Behind the Scenes', '2006-02-15 04:03:42'),
(272, 'EDGE KISSING', 'A Beautiful Yarn of a Composer And a Mad Cow who must Redeem a Mad Scientist in A Jet Boat', 2006, 5, 4.99, 153, 9.99, 'NC-17', 'Deleted Scenes', '2006-02-15 04:03:42'),
(273, 'EFFECT GLADIATOR', 'A Beautiful Display of a Pastry Chef And a Pastry Chef who must Outgun a Forensic Psychologist in A Manhattan Penthouse', 2006, 6, 0.99, 107, 14.99, 'PG', 'Commentaries', '2006-02-15 04:03:42'),
(274, 'EGG IGBY', 'A Beautiful Documentary of a Boat And a Sumo Wrestler who must Succumb a Database Administrator in The First Manned Space Station', 2006, 4, 2.99, 67, 20.99, 'PG', 'Commentaries,Behind the Scenes', '2006-02-15 04:03:42'),
(275, 'EGYPT TENENBAUMS', 'A Intrepid Story of a Madman And a Secret Agent who must Outrace a Astronaut in An Abandoned Amusement Park', 2006, 3, 0.99, 85, 11.99, 'PG', 'Commentaries,Deleted Scenes,Behind the Scenes', '2006-02-15 04:03:42'),
(276, 'ELEMENT FREDDY', 'A Awe-Inspiring Reflection of a Waitress And a Squirrel who must Kill a Mad Cow in A Jet Boat', 2006, 6, 4.99, 115, 28.99, 'NC-17', 'Commentaries,Behind the Scenes', '2006-02-15 04:03:42'),
(277, 'ELEPHANT TROJAN', 'A Beautiful Panorama of a Lumberjack And a Forensic Psychologist who must Overcome a Frisbee in A Baloon', 2006, 4, 4.99, 126, 24.99, 'PG-13', 'Behind the Scenes', '2006-02-15 04:03:42'),
(278, 'ELF MURDER', 'A Action-Packed Story of a Frisbee And a Woman who must Reach a Girl in An Abandoned Mine Shaft', 2006, 4, 4.99, 155, 19.99, 'NC-17', 'Trailers,Commentaries,Behind the Scenes', '2006-02-15 04:03:42'),
(279, 'ELIZABETH SHANE', 'A Lacklusture Display of a Womanizer And a Dog who must Face a Sumo Wrestler in Ancient Japan', 2006, 7, 4.99, 152, 11.99, 'NC-17', 'Trailers,Deleted Scenes,Behind the Scenes', '2006-02-15 04:03:42'),
(280, 'EMPIRE MALKOVICH', 'A Amazing Story of a Feminist And a Cat who must Face a Car in An Abandoned Fun House', 2006, 7, 0.99, 177, 26.99, 'G', 'Deleted Scenes', '2006-02-15 04:03:42'),
(281, 'ENCINO ELF', 'A Astounding Drama of a Feminist And a Teacher who must Confront a Husband in A Baloon', 2006, 6, 0.99, 143, 9.99, 'G', 'Trailers,Behind the Scenes', '2006-02-15 04:03:42'),
(282, 'ENCOUNTERS CURTAIN', 'A Insightful Epistle of a Pastry Chef And a Womanizer who must Build a Boat in New Orleans', 2006, 5, 0.99, 92, 20.99, 'NC-17', 'Trailers', '2006-02-15 04:03:42'),
(283, 'ENDING CROWDS', 'A Unbelieveable Display of a Dentist And a Madman who must Vanquish a Squirrel in Berlin', 2006, 6, 0.99, 85, 10.99, 'NC-17', 'Commentaries,Behind the Scenes', '2006-02-15 04:03:42'),
(284, 'ENEMY ODDS', 'A Fanciful Panorama of a Mad Scientist And a Woman who must Pursue a Astronaut in Ancient India', 2006, 5, 4.99, 77, 23.99, 'NC-17', 'Trailers', '2006-02-15 04:03:42'),
(285, 'ENGLISH BULWORTH', 'A Intrepid Epistle of a Pastry Chef And a Pastry Chef who must Pursue a Crocodile in Ancient China', 2006, 3, 0.99, 51, 18.99, 'PG-13', 'Deleted Scenes', '2006-02-15 04:03:42'),
(286, 'ENOUGH RAGING', 'A Astounding Character Study of a Boat And a Secret Agent who must Find a Mad Cow in The Sahara Desert', 2006, 7, 2.99, 158, 16.99, 'NC-17', 'Commentaries', '2006-02-15 04:03:42'),
(287, 'ENTRAPMENT SATISFACTION', 'A Thoughtful Panorama of a Hunter And a Teacher who must Reach a Mad Cow in A U-Boat', 2006, 5, 0.99, 176, 19.99, 'R', 'Commentaries,Deleted Scenes,Behind the Scenes', '2006-02-15 04:03:42'),
(288, 'ESCAPE METROPOLIS', 'A Taut Yarn of a Astronaut And a Technical Writer who must Outgun a Boat in New Orleans', 2006, 7, 2.99, 167, 20.99, 'R', 'Trailers', '2006-02-15 04:03:42'),
(289, 'EVE RESURRECTION', 'A Awe-Inspiring Yarn of a Pastry Chef And a Database Administrator who must Challenge a Teacher in A Baloon', 2006, 5, 4.99, 66, 25.99, 'G', 'Trailers,Commentaries,Deleted Scenes', '2006-02-15 04:03:42'),
(290, 'EVERYONE CRAFT', 'A Fateful Display of a Waitress And a Dentist who must Reach a Butler in Nigeria', 2006, 4, 0.99, 163, 29.99, 'PG', 'Trailers,Commentaries', '2006-02-15 04:03:42'),
(291, 'EVOLUTION ALTER', 'A Fanciful Character Study of a Feminist And a Madman who must Find a Explorer in A Baloon Factory', 2006, 5, 0.99, 174, 10.99, 'PG-13', 'Behind the Scenes', '2006-02-15 04:03:42'),
(292, 'EXCITEMENT EVE', 'A Brilliant Documentary of a Monkey And a Car who must Conquer a Crocodile in A Shark Tank', 2006, 3, 0.99, 51, 20.99, 'G', 'Commentaries', '2006-02-15 04:03:42'),
(293, 'EXORCIST STING', 'A Touching Drama of a Dog And a Sumo Wrestler who must Conquer a Mad Scientist in Berlin', 2006, 6, 2.99, 167, 17.99, 'G', 'Commentaries,Deleted Scenes,Behind the Scenes', '2006-02-15 04:03:42'),
(294, 'EXPECATIONS NATURAL', 'A Amazing Drama of a Butler And a Husband who must Reach a A Shark in A U-Boat', 2006, 5, 4.99, 138, 26.99, 'PG-13', 'Deleted Scenes', '2006-02-15 04:03:42'),
(295, 'EXPENDABLE STALLION', 'A Amazing Character Study of a Mad Cow And a Squirrel who must Discover a Hunter in A U-Boat', 2006, 3, 0.99, 97, 14.99, 'PG', 'Trailers,Behind the Scenes', '2006-02-15 04:03:42'),
(296, 'EXPRESS LONELY', 'A Boring Drama of a Astronaut And a Boat who must Face a Boat in California', 2006, 5, 2.99, 178, 23.99, 'R', 'Trailers', '2006-02-15 04:03:42'),
(297, 'EXTRAORDINARY CONQUERER', 'A Stunning Story of a Dog And a Feminist who must Face a Forensic Psychologist in Berlin', 2006, 6, 2.99, 122, 29.99, 'G', 'Trailers,Commentaries,Deleted Scenes', '2006-02-15 04:03:42'),
(298, 'EYES DRIVING', 'A Thrilling Story of a Cat And a Waitress who must Fight a Explorer in The Outback', 2006, 4, 2.99, 172, 13.99, 'PG-13', 'Trailers,Commentaries', '2006-02-15 04:03:42'),
(299, 'FACTORY DRAGON', 'A Action-Packed Saga of a Teacher And a Frisbee who must Escape a Lumberjack in The Sahara Desert', 2006, 4, 0.99, 144, 9.99, 'PG-13', 'Trailers,Commentaries,Deleted Scenes', '2006-02-15 04:03:42'),
(300, 'FALCON VOLUME', 'A Fateful Saga of a Sumo Wrestler And a Hunter who must Redeem a A Shark in New Orleans', 2006, 5, 4.99, 102, 21.99, 'PG-13', 'Commentaries,Behind the Scenes', '2006-02-15 04:03:42'),
(301, 'FAMILY SWEET', 'A Epic Documentary of a Teacher And a Boy who must Escape a Woman in Berlin', 2006, 4, 0.99, 155, 24.99, 'R', 'Trailers', '2006-02-15 04:03:42'),
(302, 'FANTASIA PARK', 'A Thoughtful Documentary of a Mad Scientist And a A Shark who must Outrace a Feminist in Australia', 2006, 5, 2.99, 131, 29.99, 'G', 'Commentaries', '2006-02-15 04:03:42'),
(303, 'FANTASY TROOPERS', 'A Touching Saga of a Teacher And a Monkey who must Overcome a Secret Agent in A MySQL Convention', 2006, 6, 0.99, 58, 27.99, 'PG-13', 'Behind the Scenes', '2006-02-15 04:03:42'),
(304, 'FARGO GANDHI', 'A Thrilling Reflection of a Pastry Chef And a Crocodile who must Reach a Teacher in The Outback', 2006, 3, 2.99, 130, 28.99, 'G', 'Deleted Scenes', '2006-02-15 04:03:42'),
(305, 'FATAL HAUNTED', 'A Beautiful Drama of a Student And a Secret Agent who must Confront a Dentist in Ancient Japan', 2006, 6, 2.99, 91, 24.99, 'PG', 'Trailers,Behind the Scenes', '2006-02-15 04:03:42'),
(306, 'FEATHERS METAL', 'A Thoughtful Yarn of a Monkey And a Teacher who must Find a Dog in Australia', 2006, 3, 0.99, 104, 12.99, 'PG-13', 'Trailers,Deleted Scenes', '2006-02-15 04:03:42'),
(307, 'FELLOWSHIP AUTUMN', 'A Lacklusture Reflection of a Dentist And a Hunter who must Meet a Teacher in A Baloon', 2006, 6, 4.99, 77, 9.99, 'NC-17', 'Deleted Scenes,Behind the Scenes', '2006-02-15 04:03:42'),
(308, 'FERRIS MOTHER', 'A Touching Display of a Frisbee And a Frisbee who must Kill a Girl in The Gulf of Mexico', 2006, 3, 2.99, 142, 13.99, 'PG', 'Trailers,Deleted Scenes,Behind the Scenes', '2006-02-15 04:03:42'),
(309, 'FEUD FROGMEN', 'A Brilliant Reflection of a Database Administrator And a Mad Cow who must Chase a Woman in The Canadian Rockies', 2006, 6, 0.99, 98, 29.99, 'R', 'Trailers,Commentaries,Deleted Scenes,Behind the Scenes', '2006-02-15 04:03:42'),
(310, 'FEVER EMPIRE', 'A Insightful Panorama of a Cat And a Boat who must Defeat a Boat in The Gulf of Mexico', 2006, 5, 4.99, 158, 20.99, 'R', 'Commentaries,Deleted Scenes', '2006-02-15 04:03:42'),
(311, 'FICTION CHRISTMAS', 'A Emotional Yarn of a A Shark And a Student who must Battle a Robot in An Abandoned Mine Shaft', 2006, 4, 0.99, 72, 14.99, 'PG', 'Trailers,Commentaries,Deleted Scenes,Behind the Scenes', '2006-02-15 04:03:42'),
(312, 'FIDDLER LOST', 'A Boring Tale of a Squirrel And a Dog who must Challenge a Madman in The Gulf of Mexico', 2006, 4, 4.99, 75, 20.99, 'R', 'Deleted Scenes,Behind the Scenes', '2006-02-15 04:03:42'),
(313, 'FIDELITY DEVIL', 'A Awe-Inspiring Drama of a Technical Writer And a Composer who must Reach a Pastry Chef in A U-Boat', 2006, 5, 4.99, 118, 11.99, 'G', 'Trailers,Deleted Scenes,Behind the Scenes', '2006-02-15 04:03:42'),
(314, 'FIGHT JAWBREAKER', 'A Intrepid Panorama of a Womanizer And a Girl who must Escape a Girl in A Manhattan Penthouse', 2006, 3, 0.99, 91, 13.99, 'R', 'Trailers,Commentaries,Deleted Scenes,Behind the Scenes', '2006-02-15 04:03:42'),
(315, 'FINDING ANACONDA', 'A Fateful Tale of a Database Administrator And a Girl who must Battle a Squirrel in New Orleans', 2006, 4, 0.99, 156, 10.99, 'R', 'Trailers,Commentaries', '2006-02-15 04:03:42'),
(316, 'FIRE WOLVES', 'A Intrepid Documentary of a Frisbee And a Dog who must Outrace a Lumberjack in Nigeria', 2006, 5, 4.99, 173, 18.99, 'R', 'Trailers', '2006-02-15 04:03:42'),
(317, 'FIREBALL PHILADELPHIA', 'A Amazing Yarn of a Dentist And a A Shark who must Vanquish a Madman in An Abandoned Mine Shaft', 2006, 4, 0.99, 148, 25.99, 'PG', 'Trailers,Commentaries,Behind the Scenes', '2006-02-15 04:03:42'),
(318, 'FIREHOUSE VIETNAM', 'A Awe-Inspiring Character Study of a Boat And a Boy who must Kill a Pastry Chef in The Sahara Desert', 2006, 7, 0.99, 103, 14.99, 'G', 'Commentaries,Deleted Scenes', '2006-02-15 04:03:42'),
(319, 'FISH OPUS', 'A Touching Display of a Feminist And a Girl who must Confront a Astronaut in Australia', 2006, 4, 2.99, 125, 22.99, 'R', 'Trailers,Deleted Scenes,Behind the Scenes', '2006-02-15 04:03:42'),
(320, 'FLAMINGOS CONNECTICUT', 'A Fast-Paced Reflection of a Composer And a Composer who must Meet a Cat in The Sahara Desert', 2006, 4, 4.99, 80, 28.99, 'PG-13', 'Trailers', '2006-02-15 04:03:42'),
(321, 'FLASH WARS', 'A Astounding Saga of a Moose And a Pastry Chef who must Chase a Student in The Gulf of Mexico', 2006, 3, 4.99, 123, 21.99, 'NC-17', 'Trailers,Commentaries,Behind the Scenes', '2006-02-15 04:03:42'),
(322, 'FLATLINERS KILLER', 'A Taut Display of a Secret Agent And a Waitress who must Sink a Robot in An Abandoned Mine Shaft', 2006, 5, 2.99, 100, 29.99, 'G', 'Trailers,Commentaries,Deleted Scenes', '2006-02-15 04:03:42'),
(323, 'FLIGHT LIES', 'A Stunning Character Study of a Crocodile And a Pioneer who must Pursue a Teacher in New Orleans', 2006, 7, 4.99, 179, 22.99, 'R', 'Trailers', '2006-02-15 04:03:42'),
(324, 'FLINTSTONES HAPPINESS', 'A Fateful Story of a Husband And a Moose who must Vanquish a Boy in California', 2006, 3, 4.99, 148, 11.99, 'PG-13', 'Trailers,Commentaries,Deleted Scenes,Behind the Scenes', '2006-02-15 04:03:42'),
(325, 'FLOATS GARDEN', 'A Action-Packed Epistle of a Robot And a Car who must Chase a Boat in Ancient Japan', 2006, 6, 2.99, 145, 29.99, 'PG-13', 'Trailers,Commentaries,Behind the Scenes', '2006-02-15 04:03:42'),
(326, 'FLYING HOOK', 'A Thrilling Display of a Mad Cow And a Dog who must Challenge a Frisbee in Nigeria', 2006, 6, 2.99, 69, 18.99, 'NC-17', 'Trailers,Commentaries,Behind the Scenes', '2006-02-15 04:03:42'),
(327, 'FOOL MOCKINGBIRD', 'A Lacklusture Tale of a Crocodile And a Composer who must Defeat a Madman in A U-Boat', 2006, 3, 4.99, 158, 24.99, 'PG', 'Trailers,Commentaries', '2006-02-15 04:03:42'),
(328, 'FOREVER CANDIDATE', 'A Unbelieveable Panorama of a Technical Writer And a Man who must Pursue a Frisbee in A U-Boat', 2006, 7, 2.99, 131, 28.99, 'NC-17', 'Commentaries,Deleted Scenes,Behind the Scenes', '2006-02-15 04:03:42'),
(329, 'FORREST SONS', 'A Thrilling Documentary of a Forensic Psychologist And a Butler who must Defeat a Explorer in A Jet Boat', 2006, 4, 2.99, 63, 15.99, 'R', 'Commentaries', '2006-02-15 04:03:42'),
(330, 'FORRESTER COMANCHEROS', 'A Fateful Tale of a Squirrel And a Forensic Psychologist who must Redeem a Man in Nigeria', 2006, 7, 4.99, 112, 22.99, 'NC-17', 'Trailers,Behind the Scenes', '2006-02-15 04:03:42'),
(331, 'FORWARD TEMPLE', 'A Astounding Display of a Forensic Psychologist And a Mad Scientist who must Challenge a Girl in New Orleans', 2006, 6, 2.99, 90, 25.99, 'NC-17', 'Trailers,Commentaries,Behind the Scenes', '2006-02-15 04:03:42'),
(332, 'FRANKENSTEIN STRANGER', 'A Insightful Character Study of a Feminist And a Pioneer who must Pursue a Pastry Chef in Nigeria', 2006, 7, 0.99, 159, 16.99, 'NC-17', 'Deleted Scenes,Behind the Scenes', '2006-02-15 04:03:42'),
(333, 'FREAKY POCUS', 'A Fast-Paced Documentary of a Pastry Chef And a Crocodile who must Chase a Squirrel in The Gulf of Mexico', 2006, 7, 2.99, 126, 16.99, 'R', 'Trailers,Behind the Scenes', '2006-02-15 04:03:42'),
(334, 'FREDDY STORM', 'A Intrepid Saga of a Man And a Lumberjack who must Vanquish a Husband in The Outback', 2006, 6, 4.99, 65, 21.99, 'NC-17', 'Trailers,Commentaries,Behind the Scenes', '2006-02-15 04:03:42'),
(335, 'FREEDOM CLEOPATRA', 'A Emotional Reflection of a Dentist And a Mad Cow who must Face a Squirrel in A Baloon', 2006, 5, 0.99, 133, 23.99, 'PG-13', 'Trailers,Commentaries,Behind the Scenes', '2006-02-15 04:03:42'),
(336, 'FRENCH HOLIDAY', 'A Thrilling Epistle of a Dog And a Feminist who must Kill a Madman in Berlin', 2006, 5, 4.99, 99, 22.99, 'PG', 'Behind the Scenes', '2006-02-15 04:03:42'),
(337, 'FRIDA SLIPPER', 'A Fateful Story of a Lumberjack And a Car who must Escape a Boat in An Abandoned Mine Shaft', 2006, 6, 2.99, 73, 11.99, 'R', 'Trailers,Deleted Scenes', '2006-02-15 04:03:42'),
(338, 'FRISCO FORREST', 'A Beautiful Documentary of a Woman And a Pioneer who must Pursue a Mad Scientist in A Shark Tank', 2006, 6, 4.99, 51, 23.99, 'PG', 'Commentaries,Deleted Scenes,Behind the Scenes', '2006-02-15 04:03:42'),
(339, 'FROGMEN BREAKING', 'A Unbelieveable Yarn of a Mad Scientist And a Cat who must Chase a Lumberjack in Australia', 2006, 5, 0.99, 111, 17.99, 'R', 'Trailers,Deleted Scenes,Behind the Scenes', '2006-02-15 04:03:42'),
(340, 'FRONTIER CABIN', 'A Emotional Story of a Madman And a Waitress who must Battle a Teacher in An Abandoned Fun House', 2006, 6, 4.99, 183, 14.99, 'PG-13', 'Commentaries,Deleted Scenes', '2006-02-15 04:03:42'),
(341, 'FROST HEAD', 'A Amazing Reflection of a Lumberjack And a Cat who must Discover a Husband in A MySQL Convention', 2006, 5, 0.99, 82, 13.99, 'PG', 'Trailers,Deleted Scenes', '2006-02-15 04:03:42'),
(342, 'FUGITIVE MAGUIRE', 'A Taut Epistle of a Feminist And a Sumo Wrestler who must Battle a Crocodile in Australia', 2006, 7, 4.99, 83, 28.99, 'R', 'Trailers,Commentaries,Deleted Scenes', '2006-02-15 04:03:42'),
(343, 'FULL FLATLINERS', 'A Beautiful Documentary of a Astronaut And a Moose who must Pursue a Monkey in A Shark Tank', 2006, 6, 2.99, 94, 14.99, 'PG', 'Trailers,Deleted Scenes', '2006-02-15 04:03:42'),
(344, 'FURY MURDER', 'A Lacklusture Reflection of a Boat And a Forensic Psychologist who must Fight a Waitress in A Monastery', 2006, 3, 0.99, 178, 28.99, 'PG-13', 'Deleted Scenes', '2006-02-15 04:03:42'),
(345, 'GABLES METROPOLIS', 'A Fateful Display of a Cat And a Pioneer who must Challenge a Pastry Chef in A Baloon Factory', 2006, 3, 0.99, 161, 17.99, 'PG', 'Trailers,Commentaries', '2006-02-15 04:03:42'),
(346, 'GALAXY SWEETHEARTS', 'A Emotional Reflection of a Womanizer And a Pioneer who must Face a Squirrel in Berlin', 2006, 4, 4.99, 128, 13.99, 'R', 'Deleted Scenes', '2006-02-15 04:03:42'),
(347, 'GAMES BOWFINGER', 'A Astounding Documentary of a Butler And a Explorer who must Challenge a Butler in A Monastery', 2006, 7, 4.99, 119, 17.99, 'PG-13', 'Behind the Scenes', '2006-02-15 04:03:42'),
(348, 'GANDHI KWAI', 'A Thoughtful Display of a Mad Scientist And a Secret Agent who must Chase a Boat in Berlin', 2006, 7, 0.99, 86, 9.99, 'PG-13', 'Trailers', '2006-02-15 04:03:42'),
(349, 'GANGS PRIDE', 'A Taut Character Study of a Woman And a A Shark who must Confront a Frisbee in Berlin', 2006, 4, 2.99, 185, 27.99, 'PG-13', 'Behind the Scenes', '2006-02-15 04:03:42'),
(350, 'GARDEN ISLAND', 'A Unbelieveable Character Study of a Womanizer And a Madman who must Reach a Man in The Outback', 2006, 3, 4.99, 80, 21.99, 'G', 'Trailers,Behind the Scenes', '2006-02-15 04:03:42'),
(351, 'GASLIGHT CRUSADE', 'A Amazing Epistle of a Boy And a Astronaut who must Redeem a Man in The Gulf of Mexico', 2006, 4, 2.99, 106, 10.99, 'PG', 'Trailers,Deleted Scenes', '2006-02-15 04:03:42'),
(352, 'GATHERING CALENDAR', 'A Intrepid Tale of a Pioneer And a Moose who must Conquer a Frisbee in A MySQL Convention', 2006, 4, 0.99, 176, 22.99, 'PG-13', 'Commentaries,Behind the Scenes', '2006-02-15 04:03:42'),
(353, 'GENTLEMEN STAGE', 'A Awe-Inspiring Reflection of a Monkey And a Student who must Overcome a Dentist in The First Manned Space Station', 2006, 6, 2.99, 125, 22.99, 'NC-17', 'Commentaries,Deleted Scenes', '2006-02-15 04:03:42'),
(354, 'GHOST GROUNDHOG', 'A Brilliant Panorama of a Madman And a Composer who must Succumb a Car in Ancient India', 2006, 6, 4.99, 85, 18.99, 'G', 'Trailers,Commentaries,Deleted Scenes,Behind the Scenes', '2006-02-15 04:03:42'),
(355, 'GHOSTBUSTERS ELF', 'A Thoughtful Epistle of a Dog And a Feminist who must Chase a Composer in Berlin', 2006, 7, 0.99, 101, 18.99, 'R', 'Trailers,Deleted Scenes,Behind the Scenes', '2006-02-15 04:03:42'),
(356, 'GIANT TROOPERS', 'A Fateful Display of a Feminist And a Monkey who must Vanquish a Monkey in The Canadian Rockies', 2006, 5, 2.99, 102, 10.99, 'R', 'Trailers,Commentaries', '2006-02-15 04:03:42'),
(357, 'GILBERT PELICAN', 'A Fateful Tale of a Man And a Feminist who must Conquer a Crocodile in A Manhattan Penthouse', 2006, 7, 0.99, 114, 13.99, 'G', 'Trailers,Commentaries', '2006-02-15 04:03:42'),
(358, 'GILMORE BOILED', 'A Unbelieveable Documentary of a Boat And a Husband who must Succumb a Student in A U-Boat', 2006, 5, 0.99, 163, 29.99, 'R', 'Trailers,Behind the Scenes', '2006-02-15 04:03:42'),
(359, 'GLADIATOR WESTWARD', 'A Astounding Reflection of a Squirrel And a Sumo Wrestler who must Sink a Dentist in Ancient Japan', 2006, 6, 4.99, 173, 20.99, 'PG', 'Commentaries,Deleted Scenes', '2006-02-15 04:03:42'),
(360, 'GLASS DYING', 'A Astounding Drama of a Frisbee And a Astronaut who must Fight a Dog in Ancient Japan', 2006, 4, 0.99, 103, 24.99, 'G', 'Trailers', '2006-02-15 04:03:42'),
(361, 'GLEAMING JAWBREAKER', 'A Amazing Display of a Composer And a Forensic Psychologist who must Discover a Car in The Canadian Rockies', 2006, 5, 2.99, 89, 25.99, 'NC-17', 'Trailers,Commentaries', '2006-02-15 04:03:42'),
(362, 'GLORY TRACY', 'A Amazing Saga of a Woman And a Womanizer who must Discover a Cat in The First Manned Space Station', 2006, 7, 2.99, 115, 13.99, 'PG-13', 'Trailers,Commentaries,Behind the Scenes', '2006-02-15 04:03:42'),
(363, 'GO PURPLE', 'A Fast-Paced Display of a Car And a Database Administrator who must Battle a Woman in A Baloon', 2006, 3, 0.99, 54, 12.99, 'R', 'Trailers', '2006-02-15 04:03:42'),
(364, 'GODFATHER DIARY', 'A Stunning Saga of a Lumberjack And a Squirrel who must Chase a Car in The Outback', 2006, 3, 2.99, 73, 14.99, 'NC-17', 'Trailers', '2006-02-15 04:03:42'),
(365, 'GOLD RIVER', 'A Taut Documentary of a Database Administrator And a Waitress who must Reach a Mad Scientist in A Baloon Factory', 2006, 4, 4.99, 154, 21.99, 'R', 'Trailers,Commentaries,Deleted Scenes,Behind the Scenes', '2006-02-15 04:03:42'),
(366, 'GOLDFINGER SENSIBILITY', 'A Insightful Drama of a Mad Scientist And a Hunter who must Defeat a Pastry Chef in New Orleans', 2006, 3, 0.99, 93, 29.99, 'G', 'Trailers,Commentaries,Behind the Scenes', '2006-02-15 04:03:42'),
(367, 'GOLDMINE TYCOON', 'A Brilliant Epistle of a Composer And a Frisbee who must Conquer a Husband in The Outback', 2006, 6, 0.99, 153, 20.99, 'R', 'Trailers,Behind the Scenes', '2006-02-15 04:03:42'),
(368, 'GONE TROUBLE', 'A Insightful Character Study of a Mad Cow And a Forensic Psychologist who must Conquer a A Shark in A Manhattan Penthouse', 2006, 7, 2.99, 84, 20.99, 'R', 'Deleted Scenes,Behind the Scenes', '2006-02-15 04:03:42'),
(369, 'GOODFELLAS SALUTE', 'A Unbelieveable Tale of a Dog And a Explorer who must Sink a Mad Cow in A Baloon Factory', 2006, 4, 4.99, 56, 22.99, 'PG', 'Deleted Scenes', '2006-02-15 04:03:42'),
(370, 'GORGEOUS BINGO', 'A Action-Packed Display of a Sumo Wrestler And a Car who must Overcome a Waitress in A Baloon Factory', 2006, 4, 2.99, 108, 26.99, 'R', 'Deleted Scenes,Behind the Scenes', '2006-02-15 04:03:42'),
(371, 'GOSFORD DONNIE', 'A Epic Panorama of a Mad Scientist And a Monkey who must Redeem a Secret Agent in Berlin', 2006, 5, 4.99, 129, 17.99, 'G', 'Commentaries', '2006-02-15 04:03:42'),
(372, 'GRACELAND DYNAMITE', 'A Taut Display of a Cat And a Girl who must Overcome a Database Administrator in New Orleans', 2006, 5, 4.99, 140, 26.99, 'R', 'Trailers,Commentaries', '2006-02-15 04:03:42'),
(373, 'GRADUATE LORD', 'A Lacklusture Epistle of a Girl And a A Shark who must Meet a Mad Scientist in Ancient China', 2006, 7, 2.99, 156, 14.99, 'G', 'Trailers,Behind the Scenes', '2006-02-15 04:03:42'),
(374, 'GRAFFITI LOVE', 'A Unbelieveable Epistle of a Sumo Wrestler And a Hunter who must Build a Composer in Berlin', 2006, 3, 0.99, 117, 29.99, 'PG', 'Trailers,Deleted Scenes', '2006-02-15 04:03:42'),
(375, 'GRAIL FRANKENSTEIN', 'A Unbelieveable Saga of a Teacher And a Monkey who must Fight a Girl in An Abandoned Mine Shaft', 2006, 4, 2.99, 85, 17.99, 'NC-17', 'Commentaries,Deleted Scenes,Behind the Scenes', '2006-02-15 04:03:42'),
(376, 'GRAPES FURY', 'A Boring Yarn of a Mad Cow And a Sumo Wrestler who must Meet a Robot in Australia', 2006, 4, 0.99, 155, 20.99, 'G', 'Commentaries,Behind the Scenes', '2006-02-15 04:03:42'),
(377, 'GREASE YOUTH', 'A Emotional Panorama of a Secret Agent And a Waitress who must Escape a Composer in Soviet Georgia', 2006, 7, 0.99, 135, 20.99, 'G', 'Trailers,Deleted Scenes', '2006-02-15 04:03:42'),
(378, 'GREATEST NORTH', 'A Astounding Character Study of a Secret Agent And a Robot who must Build a A Shark in Berlin', 2006, 5, 2.99, 93, 24.99, 'NC-17', 'Trailers,Commentaries,Behind the Scenes', '2006-02-15 04:03:42'),
(379, 'GREEDY ROOTS', 'A Amazing Reflection of a A Shark And a Butler who must Chase a Hunter in The Canadian Rockies', 2006, 7, 0.99, 166, 14.99, 'R', 'Trailers,Commentaries,Deleted Scenes', '2006-02-15 04:03:42'),
(380, 'GREEK EVERYONE', 'A Stunning Display of a Butler And a Teacher who must Confront a A Shark in The First Manned Space Station', 2006, 7, 2.99, 176, 11.99, 'PG', 'Trailers,Deleted Scenes', '2006-02-15 04:03:42'),
(381, 'GRINCH MASSAGE', 'A Intrepid Display of a Madman And a Feminist who must Pursue a Pioneer in The First Manned Space Station', 2006, 7, 4.99, 150, 25.99, 'R', 'Trailers', '2006-02-15 04:03:42'),
(382, 'GRIT CLOCKWORK', 'A Thoughtful Display of a Dentist And a Squirrel who must Confront a Lumberjack in A Shark Tank', 2006, 3, 0.99, 137, 21.99, 'PG', 'Trailers,Deleted Scenes', '2006-02-15 04:03:42'),
(383, 'GROOVE FICTION', 'A Unbelieveable Reflection of a Moose And a A Shark who must Defeat a Lumberjack in An Abandoned Mine Shaft', 2006, 6, 0.99, 111, 13.99, 'NC-17', 'Behind the Scenes', '2006-02-15 04:03:42'),
(384, 'GROSSE WONDERFUL', 'A Epic Drama of a Cat And a Explorer who must Redeem a Moose in Australia', 2006, 5, 4.99, 49, 19.99, 'R', 'Behind the Scenes', '2006-02-15 04:03:42'),
(385, 'GROUNDHOG UNCUT', 'A Brilliant Panorama of a Astronaut And a Technical Writer who must Discover a Butler in A Manhattan Penthouse', 2006, 6, 4.99, 139, 26.99, 'PG-13', 'Trailers,Commentaries,Deleted Scenes,Behind the Scenes', '2006-02-15 04:03:42'),
(386, 'GUMP DATE', 'A Intrepid Yarn of a Explorer And a Student who must Kill a Husband in An Abandoned Mine Shaft', 2006, 3, 4.99, 53, 12.99, 'NC-17', 'Deleted Scenes', '2006-02-15 04:03:42'),
(387, 'GUN BONNIE', 'A Boring Display of a Sumo Wrestler And a Husband who must Build a Waitress in The Gulf of Mexico', 2006, 7, 0.99, 100, 27.99, 'G', 'Behind the Scenes', '2006-02-15 04:03:42'),
(388, 'GUNFIGHT MOON', 'A Epic Reflection of a Pastry Chef And a Explorer who must Reach a Dentist in The Sahara Desert', 2006, 5, 0.99, 70, 16.99, 'NC-17', 'Deleted Scenes,Behind the Scenes', '2006-02-15 04:03:42'),
(389, 'GUNFIGHTER MUSSOLINI', 'A Touching Saga of a Robot And a Boy who must Kill a Man in Ancient Japan', 2006, 3, 2.99, 127, 9.99, 'PG-13', 'Trailers,Commentaries', '2006-02-15 04:03:42'),
(390, 'GUYS FALCON', 'A Boring Story of a Woman And a Feminist who must Redeem a Squirrel in A U-Boat', 2006, 4, 4.99, 84, 20.99, 'R', 'Trailers,Commentaries,Behind the Scenes', '2006-02-15 04:03:42'),
(391, 'HALF OUTFIELD', 'A Epic Epistle of a Database Administrator And a Crocodile who must Face a Madman in A Jet Boat', 2006, 6, 2.99, 146, 25.99, 'PG-13', 'Trailers,Commentaries,Deleted Scenes,Behind the Scenes', '2006-02-15 04:03:42'),
(392, 'HALL CASSIDY', 'A Beautiful Panorama of a Pastry Chef And a A Shark who must Battle a Pioneer in Soviet Georgia', 2006, 5, 4.99, 51, 13.99, 'NC-17', 'Commentaries,Behind the Scenes', '2006-02-15 04:03:42'),
(393, 'HALLOWEEN NUTS', 'A Amazing Panorama of a Forensic Psychologist And a Technical Writer who must Fight a Dentist in A U-Boat', 2006, 6, 2.99, 47, 19.99, 'PG-13', 'Deleted Scenes', '2006-02-15 04:03:42'),
(394, 'HAMLET WISDOM', 'A Touching Reflection of a Man And a Man who must Sink a Robot in The Outback', 2006, 7, 2.99, 146, 21.99, 'R', 'Trailers,Deleted Scenes', '2006-02-15 04:03:42'),
(395, 'HANDICAP BOONDOCK', 'A Beautiful Display of a Pioneer And a Squirrel who must Vanquish a Sumo Wrestler in Soviet Georgia', 2006, 4, 0.99, 108, 28.99, 'R', 'Commentaries,Deleted Scenes,Behind the Scenes', '2006-02-15 04:03:42'),
(396, 'HANGING DEEP', 'A Action-Packed Yarn of a Boat And a Crocodile who must Build a Monkey in Berlin', 2006, 5, 4.99, 62, 18.99, 'G', 'Trailers,Commentaries,Deleted Scenes', '2006-02-15 04:03:42'),
(397, 'HANKY OCTOBER', 'A Boring Epistle of a Database Administrator And a Explorer who must Pursue a Madman in Soviet Georgia', 2006, 5, 2.99, 107, 26.99, 'NC-17', 'Trailers,Commentaries,Deleted Scenes', '2006-02-15 04:03:42'),
(398, 'HANOVER GALAXY', 'A Stunning Reflection of a Girl And a Secret Agent who must Succumb a Boy in A MySQL Convention', 2006, 5, 4.99, 47, 21.99, 'NC-17', 'Commentaries,Deleted Scenes,Behind the Scenes', '2006-02-15 04:03:42'),
(399, 'HAPPINESS UNITED', 'A Action-Packed Panorama of a Husband And a Feminist who must Meet a Forensic Psychologist in Ancient Japan', 2006, 6, 2.99, 100, 23.99, 'G', 'Deleted Scenes', '2006-02-15 04:03:42'),
(400, 'HARDLY ROBBERS', 'A Emotional Character Study of a Hunter And a Car who must Kill a Woman in Berlin', 2006, 7, 2.99, 72, 15.99, 'R', 'Trailers,Behind the Scenes', '2006-02-15 04:03:42'),
(401, 'HAROLD FRENCH', 'A Stunning Saga of a Sumo Wrestler And a Student who must Outrace a Moose in The Sahara Desert', 2006, 6, 0.99, 168, 10.99, 'NC-17', 'Commentaries,Deleted Scenes,Behind the Scenes', '2006-02-15 04:03:42'),
(402, 'HARPER DYING', 'A Awe-Inspiring Reflection of a Woman And a Cat who must Confront a Feminist in The Sahara Desert', 2006, 3, 0.99, 52, 15.99, 'G', 'Trailers', '2006-02-15 04:03:42'),
(403, 'HARRY IDAHO', 'A Taut Yarn of a Technical Writer And a Feminist who must Outrace a Dog in California', 2006, 5, 4.99, 121, 18.99, 'PG-13', 'Commentaries,Deleted Scenes', '2006-02-15 04:03:42'),
(404, 'HATE HANDICAP', 'A Intrepid Reflection of a Mad Scientist And a Pioneer who must Overcome a Hunter in The First Manned Space Station', 2006, 4, 0.99, 107, 26.99, 'PG', 'Trailers,Commentaries,Behind the Scenes', '2006-02-15 04:03:42'),
(405, 'HAUNTED ANTITRUST', 'A Amazing Saga of a Man And a Dentist who must Reach a Technical Writer in Ancient India', 2006, 6, 4.99, 76, 13.99, 'NC-17', 'Trailers,Deleted Scenes', '2006-02-15 04:03:42'),
(406, 'HAUNTING PIANIST', 'A Fast-Paced Story of a Database Administrator And a Composer who must Defeat a Squirrel in An Abandoned Amusement Park', 2006, 5, 0.99, 181, 22.99, 'R', 'Behind the Scenes', '2006-02-15 04:03:42'),
(407, 'HAWK CHILL', 'A Action-Packed Drama of a Mad Scientist And a Composer who must Outgun a Car in Australia', 2006, 5, 0.99, 47, 12.99, 'PG-13', 'Behind the Scenes', '2006-02-15 04:03:42'),
(408, 'HEAD STRANGER', 'A Thoughtful Saga of a Hunter And a Crocodile who must Confront a Dog in The Gulf of Mexico', 2006, 4, 4.99, 69, 28.99, 'R', 'Trailers,Commentaries', '2006-02-15 04:03:42'),
(409, 'HEARTBREAKERS BRIGHT', 'A Awe-Inspiring Documentary of a A Shark And a Dentist who must Outrace a Pastry Chef in The Canadian Rockies', 2006, 3, 4.99, 59, 9.99, 'G', 'Trailers,Deleted Scenes', '2006-02-15 04:03:42'),
(410, 'HEAVEN FREEDOM', 'A Intrepid Story of a Butler And a Car who must Vanquish a Man in New Orleans', 2006, 7, 2.99, 48, 19.99, 'PG', 'Commentaries', '2006-02-15 04:03:42'),
(411, 'HEAVENLY GUN', 'A Beautiful Yarn of a Forensic Psychologist And a Frisbee who must Battle a Moose in A Jet Boat', 2006, 5, 4.99, 49, 13.99, 'NC-17', 'Behind the Scenes', '2006-02-15 04:03:42'),
(412, 'HEAVYWEIGHTS BEAST', 'A Unbelieveable Story of a Composer And a Dog who must Overcome a Womanizer in An Abandoned Amusement Park', 2006, 6, 4.99, 102, 25.99, 'G', 'Deleted Scenes', '2006-02-15 04:03:42'),
(413, 'HEDWIG ALTER', 'A Action-Packed Yarn of a Womanizer And a Lumberjack who must Chase a Sumo Wrestler in A Monastery', 2006, 7, 2.99, 169, 16.99, 'NC-17', 'Trailers,Commentaries,Behind the Scenes', '2006-02-15 04:03:42'),
(414, 'HELLFIGHTERS SIERRA', 'A Taut Reflection of a A Shark And a Dentist who must Battle a Boat in Soviet Georgia', 2006, 3, 2.99, 75, 23.99, 'PG', 'Deleted Scenes,Behind the Scenes', '2006-02-15 04:03:42'),
(415, 'HIGH ENCINO', 'A Fateful Saga of a Waitress And a Hunter who must Outrace a Sumo Wrestler in Australia', 2006, 3, 2.99, 84, 23.99, 'R', 'Trailers,Commentaries,Behind the Scenes', '2006-02-15 04:03:42'),
(416, 'HIGHBALL POTTER', 'A Action-Packed Saga of a Husband And a Dog who must Redeem a Database Administrator in The Sahara Desert', 2006, 6, 0.99, 110, 10.99, 'R', 'Deleted Scenes', '2006-02-15 04:03:42'),
(417, 'HILLS NEIGHBORS', 'A Epic Display of a Hunter And a Feminist who must Sink a Car in A U-Boat', 2006, 5, 0.99, 93, 29.99, 'G', 'Trailers,Commentaries,Deleted Scenes,Behind the Scenes', '2006-02-15 04:03:42'),
(418, 'HOBBIT ALIEN', 'A Emotional Drama of a Husband And a Girl who must Outgun a Composer in The First Manned Space Station', 2006, 5, 0.99, 157, 27.99, 'PG-13', 'Commentaries', '2006-02-15 04:03:42'),
(419, 'HOCUS FRIDA', 'A Awe-Inspiring Tale of a Girl And a Madman who must Outgun a Student in A Shark Tank', 2006, 4, 2.99, 141, 19.99, 'G', 'Trailers,Deleted Scenes,Behind the Scenes', '2006-02-15 04:03:42'),
(420, 'HOLES BRANNIGAN', 'A Fast-Paced Reflection of a Technical Writer And a Student who must Fight a Boy in The Canadian Rockies', 2006, 7, 4.99, 128, 27.99, 'PG', 'Commentaries,Behind the Scenes', '2006-02-15 04:03:42'),
(421, 'HOLIDAY GAMES', 'A Insightful Reflection of a Waitress And a Madman who must Pursue a Boy in Ancient Japan', 2006, 7, 4.99, 78, 10.99, 'PG-13', 'Trailers,Commentaries,Behind the Scenes', '2006-02-15 04:03:42'),
(422, 'HOLLOW JEOPARDY', 'A Beautiful Character Study of a Robot And a Astronaut who must Overcome a Boat in A Monastery', 2006, 7, 4.99, 136, 25.99, 'NC-17', 'Behind the Scenes', '2006-02-15 04:03:42'),
(423, 'HOLLYWOOD ANONYMOUS', 'A Fast-Paced Epistle of a Boy And a Explorer who must Escape a Dog in A U-Boat', 2006, 7, 0.99, 69, 29.99, 'PG', 'Trailers,Behind the Scenes', '2006-02-15 04:03:42'),
(424, 'HOLOCAUST HIGHBALL', 'A Awe-Inspiring Yarn of a Composer And a Man who must Find a Robot in Soviet Georgia', 2006, 6, 0.99, 149, 12.99, 'R', 'Deleted Scenes', '2006-02-15 04:03:42'),
(425, 'HOLY TADPOLE', 'A Action-Packed Display of a Feminist And a Pioneer who must Pursue a Dog in A Baloon Factory', 2006, 6, 0.99, 88, 20.99, 'R', 'Behind the Scenes', '2006-02-15 04:03:42'),
(426, 'HOME PITY', 'A Touching Panorama of a Man And a Secret Agent who must Challenge a Teacher in A MySQL Convention', 2006, 7, 4.99, 185, 15.99, 'R', 'Trailers,Commentaries,Behind the Scenes', '2006-02-15 04:03:42'),
(427, 'HOMEWARD CIDER', 'A Taut Reflection of a Astronaut And a Squirrel who must Fight a Squirrel in A Manhattan Penthouse', 2006, 5, 0.99, 103, 19.99, 'R', 'Trailers', '2006-02-15 04:03:42'),
(428, 'HOMICIDE PEACH', 'A Astounding Documentary of a Hunter And a Boy who must Confront a Boy in A MySQL Convention', 2006, 6, 2.99, 141, 21.99, 'PG-13', 'Commentaries', '2006-02-15 04:03:42'),
(429, 'HONEY TIES', 'A Taut Story of a Waitress And a Crocodile who must Outrace a Lumberjack in A Shark Tank', 2006, 3, 0.99, 84, 29.99, 'R', 'Trailers,Commentaries,Deleted Scenes', '2006-02-15 04:03:42'),
(430, 'HOOK CHARIOTS', 'A Insightful Story of a Boy And a Dog who must Redeem a Boy in Australia', 2006, 7, 0.99, 49, 23.99, 'G', 'Trailers,Commentaries,Behind the Scenes', '2006-02-15 04:03:42'),
(431, 'HOOSIERS BIRDCAGE', 'A Astounding Display of a Explorer And a Boat who must Vanquish a Car in The First Manned Space Station', 2006, 3, 2.99, 176, 12.99, 'G', 'Trailers,Commentaries,Deleted Scenes', '2006-02-15 04:03:42'),
(432, 'HOPE TOOTSIE', 'A Amazing Documentary of a Student And a Sumo Wrestler who must Outgun a A Shark in A Shark Tank', 2006, 4, 2.99, 139, 22.99, 'NC-17', 'Trailers,Deleted Scenes,Behind the Scenes', '2006-02-15 04:03:42'),
(433, 'HORN WORKING', 'A Stunning Display of a Mad Scientist And a Technical Writer who must Succumb a Monkey in A Shark Tank', 2006, 4, 2.99, 95, 23.99, 'PG', 'Trailers', '2006-02-15 04:03:42'),
(434, 'HORROR REIGN', 'A Touching Documentary of a A Shark And a Car who must Build a Husband in Nigeria', 2006, 3, 0.99, 139, 25.99, 'R', 'Deleted Scenes,Behind the Scenes', '2006-02-15 04:03:42'),
(435, 'HOTEL HAPPINESS', 'A Thrilling Yarn of a Pastry Chef And a A Shark who must Challenge a Mad Scientist in The Outback', 2006, 6, 4.99, 181, 28.99, 'PG-13', 'Behind the Scenes', '2006-02-15 04:03:42'),
(436, 'HOURS RAGE', 'A Fateful Story of a Explorer And a Feminist who must Meet a Technical Writer in Soviet Georgia', 2006, 4, 0.99, 122, 14.99, 'NC-17', 'Trailers,Deleted Scenes', '2006-02-15 04:03:42'),
(437, 'HOUSE DYNAMITE', 'A Taut Story of a Pioneer And a Squirrel who must Battle a Student in Soviet Georgia', 2006, 7, 2.99, 109, 13.99, 'R', 'Commentaries,Deleted Scenes,Behind the Scenes', '2006-02-15 04:03:42'),
(438, 'HUMAN GRAFFITI', 'A Beautiful Reflection of a Womanizer And a Sumo Wrestler who must Chase a Database Administrator in The Gulf of Mexico', 2006, 3, 2.99, 68, 22.99, 'NC-17', 'Trailers,Behind the Scenes', '2006-02-15 04:03:42'),
(439, 'HUNCHBACK IMPOSSIBLE', 'A Touching Yarn of a Frisbee And a Dentist who must Fight a Composer in Ancient Japan', 2006, 4, 4.99, 151, 28.99, 'PG-13', 'Trailers,Deleted Scenes', '2006-02-15 04:03:42'),
(440, 'HUNGER ROOF', 'A Unbelieveable Yarn of a Student And a Database Administrator who must Outgun a Husband in An Abandoned Mine Shaft', 2006, 6, 0.99, 105, 21.99, 'G', 'Deleted Scenes,Behind the Scenes', '2006-02-15 04:03:42'),
(441, 'HUNTER ALTER', 'A Emotional Drama of a Mad Cow And a Boat who must Redeem a Secret Agent in A Shark Tank', 2006, 5, 2.99, 125, 21.99, 'PG-13', 'Commentaries,Deleted Scenes,Behind the Scenes', '2006-02-15 04:03:42'),
(442, 'HUNTING MUSKETEERS', 'A Thrilling Reflection of a Pioneer And a Dentist who must Outrace a Womanizer in An Abandoned Mine Shaft', 2006, 6, 2.99, 65, 24.99, 'NC-17', 'Trailers,Deleted Scenes', '2006-02-15 04:03:42'),
(443, 'HURRICANE AFFAIR', 'A Lacklusture Epistle of a Database Administrator And a Woman who must Meet a Hunter in An Abandoned Mine Shaft', 2006, 6, 2.99, 49, 11.99, 'PG', 'Trailers,Commentaries,Behind the Scenes', '2006-02-15 04:03:42'),
(444, 'HUSTLER PARTY', 'A Emotional Reflection of a Sumo Wrestler And a Monkey who must Conquer a Robot in The Sahara Desert', 2006, 3, 4.99, 83, 22.99, 'NC-17', 'Trailers,Commentaries,Behind the Scenes', '2006-02-15 04:03:42'),
(445, 'HYDE DOCTOR', 'A Fanciful Documentary of a Boy And a Woman who must Redeem a Womanizer in A Jet Boat', 2006, 5, 2.99, 100, 11.99, 'G', 'Trailers,Deleted Scenes', '2006-02-15 04:03:42'),
(446, 'HYSTERICAL GRAIL', 'A Amazing Saga of a Madman And a Dentist who must Build a Car in A Manhattan Penthouse', 2006, 5, 4.99, 150, 19.99, 'PG', 'Trailers,Commentaries,Deleted Scenes', '2006-02-15 04:03:42'),
(447, 'ICE CROSSING', 'A Fast-Paced Tale of a Butler And a Moose who must Overcome a Pioneer in A Manhattan Penthouse', 2006, 5, 2.99, 131, 28.99, 'R', 'Deleted Scenes', '2006-02-15 04:03:42'),
(448, 'IDAHO LOVE', 'A Fast-Paced Drama of a Student And a Crocodile who must Meet a Database Administrator in The Outback', 2006, 3, 2.99, 172, 25.99, 'PG-13', 'Trailers,Commentaries,Deleted Scenes,Behind the Scenes', '2006-02-15 04:03:42'),
(449, 'IDENTITY LOVER', 'A Boring Tale of a Composer And a Mad Cow who must Defeat a Car in The Outback', 2006, 4, 2.99, 119, 12.99, 'PG-13', 'Deleted Scenes', '2006-02-15 04:03:42'),
(450, 'IDOLS SNATCHERS', 'A Insightful Drama of a Car And a Composer who must Fight a Man in A Monastery', 2006, 5, 2.99, 84, 29.99, 'NC-17', 'Trailers', '2006-02-15 04:03:42'),
(451, 'IGBY MAKER', 'A Epic Documentary of a Hunter And a Dog who must Outgun a Dog in A Baloon Factory', 2006, 7, 4.99, 160, 12.99, 'NC-17', 'Trailers,Behind the Scenes', '2006-02-15 04:03:42'),
(452, 'ILLUSION AMELIE', 'A Emotional Epistle of a Boat And a Mad Scientist who must Outrace a Robot in An Abandoned Mine Shaft', 2006, 4, 0.99, 122, 15.99, 'R', 'Commentaries,Behind the Scenes', '2006-02-15 04:03:42'),
(453, 'IMAGE PRINCESS', 'A Lacklusture Panorama of a Secret Agent And a Crocodile who must Discover a Madman in The Canadian Rockies', 2006, 3, 2.99, 178, 17.99, 'PG-13', 'Trailers,Commentaries,Deleted Scenes', '2006-02-15 04:03:42'),
(454, 'IMPACT ALADDIN', 'A Epic Character Study of a Frisbee And a Moose who must Outgun a Technical Writer in A Shark Tank', 2006, 6, 0.99, 180, 20.99, 'PG-13', 'Trailers,Deleted Scenes', '2006-02-15 04:03:42'),
(455, 'IMPOSSIBLE PREJUDICE', 'A Awe-Inspiring Yarn of a Monkey And a Hunter who must Chase a Teacher in Ancient China', 2006, 7, 4.99, 103, 11.99, 'NC-17', 'Deleted Scenes', '2006-02-15 04:03:42'),
(456, 'INCH JET', 'A Fateful Saga of a Womanizer And a Student who must Defeat a Butler in A Monastery', 2006, 6, 4.99, 167, 18.99, 'NC-17', 'Deleted Scenes', '2006-02-15 04:03:42'),
(457, 'INDEPENDENCE HOTEL', 'A Thrilling Tale of a Technical Writer And a Boy who must Face a Pioneer in A Monastery', 2006, 5, 0.99, 157, 21.99, 'NC-17', 'Trailers,Behind the Scenes', '2006-02-15 04:03:42'),
(458, 'INDIAN LOVE', 'A Insightful Saga of a Mad Scientist And a Mad Scientist who must Kill a Astronaut in An Abandoned Fun House', 2006, 4, 0.99, 135, 26.99, 'NC-17', 'Trailers,Commentaries,Deleted Scenes,Behind the Scenes', '2006-02-15 04:03:42'),
(459, 'INFORMER DOUBLE', 'A Action-Packed Display of a Woman And a Dentist who must Redeem a Forensic Psychologist in The Canadian Rockies', 2006, 4, 4.99, 74, 23.99, 'NC-17', 'Trailers,Commentaries', '2006-02-15 04:03:42'),
(460, 'INNOCENT USUAL', 'A Beautiful Drama of a Pioneer And a Crocodile who must Challenge a Student in The Outback', 2006, 3, 4.99, 178, 26.99, 'PG-13', 'Trailers,Deleted Scenes,Behind the Scenes', '2006-02-15 04:03:42'),
(461, 'INSECTS STONE', 'A Epic Display of a Butler And a Dog who must Vanquish a Crocodile in A Manhattan Penthouse', 2006, 3, 0.99, 123, 14.99, 'NC-17', 'Trailers,Commentaries,Behind the Scenes', '2006-02-15 04:03:42'),
(462, 'INSIDER ARIZONA', 'A Astounding Saga of a Mad Scientist And a Hunter who must Pursue a Robot in A Baloon Factory', 2006, 5, 2.99, 78, 17.99, 'NC-17', 'Commentaries', '2006-02-15 04:03:42'),
(463, 'INSTINCT AIRPORT', 'A Touching Documentary of a Mad Cow And a Explorer who must Confront a Butler in A Manhattan Penthouse', 2006, 4, 2.99, 116, 21.99, 'PG', 'Commentaries,Deleted Scenes', '2006-02-15 04:03:42'),
(464, 'INTENTIONS EMPIRE', 'A Astounding Epistle of a Cat And a Cat who must Conquer a Mad Cow in A U-Boat', 2006, 3, 2.99, 107, 13.99, 'PG-13', 'Trailers,Behind the Scenes', '2006-02-15 04:03:42'),
(465, 'INTERVIEW LIAISONS', 'A Action-Packed Reflection of a Student And a Butler who must Discover a Database Administrator in A Manhattan Penthouse', 2006, 4, 4.99, 59, 17.99, 'R', 'Commentaries,Behind the Scenes', '2006-02-15 04:03:42'),
(466, 'INTOLERABLE INTENTIONS', 'A Awe-Inspiring Story of a Monkey And a Pastry Chef who must Succumb a Womanizer in A MySQL Convention', 2006, 6, 4.99, 63, 20.99, 'PG-13', 'Commentaries,Behind the Scenes', '2006-02-15 04:03:42'),
(467, 'INTRIGUE WORST', 'A Fanciful Character Study of a Explorer And a Mad Scientist who must Vanquish a Squirrel in A Jet Boat', 2006, 6, 0.99, 181, 10.99, 'G', 'Deleted Scenes', '2006-02-15 04:03:42'),
(468, 'INVASION CYCLONE', 'A Lacklusture Character Study of a Mad Scientist And a Womanizer who must Outrace a Explorer in A Monastery', 2006, 5, 2.99, 97, 12.99, 'PG', 'Trailers,Deleted Scenes', '2006-02-15 04:03:42'),
(469, 'IRON MOON', 'A Fast-Paced Documentary of a Mad Cow And a Boy who must Pursue a Dentist in A Baloon', 2006, 7, 4.99, 46, 27.99, 'PG', 'Commentaries,Behind the Scenes', '2006-02-15 04:03:42'),
(470, 'ISHTAR ROCKETEER', 'A Astounding Saga of a Dog And a Squirrel who must Conquer a Dog in An Abandoned Fun House', 2006, 4, 4.99, 79, 24.99, 'R', 'Trailers,Commentaries,Deleted Scenes', '2006-02-15 04:03:42'),
(471, 'ISLAND EXORCIST', 'A Fanciful Panorama of a Technical Writer And a Boy who must Find a Dentist in An Abandoned Fun House', 2006, 7, 2.99, 84, 23.99, 'NC-17', 'Trailers,Commentaries', '2006-02-15 04:03:42'),
(472, 'ITALIAN AFRICAN', 'A Astounding Character Study of a Monkey And a Moose who must Outgun a Cat in A U-Boat', 2006, 3, 4.99, 174, 24.99, 'G', 'Trailers,Commentaries,Deleted Scenes', '2006-02-15 04:03:42'),
(473, 'JACKET FRISCO', 'A Insightful Reflection of a Womanizer And a Husband who must Conquer a Pastry Chef in A Baloon', 2006, 5, 2.99, 181, 16.99, 'PG-13', 'Trailers,Deleted Scenes,Behind the Scenes', '2006-02-15 04:03:42');
INSERT INTO `film` (`film_id`, `title`, `description`, `release_year`, `rental_duration`, `rental_rate`, `length`, `replacement_cost`, `rating`, `special_features`, `last_update`) VALUES
(474, 'JADE BUNCH', 'A Insightful Panorama of a Squirrel And a Mad Cow who must Confront a Student in The First Manned Space Station', 2006, 6, 2.99, 174, 21.99, 'NC-17', 'Trailers,Commentaries,Behind the Scenes', '2006-02-15 04:03:42'),
(475, 'JAPANESE RUN', 'A Awe-Inspiring Epistle of a Feminist And a Girl who must Sink a Girl in The Outback', 2006, 6, 0.99, 135, 29.99, 'G', 'Deleted Scenes', '2006-02-15 04:03:42'),
(476, 'JASON TRAP', 'A Thoughtful Tale of a Woman And a A Shark who must Conquer a Dog in A Monastery', 2006, 5, 2.99, 130, 9.99, 'NC-17', 'Trailers,Deleted Scenes,Behind the Scenes', '2006-02-15 04:03:42'),
(477, 'JAWBREAKER BROOKLYN', 'A Stunning Reflection of a Boat And a Pastry Chef who must Succumb a A Shark in A Jet Boat', 2006, 5, 0.99, 118, 15.99, 'PG', 'Trailers,Behind the Scenes', '2006-02-15 04:03:42'),
(478, 'JAWS HARRY', 'A Thrilling Display of a Database Administrator And a Monkey who must Overcome a Dog in An Abandoned Fun House', 2006, 4, 2.99, 112, 10.99, 'G', 'Deleted Scenes', '2006-02-15 04:03:42'),
(479, 'JEDI BENEATH', 'A Astounding Reflection of a Explorer And a Dentist who must Pursue a Student in Nigeria', 2006, 7, 0.99, 128, 12.99, 'PG', 'Trailers,Commentaries,Deleted Scenes', '2006-02-15 04:03:42'),
(480, 'JEEPERS WEDDING', 'A Astounding Display of a Composer And a Dog who must Kill a Pastry Chef in Soviet Georgia', 2006, 3, 2.99, 84, 29.99, 'R', 'Trailers,Commentaries,Deleted Scenes', '2006-02-15 04:03:42'),
(481, 'JEKYLL FROGMEN', 'A Fanciful Epistle of a Student And a Astronaut who must Kill a Waitress in A Shark Tank', 2006, 4, 2.99, 58, 22.99, 'PG', 'Commentaries,Deleted Scenes,Behind the Scenes', '2006-02-15 04:03:42'),
(482, 'JEOPARDY ENCINO', 'A Boring Panorama of a Man And a Mad Cow who must Face a Explorer in Ancient India', 2006, 3, 0.99, 102, 12.99, 'R', 'Trailers,Commentaries', '2006-02-15 04:03:42'),
(483, 'JERICHO MULAN', 'A Amazing Yarn of a Hunter And a Butler who must Defeat a Boy in A Jet Boat', 2006, 3, 2.99, 171, 29.99, 'NC-17', 'Commentaries', '2006-02-15 04:03:42'),
(484, 'JERK PAYCHECK', 'A Touching Character Study of a Pastry Chef And a Database Administrator who must Reach a A Shark in Ancient Japan', 2006, 3, 2.99, 172, 13.99, 'NC-17', 'Trailers,Commentaries,Deleted Scenes,Behind the Scenes', '2006-02-15 04:03:42'),
(485, 'JERSEY SASSY', 'A Lacklusture Documentary of a Madman And a Mad Cow who must Find a Feminist in Ancient Japan', 2006, 6, 4.99, 60, 16.99, 'PG', 'Deleted Scenes,Behind the Scenes', '2006-02-15 04:03:42'),
(486, 'JET NEIGHBORS', 'A Amazing Display of a Lumberjack And a Teacher who must Outrace a Woman in A U-Boat', 2006, 7, 4.99, 59, 14.99, 'R', 'Trailers,Commentaries,Behind the Scenes', '2006-02-15 04:03:42'),
(487, 'JINGLE SAGEBRUSH', 'A Epic Character Study of a Feminist And a Student who must Meet a Woman in A Baloon', 2006, 6, 4.99, 124, 29.99, 'PG-13', 'Trailers,Commentaries', '2006-02-15 04:03:42'),
(488, 'JOON NORTHWEST', 'A Thrilling Panorama of a Technical Writer And a Car who must Discover a Forensic Psychologist in A Shark Tank', 2006, 3, 0.99, 105, 23.99, 'NC-17', 'Trailers,Commentaries,Behind the Scenes', '2006-02-15 04:03:42'),
(489, 'JUGGLER HARDLY', 'A Epic Story of a Mad Cow And a Astronaut who must Challenge a Car in California', 2006, 4, 0.99, 54, 14.99, 'PG-13', 'Trailers,Commentaries', '2006-02-15 04:03:42'),
(490, 'JUMANJI BLADE', 'A Intrepid Yarn of a Husband And a Womanizer who must Pursue a Mad Scientist in New Orleans', 2006, 4, 2.99, 121, 13.99, 'G', 'Commentaries,Behind the Scenes', '2006-02-15 04:03:42'),
(491, 'JUMPING WRATH', 'A Touching Epistle of a Monkey And a Feminist who must Discover a Boat in Berlin', 2006, 4, 0.99, 74, 18.99, 'NC-17', 'Commentaries,Behind the Scenes', '2006-02-15 04:03:42'),
(492, 'JUNGLE CLOSER', 'A Boring Character Study of a Boy And a Woman who must Battle a Astronaut in Australia', 2006, 6, 0.99, 134, 11.99, 'NC-17', 'Trailers,Commentaries,Deleted Scenes', '2006-02-15 04:03:42'),
(493, 'KANE EXORCIST', 'A Epic Documentary of a Composer And a Robot who must Overcome a Car in Berlin', 2006, 5, 0.99, 92, 18.99, 'R', 'Trailers,Commentaries', '2006-02-15 04:03:42'),
(494, 'KARATE MOON', 'A Astounding Yarn of a Womanizer And a Dog who must Reach a Waitress in A MySQL Convention', 2006, 4, 0.99, 120, 21.99, 'PG-13', 'Behind the Scenes', '2006-02-15 04:03:42'),
(495, 'KENTUCKIAN GIANT', 'A Stunning Yarn of a Woman And a Frisbee who must Escape a Waitress in A U-Boat', 2006, 5, 2.99, 169, 10.99, 'PG', 'Trailers,Commentaries,Deleted Scenes,Behind the Scenes', '2006-02-15 04:03:42'),
(496, 'KICK SAVANNAH', 'A Emotional Drama of a Monkey And a Robot who must Defeat a Monkey in New Orleans', 2006, 3, 0.99, 179, 10.99, 'PG-13', 'Trailers,Commentaries,Deleted Scenes', '2006-02-15 04:03:42'),
(497, 'KILL BROTHERHOOD', 'A Touching Display of a Hunter And a Secret Agent who must Redeem a Husband in The Outback', 2006, 4, 0.99, 54, 15.99, 'G', 'Trailers,Commentaries', '2006-02-15 04:03:42'),
(498, 'KILLER INNOCENT', 'A Fanciful Character Study of a Student And a Explorer who must Succumb a Composer in An Abandoned Mine Shaft', 2006, 7, 2.99, 161, 11.99, 'R', 'Trailers,Commentaries,Deleted Scenes', '2006-02-15 04:03:42'),
(499, 'KING EVOLUTION', 'A Action-Packed Tale of a Boy And a Lumberjack who must Chase a Madman in A Baloon', 2006, 3, 4.99, 184, 24.99, 'NC-17', 'Trailers,Deleted Scenes,Behind the Scenes', '2006-02-15 04:03:42'),