-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmovies.dat
3883 lines (3883 loc) · 186 KB
/
movies.dat
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
1::Toy Story (1995)::Animation|Children's|Comedy::TV-G
2::Jumanji (1995)::Adventure|Children's|Fantasy::PG
3::Grumpier Old Men (1995)::Comedy|Romance::PG-13
4::Waiting to Exhale (1995)::Comedy|Drama::R
5::Father of the Bride Part II (1995)::Comedy::PG
6::Heat (1995)::Action|Crime|Thriller::R
7::Sabrina (1995)::Comedy|Romance::PG
8::Tom and Huck (1995)::Adventure|Children's::PG
9::Sudden Death (1995)::Action::R
10::GoldenEye (1995)::Action|Adventure|Thriller::PG-13
11::American President, The (1995)::Comedy|Drama|Romance::PG-13
12::Dracula: Dead and Loving It (1995)::Comedy|Horror::PG-13
13::Balto (1995)::Animation|Children's::G
14::Nixon (1995)::Drama::R
15::Cutthroat Island (1995)::Action|Adventure|Romance::PG-13
16::Casino (1995)::Drama|Thriller::R
17::Sense and Sensibility (1995)::Drama|Romance::PG
18::Four Rooms (1995)::Thriller::R
19::Ace Ventura: When Nature Calls (1995)::Comedy::PG-13
20::Money Train (1995)::Action::R
21::Get Shorty (1995)::Action|Comedy|Drama::R
22::Copycat (1995)::Crime|Drama|Thriller::R
23::Assassins (1995)::Thriller::R
24::Powder (1995)::Drama|Sci-Fi::PG-13
25::Leaving Las Vegas (1995)::Drama|Romance::R
26::Othello (1995)::Drama::R
27::Now and Then (1995)::Drama::PG-13
28::Persuasion (1995)::Romance::
29::City of Lost Children, The (1995)::Adventure|Sci-Fi::R
30::Shanghai Triad (Yao a yao yao dao waipo qiao) (1995)::Drama::R
31::Dangerous Minds (1995)::Drama::R
32::Twelve Monkeys (1995)::Drama|Sci-Fi::R
33::Wings of Courage (1995)::Adventure|Romance::G
34::Babe (1995)::Children's|Comedy|Drama::G
35::Carrington (1995)::Drama|Romance::R
36::Dead Man Walking (1995)::Drama::R
37::Across the Sea of Time (1995)::Documentary::G
38::It Takes Two (1995)::Comedy::PG
39::Clueless (1995)::Comedy|Romance::PG-13
40::Cry, the Beloved Country (1995)::Drama::PG-13
41::Richard III (1995)::Drama|War::R
42::Dead Presidents (1995)::Action|Crime|Drama::R
43::Restoration (1995)::Drama::R
44::Mortal Kombat (1995)::Action|Adventure::PG-13
45::To Die For (1995)::Comedy|Drama::R
46::How to Make an American Quilt (1995)::Drama|Romance::PG-13
47::Seven (Se7en) (1995)::Crime|Thriller::R
48::Pocahontas (1995)::Animation|Children's|Musical|Romance::G
49::When Night Is Falling (1995)::Drama|Romance::Unrated
50::Usual Suspects, The (1995)::Crime|Thriller::R
51::Guardian Angel (1994)::Action|Drama|Thriller::R
52::Mighty Aphrodite (1995)::Comedy::R
53::Lamerica (1994)::Drama::13
54::Big Green, The (1995)::Children's|Comedy::PG
55::Georgia (1995)::Drama::R
56::Kids of the Round Table (1995)::Adventure|Children's|Fantasy::Unrated
57::Home for the Holidays (1995)::Drama::PG-13
58::Postino, Il (The Postman) (1994)::Drama|Romance::PG
59::Confessional, The (Le Confessionnal) (1995)::Drama|Mystery::Not Rated
60::Indian in the Cupboard, The (1995)::Adventure|Children's|Fantasy::PG
61::Eye for an Eye (1996)::Drama|Thriller::R
62::Mr. Holland's Opus (1995)::Drama::PG
63::Don't Be a Menace to South Central While Drinking Your Juice in the Hood (1996)::Comedy::R
64::Two if by Sea (1996)::Comedy|Romance::R
65::Bio-Dome (1996)::Comedy::PG-13
66::Lawnmower Man 2: Beyond Cyberspace (1996)::Sci-Fi|Thriller::PG-13
67::Two Bits (1995)::Drama::PG-13
68::French Twist (Gazon maudit) (1995)::Comedy|Romance::PG-13
69::Friday (1995)::Comedy::R
70::From Dusk Till Dawn (1996)::Action|Comedy|Crime|Horror|Thriller::R
71::Fair Game (1995)::Action::R
72::Kicking and Screaming (1995)::Comedy|Drama::R
73::Misérables, Les (1995)::Drama|Musical::R
74::Bed of Roses (1996)::Drama|Romance::PG
75::Big Bully (1996)::Comedy|Drama::PG
76::Screamers (1995)::Sci-Fi|Thriller::R
77::Nico Icon (1995)::Documentary::
78::Crossing Guard, The (1995)::Drama::R
79::Juror, The (1996)::Drama|Thriller::R
80::White Balloon, The (Badkonake Sefid ) (1995)::Drama::R
81::Things to Do in Denver when You're Dead (1995)::Crime|Drama|Romance::R
82::Antonia's Line (Antonia) (1995)::Drama::R
83::Once Upon a Time... When We Were Colored (1995)::Drama::PG
84::Last Summer in the Hamptons (1995)::Comedy|Drama::R
85::Angels and Insects (1995)::Drama|Romance::R
86::White Squall (1996)::Adventure|Drama::PG-13
87::Dunston Checks In (1996)::Children's|Comedy::PG
88::Black Sheep (1996)::Comedy::PG-13
89::Nick of Time (1995)::Action|Thriller::R
90::Journey of August King, The (1995)::Drama::PG-13
92::Mary Reilly (1996)::Drama|Thriller::R
93::Vampire in Brooklyn (1995)::Comedy|Romance::R
94::Beautiful Girls (1996)::Drama::R
95::Broken Arrow (1996)::Action|Thriller::R
96::In the Bleak Midwinter (1995)::Comedy::R
97::Hate (Haine, La) (1995)::Drama::Not Rated
98::Shopping (1994)::Action|Thriller::R
99::Heidi Fleiss: Hollywood Madam (1995)::Documentary::15
100::City Hall (1996)::Drama|Thriller::R
101::Bottle Rocket (1996)::Comedy::R
102::Mr. Wrong (1996)::Comedy::PG-13
103::Unforgettable (1996)::Thriller::R
104::Happy Gilmore (1996)::Comedy::PG-13
105::Bridges of Madison County, The (1995)::Drama|Romance::PG-13
106::Nobody Loves Me (Keiner liebt mich) (1994)::Comedy|Drama::PG-13
107::Muppet Treasure Island (1996)::Adventure|Children's|Comedy|Musical::G
108::Catwalk (1995)::Documentary::M
109::Headless Body in Topless Bar (1995)::Comedy::KNT/ENA
110::Braveheart (1995)::Action|Drama|War::R
111::Taxi Driver (1976)::Drama|Thriller::R
112::Rumble in the Bronx (1995)::Action|Adventure|Crime::R
113::Before and After (1996)::Drama|Mystery::PG-13
114::Margaret's Museum (1995)::Drama::R
115::Happiness Is in the Field (1995)::Comedy::Atp
116::Anne Frank Remembered (1995)::Documentary::PG
117::Young Poisoner's Handbook, The (1995)::Crime::R
118::If Lucy Fell (1996)::Comedy|Romance::R
119::Steal Big, Steal Little (1995)::Comedy::PG-13
120::Race the Sun (1996)::Drama::PG
121::Boys of St. Vincent, The (1993)::Drama::PG
122::Boomerang (1992)::Comedy|Romance::R
123::Chungking Express (1994)::Drama|Mystery|Romance::PG-13
124::Star Maker, The (Uomo delle stelle, L') (1995)::Drama::R
125::Flirting With Disaster (1996)::Comedy::R
126::NeverEnding Story III, The (1994)::Adventure|Children's|Fantasy::
127::Silence of the Palace, The (Saimt el Qusur) (1994)::Drama::13
128::Jupiter's Wife (1994)::Documentary::13
129::Pie in the Sky (1995)::Comedy|Romance::13
130::Angela (1995)::Drama::15
131::Frankie Starlight (1995)::Drama|Romance::R
132::Jade (1995)::Thriller::R
133::Nueba Yol (1995)::Comedy|Drama::Atp
134::Sonic Outlaws (1995)::Documentary::
135::Down Periscope (1996)::Comedy::PG-13
136::From the Journals of Jean Seberg (1995)::Documentary::
137::Man of the Year (1995)::Documentary::
138::Neon Bible, The (1995)::Drama::M
139::Target (1995)::Action|Drama::
140::Up Close and Personal (1996)::Drama|Romance::PG-13
141::Birdcage, The (1996)::Comedy::R
142::Shadows (Cienie) (1988)::Drama::R
143::Gospa (1995)::Drama::PG
144::Brothers McMullen, The (1995)::Comedy::R
145::Bad Boys (1995)::Action::R
146::Amazing Panda Adventure, The (1995)::Adventure|Children's::PG
147::Basketball Diaries, The (1995)::Drama::R
148::Awfully Big Adventure, An (1995)::Drama::R
149::Amateur (1994)::Crime|Drama|Thriller::R
150::Apollo 13 (1995)::Drama::PG
151::Rob Roy (1995)::Drama|Romance|War::R
152::Addiction, The (1995)::Horror::Unrated
153::Batman Forever (1995)::Action|Adventure|Comedy|Crime::PG-13
154::Belle de jour (1967)::Drama::Approved
155::Beyond Rangoon (1995)::Drama|War::R
156::Blue in the Face (1995)::Comedy::R
157::Canadian Bacon (1994)::Comedy|War::R
158::Casper (1995)::Adventure|Children's::PG
159::Clockers (1995)::Drama::R
160::Congo (1995)::Action|Adventure|Mystery|Sci-Fi::PG-13
161::Crimson Tide (1995)::Drama|Thriller|War::R
162::Crumb (1994)::Documentary::R
163::Desperado (1995)::Action|Romance|Thriller::R
164::Devil in a Blue Dress (1995)::Crime|Film-Noir|Mystery|Thriller::R
165::Die Hard: With a Vengeance (1995)::Action|Thriller::R
166::Doom Generation, The (1995)::Comedy|Drama::R
167::Feast of July (1995)::Drama::R
168::First Knight (1995)::Action|Adventure|Drama|Romance::PG-13
169::Free Willy 2: The Adventure Home (1995)::Adventure|Children's|Drama::PG
170::Hackers (1995)::Action|Crime|Thriller::PG-13
171::Jeffrey (1995)::Comedy::R
172::Johnny Mnemonic (1995)::Action|Sci-Fi|Thriller::R
173::Judge Dredd (1995)::Action|Adventure|Sci-Fi::R
174::Jury Duty (1995)::Comedy::PG-13
175::Kids (1995)::Drama::Unrated
176::Living in Oblivion (1995)::Comedy::R
177::Lord of Illusions (1995)::Horror::R
178::Love & Human Remains (1993)::Comedy::R
179::Mad Love (1995)::Drama|Romance::PG-13
180::Mallrats (1995)::Comedy::R
181::Mighty Morphin Power Rangers: The Movie (1995)::Action|Children's::PG
182::Moonlight and Valentino (1995)::Drama|Romance::R
183::Mute Witness (1994)::Thriller::R
184::Nadja (1994)::Drama::R
185::Net, The (1995)::Sci-Fi|Thriller::PG-13
186::Nine Months (1995)::Comedy::PG-13
187::Party Girl (1995)::Comedy::R
188::Prophecy, The (1995)::Horror::R
189::Reckless (1995)::Comedy::PG-13
190::Safe (1995)::Thriller::R
191::Scarlet Letter, The (1995)::Drama::R
192::Show, The (1995)::Documentary::R
193::Showgirls (1995)::Drama::NC-17
194::Smoke (1995)::Drama::R
195::Something to Talk About (1995)::Comedy|Drama|Romance::R
196::Species (1995)::Horror|Sci-Fi::R
197::Stars Fell on Henrietta, The (1995)::Drama::
198::Strange Days (1995)::Action|Crime|Sci-Fi::R
199::Umbrellas of Cherbourg, The (Parapluies de Cherbourg, Les) (1964)::Drama|Musical::Unrated
200::Tie That Binds, The (1995)::Thriller::R
201::Three Wishes (1995)::Drama::PG
202::Total Eclipse (1995)::Drama|Romance::R
203::To Wong Foo, Thanks for Everything! Julie Newmar (1995)::Comedy::PG-13
204::Under Siege 2: Dark Territory (1995)::Action::R
205::Unstrung Heroes (1995)::Comedy|Drama::PG
206::Unzipped (1995)::Documentary::R
207::Walk in the Clouds, A (1995)::Drama|Romance::PG-13
208::Waterworld (1995)::Action|Adventure::PG-13
209::White Man's Burden (1995)::Drama::R
210::Wild Bill (1995)::Western::R
211::Browning Version, The (1994)::Drama::R
212::Bushwhacked (1995)::Comedy::R
213::Burnt By the Sun (Utomlyonnye solntsem) (1994)::Drama::R
214::Before the Rain (Pred dozhdot) (1994)::Drama::R
215::Before Sunrise (1995)::Drama|Romance::R
216::Billy Madison (1995)::Comedy::PG-13
217::Babysitter, The (1995)::Drama|Thriller::R
218::Boys on the Side (1995)::Comedy|Drama::R
219::Cure, The (1995)::Drama::PG-13
220::Castle Freak (1995)::Horror::R
222::Circle of Friends (1995)::Drama|Romance::PG-13
223::Clerks (1994)::Comedy::R
224::Don Juan DeMarco (1995)::Comedy|Drama|Romance::R
225::Disclosure (1994)::Drama|Thriller::R
226::Dream Man (1995)::Thriller::R
227::Drop Zone (1994)::Action::R
228::Destiny Turns on the Radio (1995)::Comedy::R
229::Death and the Maiden (1994)::Drama|Thriller::R
230::Dolores Claiborne (1994)::Drama|Thriller::R
231::Dumb & Dumber (1994)::Comedy::PG-13
232::Eat Drink Man Woman (1994)::Comedy|Drama::Unrated
233::Exotica (1994)::Drama::R
234::Exit to Eden (1994)::Comedy::R
235::Ed Wood (1994)::Comedy|Drama::R
236::French Kiss (1995)::Comedy|Romance::PG-13
237::Forget Paris (1995)::Comedy|Romance::PG-13
238::Far From Home: The Adventures of Yellow Dog (1995)::Adventure|Children's::PG
239::Goofy Movie, A (1995)::Animation|Children's|Comedy|Romance::TV-G
240::Hideaway (1995)::Thriller::R
241::Fluke (1995)::Children's|Drama::PG
242::Farinelli: il castrato (1994)::Drama|Musical::PG
243::Gordy (1995)::Comedy::G
244::Gumby: The Movie (1995)::Animation|Children's::G
245::Glass Shield, The (1994)::Crime|Drama::PG-13
246::Hoop Dreams (1994)::Documentary::PG-13
247::Heavenly Creatures (1994)::Drama|Fantasy|Romance|Thriller::R
248::Houseguest (1994)::Comedy::R
249::Immortal Beloved (1994)::Drama|Romance::R
250::Heavyweights (1994)::Children's|Comedy::R
251::Hunted, The (1995)::Action::R
252::I.Q. (1994)::Comedy|Romance::PG
253::Interview with the Vampire (1994)::Drama|Horror::R
254::Jefferson in Paris (1995)::Drama::PG-13
255::Jerky Boys, The (1994)::Comedy::PG-13
256::Junior (1994)::Comedy|Sci-Fi::PG-13
257::Just Cause (1995)::Mystery|Thriller::R
258::Kid in King Arthur's Court, A (1995)::Adventure|Children's|Comedy|Fantasy|Romance::G
259::Kiss of Death (1995)::Crime|Drama|Thriller::R
260::Star Wars: Episode IV - A New Hope (1977)::Action|Adventure|Fantasy|Sci-Fi::PG
261::Little Women (1994)::Drama::PG
262::Little Princess, A (1995)::Children's|Drama::G
263::Ladybird Ladybird (1994)::Drama::R
264::Enfer, L' (1994)::Drama::R
265::Like Water for Chocolate (Como agua para chocolate) (1992)::Drama|Romance::R
266::Legends of the Fall (1994)::Drama|Romance|War|Western::R
267::Major Payne (1994)::Comedy::R
268::Little Odessa (1994)::Drama::R
269::My Crazy Life (Mi vida loca) (1993)::Drama::R
270::Love Affair (1994)::Drama|Romance::PG-13
271::Losing Isaiah (1995)::Drama::R
272::Madness of King George, The (1994)::Drama::PG-13
273::Mary Shelley's Frankenstein (1994)::Drama|Horror::R
274::Man of the House (1995)::Comedy::PG
275::Mixed Nuts (1994)::Comedy::PG-13
276::Milk Money (1994)::Comedy|Romance::PG-13
277::Miracle on 34th Street (1994)::Drama::PG
278::Miami Rhapsody (1995)::Comedy::PG-13
279::My Family (1995)::Drama::R
280::Murder in the First (1995)::Drama|Thriller::R
281::Nobody's Fool (1994)::Drama::R
282::Nell (1994)::Drama::PG-13
283::New Jersey Drive (1995)::Crime|Drama::R
284::New York Cop (1996)::Action|Crime::R
285::Beyond Bedlam (1993)::Drama|Horror::R
286::Nemesis 2: Nebula (1995)::Action|Sci-Fi|Thriller::R
287::Nina Takes a Lover (1994)::Comedy|Romance::R
288::Natural Born Killers (1994)::Action|Thriller::R
289::Only You (1994)::Comedy|Romance::PG
290::Once Were Warriors (1994)::Crime|Drama::R
291::Poison Ivy II (1995)::Thriller::R
292::Outbreak (1995)::Action|Drama|Thriller::R
293::Professional, The (a.k.a. Leon: The Professional) (1994)::Crime|Drama|Romance|Thriller::Unrated
294::Perez Family, The (1995)::Comedy|Romance::
295::Pyromaniac's Love Story, A (1995)::Comedy|Romance::PG
296::Pulp Fiction (1994)::Crime|Drama::R
297::Panther (1995)::Drama::R
298::Pushing Hands (1992)::Comedy::K-7
299::Priest (1994)::Drama::R
300::Quiz Show (1994)::Drama::PG-13
301::Picture Bride (1995)::Drama|Romance::PG-13
302::Queen Margot (La Reine Margot) (1994)::Drama|Romance::R
303::Quick and the Dead, The (1995)::Action|Adventure|Western::R
304::Roommates (1995)::Comedy|Drama::PG
305::Ready to Wear (Pret-A-Porter) (1994)::Comedy::
306::Three Colors: Red (1994)::Drama::R
307::Three Colors: Blue (1993)::Drama::R
308::Three Colors: White (1994)::Drama::R
309::Red Firecracker, Green Firecracker (1994)::Drama::R
310::Rent-a-Kid (1995)::Comedy::G
311::Relative Fear (1994)::Horror|Thriller::R
312::Stuart Saves His Family (1995)::Comedy::PG-13
313::Swan Princess, The (1994)::Animation|Children's::G
314::Secret of Roan Inish, The (1994)::Drama::PG
315::Specialist, The (1994)::Action::R
316::Stargate (1994)::Action|Adventure|Sci-Fi::PG-13
317::Santa Clause, The (1994)::Children's|Comedy|Fantasy::PG
318::Shawshank Redemption, The (1994)::Drama::R
319::Shallow Grave (1994)::Thriller::R
320::Suture (1993)::Film-Noir|Thriller::Not Rated
321::Strawberry and Chocolate (Fresa y chocolate) (1993)::Drama::R
322::Swimming with Sharks (1995)::Comedy|Drama::R
324::Sum of Us, The (1994)::Comedy::M
325::National Lampoon's Senior Trip (1995)::Comedy::R
326::To Live (Huozhe) (1994)::Drama::R
327::Tank Girl (1995)::Action|Comedy|Musical|Sci-Fi::R
328::Tales From the Crypt Presents: Demon Knight (1995)::Horror::R
329::Star Trek: Generations (1994)::Action|Adventure|Sci-Fi::PG
330::Tales from the Hood (1995)::Comedy|Horror::R
331::Tom & Viv (1994)::Drama::PG-13
332::Village of the Damned (1995)::Horror|Sci-Fi::R
333::Tommy Boy (1995)::Comedy::PG-13
334::Vanya on 42nd Street (1994)::Drama::PG
335::Underneath, The (1995)::Mystery|Thriller::R
336::Walking Dead, The (1995)::Drama|War::R
337::What's Eating Gilbert Grape (1993)::Drama::PG-13
338::Virtuosity (1995)::Sci-Fi|Thriller::R
339::While You Were Sleeping (1995)::Comedy|Romance::PG
340::War, The (1994)::Adventure|Drama::PG
341::Double Happiness (1994)::Drama::PG-13
342::Muriel's Wedding (1994)::Comedy|Romance::R
343::Baby-Sitters Club, The (1995)::Children's::PG
344::Ace Ventura: Pet Detective (1994)::Comedy::PG-13
345::Adventures of Priscilla, Queen of the Desert, The (1994)::Comedy|Drama::R
346::Backbeat (1993)::Drama|Musical::R
347::Bitter Moon (1992)::Drama::R
348::Bullets Over Broadway (1994)::Comedy::R
349::Clear and Present Danger (1994)::Action|Adventure|Thriller::PG-13
350::Client, The (1994)::Drama|Mystery|Thriller::PG-13
351::Corrina, Corrina (1994)::Comedy|Drama|Romance::PG
352::Crooklyn (1994)::Comedy::PG-13
353::Crow, The (1994)::Action|Romance|Thriller::R
354::Cobb (1994)::Drama::R
355::Flintstones, The (1994)::Children's|Comedy::PG
356::Forrest Gump (1994)::Comedy|Romance|War::PG-13
357::Four Weddings and a Funeral (1994)::Comedy|Romance::R
358::Higher Learning (1995)::Drama::R
359::I Like It Like That (1994)::Comedy|Drama|Romance::R
360::I Love Trouble (1994)::Action|Comedy::PG
361::It Could Happen to You (1994)::Drama|Romance::PG
362::Jungle Book, The (1994)::Adventure|Children's|Romance::PG
363::Wonderful, Horrible Life of Leni Riefenstahl, The (Die Macht der Bilder) (1993)::Documentary::PG
364::Lion King, The (1994)::Animation|Children's|Musical::G
365::Little Buddha (1993)::Drama::PG
366::Wes Craven's New Nightmare (1994)::Horror::R
367::Mask, The (1994)::Comedy|Crime|Fantasy::PG-13
368::Maverick (1994)::Action|Comedy|Western::PG
369::Mrs. Parker and the Vicious Circle (1994)::Drama::R
370::Naked Gun 33 1/3: The Final Insult (1994)::Comedy::PG-13
371::Paper, The (1994)::Comedy|Drama::R
372::Reality Bites (1994)::Comedy|Drama::PG-13
373::Red Rock West (1992)::Thriller::PG-13
374::Richie Rich (1994)::Children's|Comedy::PG
375::Safe Passage (1994)::Drama::PG-13
376::River Wild, The (1994)::Action|Thriller::PG-13
377::Speed (1994)::Action|Romance|Thriller::R
378::Speechless (1994)::Comedy|Romance::PG-13
379::Timecop (1994)::Action|Sci-Fi::R
380::True Lies (1994)::Action|Adventure|Comedy|Romance::R
381::When a Man Loves a Woman (1994)::Drama::R
382::Wolf (1994)::Drama|Horror::R
383::Wyatt Earp (1994)::Western::PG-13
384::Bad Company (1995)::Action::R
385::Man of No Importance, A (1994)::Drama::R
386::S.F.W. (1994)::Drama::R
387::Low Down Dirty Shame, A (1994)::Action|Comedy::R
388::Boys Life (1995)::Drama::
389::Colonel Chabert, Le (1994)::Drama|Romance|War::M
390::Faster Pussycat! Kill! Kill! (1965)::Action|Comedy|Drama::TV-14
391::Jason's Lyric (1994)::Crime|Drama::R
392::Secret Adventures of Tom Thumb, The (1993)::Adventure|Children's::Unrated
393::Street Fighter (1994)::Action::PG-13
394::Coldblooded (1995)::Action::R
395::Desert Winds (1995)::Drama::R
396::Fall Time (1995)::Drama::R
397::Fear, The (1995)::Horror::R
398::Frank and Ollie (1995)::Documentary::PG
399::Girl in the Cadillac (1995)::Drama::R
400::Homage (1995)::Drama::R
401::Mirage (1995)::Action|Thriller::R
402::Open Season (1996)::Comedy::R
403::Two Crimes (1995)::Comedy|Crime|Drama::R
404::Brother Minister: The Assassination of Malcolm X (1994)::Documentary::
405::Highlander III: The Sorcerer (1994)::Action|Sci-Fi::PG-13
406::Federal Hill (1994)::Drama::R
407::In the Mouth of Madness (1995)::Horror|Thriller::R
408::8 Seconds (1994)::Drama::PG-13
409::Above the Rim (1994)::Drama::R
410::Addams Family Values (1993)::Comedy::PG-13
411::You So Crazy (1994)::Comedy::
412::Age of Innocence, The (1993)::Drama::PG
413::Airheads (1994)::Comedy::PG-13
414::Air Up There, The (1994)::Comedy::PG
415::Another Stakeout (1993)::Comedy|Thriller::PG-13
416::Bad Girls (1994)::Western::R
417::Barcelona (1994)::Comedy|Romance::PG-13
418::Being Human (1993)::Drama::PG-13
419::Beverly Hillbillies, The (1993)::Comedy::RX
420::Beverly Hills Cop III (1994)::Action|Comedy::R
421::Black Beauty (1994)::Adventure|Children's::G
422::Blink (1994)::Thriller::G
423::Blown Away (1994)::Action|Thriller::R
424::Blue Chips (1994)::Drama::PG-13
425::Blue Sky (1994)::Drama|Romance::PG-13
426::Body Snatchers (1993)::Horror|Sci-Fi|Thriller::R
427::Boxing Helena (1993)::Mystery|Romance|Thriller::Unrated
428::Bronx Tale, A (1993)::Drama::R
429::Cabin Boy (1994)::Comedy::PG-13
430::Calendar Girl (1993)::Drama::PG-13
431::Carlito's Way (1993)::Crime|Drama::R
432::City Slickers II: The Legend of Curly's Gold (1994)::Comedy|Western::PG-13
433::Clean Slate (1994)::Comedy::PG-13
434::Cliffhanger (1993)::Action|Adventure|Crime::R
435::Coneheads (1993)::Comedy|Sci-Fi::PG
436::Color of Night (1994)::Drama|Thriller::R
437::Cops and Robbersons (1994)::Comedy::PG
438::Cowboy Way, The (1994)::Action|Comedy::
439::Dangerous Game (1993)::Drama::Unrated
440::Dave (1993)::Comedy|Romance::PG-13
441::Dazed and Confused (1993)::Comedy::R
442::Demolition Man (1993)::Action|Sci-Fi::R
443::Endless Summer 2, The (1994)::Documentary::
444::Even Cowgirls Get the Blues (1993)::Comedy|Romance::R
445::Fatal Instinct (1993)::Comedy::PG-13
446::Farewell My Concubine (1993)::Drama|Romance::R
447::Favor, The (1994)::Comedy|Romance::R
448::Fearless (1993)::Drama::R
449::Fear of a Black Hat (1993)::Comedy::R
450::With Honors (1994)::Comedy|Drama::PG-13
451::Flesh and Bone (1993)::Drama|Mystery|Romance::R
452::Widows' Peak (1994)::Drama::PG
453::For Love or Money (1993)::Comedy::PG
454::Firm, The (1993)::Drama|Thriller::R
455::Free Willy (1993)::Adventure|Children's|Drama::PG
456::Fresh (1994)::Drama::R
457::Fugitive, The (1993)::Action|Thriller::PG-13
458::Geronimo: An American Legend (1993)::Drama|Western::PG-13
459::Getaway, The (1994)::Action::R
460::Getting Even with Dad (1994)::Comedy::PG
461::Go Fish (1994)::Drama|Romance::R
462::Good Man in Africa, A (1994)::Action|Adventure::
463::Guilty as Sin (1993)::Crime|Drama|Thriller::R
464::Hard Target (1993)::Action|Adventure|Crime|Thriller::R
465::Heaven & Earth (1993)::Action|Drama|War::R
466::Hot Shots! Part Deux (1993)::Action|Comedy|War::PG-13
467::Live Nude Girls (1995)::Comedy::R
468::Englishman Who Went Up a Hill, But Came Down a Mountain, The (1995)::Comedy|Romance::PG
469::House of the Spirits, The (1993)::Drama|Romance::R
470::House Party 3 (1994)::Comedy::R
471::Hudsucker Proxy, The (1994)::Comedy|Romance::PG
472::I'll Do Anything (1994)::Comedy|Drama::PG-13
473::In the Army Now (1994)::Comedy|War::PG
474::In the Line of Fire (1993)::Action|Thriller::R
475::In the Name of the Father (1993)::Drama::R
476::Inkwell, The (1994)::Comedy|Drama::R
477::What's Love Got to Do with It? (1993)::Drama::R
478::Jimmy Hollywood (1994)::Comedy::R
479::Judgment Night (1993)::Action::R
480::Jurassic Park (1993)::Action|Adventure|Sci-Fi::PG-13
481::Kalifornia (1993)::Drama|Thriller::R
482::Killing Zoe (1994)::Thriller::R
483::King of the Hill (1993)::Drama::PG-13
484::Lassie (1994)::Adventure|Children's::PG
485::Last Action Hero (1993)::Action|Comedy::PG-13
486::Life with Mikey (1993)::Comedy::PG
487::Lightning Jack (1994)::Comedy|Western::PG-13
488::M. Butterfly (1993)::Drama::R
489::Made in America (1993)::Comedy::PG-13
490::Malice (1993)::Thriller::R
491::Man Without a Face, The (1993)::Drama::PG-13
492::Manhattan Murder Mystery (1993)::Comedy|Mystery::PG
493::Menace II Society (1993)::Action|Crime|Drama::R
494::Executive Decision (1996)::Action|Thriller::R
495::In the Realm of the Senses (Ai no corrida) (1976)::Drama::NC-17
496::What Happened Was... (1994)::Comedy|Drama|Romance::R
497::Much Ado About Nothing (1993)::Comedy|Romance::PG-13
498::Mr. Jones (1993)::Drama|Romance::R
499::Mr. Wonderful (1993)::Comedy|Romance::PG-13
500::Mrs. Doubtfire (1993)::Comedy::PG-13
501::Naked (1993)::Drama::Unrated
502::Next Karate Kid, The (1994)::Action|Children's::PG
503::New Age, The (1994)::Drama::R
504::No Escape (1994)::Action|Sci-Fi::R
505::North (1994)::Comedy::PG
506::Orlando (1993)::Drama::
507::Perfect World, A (1993)::Action|Drama::R
508::Philadelphia (1993)::Drama::PG-13
509::Piano, The (1993)::Drama|Romance::R
510::Poetic Justice (1993)::Drama::R
511::Program, The (1993)::Action|Drama::R
512::Robert A. Heinlein's The Puppet Masters (1994)::Horror|Sci-Fi::R
513::Radioland Murders (1994)::Comedy|Mystery|Romance::PG
514::Ref, The (1994)::Comedy::R
515::Remains of the Day, The (1993)::Drama::PG
516::Renaissance Man (1994)::Comedy|Drama|War::PG-13
517::Rising Sun (1993)::Action|Drama|Mystery::R
518::Road to Wellville, The (1994)::Comedy::R
519::Robocop 3 (1993)::Sci-Fi|Thriller::PG-13
520::Robin Hood: Men in Tights (1993)::Comedy::PG-13
521::Romeo Is Bleeding (1993)::Crime|Thriller::R
522::Romper Stomper (1992)::Action|Drama::NC-17
523::Ruby in Paradise (1993)::Drama::R
524::Rudy (1993)::Drama::PG
525::Saint of Fort Washington, The (1993)::Drama::R
526::Savage Nights (Nuits fauves, Les) (1992)::Drama::R18+
527::Schindler's List (1993)::Drama|War::R
528::Scout, The (1994)::Drama::PG-13
529::Searching for Bobby Fischer (1993)::Drama::PG
530::Second Best (1994)::Drama::PG-13
531::Secret Garden, The (1993)::Children's|Drama::G
532::Serial Mom (1994)::Comedy|Crime|Horror::R
533::Shadow, The (1994)::Action::R
534::Shadowlands (1993)::Drama|Romance::PG
535::Short Cuts (1993)::Drama::R
536::Simple Twist of Fate, A (1994)::Drama::
537::Sirens (1994)::Comedy|Drama::AO
538::Six Degrees of Separation (1993)::Drama::R
539::Sleepless in Seattle (1993)::Comedy|Romance::PG
540::Sliver (1993)::Thriller::R
541::Blade Runner (1982)::Film-Noir|Sci-Fi::R
542::Son in Law (1993)::Comedy::PG-13
543::So I Married an Axe Murderer (1993)::Comedy|Romance|Thriller::PG-13
544::Striking Distance (1993)::Action::R
545::Harlem (1993)::Drama::R
546::Super Mario Bros. (1993)::Action|Adventure|Children's|Sci-Fi::PG
547::Surviving the Game (1994)::Action|Adventure|Thriller::R
548::Terminal Velocity (1994)::Action::PG-13
549::Thirty-Two Short Films About Glenn Gould (1993)::Documentary::G
550::Threesome (1994)::Comedy|Romance::R
551::Nightmare Before Christmas, The (1993)::Children's|Comedy|Musical::PG
552::Three Musketeers, The (1993)::Action|Adventure|Comedy::PG
553::Tombstone (1993)::Western::R
554::Trial by Jury (1994)::Thriller::R
555::True Romance (1993)::Action|Crime|Romance::R
556::War Room, The (1993)::Documentary::PG
557::Mamma Roma (1962)::Drama::Not Rated
558::Pagemaster, The (1994)::Action|Adventure|Animation|Children's|Fantasy::G
559::Paris, France (1993)::Comedy::NC-17
560::Beans of Egypt, Maine, The (1994)::Drama::R
561::Killer (Bulletproof Heart) (1994)::Thriller::R
562::Welcome to the Dollhouse (1995)::Comedy|Drama::R
563::Germinal (1993)::Drama::R
564::Chasers (1994)::Comedy::R
565::Cronos (1992)::Horror::R
566::Naked in New York (1994)::Comedy|Romance::R
567::Kika (1993)::Drama::Unrated
568::Bhaji on the Beach (1993)::Comedy|Drama::R
569::Little Big League (1994)::Children's|Comedy::PG
570::Slingshot, The (Kådisbellan ) (1993)::Comedy|Drama::PG
571::Wedding Gift, The (1994)::Drama::PG
572::Foreign Student (1994)::Drama::R
573::Ciao, Professore! (Io speriamo che me la cavo ) (1993)::Drama::R
574::Spanking the Monkey (1994)::Comedy|Drama::Unrated
575::Little Rascals, The (1994)::Children's|Comedy::PG
576::Fausto (1993)::Comedy::R
577::Andre (1994)::Adventure|Children's::PG
578::Hour of the Pig, The (1993)::Drama|Mystery::R
579::Scorta, La (1993)::Thriller::M
580::Princess Caraboo (1994)::Drama::PG
581::Celluloid Closet, The (1995)::Documentary::M
582::Metisse (Café au Lait) (1993)::Comedy::M
583::Dear Diary (Caro Diario) (1994)::Comedy|Drama::
584::I Don't Want to Talk About It (De eso no se habla) (1993)::Drama::PG-13
585::Brady Bunch Movie, The (1995)::Comedy::
586::Home Alone (1990)::Children's|Comedy::PG
587::Ghost (1990)::Comedy|Romance|Thriller::PG-13
588::Aladdin (1992)::Animation|Children's|Comedy|Musical::G
589::Terminator 2: Judgment Day (1991)::Action|Sci-Fi|Thriller::TV-14
590::Dances with Wolves (1990)::Adventure|Drama|Western::PG-13
591::Tough and Deadly (1995)::Action|Drama|Thriller::R
592::Batman (1989)::Action|Adventure|Crime|Drama::PG-13
593::Silence of the Lambs, The (1991)::Drama|Thriller::R
594::Snow White and the Seven Dwarfs (1937)::Animation|Children's|Musical::G
595::Beauty and the Beast (1991)::Animation|Children's|Musical::G
596::Pinocchio (1940)::Animation|Children's::Passed
597::Pretty Woman (1990)::Comedy|Romance::R
598::Window to Paris (1994)::Comedy::R
599::Wild Bunch, The (1969)::Western::R
600::Love and a .45 (1994)::Thriller::R
601::Wooden Man's Bride, The (Wu Kui) (1994)::Drama::K-12
602::Great Day in Harlem, A (1994)::Documentary::Btl
603::Bye Bye, Love (1995)::Comedy::PG-13
604::Criminals (1996)::Documentary::
605::One Fine Day (1996)::Drama|Romance::PG
606::Candyman: Farewell to the Flesh (1995)::Horror::R
607::Century (1993)::Drama::R
608::Fargo (1996)::Crime|Drama|Thriller::R
609::Homeward Bound II: Lost in San Francisco (1996)::Adventure|Children's::G
610::Heavy Metal (1981)::Action|Adventure|Animation|Horror|Sci-Fi::R
611::Hellraiser: Bloodline (1996)::Action|Horror|Sci-Fi::R
612::Pallbearer, The (1996)::Comedy::G
613::Jane Eyre (1996)::Drama|Romance::PG
614::Loaded (1994)::Drama|Thriller::R
615::Bread and Chocolate (Pane e cioccolata) (1973)::Drama::R
616::Aristocats, The (1970)::Animation|Children's::G
617::Flower of My Secret, The (La Flor de Mi Secreto) (1995)::Drama::
618::Two Much (1996)::Comedy|Romance::PG-13
619::Ed (1996)::Comedy::PG
620::Scream of Stone (Schrei aus Stein) (1991)::Drama::6
621::My Favorite Season (1993)::Drama::13
623::Modern Affair, A (1995)::Romance::R
624::Condition Red (1995)::Action|Drama|Thriller::R
625::Asfour Stah (1990)::Drama::Unrated
626::Thin Line Between Love and Hate, A (1996)::Comedy::R
627::Last Supper, The (1995)::Drama|Thriller::R
628::Primal Fear (1996)::Drama|Thriller::R
629::Rude (1995)::Drama::R
630::Carried Away (1996)::Drama|Romance::R
631::All Dogs Go to Heaven 2 (1996)::Animation|Children's|Musical::G
632::Land and Freedom (Tierra y libertad) (1995)::War::G
633::Denise Calls Up (1995)::Comedy::PG-13
634::Theodore Rex (1995)::Comedy::PG
635::Family Thing, A (1996)::Comedy|Drama::PG-13
636::Frisk (1995)::Drama::Unrated
637::Sgt. Bilko (1996)::Comedy::PG
638::Jack and Sarah (1995)::Romance::R
639::Girl 6 (1996)::Comedy::R
640::Diabolique (1996)::Drama|Thriller::R
641::Little Indian, Big City (Un indien dans la ville) (1994)::Comedy::PG
642::Roula (1995)::Drama::MA15+
643::Peanuts - Die Bank zahlt alles (1996)::Comedy::6
644::Happy Weekend (1996)::Comedy::KNT/ENA
645::Nelly & Monsieur Arnaud (1995)::Drama::13
647::Courage Under Fire (1996)::Drama|War::R
648::Mission: Impossible (1996)::Action|Adventure|Mystery::PG-13
649::Cold Fever (Á köldum klaka) (1994)::Comedy|Drama::PG-13
650::Moll Flanders (1996)::Drama::PG-13
651::Superweib, Das (1996)::Comedy::S
652::301, 302 (1995)::Mystery::Unrated
653::Dragonheart (1996)::Action|Adventure|Fantasy::PG-13
654::Und keiner weint mir nach (1996)::Drama|Romance::12
655::Mutters Courage (1995)::Comedy::13
656::Eddie (1996)::Comedy::PG-13
657::Yankee Zulu (1994)::Comedy|Drama::PG-13
658::Billy's Holiday (1995)::Drama::R
659::Purple Noon (1960)::Crime|Thriller::PG-13
660::August (1996)::Drama::PG
661::James and the Giant Peach (1996)::Animation|Children's|Musical::PG
662::Fear (1996)::Thriller::R
663::Kids in the Hall: Brain Candy (1996)::Comedy::R
664::Faithful (1996)::Comedy::R
665::Underground (1995)::War::Not Rated
666::All Things Fair (1996)::Drama::Not Rated
667::Bloodsport 2 (1995)::Action::Not Rated
668::Pather Panchali (1955)::Drama::Not Rated
669::Aparajito (1956)::Drama::Not Rated
670::World of Apu, The (Apur Sansar) (1959)::Drama::Not Rated
671::Mystery Science Theater 3000: The Movie (1996)::Comedy|Sci-Fi::PG-13
672::Tarantella (1995)::Drama::13
673::Space Jam (1996)::Adventure|Animation|Children's|Comedy|Fantasy::PG
674::Barbarella (1968)::Adventure|Sci-Fi::PG
675::Hostile Intentions (1994)::Action|Drama|Thriller::PG
676::They Bite (1996)::Drama::
678::Some Folks Call It a Sling Blade (1993)::Drama|Thriller::
679::Run of the Country, The (1995)::Drama::R
680::Alphaville (1965)::Sci-Fi::Not Rated
681::Clean Slate (Coup de Torchon) (1981)::Crime::Not Rated
682::Tigrero: A Film That Was Never Made (1994)::Documentary|Drama::Atp
683::Eye of Vichy, The (Oeil de Vichy, L') (1993)::Documentary::
684::Windows (1980)::Drama::R
685::It's My Party (1995)::Drama::R
687::Country Life (1994)::Drama|Romance::PG-13
688::Operation Dumbo Drop (1995)::Action|Adventure|Comedy|War::PG
690::Promise, The (Versprechen, Das) (1994)::Romance::
691::Mrs. Winterbourne (1996)::Comedy|Romance::PG-13
692::Solo (1996)::Action|Sci-Fi|Thriller::PG-13
693::Under the Domin Tree (Etz Hadomim Tafus) (1994)::Drama::PG
694::Substitute, The (1996)::Action::R
695::True Crime (1995)::Mystery|Thriller::R
696::Butterfly Kiss (1995)::Thriller::MA15+
697::Feeling Minnesota (1996)::Drama|Romance::R
698::Delta of Venus (1994)::Drama::
699::To Cross the Rubicon (1991)::Drama::
700::Angus (1995)::Comedy::PG-13
701::Daens (1992)::Drama::13
702::Faces (1968)::Drama::R
703::Boys (1996)::Drama::PG-13
704::Quest, The (1996)::Action|Adventure::PG-13
705::Cosi (1996)::Comedy::R
706::Sunset Park (1996)::Drama::R
707::Mulholland Falls (1996)::Crime|Film-Noir|Thriller::R
708::Truth About Cats & Dogs, The (1996)::Comedy|Romance::PG-13
709::Oliver & Company (1988)::Animation|Children's::G
710::Celtic Pride (1996)::Comedy::PG-13
711::Flipper (1996)::Adventure|Children's::PG
712::Captives (1994)::Drama::R
713::Of Love and Shadows (1994)::Drama::R
714::Dead Man (1995)::Western::R
715::Horseman on the Roof, The (Hussard sur le toit, Le) (1995)::Drama::R
716::Switchblade Sisters (1975)::Crime::R
717::Mouth to Mouth (Boca a boca) (1995)::Comedy::R
718::Visitors, The (Les Visiteurs) (1993)::Comedy|Sci-Fi::R
719::Multiplicity (1996)::Comedy::PG-13
720::Wallace & Gromit: The Best of Aardman Animation (1996)::Animation::G
721::Halfmoon (Paul Bowles - Halbmond) (1995)::Drama::12
722::Haunted World of Edward D. Wood Jr., The (1995)::Documentary::
723::Two Friends (1986)::Drama::
724::Craft, The (1996)::Drama|Horror::R
725::Great White Hype, The (1996)::Comedy::R
726::Last Dance (1996)::Drama::R
727::War Stories (1995)::Documentary::PG
728::Cold Comfort Farm (1995)::Comedy::PG
729::Institute Benjamenta, or This Dream People Call Human Life (1995)::Drama::Tous publics
730::Low Life, The (1994)::Drama::
731::Heaven's Prisoners (1996)::Mystery|Thriller::R
732::Original Gangstas (1996)::Crime::R
733::Rock, The (1996)::Action|Adventure|Thriller::R
734::Getting Away With Murder (1996)::Comedy::R
735::Cemetery Man (Dellamorte Dellamore) (1994)::Comedy|Horror::R
736::Twister (1996)::Action|Adventure|Romance|Thriller::PG-13
737::Barb Wire (1996)::Action|Sci-Fi::R
738::Garcu, Le (1995)::Drama::
739::Honigmond (1996)::Comedy::6
741::Ghost in the Shell (Kokaku kidotai) (1995)::Animation|Sci-Fi::6
742::Thinner (1996)::Horror|Thriller::R
743::Spy Hard (1996)::Comedy::PG-13
744::Brothers in Trouble (1995)::Drama::13
745::Close Shave, A (1995)::Animation|Comedy|Thriller::Unrated
746::Force of Evil (1948)::Film-Noir::TV-PG
747::Stupids, The (1996)::Comedy::PG
748::Arrival, The (1996)::Action|Sci-Fi|Thriller::PG-13
749::Man from Down Under, The (1943)::Drama::Approved
750::Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb (1963)::Sci-Fi|War::Approved
751::Careful (1992)::Comedy::M
752::Vermont Is For Lovers (1992)::Comedy|Romance::
753::Month by the Lake, A (1995)::Comedy|Drama::PG
754::Gold Diggers: The Secret of Bear Mountain (1995)::Adventure|Children's::PG
755::Kim (1950)::Children's|Drama::Approved
756::Carmen Miranda: Bananas Is My Business (1994)::Documentary::Approved
757::Ashes of Time (1994)::Drama::R
758::Jar, The (Khomreh) (1992)::Drama::R
759::Maya Lin: A Strong Clear Vision (1994)::Documentary::
760::Stalingrad (1993)::War::Not Rated
761::Phantom, The (1996)::Adventure::PG
762::Striptease (1996)::Comedy|Crime::R
763::Last of the High Kings, The (a.k.a. Summer Fling) (1996)::Drama::R
764::Heavy (1995)::Drama|Romance::R
765::Jack (1996)::Comedy|Drama::PG-13
766::I Shot Andy Warhol (1996)::Drama::R
767::Grass Harp, The (1995)::Drama::PG
768::Someone Else's America (1995)::Drama::R
769::Marlene Dietrich: Shadow and Light (1996)::Documentary::
770::Costa Brava (1946)::Drama::
771::Vie est belle, La (Life is Rosey) (1987)::Comedy|Drama::
772::Quartier Mozart (1992)::Comedy::
773::Touki Bouki (Journey of the Hyena) (1973)::Drama::Not Rated
774::Wend Kuuni (God's Gift) (1982)::Drama::Not Rated
775::Spirits of the Dead (Tre Passi nel Delirio) (1968)::Horror::R
776::Babyfever (1994)::Comedy|Drama::R
777::Pharaoh's Army (1995)::War::PG-13
778::Trainspotting (1996)::Drama::R
779::'Til There Was You (1997)::Drama|Romance::PG-13
780::Independence Day (ID4) (1996)::Action|Sci-Fi|War::PG-13
781::Stealing Beauty (1996)::Drama::R
782::Fan, The (1996)::Thriller::R
783::Hunchback of Notre Dame, The (1996)::Animation|Children's|Musical::G
784::Cable Guy, The (1996)::Comedy::PG-13
785::Kingpin (1996)::Comedy::PG-13
786::Eraser (1996)::Action|Thriller::R
787::Gate of Heavenly Peace, The (1995)::Documentary::R
788::Nutty Professor, The (1996)::Comedy|Fantasy|Romance|Sci-Fi::PG-13
789::I, Worst of All (Yo, la peor de todas) (1990)::Drama::R
790::An Unforgettable Summer (1994)::Drama::13
791::Last Klezmer: Leopold Kozlowski, His Life and Music, The (1995)::Documentary::13
792::Hungarian Fairy Tale, A (1987)::Fantasy::Not Rated
793::My Life and Times With Antonin Artaud (En compagnie d'Antonin Artaud) (1993)::Drama::Unrated
794::Midnight Dancers (Sibak) (1994)::Comedy|Drama::
795::Somebody to Love (1994)::Drama::R
796::Very Natural Thing, A (1974)::Drama::R
797::Old Lady Who Walked in the Sea, The (Vieille qui marchait dans la mer, La) (1991)::Comedy::Unrated
798::Daylight (1996)::Action|Adventure|Thriller::PG-13
799::Frighteners, The (1996)::Comedy|Horror::R
800::Lone Star (1996)::Drama|Mystery::R
801::Harriet the Spy (1996)::Children's|Comedy::PG
802::Phenomenon (1996)::Drama|Romance::PG
803::Walking and Talking (1996)::Romance::R
804::She's the One (1996)::Comedy|Romance::R
805::Time to Kill, A (1996)::Drama::R
806::American Buffalo (1996)::Drama::R
807::Rendezvous in Paris (Rendez-vous de Paris, Les) (1995)::Comedy|Romance::Atp
808::Alaska (1996)::Adventure|Children's::PG
809::Fled (1996)::Action|Adventure::R
810::Kazaam (1996)::Children's|Comedy|Fantasy::PG
811::Bewegte Mann, Der (1994)::Comedy::R
812::Magic Hunter (1994)::Drama::
813::Larger Than Life (1996)::Comedy::PG
814::Boy Called Hate, A (1995)::Drama::R
815::Power 98 (1995)::Action|Mystery|Thriller::R
816::Two Deaths (1995)::Drama::R
818::Very Brady Sequel, A (1996)::Comedy::PG-13
819::Stefano Quantestorie (1993)::Comedy|Drama::13
820::Death in the Garden (Mort en ce jardin, La) (1956)::Drama::K-16
821::Crude Oasis, The (1995)::Romance::R
822::Hedd Wyn (1992)::Drama::Unrated
823::Collectionneuse, La (1967)::Drama::Not Rated
824::Kaspar Hauser (1993)::Drama::12
825::Echte Kerle (1996)::Comedy|Romance::12
826::Diebinnen (1995)::Drama::12
827::Convent, The (Convento, O) (1995)::Drama::PG
828::Adventures of Pinocchio, The (1996)::Adventure|Children's::G
829::Joe's Apartment (1996)::Comedy|Musical::PG-13
830::First Wives Club, The (1996)::Comedy::PG
831::Stonewall (1995)::Drama::R
832::Ransom (1996)::Drama|Thriller::R
833::High School High (1996)::Comedy::PG-13
834::Phat Beach (1996)::Comedy::R
835::Foxfire (1996)::Drama::R
836::Chain Reaction (1996)::Action|Adventure|Thriller::PG-13
837::Matilda (1996)::Children's|Comedy::PG
838::Emma (1996)::Comedy|Drama|Romance::PG
839::Crow: City of Angels, The (1996)::Action|Thriller::R
840::House Arrest (1996)::Comedy::PG
841::Eyes Without a Face (1959)::Horror::PG
842::Tales from the Crypt Presents: Bordello of Blood (1996)::Horror::R
843::Lotto Land (1995)::Drama::Unrated
844::Story of Xinghua, The (1993)::Drama::Unrated
845::Day the Sun Turned Cold, The (Tianguo niezi) (1994)::Drama::M
846::Flirt (1995)::Drama::R
847::Big Squeeze, The (1996)::Comedy|Drama::
848::Spitfire Grill, The (1996)::Drama::PG-13
849::Escape from L.A. (1996)::Action|Adventure|Sci-Fi|Thriller::TV-MA
850::Cyclo (1995)::Crime|Drama::R18+
851::Basquiat (1996)::Drama::R
852::Tin Cup (1996)::Comedy|Romance::R
853::Dingo (1992)::Drama::
854::Ballad of Narayama, The (Narayama Bushiko) (1958)::Drama::PG
855::Every Other Weekend (1990)::Drama::
856::Mille bolle blu (1993)::Comedy::L
857::Crows and Sparrows (1949)::Drama::
858::Godfather, The (1972)::Action|Crime|Drama::R
859::Hippie Revolution, The (1996)::Documentary::R
860::Maybe, Maybe Not (Bewegte Mann, Der) (1994)::Comedy::R
861::Supercop (1992)::Action|Thriller::R
862::Manny & Lo (1996)::Drama::R
863::Celestial Clockwork (1994)::Comedy::PG
864::Wife, The (1995)::Comedy|Drama::PG
865::Small Faces (1995)::Drama::PG
866::Bound (1996)::Crime|Drama|Romance|Thriller::R
867::Carpool (1996)::Comedy|Crime::PG
868::Death in Brunswick (1991)::Comedy::PG
869::Kansas City (1996)::Crime::R
870::Gone Fishin' (1997)::Comedy::PG
871::Lover's Knot (1996)::Comedy::PG
872::Aiqing wansui (1994)::Drama::KNT/ENA
873::Shadow of Angels (Schatten der Engel) (1976)::Drama::18
874::Killer: A Journal of Murder (1995)::Crime|Drama::R
875::Nothing to Lose (1994)::Drama::R
876::Police Story 4: Project S (Chao ji ji hua) (1993)::Action::R
877::Girls Town (1996)::Drama::R
878::Bye-Bye (1995)::Drama::K-16
879::Relic, The (1997)::Horror::R
880::Island of Dr. Moreau, The (1996)::Sci-Fi|Thriller::PG-13
881::First Kid (1996)::Children's|Comedy::PG
882::Trigger Effect, The (1996)::Drama|Thriller::R
884::Sweet Nothing (1995)::Drama::R
885::Bogus (1996)::Children's|Drama|Fantasy::PG
886::Bulletproof (1996)::Action::R
887::Talk of Angels (1998)::Drama::PG-13
888::Land Before Time III: The Time of the Great Giving (1995)::Animation|Children's::G
889::1-900 (1994)::Romance::KNT/ENA
890::Baton Rouge (1988)::Thriller::KNT/ENA
891::Halloween: The Curse of Michael Myers (1995)::Horror|Thriller::R
892::Twelfth Night (1996)::Comedy|Drama|Romance::PG
893::Mother Night (1996)::Drama::R
894::Liebelei (1933)::Romance::U
895::Venice/Venice (1992)::Drama::R
896::Wild Reeds (1994)::Drama::Not Rated
897::For Whom the Bell Tolls (1943)::Adventure|War::Unrated
898::Philadelphia Story, The (1940)::Comedy|Romance::Not Rated
899::Singin' in the Rain (1952)::Musical|Romance::G
900::American in Paris, An (1951)::Musical|Romance::TV-PG
901::Funny Face (1957)::Comedy|Musical::Unrated
902::Breakfast at Tiffany's (1961)::Drama|Romance::Not Rated
903::Vertigo (1958)::Mystery|Thriller::Approved
904::Rear Window (1954)::Mystery|Thriller::Approved
905::It Happened One Night (1934)::Comedy::Unrated
906::Gaslight (1944)::Mystery|Thriller::TV-PG
907::Gay Divorcee, The (1934)::Comedy|Musical|Romance::Approved
908::North by Northwest (1959)::Drama|Thriller::Approved
909::Apartment, The (1960)::Comedy|Drama::Approved
910::Some Like It Hot (1959)::Comedy|Crime::Not Rated
911::Charade (1963)::Comedy|Mystery|Romance|Thriller::Not Rated
912::Casablanca (1942)::Drama|Romance|War::TV-PG
913::Maltese Falcon, The (1941)::Film-Noir|Mystery::TV-PG
914::My Fair Lady (1964)::Musical|Romance::G
915::Sabrina (1954)::Comedy|Romance::Unrated
916::Roman Holiday (1953)::Comedy|Romance::Passed
917::Little Princess, The (1939)::Children's|Drama::Approved
918::Meet Me in St. Louis (1944)::Musical::Approved
919::Wizard of Oz, The (1939)::Adventure|Children's|Drama|Musical::Passed
920::Gone with the Wind (1939)::Drama|Romance|War::TV-PG
921::My Favorite Year (1982)::Comedy::PG
922::Sunset Blvd. (a.k.a. Sunset Boulevard) (1950)::Film-Noir::Passed
923::Citizen Kane (1941)::Drama::Approved
924::2001: A Space Odyssey (1968)::Drama|Mystery|Sci-Fi|Thriller::G
925::Golden Earrings (1947)::Adventure|Romance::Approved
926::All About Eve (1950)::Drama::TV-PG
927::Women, The (1939)::Comedy::TV-PG
928::Rebecca (1940)::Romance|Thriller::Approved
929::Foreign Correspondent (1940)::Thriller::Not Rated
930::Notorious (1946)::Film-Noir|Romance|Thriller::Approved
931::Spellbound (1945)::Mystery|Romance|Thriller::Unrated
932::Affair to Remember, An (1957)::Romance::Not Rated
933::To Catch a Thief (1955)::Comedy|Romance|Thriller::Approved
934::Father of the Bride (1950)::Comedy::TV-G
935::Band Wagon, The (1953)::Comedy|Musical::Passed
936::Ninotchka (1939)::Comedy|Romance::Passed
937::Love in the Afternoon (1957)::Comedy|Romance::Approved
938::Gigi (1958)::Musical::Approved
939::Reluctant Debutante, The (1958)::Comedy|Drama::Approved
940::Adventures of Robin Hood, The (1938)::Action|Adventure::TV-G
941::Mark of Zorro, The (1940)::Adventure::Approved
942::Laura (1944)::Crime|Film-Noir|Mystery::Approved
943::Ghost and Mrs. Muir, The (1947)::Drama|Romance::Not Rated
944::Lost Horizon (1937)::Drama::Unrated
945::Top Hat (1935)::Comedy|Musical|Romance::TV-G
946::To Be or Not to Be (1942)::Comedy|Drama|War::Passed
947::My Man Godfrey (1936)::Comedy::Not Rated
948::Giant (1956)::Drama::TV-G
949::East of Eden (1955)::Drama::TV-PG
950::Thin Man, The (1934)::Mystery::Not Rated
951::His Girl Friday (1940)::Comedy::Approved
952::Around the World in 80 Days (1956)::Adventure|Comedy::TV-G
953::It's a Wonderful Life (1946)::Drama::Approved
954::Mr. Smith Goes to Washington (1939)::Drama::Not Rated
955::Bringing Up Baby (1938)::Comedy::TV-G
956::Penny Serenade (1941)::Drama|Romance::Not Rated
957::Scarlet Letter, The (1926)::Drama::Passed
958::Lady of Burlesque (1943)::Comedy|Mystery::13
959::Of Human Bondage (1934)::Drama::Not Rated
960::Angel on My Shoulder (1946)::Crime|Drama::Approved
961::Little Lord Fauntleroy (1936)::Drama::Passed
962::They Made Me a Criminal (1939)::Crime|Drama::Approved
963::Inspector General, The (1949)::Musical::Approved
964::Angel and the Badman (1947)::Western::Approved
965::39 Steps, The (1935)::Thriller::Unrated
966::Walk in the Sun, A (1945)::Drama::Approved
967::Outlaw, The (1943)::Western::Approved
968::Night of the Living Dead (1968)::Horror|Sci-Fi::TV-14
969::African Queen, The (1951)::Action|Adventure|Romance|War::PG
970::Beat the Devil (1954)::Comedy|Drama::PG
971::Cat on a Hot Tin Roof (1958)::Drama::TV-PG
972::Last Time I Saw Paris, The (1954)::Drama::Approved
973::Meet John Doe (1941)::Drama::Passed
974::Algiers (1938)::Drama|Romance::Unrated
975::Something to Sing About (1937)::Comedy|Musical::Approved
976::Farewell to Arms, A (1932)::Romance|War::Unrated
977::Moonlight Murder (1936)::Mystery::Passed
978::Blue Angel, The (Blaue Engel, Der) (1930)::Drama::Not Rated
979::Nothing Personal (1995)::Drama|War::R
980::In the Line of Duty 2 (1987)::Action::R
981::Dangerous Ground (1997)::Drama::R
982::Picnic (1955)::Drama::TV-PG
983::Madagascar Skin (1995)::Romance::
984::Pompatus of Love, The (1996)::Comedy|Drama::X
985::Small Wonders (1996)::Documentary::X
986::Fly Away Home (1996)::Adventure|Children's::PG
987::Bliss (1997)::Drama|Romance::R
988::Grace of My Heart (1996)::Comedy|Drama::R
989::Schlafes Bruder (Brother of Sleep) (1995)::Drama::R
990::Maximum Risk (1996)::Action|Adventure|Thriller::R
991::Michael Collins (1996)::Drama|War::R
992::Rich Man's Wife, The (1996)::Thriller::R
993::Infinity (1996)::Drama::TV-14
994::Big Night (1996)::Drama::R
996::Last Man Standing (1996)::Action|Drama|Western::TV-MA
997::Caught (1996)::Drama|Thriller::R
998::Set It Off (1996)::Action|Crime::R
999::2 Days in the Valley (1996)::Crime::R
1000::Curdled (1996)::Crime::R
1001::Associate, The (L'Associe)(1982)::Comedy::R
1002::Ed's Next Move (1996)::Comedy::R
1003::Extreme Measures (1996)::Drama|Thriller::R
1004::Glimmer Man, The (1996)::Action|Thriller::R
1005::D3: The Mighty Ducks (1996)::Children's|Comedy::PG
1006::Chamber, The (1996)::Drama::R
1007::Apple Dumpling Gang, The (1975)::Children's|Comedy|Western::G
1008::Davy Crockett, King of the Wild Frontier (1955)::Western::Approved
1009::Escape to Witch Mountain (1975)::Adventure|Children's|Fantasy::G
1010::Love Bug, The (1969)::Children's|Comedy::G
1011::Herbie Rides Again (1974)::Adventure|Children's|Comedy::G
1012::Old Yeller (1957)::Children's|Drama::Approved