-
Notifications
You must be signed in to change notification settings - Fork 0
/
db.json
22902 lines (22902 loc) · 662 KB
/
db.json
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
{
"data": [
{
"filmId": 1,
"title": "ACADEMY DINOSAUR",
"description": "A Epic Drama of a Feminist And a Mad Scientist who must Battle a Teacher in The Canadian Rockies",
"releaseYear": 2006,
"language": "English",
"rentalDuration": 6,
"rentalRate": 0.99,
"length": 86,
"rating": "PG",
"specialFeatures": "Deleted Scenes,Behind the Scenes",
"cast": [
"JOHNNY CAGE",
"WARREN NOLTE",
"CHRISTIAN GABLE",
"LUCILLE TRACY",
"SANDRA PECK",
"OPRAH KILMER",
"PENELOPE GUINESS",
"ROCK DUKAKIS",
"MARY KEITEL",
"MENA TEMPLE"
],
"inventory": {
"47 MySakila Drive": [4, 2, 3, 1],
"28 MySQL Boulevard": [7, 5, 6, 8]
},
"category": ["Documentary"]
},
{
"filmId": 2,
"title": "ACE GOLDFINGER",
"description": "A Astounding Epistle of a Database Administrator And a Explorer who must Find a Car in Ancient China",
"releaseYear": 2006,
"language": "English",
"rentalDuration": 3,
"rentalRate": 4.99,
"length": 48,
"rating": "G",
"specialFeatures": "Trailers,Deleted Scenes",
"cast": ["CHRIS DEPP", "SEAN GUINESS", "MINNIE ZELLWEGER", "BOB FAWCETT"],
"inventory": {
"28 MySQL Boulevard": [10, 11, 9]
},
"category": ["Horror"]
},
{
"filmId": 3,
"title": "ADAPTATION HOLES",
"description": "A Astounding Reflection of a Lumberjack And a Car who must Sink a Lumberjack in A Baloon Factory",
"releaseYear": 2006,
"language": "English",
"rentalDuration": 7,
"rentalRate": 2.99,
"length": 50,
"rating": "NC-17",
"specialFeatures": "Trailers,Deleted Scenes",
"cast": [
"CAMERON STREEP",
"JULIANNE DENCH",
"NICK WAHLBERG",
"RAY JOHANSSON",
"BOB FAWCETT"
],
"inventory": {
"28 MySQL Boulevard": [12, 13, 15, 14]
},
"category": ["Documentary"]
},
{
"filmId": 4,
"title": "AFFAIR PREJUDICE",
"description": "A Fanciful Documentary of a Frisbee And a Lumberjack who must Chase a Monkey in A Shark Tank",
"releaseYear": 2006,
"language": "English",
"rentalDuration": 5,
"rentalRate": 2.99,
"length": 117,
"rating": "G",
"specialFeatures": "Commentaries,Behind the Scenes",
"cast": [
"JODIE DEGENERES",
"OPRAH KILMER",
"SCARLETT DAMON",
"KENNETH PESCI",
"FAY WINSLET"
],
"inventory": {
"47 MySakila Drive": [18, 17, 16, 19],
"28 MySQL Boulevard": [21, 22, 20]
},
"category": ["Horror"]
},
{
"filmId": 5,
"title": "AFRICAN EGG",
"description": "A Fast-Paced Documentary of a Pastry Chef And a Dentist who must Pursue a Forensic Psychologist in The Gulf of Mexico",
"releaseYear": 2006,
"language": "English",
"rentalDuration": 6,
"rentalRate": 2.99,
"length": 130,
"rating": "G",
"specialFeatures": "Deleted Scenes",
"cast": [
"MATTHEW LEIGH",
"DUSTIN TAUTOU",
"MATTHEW CARREY",
"GARY PHOENIX",
"THORA TEMPLE"
],
"inventory": {
"28 MySQL Boulevard": [25, 23, 24]
},
"category": ["Family"]
},
{
"filmId": 6,
"title": "AGENT TRUMAN",
"description": "A Intrepid Panorama of a Robot And a Boy who must Escape a Sumo Wrestler in Ancient China",
"releaseYear": 2006,
"language": "English",
"rentalDuration": 3,
"rentalRate": 2.99,
"length": 169,
"rating": "PG",
"specialFeatures": "Deleted Scenes",
"cast": [
"WARREN NOLTE",
"REESE WEST",
"SANDRA KILMER",
"KENNETH HOFFMAN",
"KIRSTEN PALTROW",
"JAYNE NEESON",
"MORGAN WILLIAMS"
],
"inventory": {
"47 MySakila Drive": [26, 27, 28],
"28 MySQL Boulevard": [31, 30, 29]
},
"category": ["Foreign"]
},
{
"filmId": 7,
"title": "AIRPLANE SIERRA",
"description": "A Touching Saga of a Hunter And a Butler who must Discover a Butler in A Jet Boat",
"releaseYear": 2006,
"language": "English",
"rentalDuration": 6,
"rentalRate": 4.99,
"length": 62,
"rating": "PG-13",
"specialFeatures": "Trailers,Deleted Scenes",
"cast": [
"JIM MOSTEL",
"OPRAH KILMER",
"MENA HOPPER",
"RICHARD PENN",
"MICHAEL BOLGER"
],
"inventory": {
"47 MySakila Drive": [33, 32],
"28 MySQL Boulevard": [36, 35, 34]
},
"category": ["Comedy"]
},
{
"filmId": 8,
"title": "AIRPORT POLLOCK",
"description": "A Epic Tale of a Moose And a Girl who must Confront a Monkey in Ancient India",
"releaseYear": 2006,
"language": "English",
"rentalDuration": 6,
"rentalRate": 4.99,
"length": 54,
"rating": "R",
"specialFeatures": "Trailers",
"cast": ["FAY KILMER", "LUCILLE DEE", "SUSAN DAVIS", "GENE WILLIS"],
"inventory": {
"28 MySQL Boulevard": [38, 40, 37, 39]
},
"category": ["Horror"]
},
{
"filmId": 9,
"title": "ALABAMA DEVIL",
"description": "A Thoughtful Panorama of a Database Administrator And a Mad Scientist who must Outgun a Mad Scientist in A Jet Boat",
"releaseYear": 2006,
"language": "English",
"rentalDuration": 3,
"rentalRate": 2.99,
"length": 114,
"rating": "PG-13",
"specialFeatures": "Trailers,Deleted Scenes",
"cast": [
"WARREN NOLTE",
"RIP CRAWFORD",
"CHRISTIAN GABLE",
"WILLIAM HACKMAN",
"RIP WINSLET",
"MERYL ALLEN",
"GRETA KEITEL",
"ELVIS MARX",
"MENA TEMPLE"
],
"inventory": {
"47 MySakila Drive": [42, 43, 41],
"28 MySQL Boulevard": [44, 45]
},
"category": ["Horror"]
},
{
"filmId": 10,
"title": "ALADDIN CALENDAR",
"description": "A Action-Packed Tale of a Man And a Lumberjack who must Reach a Feminist in Ancient China",
"releaseYear": 2006,
"language": "English",
"rentalDuration": 6,
"rentalRate": 4.99,
"length": 63,
"rating": "NC-17",
"specialFeatures": "Trailers,Deleted Scenes",
"cast": [
"GRETA MALDEN",
"ALEC WAYNE",
"JUDY DEAN",
"JADA RYDER",
"ROCK DUKAKIS",
"RENEE TRACY",
"VAL BOLGER",
"RAY JOHANSSON"
],
"inventory": {
"47 MySakila Drive": [47, 49, 46, 48],
"28 MySQL Boulevard": [50, 52, 51]
},
"category": ["Sports"]
},
{
"filmId": 11,
"title": "ALAMO VIDEOTAPE",
"description": "A Boring Epistle of a Butler And a Cat who must Fight a Pastry Chef in A MySQL Convention",
"releaseYear": 2006,
"language": "English",
"rentalDuration": 6,
"rentalRate": 0.99,
"length": 126,
"rating": "G",
"specialFeatures": "Commentaries,Behind the Scenes",
"cast": [
"JOHNNY CAGE",
"MICHAEL BENING",
"SCARLETT DAMON",
"SEAN GUINESS"
],
"inventory": {
"47 MySakila Drive": [55, 56, 53, 54],
"28 MySQL Boulevard": [57, 58, 59]
},
"category": ["Foreign"]
},
{
"filmId": 12,
"title": "ALASKA PHANTOM",
"description": "A Fanciful Saga of a Hunter And a Pastry Chef who must Vanquish a Boy in Australia",
"releaseYear": 2006,
"language": "English",
"rentalDuration": 6,
"rentalRate": 0.99,
"length": 136,
"rating": "PG",
"specialFeatures": "Commentaries,Deleted Scenes",
"cast": [
"SIDNEY CROWE",
"SYLVESTER DERN",
"JEFF SILVERSTONE",
"GENE MCKELLEN",
"VAL BOLGER",
"BURT POSEY",
"ALBERT JOHANSSON"
],
"inventory": {
"47 MySakila Drive": [60, 62, 61],
"28 MySQL Boulevard": [65, 66, 63, 64]
},
"category": ["Music"]
},
{
"filmId": 13,
"title": "ALI FOREVER",
"description": "A Action-Packed Drama of a Dentist And a Crocodile who must Battle a Feminist in The Canadian Rockies",
"releaseYear": 2006,
"language": "English",
"rentalDuration": 4,
"rentalRate": 4.99,
"length": 150,
"rating": "PG",
"specialFeatures": "Deleted Scenes,Behind the Scenes",
"cast": [
"MORGAN MCDORMAND",
"CHRISTOPHER BERRY",
"KENNETH TORN",
"CARY MCCONAUGHEY",
"JON CHASE"
],
"inventory": {
"28 MySQL Boulevard": [68, 69, 70, 67]
},
"category": ["Horror"]
},
{
"filmId": 14,
"title": "ALICE FANTASIA",
"description": "A Emotional Drama of a A Shark And a Database Administrator who must Vanquish a Pioneer in Soviet Georgia",
"releaseYear": 2006,
"language": "English",
"rentalDuration": 6,
"rentalRate": 0.99,
"length": 94,
"rating": "NC-17",
"specialFeatures": "Trailers,Deleted Scenes,Behind the Scenes",
"cast": [
"WOODY HOFFMAN",
"ROCK DUKAKIS",
"MORGAN WILLIAMS",
"MINNIE ZELLWEGER"
],
"inventory": {},
"category": ["Classics"]
},
{
"filmId": 15,
"title": "ALIEN CENTER",
"description": "A Brilliant Drama of a Cat And a Mad Scientist who must Battle a Feminist in A MySQL Convention",
"releaseYear": 2006,
"language": "English",
"rentalDuration": 5,
"rentalRate": 2.99,
"length": 46,
"rating": "NC-17",
"specialFeatures": "Trailers,Commentaries,Behind the Scenes",
"cast": [
"BURT DUKAKIS",
"SIDNEY CROWE",
"MENA HOPPER",
"HUMPHREY WILLIS",
"RENEE TRACY",
"KENNETH PALTROW"
],
"inventory": {
"47 MySakila Drive": [71, 72],
"28 MySQL Boulevard": [74, 73, 75, 76]
},
"category": ["Foreign"]
},
{
"filmId": 16,
"title": "ALLEY EVOLUTION",
"description": "A Fast-Paced Drama of a Robot And a Composer who must Battle a Astronaut in New Orleans",
"releaseYear": 2006,
"language": "English",
"rentalDuration": 6,
"rentalRate": 2.99,
"length": 180,
"rating": "NC-17",
"specialFeatures": "Trailers,Commentaries",
"cast": [
"JUDE CRUISE",
"GREGORY GOODING",
"JOHN SUVARI",
"KARL BERRY",
"ALBERT JOHANSSON"
],
"inventory": {
"47 MySakila Drive": [78, 77],
"28 MySQL Boulevard": [79, 80]
},
"category": ["Foreign"]
},
{
"filmId": 17,
"title": "ALONE TRIP",
"description": "A Fast-Paced Character Study of a Composer And a Dog who must Outgun a Boat in An Abandoned Fun House",
"releaseYear": 2006,
"language": "English",
"rentalDuration": 3,
"rentalRate": 0.99,
"length": 82,
"rating": "R",
"specialFeatures": "Trailers,Behind the Scenes",
"cast": [
"SPENCER DEPP",
"WOODY JOLIE",
"CHRIS DEPP",
"RENEE BALL",
"ED CHASE",
"UMA WOOD",
"KARL BERRY",
"LAURENCE BULLOCK"
],
"inventory": {
"47 MySakila Drive": [82, 81, 83],
"28 MySQL Boulevard": [86, 85, 84]
},
"category": ["Music"]
},
{
"filmId": 18,
"title": "ALTER VICTORY",
"description": "A Thoughtful Drama of a Composer And a Feminist who must Meet a Secret Agent in The Canadian Rockies",
"releaseYear": 2006,
"language": "English",
"rentalDuration": 6,
"rentalRate": 0.99,
"length": 57,
"rating": "PG-13",
"specialFeatures": "Trailers,Behind the Scenes",
"cast": [
"ANGELA WITHERSPOON",
"JADA RYDER",
"OPRAH KILMER",
"REESE KILMER"
],
"inventory": {
"47 MySakila Drive": [89, 88, 87],
"28 MySQL Boulevard": [92, 90, 91]
},
"category": ["Animation"]
},
{
"filmId": 19,
"title": "AMADEUS HOLY",
"description": "A Emotional Display of a Pioneer And a Technical Writer who must Battle a Man in A Baloon",
"releaseYear": 2006,
"language": "English",
"rentalDuration": 6,
"rentalRate": 0.99,
"length": 113,
"rating": "PG",
"specialFeatures": "Commentaries,Deleted Scenes,Behind the Scenes",
"cast": [
"JOHNNY LOLLOBRIGIDA",
"JULIA MCQUEEN",
"PENELOPE CRONYN",
"VAL BOLGER",
"JAMES PITT",
"KIRK JOVOVICH"
],
"inventory": {
"47 MySakila Drive": [96, 95, 93, 94],
"28 MySQL Boulevard": [97, 98]
},
"category": ["Action"]
},
{
"filmId": 20,
"title": "AMELIE HELLFIGHTERS",
"description": "A Boring Drama of a Woman And a Squirrel who must Conquer a Student in A Baloon",
"releaseYear": 2006,
"language": "English",
"rentalDuration": 4,
"rentalRate": 4.99,
"length": 79,
"rating": "R",
"specialFeatures": "Commentaries,Deleted Scenes,Behind the Scenes",
"cast": [
"CARMEN HUNT",
"ED MANSFIELD",
"EWAN GOODING",
"IAN TANDY",
"LAURA BRODY",
"WALTER TORN"
],
"inventory": {
"47 MySakila Drive": [100, 101, 99]
},
"category": ["Music"]
},
{
"filmId": 21,
"title": "AMERICAN CIRCUS",
"description": "A Insightful Drama of a Girl And a Astronaut who must Face a Database Administrator in A Shark Tank",
"releaseYear": 2006,
"language": "English",
"rentalDuration": 3,
"rentalRate": 4.99,
"length": 129,
"rating": "R",
"specialFeatures": "Commentaries,Behind the Scenes",
"cast": [
"KEVIN BLOOM",
"SIDNEY CROWE",
"RIP CRAWFORD",
"WARREN JACKMAN",
"FRANCES TOMEI"
],
"inventory": {
"47 MySakila Drive": [103, 102],
"28 MySQL Boulevard": [106, 105, 104, 107]
},
"category": ["Action"]
},
{
"filmId": 22,
"title": "AMISTAD MIDSUMMER",
"description": "A Emotional Character Study of a Dentist And a Crocodile who must Meet a Sumo Wrestler in California",
"releaseYear": 2006,
"language": "English",
"rentalDuration": 6,
"rentalRate": 2.99,
"length": 85,
"rating": "G",
"specialFeatures": "Commentaries,Behind the Scenes",
"cast": [
"SALMA NOLTE",
"SCARLETT BENING",
"CARY MCCONAUGHEY",
"DARYL WAHLBERG"
],
"inventory": {
"47 MySakila Drive": [111, 110, 108, 109],
"28 MySQL Boulevard": [112, 114, 113]
},
"category": ["New"]
},
{
"filmId": 23,
"title": "ANACONDA CONFESSIONS",
"description": "A Lacklusture Display of a Dentist And a Dentist who must Fight a Girl in Australia",
"releaseYear": 2006,
"language": "English",
"rentalDuration": 3,
"rentalRate": 0.99,
"length": 92,
"rating": "R",
"specialFeatures": "Trailers,Deleted Scenes",
"cast": [
"JENNIFER DAVIS",
"PENELOPE GUINESS",
"HUMPHREY WILLIS",
"JAYNE NOLTE",
"ELVIS MARX"
],
"inventory": {
"47 MySakila Drive": [115, 116, 117],
"28 MySQL Boulevard": [118, 119]
},
"category": ["Animation"]
},
{
"filmId": 24,
"title": "ANALYZE HOOSIERS",
"description": "A Thoughtful Display of a Explorer And a Pastry Chef who must Overcome a Feminist in The Sahara Desert",
"releaseYear": 2006,
"language": "English",
"rentalDuration": 6,
"rentalRate": 2.99,
"length": 181,
"rating": "R",
"specialFeatures": "Trailers,Behind the Scenes",
"cast": [
"GRETA MALDEN",
"TOM MIRANDA",
"ED GUINESS",
"TOM MCKELLEN",
"JESSICA BAILEY"
],
"inventory": {
"47 MySakila Drive": [120, 122, 123, 121]
},
"category": ["Horror"]
},
{
"filmId": 25,
"title": "ANGELS LIFE",
"description": "A Thoughtful Display of a Woman And a Astronaut who must Battle a Robot in Berlin",
"releaseYear": 2006,
"language": "English",
"rentalDuration": 3,
"rentalRate": 2.99,
"length": 74,
"rating": "G",
"specialFeatures": "Trailers",
"cast": [
"JULIA BARRYMORE",
"JENNIFER DAVIS",
"NICK DEGENERES",
"GRACE MOSTEL",
"ED MANSFIELD",
"CHRISTOPHER BERRY",
"PENELOPE GUINESS",
"RENEE BALL",
"LAURENCE BULLOCK"
],
"inventory": {
"47 MySakila Drive": [127, 124, 126, 125],
"28 MySQL Boulevard": [128, 129]
},
"category": ["New"]
},
{
"filmId": 26,
"title": "ANNIE IDENTITY",
"description": "A Amazing Panorama of a Pastry Chef And a Boat who must Escape a Woman in An Abandoned Amusement Park",
"releaseYear": 2006,
"language": "English",
"rentalDuration": 3,
"rentalRate": 0.99,
"length": 86,
"rating": "G",
"specialFeatures": "Commentaries,Deleted Scenes",
"cast": ["ADAM GRANT", "GRETA KEITEL", "CATE MCQUEEN"],
"inventory": {
"47 MySakila Drive": [130, 131],
"28 MySQL Boulevard": [133, 132, 134]
},
"category": ["Sci-Fi"]
},
{
"filmId": 27,
"title": "ANONYMOUS HUMAN",
"description": "A Amazing Reflection of a Database Administrator And a Astronaut who must Outrace a Database Administrator in A Shark Tank",
"releaseYear": 2006,
"language": "English",
"rentalDuration": 7,
"rentalRate": 0.99,
"length": 179,
"rating": "NC-17",
"specialFeatures": "Deleted Scenes,Behind the Scenes",
"cast": [
"GRACE MOSTEL",
"FAY KILMER",
"JIM MOSTEL",
"MERYL GIBSON",
"MENA HOPPER",
"ED GUINESS",
"SUSAN DAVIS",
"WHOOPI HURT",
"EMILY DEE"
],
"inventory": {
"47 MySakila Drive": [135, 136, 137, 138]
},
"category": ["Sports"]
},
{
"filmId": 28,
"title": "ANTHEM LUKE",
"description": "A Touching Panorama of a Waitress And a Woman who must Outrace a Dog in An Abandoned Amusement Park",
"releaseYear": 2006,
"language": "English",
"rentalDuration": 5,
"rentalRate": 4.99,
"length": 91,
"rating": "PG-13",
"specialFeatures": "Deleted Scenes,Behind the Scenes",
"cast": ["OPRAH KILMER", "MILLA KEITEL"],
"inventory": {
"47 MySakila Drive": [139, 141, 140]
},
"category": ["Comedy"]
},
{
"filmId": 29,
"title": "ANTITRUST TOMATOES",
"description": "A Fateful Yarn of a Womanizer And a Feminist who must Succumb a Database Administrator in Ancient India",
"releaseYear": 2006,
"language": "English",
"rentalDuration": 5,
"rentalRate": 2.99,
"length": 168,
"rating": "NC-17",
"specialFeatures": "Trailers,Commentaries,Deleted Scenes",
"cast": [
"BETTE NICHOLSON",
"SIDNEY CROWE",
"REESE WEST",
"WILLIAM HACKMAN",
"SALMA NOLTE",
"RENEE BALL",
"UMA WOOD"
],
"inventory": {
"47 MySakila Drive": [142, 143]
},
"category": ["Action"]
},
{
"filmId": 30,
"title": "ANYTHING SAVANNAH",
"description": "A Epic Story of a Pastry Chef And a Woman who must Chase a Feminist in An Abandoned Fun House",
"releaseYear": 2006,
"language": "English",
"rentalDuration": 4,
"rentalRate": 2.99,
"length": 82,
"rating": "R",
"specialFeatures": "Trailers,Deleted Scenes,Behind the Scenes",
"cast": ["CHRISTOPHER WEST", "LISA MONROE", "JOE SWANK"],
"inventory": {
"47 MySakila Drive": [144, 145]
},
"category": ["Horror"]
},
{
"filmId": 31,
"title": "APACHE DIVINE",
"description": "A Awe-Inspiring Reflection of a Pastry Chef And a Teacher who must Overcome a Sumo Wrestler in A U-Boat",
"releaseYear": 2006,
"language": "English",
"rentalDuration": 5,
"rentalRate": 4.99,
"length": 92,
"rating": "NC-17",
"specialFeatures": "Commentaries,Deleted Scenes,Behind the Scenes",
"cast": ["NICK WAHLBERG", "ANNE CRONYN", "CUBA OLIVIER", "HENRY BERRY"],
"inventory": {
"47 MySakila Drive": [146, 149, 148, 147],
"28 MySQL Boulevard": [153, 151, 150, 152]
},
"category": ["Family"]
},
{
"filmId": 32,
"title": "APOCALYPSE FLAMINGOS",
"description": "A Astounding Story of a Dog And a Squirrel who must Defeat a Woman in An Abandoned Amusement Park",
"releaseYear": 2006,
"language": "English",
"rentalDuration": 6,
"rentalRate": 4.99,
"length": 119,
"rating": "R",
"specialFeatures": "Trailers,Commentaries",
"cast": [
"VIVIEN BASINGER",
"OPRAH KILMER",
"RUSSELL CLOSE",
"WILL WILSON",
"MAE HOFFMAN"
],
"inventory": {
"28 MySQL Boulevard": [155, 154]
},
"category": ["New"]
},
{
"filmId": 33,
"title": "APOLLO TEEN",
"description": "A Action-Packed Reflection of a Crocodile And a Explorer who must Find a Sumo Wrestler in An Abandoned Mine Shaft",
"releaseYear": 2006,
"language": "English",
"rentalDuration": 5,
"rentalRate": 2.99,
"length": 153,
"rating": "PG-13",
"specialFeatures": "Trailers,Commentaries,Deleted Scenes,Behind the Scenes",
"cast": [
"ED MANSFIELD",
"JEFF SILVERSTONE",
"OPRAH KILMER",
"DEBBIE AKROYD",
"WOODY JOLIE",
"MENA HOPPER",
"MAE HOFFMAN",
"ALBERT JOHANSSON"
],
"inventory": {},
"category": ["Drama"]
},
{
"filmId": 34,
"title": "ARABIA DOGMA",
"description": "A Touching Epistle of a Madman And a Mad Cow who must Defeat a Student in Nigeria",
"releaseYear": 2006,
"language": "English",
"rentalDuration": 6,
"rentalRate": 0.99,
"length": 62,
"rating": "NC-17",
"specialFeatures": "Commentaries,Deleted Scenes",
"cast": [
"JOHNNY CAGE",
"GRETA MALDEN",
"RIP CRAWFORD",
"JUDE CRUISE",
"SEAN WILLIAMS",
"JULIA MCQUEEN",
"WALTER TORN",
"RUSSELL BACALL",
"KARL BERRY",
"LISA MONROE",
"FRANCES TOMEI",
"BURT POSEY"
],
"inventory": {
"28 MySQL Boulevard": [158, 156, 159, 157]
},
"category": ["Horror"]
},
{
"filmId": 35,
"title": "ARACHNOPHOBIA ROLLERCOASTER",
"description": "A Action-Packed Reflection of a Pastry Chef And a Composer who must Discover a Mad Scientist in The First Manned Space Station",
"releaseYear": 2006,
"language": "English",
"rentalDuration": 4,
"rentalRate": 2.99,
"length": 147,
"rating": "PG-13",
"specialFeatures": "Trailers,Deleted Scenes,Behind the Scenes",
"cast": [
"HUMPHREY GARLAND",
"JUDY DEAN",
"GRACE MOSTEL",
"MORGAN HOPKINS",
"EWAN GOODING",
"RITA REYNOLDS",
"CUBA ALLEN",
"DARYL WAHLBERG"
],
"inventory": {
"47 MySakila Drive": [160, 163, 161, 162],
"28 MySQL Boulevard": [165, 166, 164]
},
"category": ["Horror"]
},
{
"filmId": 36,
"title": "ARGONAUTS TOWN",
"description": "A Emotional Epistle of a Forensic Psychologist And a Butler who must Challenge a Waitress in An Abandoned Mine Shaft",
"releaseYear": 2006,
"language": "English",
"rentalDuration": 7,
"rentalRate": 0.99,
"length": 127,
"rating": "PG-13",
"specialFeatures": "Trailers,Commentaries",
"cast": [
"JULIA BARRYMORE",
"DAN STREEP",
"GARY PENN",
"KEVIN GARLAND",
"GENE WILLIS"
],
"inventory": {},
"category": ["Animation"]
},
{
"filmId": 37,
"title": "ARIZONA BANG",
"description": "A Brilliant Panorama of a Mad Scientist And a Mad Cow who must Meet a Pioneer in A Monastery",
"releaseYear": 2006,
"language": "English",
"rentalDuration": 3,
"rentalRate": 2.99,
"length": 121,
"rating": "PG",
"specialFeatures": "Trailers,Deleted Scenes",
"cast": ["RUSSELL BACALL", "GRETA KEITEL", "KARL BERRY", "RAY JOHANSSON"],
"inventory": {
"47 MySakila Drive": [170, 169, 168, 167],
"28 MySQL Boulevard": [171, 173, 172]
},
"category": ["Classics"]
},
{
"filmId": 38,
"title": "ARK RIDGEMONT",
"description": "A Beautiful Yarn of a Pioneer And a Monkey who must Pursue a Explorer in The Sahara Desert",
"releaseYear": 2006,
"language": "English",
"rentalDuration": 6,
"rentalRate": 0.99,
"length": 68,
"rating": "NC-17",
"specialFeatures": "Trailers,Commentaries,Deleted Scenes,Behind the Scenes",
"cast": ["NICK DEGENERES", "PARKER GOLDBERG", "AUDREY BAILEY"],
"inventory": {},
"category": ["Action"]
},
{
"filmId": 39,
"title": "ARMAGEDDON LOST",
"description": "A Fast-Paced Tale of a Boat And a Teacher who must Succumb a Composer in An Abandoned Mine Shaft",
"releaseYear": 2006,
"language": "English",
"rentalDuration": 5,
"rentalRate": 0.99,
"length": 99,
"rating": "G",
"specialFeatures": "Trailers",
"cast": [
"GREGORY GOODING",
"ANGELA HUDSON",
"KIM ALLEN",
"GENE MCKELLEN",
"PENELOPE CRONYN",
"CUBA ALLEN",
"JAMES PITT"
],
"inventory": {
"47 MySakila Drive": [176, 175, 174],
"28 MySQL Boulevard": [179, 177, 178, 180]
},
"category": ["Sci-Fi"]
},
{
"filmId": 40,
"title": "ARMY FLINTSTONES",
"description": "A Boring Saga of a Database Administrator And a Womanizer who must Battle a Waitress in Nigeria",
"releaseYear": 2006,
"language": "English",
"rentalDuration": 4,
"rentalRate": 0.99,
"length": 148,
"rating": "R",
"specialFeatures": "Trailers,Commentaries",
"cast": [
"ED CHASE",
"PENELOPE CRONYN",
"MATTHEW CARREY",
"RUSSELL CLOSE",
"CARY MCCONAUGHEY",
"MAE HOFFMAN",
"GENE WILLIS"
],
"inventory": {
"28 MySQL Boulevard": [184, 181, 183, 182]
},
"category": ["Documentary"]
},
{
"filmId": 41,
"title": "ARSENIC INDEPENDENCE",
"description": "A Fanciful Documentary of a Mad Cow And a Womanizer who must Find a Dentist in Berlin",
"releaseYear": 2006,
"language": "English",
"rentalDuration": 4,
"rentalRate": 0.99,
"length": 137,
"rating": "PG",
"specialFeatures": "Trailers,Deleted Scenes,Behind the Scenes",
"cast": ["OPRAH KILMER", "RITA REYNOLDS", "CUBA ALLEN"],
"inventory": {},
"category": ["Travel"]
},
{
"filmId": 42,
"title": "ARTIST COLDBLOODED",
"description": "A Stunning Reflection of a Robot And a Moose who must Challenge a Woman in California",
"releaseYear": 2006,
"language": "English",
"rentalDuration": 5,
"rentalRate": 2.99,
"length": 170,
"rating": "NC-17",
"specialFeatures": "Trailers,Behind the Scenes",
"cast": [
"SIDNEY CROWE",
"SANDRA KILMER",
"ED CHASE",
"MERYL ALLEN",
"JAYNE NEESON",
"RENEE TRACY",
"KIRK JOVOVICH"
],
"inventory": {
"28 MySQL Boulevard": [186, 185, 188, 187]
},
"category": ["Sports"]
},
{
"filmId": 43,
"title": "ATLANTIS CAUSE",
"description": "A Thrilling Yarn of a Feminist And a Hunter who must Fight a Technical Writer in A Shark Tank",
"releaseYear": 2006,
"language": "English",
"rentalDuration": 6,
"rentalRate": 2.99,
"length": 170,
"rating": "G",
"specialFeatures": "Behind the Scenes",
"cast": [
"WOODY HOFFMAN",
"JULIANNE DENCH",
"CATE HARRIS",
"CHRIS DEPP",
"AUDREY OLIVIER",
"HARVEY HOPE",
"GRETA KEITEL",
"FRANCES TOMEI",
"CUBA BIRCH"
],
"inventory": {
"47 MySakila Drive": [189, 191, 190],
"28 MySQL Boulevard": [192, 193, 194, 195]
},
"category": ["Family"]