-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathestimations_movies.csv
We can make this file beautiful and searchable if this error is corrected: Any value after quoted field isn't allowed in line 1.
3412 lines (3412 loc) · 218 KB
/
estimations_movies.csv
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")"0.64240611172
2,"('Jumanji (1995)', "Adventure|Children's|Fantasy")"0.781199885289
3,"('Grumpier Old Men (1995)', 'Comedy|Romance')"0.839836485015
4,"('Waiting to Exhale (1995)', 'Comedy|Drama')"0.655581209459
5,"('Father of the Bride Part II (1995)', 'Comedy')"0.765948619118
6,"('Heat (1995)', 'Action|Crime|Thriller')"0.831710609325
7,"('Sabrina (1995)', 'Comedy|Romance')"0.831849401038
8,"('Tom and Huck (1995)', "Adventure|Children's")"0.921340553664
9,"('Sudden Death (1995)', 'Action')"1.05782860143
10,"('GoldenEye (1995)', 'Action|Adventure|Thriller')"0.78539653642
11,"('American President, The (1995)', 'Comedy|Drama|Romance')"0.715492829483
12,"('Dracula: Dead and Loving It (1995)', 'Comedy|Horror')"0.950814796351
13,"('Balto (1995)', "Animation|Children's")"0.856315641393
14,"('Nixon (1995)', 'Drama')"0.724097242625
15,"('Cutthroat Island (1995)', 'Action|Adventure|Romance')"1.0707574848
16,"('Casino (1995)', 'Drama|Thriller')"0.806098248595
17,"('Sense and Sensibility (1995)', 'Drama|Romance')"0.659813915286
18,"('Four Rooms (1995)', 'Thriller')"0.573079032432
19,"('Ace Ventura: When Nature Calls (1995)', 'Comedy')"1.04625153106
20,"('Money Train (1995)', 'Action')"0.923103131695
21,"('Get Shorty (1995)', 'Action|Comedy|Drama')"0.762771679712
22,"('Copycat (1995)', 'Crime|Drama|Thriller')"0.893212200172
23,"('Assassins (1995)', 'Thriller')"0.989279293433
24,"('Powder (1995)', 'Drama|Sci-Fi')"0.883232776492
25,"('Leaving Las Vegas (1995)', 'Drama|Romance')"0.914763893461
26,"('Othello (1995)', 'Drama')"0.860884499008
27,"('Now and Then (1995)', 'Drama')"0.670743960992
28,"('Persuasion (1995)', 'Romance')"0.613795129654
29,"('City of Lost Children, The (1995)', 'Adventure|Sci-Fi')"0.890902523263
30,"('Shanghai Triad (Yao a yao yao dao waipo qiao) (1995)', 'Drama')"0.664980086458
31,"('Dangerous Minds (1995)', 'Drama')"0.798626104176
32,"('Twelve Monkeys (1995)', 'Drama|Sci-Fi')"0.772662263242
34,"('Babe (1995)', "Children's|Comedy|Drama")"0.799345228521
35,"('Carrington (1995)', 'Drama|Romance')"0.880773050147
36,"('Dead Man Walking (1995)', 'Drama')"0.628769166132
37,"('Across the Sea of Time (1995)', 'Documentary')"1.99973988289
38,"('It Takes Two (1995)', 'Comedy')"1.74446481071
39,"('Clueless (1995)', 'Comedy|Romance')"0.79394473766
40,"('Cry, the Beloved Country (1995)', 'Drama')"0.429780552864
41,"('Richard III (1995)', 'Drama|War')"0.602345460656
42,"('Dead Presidents (1995)', 'Action|Crime|Drama')"0.867241228283
43,"('Restoration (1995)', 'Drama')"0.795668546976
44,"('Mortal Kombat (1995)', 'Action|Adventure')"0.938300113644
45,"('To Die For (1995)', 'Comedy|Drama')"0.856738826581
46,"('How to Make an American Quilt (1995)', 'Drama|Romance')"0.73014879749
47,"('Seven (Se7en) (1995)', 'Crime|Thriller')"0.683217809868
48,"('Pocahontas (1995)', "Animation|Children's|Musical|Romance")"0.859864499533
49,"('When Night Is Falling (1995)', 'Drama|Romance')"0.827058514464
50,"('Usual Suspects, The (1995)', 'Crime|Thriller')"0.656250879623
52,"('Mighty Aphrodite (1995)', 'Comedy')"0.872197269631
53,"('Lamerica (1994)', 'Drama')"1.03644047398
54,"('Big Green, The (1995)', "Children's|Comedy")"0.941292097696
55,"('Georgia (1995)', 'Drama')"1.12853974725
56,"('Kids of the Round Table (1995)', "Adventure|Children's|Fantasy")"1.96152345343
57,"('Home for the Holidays (1995)', 'Drama')"0.8648550257
58,"('Postino, Il (The Postman) (1994)', 'Drama|Romance')"0.742014025432
59,"('Confessional, The (Le Confessionnal) (1995)', 'Drama|Mystery')"1.99964887798
60,"('Indian in the Cupboard, The (1995)', "Adventure|Children's|Fantasy")"0.870041857176
61,"('Eye for an Eye (1996)', 'Drama|Thriller')"0.84383684712
62,"("Mr. Holland's Opus (1995)", 'Drama')"0.823095905927
63,"("Don't Be a Menace to South Central While Drinking Your Juice in the Hood (1996)", 'Comedy')"0.794028692435
64,"('Two if by Sea (1996)', 'Comedy|Romance')"0.81576756114
65,"('Bio-Dome (1996)', 'Comedy')"0.896620677953
66,"('Lawnmower Man 2: Beyond Cyberspace (1996)', 'Sci-Fi|Thriller')"0.765320658629
67,"('Two Bits (1995)', 'Drama')"1.61174430338
68,"('French Twist (Gazon maudit) (1995)', 'Comedy|Romance')"0.79979586151
69,"('Friday (1995)', 'Comedy')"0.907659993639
70,"('From Dusk Till Dawn (1996)', 'Action|Comedy|Crime|Horror|Thriller')"1.00068070478
71,"('Fair Game (1995)', 'Action')"0.900774346387
72,"('Kicking and Screaming (1995)', 'Comedy|Drama')"0.950346214387
73,"('Mis\xc3\x83\xc2\xa9rables, Les (1995)', 'Drama|Musical')"0.793575318991
74,"('Bed of Roses (1996)', 'Drama|Romance')"0.937483419145
75,"('Big Bully (1996)', 'Comedy|Drama')"1.49896595061
76,"('Screamers (1995)', 'Sci-Fi|Thriller')"0.882402247257
77,"('Nico Icon (1995)', 'Documentary')"1.2667398422
78,"('Crossing Guard, The (1995)', 'Drama')"0.891309565487
79,"('Juror, The (1996)', 'Drama|Thriller')"0.918756492632
80,"('White Balloon, The (Badkonake Sefid ) (1995)', 'Drama')"0.606287003807
81,"("Things to Do in Denver when You're Dead (1995)", 'Crime|Drama|Romance')"0.944739103065
82,"("Antonia's Line (Antonia) (1995)", 'Drama')"1.04536508722
83,"('Once Upon a Time... When We Were Colored (1995)', 'Drama')"0.748564521329
84,"('Last Summer in the Hamptons (1995)', 'Comedy|Drama')"1.1237231605
85,"('Angels and Insects (1995)', 'Drama|Romance')"0.869890051528
86,"('White Squall (1996)', 'Adventure|Drama')"0.685001445579
87,"('Dunston Checks In (1996)', "Children's|Comedy")"0.881032929114
88,"('Black Sheep (1996)', 'Comedy')"0.774010407909
89,"('Nick of Time (1995)', 'Action|Thriller')"0.646152507452
90,"('Journey of August King, The (1995)', 'Drama')"0.809107498842
92,"('Mary Reilly (1996)', 'Drama|Thriller')"1.09462894654
93,"('Vampire in Brooklyn (1995)', 'Comedy|Romance')"0.618084795894
94,"('Beautiful Girls (1996)', 'Drama')"0.78031590122
95,"('Broken Arrow (1996)', 'Action|Thriller')"0.80098511478
96,"('In the Bleak Midwinter (1995)', 'Comedy')"1.00531749112
97,"('Hate (Haine, La) (1995)', 'Drama')"1.14761602387
98,"('Shopping (1994)', 'Action|Thriller')"0.770342320108
99,"('Heidi Fleiss: Hollywood Madam (1995)', 'Documentary')"0.635500990249
100,"('City Hall (1996)', 'Drama|Thriller')"0.736901895119
101,"('Bottle Rocket (1996)', 'Comedy')"0.796435076939
102,"('Mr. Wrong (1996)', 'Comedy')"0.624221327224
103,"('Unforgettable (1996)', 'Thriller')"1.5089421985
104,"('Happy Gilmore (1996)', 'Comedy')"0.998959670127
105,"('Bridges of Madison County, The (1995)', 'Drama|Romance')"0.878679463145
106,"('Nobody Loves Me (Keiner liebt mich) (1994)', 'Comedy|Drama')"0.500895357573
107,"('Muppet Treasure Island (1996)', "Adventure|Children's|Comedy|Musical")"0.959559137821
108,"('Catwalk (1995)', 'Documentary')"1.63875519087
110,"('Braveheart (1995)', 'Action|Drama|War')"0.786229897212
111,"('Taxi Driver (1976)', 'Drama|Thriller')"0.665689684339
112,"('Rumble in the Bronx (1995)', 'Action|Adventure|Crime')"0.827561240854
113,"('Before and After (1996)', 'Drama|Mystery')"0.899028868141
114,"("Margaret's Museum (1995)", 'Drama')"0.587350106692
116,"('Anne Frank Remembered (1995)', 'Documentary')"0.565565194636
117,"("Young Poisoner's Handbook, The (1995)", 'Crime')"0.720797090475
118,"('If Lucy Fell (1996)', 'Comedy|Romance')"0.76704593248
119,"('Steal Big, Steal Little (1995)', 'Comedy')"0.492111083663
121,"('Boys of St. Vincent, The (1993)', 'Drama')"0.505542075648
122,"('Boomerang (1992)', 'Comedy|Romance')"0.831364277405
123,"('Chungking Express (1994)', 'Drama|Mystery|Romance')"0.936085642209
124,"("Star Maker, The (Uomo delle stelle, L') (1995)", 'Drama')"0.612458814832
125,"('Flirting With Disaster (1996)', 'Comedy')"0.785260835127
126,"('NeverEnding Story III, The (1994)', "Adventure|Children's|Fantasy")"0.978614847664
127,"('Silence of the Palace, The (Saimt el Qusur) (1994)', 'Drama')"2.57700150492
128,"("Jupiter's Wife (1994)", 'Documentary')"0.997946995467
129,"('Pie in the Sky (1995)', 'Comedy|Romance')"0.372641505283
131,"('Frankie Starlight (1995)', 'Drama|Romance')"0.300823679336
132,"('Jade (1995)', 'Thriller')"1.02224234115
134,"('Sonic Outlaws (1995)', 'Documentary')"0.420087228898
135,"('Down Periscope (1996)', 'Comedy')"1.01491541265
136,"('From the Journals of Jean Seberg (1995)', 'Documentary')"3.50784801121
137,"('Man of the Year (1995)', 'Documentary')"1.46006579297
138,"('Neon Bible, The (1995)', 'Drama')"2.59409823034
140,"('Up Close and Personal (1996)', 'Drama|Romance')"0.75411785676
141,"('Birdcage, The (1996)', 'Comedy')"0.748512495491
144,"('Brothers McMullen, The (1995)', 'Comedy')"0.757385373384
145,"('Bad Boys (1995)', 'Action')"0.976103532741
146,"('Amazing Panda Adventure, The (1995)', "Adventure|Children's")"1.29691823451
147,"('Basketball Diaries, The (1995)', 'Drama')"0.813968594429
148,"('Awfully Big Adventure, An (1995)', 'Drama')"0.0164547595177
149,"('Amateur (1994)', 'Crime|Drama|Thriller')"0.896237605097
150,"('Apollo 13 (1995)', 'Drama')"0.596217995874
151,"('Rob Roy (1995)', 'Drama|Romance|War')"0.812381349667
152,"('Addiction, The (1995)', 'Horror')"0.677970386136
153,"('Batman Forever (1995)', 'Action|Adventure|Comedy|Crime')"0.884402443032
154,"('Belle de jour (1967)', 'Drama')"0.991532247998
155,"('Beyond Rangoon (1995)', 'Drama|War')"0.795487876917
156,"('Blue in the Face (1995)', 'Comedy')"0.832778532527
157,"('Canadian Bacon (1994)', 'Comedy|War')"1.15495278621
158,"('Casper (1995)', "Adventure|Children's")"0.817498543834
159,"('Clockers (1995)', 'Drama')"0.649400411843
160,"('Congo (1995)', 'Action|Adventure|Mystery|Sci-Fi')"0.863162391309
161,"('Crimson Tide (1995)', 'Drama|Thriller|War')"0.717334372578
162,"('Crumb (1994)', 'Documentary')"0.957758596764
163,"('Desperado (1995)', 'Action|Romance|Thriller')"0.915422432969
164,"('Devil in a Blue Dress (1995)', 'Crime|Film-Noir|Mystery|Thriller')"0.844580789868
165,"('Die Hard: With a Vengeance (1995)', 'Action|Thriller')"0.887312916597
166,"('Doom Generation, The (1995)', 'Comedy|Drama')"1.24314833159
167,"('Feast of July (1995)', 'Drama')"0.347144606667
168,"('First Knight (1995)', 'Action|Adventure|Drama|Romance')"1.03151098289
169,"('Free Willy 2: The Adventure Home (1995)', "Adventure|Children's|Drama")"0.733975412069
170,"('Hackers (1995)', 'Action|Crime|Thriller')"0.949527977783
171,"('Jeffrey (1995)', 'Comedy')"0.960801919788
172,"('Johnny Mnemonic (1995)', 'Action|Sci-Fi|Thriller')"0.934349650933
173,"('Judge Dredd (1995)', 'Action|Adventure|Sci-Fi')"0.89202847784
174,"('Jury Duty (1995)', 'Comedy')"1.15684433839
175,"('Kids (1995)', 'Drama')"0.965821437148
176,"('Living in Oblivion (1995)', 'Comedy')"0.744192630568
177,"('Lord of Illusions (1995)', 'Horror')"0.882738886721
178,"('Love & Human Remains (1993)', 'Comedy')"0.935719015732
179,"('Mad Love (1995)', 'Drama|Romance')"0.981222000266
180,"('Mallrats (1995)', 'Comedy')"0.917661654448
181,"('Mighty Morphin Power Rangers: The Movie (1995)', "Action|Children's")"0.725082801123
182,"('Moonlight and Valentino (1995)', 'Drama|Romance')"1.1455612504
183,"('Mute Witness (1994)', 'Thriller')"0.876360517728
184,"('Nadja (1994)', 'Drama')"1.23054342102
185,"('Net, The (1995)', 'Sci-Fi|Thriller')"0.793043103259
186,"('Nine Months (1995)', 'Comedy')"0.936804485994
187,"('Party Girl (1995)', 'Comedy')"0.86517817369
188,"('Prophecy, The (1995)', 'Horror')"0.913631738441
189,"('Reckless (1995)', 'Comedy')"1.31634861424
190,"('Safe (1995)', 'Thriller')"1.04267342081
191,"('Scarlet Letter, The (1995)', 'Drama')"0.780095091546
193,"('Showgirls (1995)', 'Drama')"0.706543886925
194,"('Smoke (1995)', 'Drama')"0.863668339169
195,"('Something to Talk About (1995)', 'Comedy|Drama|Romance')"0.758908097475
196,"('Species (1995)', 'Horror|Sci-Fi')"0.895108499786
197,"('Stars Fell on Henrietta, The (1995)', 'Drama')"1.02477615205
198,"('Strange Days (1995)', 'Action|Crime|Sci-Fi')"0.864737733352
199,"('Umbrellas of Cherbourg, The (Parapluies de Cherbourg, Les) (1964)', 'Drama|Musical')"0.716324116334
200,"('Tie That Binds, The (1995)', 'Thriller')"1.69836597693
201,"('Three Wishes (1995)', 'Drama')"0.791770968077
202,"('Total Eclipse (1995)', 'Drama|Romance')"1.44164288909
203,"('To Wong Foo, Thanks for Everything! Julie Newmar (1995)', 'Comedy')"0.824335676155
204,"('Under Siege 2: Dark Territory (1995)', 'Action')"1.11850131767
205,"('Unstrung Heroes (1995)', 'Comedy|Drama')"0.7832927575
206,"('Unzipped (1995)', 'Documentary')"0.980943368978
207,"('Walk in the Clouds, A (1995)', 'Drama|Romance')"0.897024848163
208,"('Waterworld (1995)', 'Action|Adventure')"0.999474316746
209,"("White Man's Burden (1995)", 'Drama')"0.961921039405
210,"('Wild Bill (1995)', 'Western')"0.481157634512
211,"('Browning Version, The (1994)', 'Drama')"0.957350055159
212,"('Bushwhacked (1995)', 'Comedy')"0.623362520317
213,"('Burnt By the Sun (Utomlyonnye solntsem) (1994)', 'Drama')"0.721172106044
214,"('Before the Rain (Pred dozhdot) (1994)', 'Drama')"0.665827714074
215,"('Before Sunrise (1995)', 'Drama|Romance')"0.77802310684
216,"('Billy Madison (1995)', 'Comedy')"1.10056818644
217,"('Babysitter, The (1995)', 'Drama|Thriller')"0.99532952486
218,"('Boys on the Side (1995)', 'Comedy|Drama')"0.813174393065
219,"('Cure, The (1995)', 'Drama')"0.698964776232
220,"('Castle Freak (1995)', 'Horror')"0.541000475793
222,"('Circle of Friends (1995)', 'Drama|Romance')"0.718724063155
223,"('Clerks (1994)', 'Comedy')"0.845125545341
224,"('Don Juan DeMarco (1995)', 'Comedy|Drama|Romance')"0.790735014331
225,"('Disclosure (1994)', 'Drama|Thriller')"0.797305295539
227,"('Drop Zone (1994)', 'Action')"0.811621129905
228,"('Destiny Turns on the Radio (1995)', 'Comedy')"1.29060694815
229,"('Death and the Maiden (1994)', 'Drama|Thriller')"0.805758677565
230,"('Dolores Claiborne (1994)', 'Drama|Thriller')"0.661614061188
231,"('Dumb & Dumber (1994)', 'Comedy')"1.16923465807
232,"('Eat Drink Man Woman (1994)', 'Comedy|Drama')"0.577867105382
233,"('Exotica (1994)', 'Drama')"0.924834275509
234,"('Exit to Eden (1994)', 'Comedy')"1.05476828175
235,"('Ed Wood (1994)', 'Comedy|Drama')"0.856508007449
236,"('French Kiss (1995)', 'Comedy|Romance')"0.882322632386
237,"('Forget Paris (1995)', 'Comedy|Romance')"0.897501328094
238,"('Far From Home: The Adventures of Yellow Dog (1995)', "Adventure|Children's")"0.988498548932
239,"('Goofy Movie, A (1995)', "Animation|Children's|Comedy|Romance")"0.784534171072
240,"('Hideaway (1995)', 'Thriller')"1.05196474831
241,"('Fluke (1995)', "Children's|Drama")"0.598329463876
242,"('Farinelli: il castrato (1994)', 'Drama|Musical')"0.909846658223
243,"('Gordy (1995)', 'Comedy')"1.475007116
244,"('Gumby: The Movie (1995)', "Animation|Children's")"0.998479008373
246,"('Hoop Dreams (1994)', 'Documentary')"0.65782451201
247,"('Heavenly Creatures (1994)', 'Drama|Fantasy|Romance|Thriller')"0.72167114849
248,"('Houseguest (1994)', 'Comedy')"0.942113745801
249,"('Immortal Beloved (1994)', 'Drama|Romance')"0.885641997164
250,"('Heavyweights (1994)', "Children's|Comedy")"0.749428704733
251,"('Hunted, The (1995)', 'Action')"0.996015178001
252,"('I.Q. (1994)', 'Comedy|Romance')"0.858270461213
253,"('Interview with the Vampire (1994)', 'Drama|Horror')"0.915879282636
254,"('Jefferson in Paris (1995)', 'Drama')"0.492207585971
255,"('Jerky Boys, The (1994)', 'Comedy')"0.97299839349
256,"('Junior (1994)', 'Comedy|Sci-Fi')"0.865941417225
257,"('Just Cause (1995)', 'Mystery|Thriller')"0.850880279852
258,"("Kid in King Arthur's Court, A (1995)", "Adventure|Children's|Comedy|Fantasy|Romance")"1.00042405347
259,"('Kiss of Death (1995)', 'Crime|Drama|Thriller')"0.691106886361
260,"('Star Wars: Episode IV - A New Hope (1977)', 'Action|Adventure|Fantasy|Sci-Fi')"0.684635758735
261,"('Little Women (1994)', 'Drama')"0.728482654864
262,"('Little Princess, A (1995)', "Children's|Drama")"0.740574385805
263,"('Ladybird Ladybird (1994)', 'Drama')"0.842176342062
264,"("Enfer, L' (1994)", 'Drama')"0.321034051651
265,"('Like Water for Chocolate (Como agua para chocolate) (1992)', 'Drama|Romance')"0.784840112431
266,"('Legends of the Fall (1994)', 'Drama|Romance|War|Western')"0.895501035483
267,"('Major Payne (1994)', 'Comedy')"1.19743992354
268,"('Little Odessa (1994)', 'Drama')"0.497800825943
269,"('My Crazy Life (Mi vida loca) (1993)', 'Drama')"0.559343429222
270,"('Love Affair (1994)', 'Drama|Romance')"0.701494702636
271,"('Losing Isaiah (1995)', 'Drama')"1.12727212171
272,"('Madness of King George, The (1994)', 'Drama')"0.804760752913
273,"("Mary Shelley's Frankenstein (1994)", 'Drama|Horror')"0.879735835191
274,"('Man of the House (1995)', 'Comedy')"0.729149458483
275,"('Mixed Nuts (1994)', 'Comedy')"0.952661249791
276,"('Milk Money (1994)', 'Comedy|Romance')"0.731714467638
277,"('Miracle on 34th Street (1994)', 'Drama')"0.88287217929
278,"('Miami Rhapsody (1995)', 'Comedy')"0.58412875787
279,"('My Family (1995)', 'Drama')"0.495409124557
280,"('Murder in the First (1995)', 'Drama|Thriller')"0.69469743531
281,"("Nobody's Fool (1994)", 'Drama')"0.669748784305
282,"('Nell (1994)', 'Drama')"0.688340385383
283,"('New Jersey Drive (1995)', 'Crime|Drama')"1.26735022021
286,"('Nemesis 2: Nebula (1995)', 'Action|Sci-Fi|Thriller')"0.571205703289
288,"('Natural Born Killers (1994)', 'Action|Thriller')"1.09676992876
289,"('Only You (1994)', 'Comedy|Romance')"0.904687493124
290,"('Once Were Warriors (1994)', 'Crime|Drama')"0.814133094989
291,"('Poison Ivy II (1995)', 'Thriller')"0.805875351703
292,"('Outbreak (1995)', 'Action|Drama|Thriller')"0.672698466695
293,"('Professional, The (a.k.a. Leon: The Professional) (1994)', 'Crime|Drama|Romance|Thriller')"0.613233965316
294,"('Perez Family, The (1995)', 'Comedy|Romance')"0.753044655128
295,"("Pyromaniac's Love Story, A (1995)", 'Comedy|Romance')"0.449273925203
296,"('Pulp Fiction (1994)', 'Crime|Drama')"0.8054968007
297,"('Panther (1995)', 'Drama')"1.2634531619
298,"('Pushing Hands (1992)', 'Comedy')"0.767938873453
299,"('Priest (1994)', 'Drama')"0.810104575181
300,"('Quiz Show (1994)', 'Drama')"0.601052181178
301,"('Picture Bride (1995)', 'Drama|Romance')"0.670296752885
302,"('Queen Margot (La Reine Margot) (1994)', 'Drama|Romance')"0.697164444721
303,"('Quick and the Dead, The (1995)', 'Action|Adventure|Western')"0.741104298402
304,"('Roommates (1995)', 'Comedy|Drama')"1.22256108356
305,"('Ready to Wear (Pret-A-Porter) (1994)', 'Comedy')"0.92186359905
306,"('Three Colors: Red (1994)', 'Drama')"0.710453735108
307,"('Three Colors: Blue (1993)', 'Drama')"0.610481480644
308,"('Three Colors: White (1994)', 'Drama')"0.830743747397
309,"('Red Firecracker, Green Firecracker (1994)', 'Drama')"1.09362919403
310,"('Rent-a-Kid (1995)', 'Comedy')"1.50733592845
312,"('Stuart Saves His Family (1995)', 'Comedy')"1.00350948422
313,"('Swan Princess, The (1994)', "Animation|Children's")"0.86986983554
314,"('Secret of Roan Inish, The (1994)', 'Drama')"0.755159571379
315,"('Specialist, The (1994)', 'Action')"1.250751143
316,"('Stargate (1994)', 'Action|Adventure|Sci-Fi')"0.916014139368
317,"('Santa Clause, The (1994)', "Children's|Comedy|Fantasy")"0.851457012335
318,"('Shawshank Redemption, The (1994)', 'Drama')"0.590887086331
319,"('Shallow Grave (1994)', 'Thriller')"0.757326024399
320,"('Suture (1993)', 'Film-Noir|Thriller')"0.952741755875
321,"('Strawberry and Chocolate (Fresa y chocolate) (1993)', 'Drama')"0.859506236154
322,"('Swimming with Sharks (1995)', 'Comedy|Drama')"0.871265889904
324,"('Sum of Us, The (1994)', 'Comedy')"0.856661137289
325,"("National Lampoon's Senior Trip (1995)", 'Comedy')"1.4027373018
326,"('To Live (Huozhe) (1994)', 'Drama')"0.752112866124
327,"('Tank Girl (1995)', 'Action|Comedy|Musical|Sci-Fi')"1.07272808824
328,"('Tales From the Crypt Presents: Demon Knight (1995)', 'Horror')"1.02064794599
329,"('Star Trek: Generations (1994)', 'Action|Adventure|Sci-Fi')"0.79608580103
330,"('Tales from the Hood (1995)', 'Comedy|Horror')"1.00006597434
331,"('Tom & Viv (1994)', 'Drama')"0.746772890895
332,"('Village of the Damned (1995)', 'Horror|Sci-Fi')"1.05124625549
333,"('Tommy Boy (1995)', 'Comedy')"0.981610323243
334,"('Vanya on 42nd Street (1994)', 'Drama')"0.930323852826
335,"('Underneath, The (1995)', 'Mystery|Thriller')"0.903010373999
336,"('Walking Dead, The (1995)', 'Drama|War')"1.50367300482
337,"("What's Eating Gilbert Grape (1993)", 'Drama')"0.656380358508
338,"('Virtuosity (1995)', 'Sci-Fi|Thriller')"0.70987426497
339,"('While You Were Sleeping (1995)', 'Comedy|Romance')"0.817463515461
340,"('War, The (1994)', 'Adventure|Drama')"0.722209924495
341,"('Double Happiness (1994)', 'Drama')"0.722181626556
342,"("Muriel's Wedding (1994)", 'Comedy|Romance')"0.67401014413
343,"('Baby-Sitters Club, The (1995)', "Children's")"0.987305455611
344,"('Ace Ventura: Pet Detective (1994)', 'Comedy')"1.01437273936
345,"('Adventures of Priscilla, Queen of the Desert, The (1994)', 'Comedy|Drama')"0.884911734369
346,"('Backbeat (1993)', 'Drama|Musical')"0.804030599958
347,"('Bitter Moon (1992)', 'Drama')"1.16007761203
348,"('Bullets Over Broadway (1994)', 'Comedy')"0.761366918634
349,"('Clear and Present Danger (1994)', 'Action|Adventure|Thriller')"0.729279152409
350,"('Client, The (1994)', 'Drama|Mystery|Thriller')"0.713866954277
351,"('Corrina, Corrina (1994)', 'Comedy|Drama|Romance')"0.688791633991
352,"('Crooklyn (1994)', 'Comedy')"0.757891581163
353,"('Crow, The (1994)', 'Action|Romance|Thriller')"0.947828987271
354,"('Cobb (1994)', 'Drama')"0.78279330668
355,"('Flintstones, The (1994)', "Children's|Comedy")"0.926413710156
356,"('Forrest Gump (1994)', 'Comedy|Romance|War')"0.825478525358
357,"('Four Weddings and a Funeral (1994)', 'Comedy|Romance')"0.757054932465
358,"('Higher Learning (1995)', 'Drama')"0.99769119459
359,"('I Like It Like That (1994)', 'Comedy|Drama|Romance')"1.09975367497
360,"('I Love Trouble (1994)', 'Action|Comedy')"0.864479119108
361,"('It Could Happen to You (1994)', 'Drama|Romance')"0.73762616934
362,"('Jungle Book, The (1994)', "Adventure|Children's|Romance")"0.864640370881
363,"('Wonderful, Horrible Life of Leni Riefenstahl, The (Die Macht der Bilder) (1993)', 'Documentary')"0.651273859875
364,"('Lion King, The (1994)', "Animation|Children's|Musical")"0.719373956472
365,"('Little Buddha (1993)', 'Drama')"0.876977246173
366,"("Wes Craven's New Nightmare (1994)", 'Horror')"1.04594140714
367,"('Mask, The (1994)', 'Comedy|Crime|Fantasy')"0.880582030973
368,"('Maverick (1994)', 'Action|Comedy|Western')"0.838500963194
369,"('Mrs. Parker and the Vicious Circle (1994)', 'Drama')"0.665255460553
370,"('Naked Gun 33 1/3: The Final Insult (1994)', 'Comedy')"0.676856661227
371,"('Paper, The (1994)', 'Comedy|Drama')"0.794429349665
372,"('Reality Bites (1994)', 'Comedy|Drama')"0.712421779091
373,"('Red Rock West (1992)', 'Thriller')"0.529274598239
374,"('Richie Rich (1994)', "Children's|Comedy")"0.781803646404
375,"('Safe Passage (1994)', 'Drama')"1.00150576576
376,"('River Wild, The (1994)', 'Action|Thriller')"0.635728189289
377,"('Speed (1994)', 'Action|Romance|Thriller')"0.840383741124
378,"('Speechless (1994)', 'Comedy|Romance')"0.757001525665
379,"('Timecop (1994)', 'Action|Sci-Fi')"0.8966285599
380,"('True Lies (1994)', 'Action|Adventure|Comedy|Romance')"0.78483266301
381,"('When a Man Loves a Woman (1994)', 'Drama')"0.850896426955
382,"('Wolf (1994)', 'Drama|Horror')"0.871592812953
383,"('Wyatt Earp (1994)', 'Western')"0.734135739495
384,"('Bad Company (1995)', 'Action')"1.00862335672
385,"('Man of No Importance, A (1994)', 'Drama')"0.521324244143
386,"('S.F.W. (1994)', 'Drama')"1.20434518353
387,"('Low Down Dirty Shame, A (1994)', 'Action|Comedy')"0.921086960883
388,"('Boys Life (1995)', 'Drama')"0.714775515456
389,"('Colonel Chabert, Le (1994)', 'Drama|Romance|War')"0.878162751092
390,"('Faster Pussycat! Kill! Kill! (1965)', 'Action|Comedy|Drama')"0.802716233276
391,"("Jason's Lyric (1994)", 'Crime|Drama')"1.08387008159
392,"('Secret Adventures of Tom Thumb, The (1993)', "Adventure|Children's")"1.55349254233
393,"('Street Fighter (1994)', 'Action')"0.948192757069
394,"('Coldblooded (1995)', 'Action')"0.273340256711
404,"('Brother Minister: The Assassination of Malcolm X (1994)', 'Documentary')"0.750200336689
405,"('Highlander III: The Sorcerer (1994)', 'Action|Sci-Fi')"0.861086042431
406,"('Federal Hill (1994)', 'Drama')"2.01402283213
407,"('In the Mouth of Madness (1995)', 'Horror|Thriller')"0.944401519142
408,"('8 Seconds (1994)', 'Drama')"0.825138180275
409,"('Above the Rim (1994)', 'Drama')"0.524593476423
410,"('Addams Family Values (1993)', 'Comedy')"0.699458109555
411,"('You So Crazy (1994)', 'Comedy')"0.07091351334
412,"('Age of Innocence, The (1993)', 'Drama')"0.798637445901
413,"('Airheads (1994)', 'Comedy')"0.840235795997
414,"('Air Up There, The (1994)', 'Comedy')"0.855630397867
415,"('Another Stakeout (1993)', 'Comedy|Thriller')"0.642197037297
416,"('Bad Girls (1994)', 'Western')"1.01950515083
417,"('Barcelona (1994)', 'Comedy|Romance')"0.80371722639
418,"('Being Human (1993)', 'Drama')"0.911321980775
419,"('Beverly Hillbillies, The (1993)', 'Comedy')"0.866481027138
420,"('Beverly Hills Cop III (1994)', 'Action|Comedy')"0.918481181095
421,"('Black Beauty (1994)', "Adventure|Children's")"0.907725884272
422,"('Blink (1994)', 'Thriller')"0.910200159908
423,"('Blown Away (1994)', 'Action|Thriller')"0.758104315784
424,"('Blue Chips (1994)', 'Drama')"0.688625757911
425,"('Blue Sky (1994)', 'Drama|Romance')"0.891725187165
426,"('Body Snatchers (1993)', 'Horror|Sci-Fi|Thriller')"0.898332047147
427,"('Boxing Helena (1993)', 'Mystery|Romance|Thriller')"1.0365077257
428,"('Bronx Tale, A (1993)', 'Drama')"0.824717893197
429,"('Cabin Boy (1994)', 'Comedy')"1.19991313355
430,"('Calendar Girl (1993)', 'Drama')"0.997247741485
431,"("Carlito's Way (1993)", 'Crime|Drama')"0.72224219395
432,"("City Slickers II: The Legend of Curly's Gold (1994)", 'Comedy|Western')"0.959921035205
433,"('Clean Slate (1994)', 'Comedy')"1.11958352045
434,"('Cliffhanger (1993)', 'Action|Adventure|Crime')"0.797646149436
435,"('Coneheads (1993)', 'Comedy|Sci-Fi')"0.918379010386
436,"('Color of Night (1994)', 'Drama|Thriller')"0.878084995209
437,"('Cops and Robbersons (1994)', 'Comedy')"0.750651274958
438,"('Cowboy Way, The (1994)', 'Action|Comedy')"0.88999701462
439,"('Dangerous Game (1993)', 'Drama')"0.428126695945
440,"('Dave (1993)', 'Comedy|Romance')"0.65837040941
441,"('Dazed and Confused (1993)', 'Comedy')"0.920393460775
442,"('Demolition Man (1993)', 'Action|Sci-Fi')"0.833885220209
443,"('Endless Summer 2, The (1994)', 'Documentary')"1.43201473578
444,"('Even Cowgirls Get the Blues (1993)', 'Comedy|Romance')"1.02314981853
445,"('Fatal Instinct (1993)', 'Comedy')"0.978071062511
446,"('Farewell My Concubine (1993)', 'Drama|Romance')"0.55863147961
447,"('Favor, The (1994)', 'Comedy|Romance')"0.835362904778
448,"('Fearless (1993)', 'Drama')"0.846437743871
449,"('Fear of a Black Hat (1993)', 'Comedy')"1.28711971712
450,"('With Honors (1994)', 'Comedy|Drama')"0.839794562661
451,"('Flesh and Bone (1993)', 'Drama|Mystery|Romance')"0.70459592565
452,"("Widows' Peak (1994)", 'Drama')"0.731748111532
453,"('For Love or Money (1993)', 'Comedy')"0.742902052879
454,"('Firm, The (1993)', 'Drama|Thriller')"0.722565343479
455,"('Free Willy (1993)', "Adventure|Children's|Drama")"0.849852219661
456,"('Fresh (1994)', 'Drama')"0.709182428145
457,"('Fugitive, The (1993)', 'Action|Thriller')"0.548319498661
458,"('Geronimo: An American Legend (1993)', 'Drama|Western')"0.872533659005
459,"('Getaway, The (1994)', 'Action')"0.96510333542
461,"('Go Fish (1994)', 'Drama|Romance')"0.772505518008
462,"('Good Man in Africa, A (1994)', 'Action|Adventure')"1.12532160379
463,"('Guilty as Sin (1993)', 'Crime|Drama|Thriller')"0.797871821262
464,"('Hard Target (1993)', 'Action|Adventure|Crime|Thriller')"0.973211322067
465,"('Heaven & Earth (1993)', 'Action|Drama|War')"0.985102382617
466,"('Hot Shots! Part Deux (1993)', 'Action|Comedy|War')"0.915289281441
467,"('Live Nude Girls (1995)', 'Comedy')"1.01402387549
468,"('Englishman Who Went Up a Hill, But Came Down a Mountain, The (1995)', 'Comedy|Romance')"0.80192643844
469,"('House of the Spirits, The (1993)', 'Drama|Romance')"1.12259836857
470,"('House Party 3 (1994)', 'Comedy')"0.690727637272
471,"('Hudsucker Proxy, The (1994)', 'Comedy|Romance')"0.891987938837
472,"("I'll Do Anything (1994)", 'Comedy|Drama')"1.03505787094
473,"('In the Army Now (1994)', 'Comedy|War')"0.87529317334
474,"('In the Line of Fire (1993)', 'Action|Thriller')"0.663252717979
475,"('In the Name of the Father (1993)', 'Drama')"0.557244723109
476,"('Inkwell, The (1994)', 'Comedy|Drama')"0.690025458297
477,"("What's Love Got to Do with It? (1993)", 'Drama')"0.799669199362
478,"('Jimmy Hollywood (1994)', 'Comedy')"0.695025868556
479,"('Judgment Night (1993)', 'Action')"1.0110804864
480,"('Jurassic Park (1993)', 'Action|Adventure|Sci-Fi')"0.791843337323
481,"('Kalifornia (1993)', 'Drama|Thriller')"0.907839246926
482,"('Killing Zoe (1994)', 'Thriller')"1.13565251575
483,"('King of the Hill (1993)', 'Drama')"0.836899406176
484,"('Lassie (1994)', "Adventure|Children's")"1.01860526318
485,"('Last Action Hero (1993)', 'Action|Comedy')"0.952876666477
486,"('Life with Mikey (1993)', 'Comedy')"1.12570973746
487,"('Lightning Jack (1994)', 'Comedy|Western')"1.25627320253
488,"('M. Butterfly (1993)', 'Drama')"0.525024117551
489,"('Made in America (1993)', 'Comedy')"0.716272747028
490,"('Malice (1993)', 'Thriller')"0.808881110291
491,"('Man Without a Face, The (1993)', 'Drama')"0.726426576969
492,"('Manhattan Murder Mystery (1993)', 'Comedy|Mystery')"0.70609783527
493,"('Menace II Society (1993)', 'Action|Crime|Drama')"0.875691079844
494,"('Executive Decision (1996)', 'Action|Thriller')"0.833425721462
495,"('In the Realm of the Senses (Ai no corrida) (1976)', 'Drama')"1.03450624852
496,"('What Happened Was... (1994)', 'Comedy|Drama|Romance')"1.5284755267
497,"('Much Ado About Nothing (1993)', 'Comedy|Romance')"0.577899656084
498,"('Mr. Jones (1993)', 'Drama|Romance')"0.728662385975
499,"('Mr. Wonderful (1993)', 'Comedy|Romance')"0.957313826053
500,"('Mrs. Doubtfire (1993)', 'Comedy')"0.957264740465
501,"('Naked (1993)', 'Drama')"1.11153669391
502,"('Next Karate Kid, The (1994)', "Action|Children's")"0.848224521143
503,"('New Age, The (1994)', 'Drama')"1.55494877571
504,"('No Escape (1994)', 'Action|Sci-Fi')"1.02144460563
505,"('North (1994)', 'Comedy')"0.969831713631
506,"('Orlando (1993)', 'Drama')"0.882260196786
507,"('Perfect World, A (1993)', 'Action|Drama')"0.778307423294
508,"('Philadelphia (1993)', 'Drama')"0.736183366323
509,"('Piano, The (1993)', 'Drama|Romance')"0.996294041748
510,"('Poetic Justice (1993)', 'Drama')"0.692369197858
511,"('Program, The (1993)', 'Action|Drama')"1.04509032507
512,"("Robert A. Heinlein's The Puppet Masters (1994)", 'Horror|Sci-Fi')"0.790020999586
513,"('Radioland Murders (1994)', 'Comedy|Mystery|Romance')"0.909522167528
514,"('Ref, The (1994)', 'Comedy')"0.77028834975
515,"('Remains of the Day, The (1993)', 'Drama')"0.775861723335
516,"('Renaissance Man (1994)', 'Comedy|Drama|War')"0.693905126219
517,"('Rising Sun (1993)', 'Action|Drama|Mystery')"0.755816238569
518,"('Road to Wellville, The (1994)', 'Comedy')"1.10771230855
519,"('Robocop 3 (1993)', 'Sci-Fi|Thriller')"0.784085285877
520,"('Robin Hood: Men in Tights (1993)', 'Comedy')"0.756284262553
521,"('Romeo Is Bleeding (1993)', 'Crime|Thriller')"0.911699863428
522,"('Romper Stomper (1992)', 'Action|Drama')"1.00670703455
523,"('Ruby in Paradise (1993)', 'Drama')"0.656219862597
524,"('Rudy (1993)', 'Drama')"0.741343562277
525,"('Saint of Fort Washington, The (1993)', 'Drama')"2.00358307287
526,"('Savage Nights (Nuits fauves, Les) (1992)', 'Drama')"0.372620593204
527,"("Schindler's List (1993)", 'Drama|War')"0.628094805269
528,"('Scout, The (1994)', 'Drama')"0.728144016183
529,"('Searching for Bobby Fischer (1993)', 'Drama')"0.64256350014
530,"('Second Best (1994)', 'Drama')"0.556306820383
531,"('Secret Garden, The (1993)', "Children's|Drama")"0.824988456494
532,"('Serial Mom (1994)', 'Comedy|Crime|Horror')"0.975693630873
533,"('Shadow, The (1994)', 'Action')"0.642590787904
534,"('Shadowlands (1993)', 'Drama|Romance')"0.873556412454
535,"('Short Cuts (1993)', 'Drama')"0.828368724401
536,"('Simple Twist of Fate, A (1994)', 'Drama')"1.07810784216
537,"('Sirens (1994)', 'Comedy|Drama')"0.884918465296
538,"('Six Degrees of Separation (1993)', 'Drama')"0.71635632188
539,"('Sleepless in Seattle (1993)', 'Comedy|Romance')"0.832653060365
540,"('Sliver (1993)', 'Thriller')"0.821522793324
541,"('Blade Runner (1982)', 'Film-Noir|Sci-Fi')"0.799127123123
542,"('Son in Law (1993)', 'Comedy')"0.963002744758
543,"('So I Married an Axe Murderer (1993)', 'Comedy|Romance|Thriller')"0.921218309744
544,"('Striking Distance (1993)', 'Action')"1.02006255999
546,"('Super Mario Bros. (1993)', "Action|Adventure|Children's|Sci-Fi")"0.789388567101
547,"('Surviving the Game (1994)', 'Action|Adventure|Thriller')"0.785620127821
548,"('Terminal Velocity (1994)', 'Action')"1.11198026585
549,"('Thirty-Two Short Films About Glenn Gould (1993)', 'Documentary')"0.911239427205
550,"('Threesome (1994)', 'Comedy|Romance')"0.81154569278
551,"('Nightmare Before Christmas, The (1993)', "Children's|Comedy|Musical")"0.948788131563
552,"('Three Musketeers, The (1993)', 'Action|Adventure|Comedy')"0.9026905605
553,"('Tombstone (1993)', 'Western')"0.928334025325
554,"('Trial by Jury (1994)', 'Thriller')"1.00050433881
555,"('True Romance (1993)', 'Action|Crime|Romance')"0.849713020736
556,"('War Room, The (1993)', 'Documentary')"0.607165565971
558,"('Pagemaster, The (1994)', "Action|Adventure|Animation|Children's|Fantasy")"1.05625087017
559,"('Paris, France (1993)', 'Comedy')"2.53970673556
560,"('Beans of Egypt, Maine, The (1994)', 'Drama')"0.529408861298
561,"('Killer (Bulletproof Heart) (1994)', 'Thriller')"1.91570099733
562,"('Welcome to the Dollhouse (1995)', 'Comedy|Drama')"0.772840594411
563,"('Germinal (1993)', 'Drama')"1.06307780309
564,"('Chasers (1994)', 'Comedy')"0.895926516034
565,"('Cronos (1992)', 'Horror')"1.09516263616
566,"('Naked in New York (1994)', 'Comedy|Romance')"0.653709402437
567,"('Kika (1993)', 'Drama')"1.19269448264
568,"('Bhaji on the Beach (1993)', 'Comedy|Drama')"0.68228315502
569,"('Little Big League (1994)', "Children's|Comedy")"0.78833002215
570,"('Slingshot, The (K\xc3\x83\xc2\xa5disbellan ) (1993)', 'Comedy|Drama')"1.00545061472
571,"('Wedding Gift, The (1994)', 'Drama')"0.649627436379
573,"('Ciao, Professore! (Io speriamo che me la cavo ) (1993)', 'Drama')"0.667452799945
574,"('Spanking the Monkey (1994)', 'Comedy|Drama')"1.02437571775
575,"('Little Rascals, The (1994)', "Children's|Comedy")"0.519469757444
577,"('Andre (1994)', "Adventure|Children's")"0.982440502994
578,"('Hour of the Pig, The (1993)', 'Drama|Mystery')"0.310328637166
580,"('Princess Caraboo (1994)', 'Drama')"0.624276676539
581,"('Celluloid Closet, The (1995)', 'Documentary')"0.775784301451
582,"('Metisse (Caf\xc3\x83\xc2\xa9 au Lait) (1993)', 'Comedy')"0.315564473815
583,"('Dear Diary (Caro Diario) (1994)', 'Comedy|Drama')"1.10200146856
585,"('Brady Bunch Movie, The (1995)', 'Comedy')"0.795497874507
586,"('Home Alone (1990)', "Children's|Comedy")"0.788120179938
587,"('Ghost (1990)', 'Comedy|Romance|Thriller')"0.899158353075
588,"('Aladdin (1992)', "Animation|Children's|Comedy|Musical")"0.748029105538
589,"('Terminator 2: Judgment Day (1991)', 'Action|Sci-Fi|Thriller')"0.653453397388
590,"('Dances with Wolves (1990)', 'Adventure|Drama|Western')"0.810624758025
591,"('Tough and Deadly (1995)', 'Action|Drama|Thriller')"1.58056708991
592,"('Batman (1989)', 'Action|Adventure|Crime|Drama')"0.825240175297
593,"('Silence of the Lambs, The (1991)', 'Drama|Thriller')"0.706730670413
594,"('Snow White and the Seven Dwarfs (1937)', "Animation|Children's|Musical")"0.726185293256
595,"('Beauty and the Beast (1991)', "Animation|Children's|Musical")"0.801702899559
596,"('Pinocchio (1940)', "Animation|Children's")"0.755187102821
597,"('Pretty Woman (1990)', 'Comedy|Romance')"0.924741767811
598,"('Window to Paris (1994)', 'Comedy')"0.498155745785
599,"('Wild Bunch, The (1969)', 'Western')"0.800932033209
600,"('Love and a .45 (1994)', 'Thriller')"0.501665336385
602,"('Great Day in Harlem, A (1994)', 'Documentary')"0.988917298907
603,"('Bye Bye, Love (1995)', 'Comedy')"0.704305666195
605,"('One Fine Day (1996)', 'Drama|Romance')"0.751750166462
606,"('Candyman: Farewell to the Flesh (1995)', 'Horror')"0.888108046395
608,"('Fargo (1996)', 'Crime|Drama|Thriller')"0.764097080967
609,"('Homeward Bound II: Lost in San Francisco (1996)', "Adventure|Children's")"0.560219846749
610,"('Heavy Metal (1981)', 'Action|Adventure|Animation|Horror|Sci-Fi')"0.876106911242
611,"('Hellraiser: Bloodline (1996)', 'Action|Horror|Sci-Fi')"1.03720516843
612,"('Pallbearer, The (1996)', 'Comedy')"0.613836168558
613,"('Jane Eyre (1996)', 'Drama|Romance')"0.902619794791
614,"('Loaded (1994)', 'Drama|Thriller')"0.258039500741
615,"('Bread and Chocolate (Pane e cioccolata) (1973)', 'Drama')"0.814381852055
616,"('Aristocats, The (1970)', "Animation|Children's")"0.820616016458
617,"('Flower of My Secret, The (La Flor de Mi Secreto) (1995)', 'Drama')"1.00268424205
618,"('Two Much (1996)', 'Comedy|Romance')"1.44939985614
619,"('Ed (1996)', 'Comedy')"1.6180583495
621,"('My Favorite Season (1993)', 'Drama')"1.14957695457
623,"('Modern Affair, A (1995)', 'Romance')"0.563956372972
624,"('Condition Red (1995)', 'Action|Drama|Thriller')"0.406774786675
626,"('Thin Line Between Love and Hate, A (1996)', 'Comedy')"1.15523736501
627,"('Last Supper, The (1995)', 'Drama|Thriller')"0.968276206791
628,"('Primal Fear (1996)', 'Drama|Thriller')"0.699518815269
631,"('All Dogs Go to Heaven 2 (1996)', "Animation|Children's|Musical")"1.1179670477
632,"('Land and Freedom (Tierra y libertad) (1995)', 'War')"1.0703813056
633,"('Denise Calls Up (1995)', 'Comedy')"0.758367808209
635,"('Family Thing, A (1996)', 'Comedy|Drama')"0.792153581374
637,"('Sgt. Bilko (1996)', 'Comedy')"0.984387791158
638,"('Jack and Sarah (1995)', 'Romance')"1.00463772758
639,"('Girl 6 (1996)', 'Comedy')"0.693555408487
640,"('Diabolique (1996)', 'Drama|Thriller')"0.900145848941
645,"('Nelly & Monsieur Arnaud (1995)', 'Drama')"0.00921683463359
647,"('Courage Under Fire (1996)', 'Drama|War')"0.706435511597
648,"('Mission: Impossible (1996)', 'Action|Adventure|Mystery')"0.850677327757
649,"('Cold Fever (\xc3\x83\xc2\x81 k\xc3\x83\xc2\xb6ldum klaka) (1994)', 'Comedy|Drama')"0.96842649718
650,"('Moll Flanders (1996)', 'Drama')"0.847761952511
653,"('Dragonheart (1996)', 'Action|Adventure|Fantasy')"0.710560724168
656,"('Eddie (1996)', 'Comedy')"1.21706125177
657,"('Yankee Zulu (1994)', 'Comedy|Drama')"0.151234278255
659,"('Purple Noon (1960)', 'Crime|Thriller')"1.1409710769
661,"('James and the Giant Peach (1996)', "Animation|Children's|Musical")"0.910060989987
662,"('Fear (1996)', 'Thriller')"0.760185272373
663,"('Kids in the Hall: Brain Candy (1996)', 'Comedy')"0.956542157274
664,"('Faithful (1996)', 'Comedy')"0.048887209109
665,"('Underground (1995)', 'War')"0.901718803996
667,"('Bloodsport 2 (1995)', 'Action')"0.562626559203
668,"('Pather Panchali (1955)', 'Drama')"0.785820399696
669,"('Aparajito (1956)', 'Drama')"0.568682988271
670,"('World of Apu, The (Apur Sansar) (1959)', 'Drama')"0.946843976698
671,"('Mystery Science Theater 3000: The Movie (1996)', 'Comedy|Sci-Fi')"0.822340678641
673,"('Space Jam (1996)', "Adventure|Animation|Children's|Comedy|Fantasy")"0.960639532313
674,"('Barbarella (1968)', 'Adventure|Sci-Fi')"1.01114002607
678,"('Some Folks Call It a Sling Blade (1993)', 'Drama|Thriller')"0.762096385488
680,"('Alphaville (1965)', 'Sci-Fi')"1.07536025251
681,"('Clean Slate (Coup de Torchon) (1981)', 'Crime')"1.00560279638
682,"('Tigrero: A Film That Was Never Made (1994)', 'Documentary|Drama')"0.90038525231
685,"("It's My Party (1995)", 'Drama')"0.876714591741
688,"('Operation Dumbo Drop (1995)', 'Action|Adventure|Comedy|War')"0.882203505306
690,"('Promise, The (Versprechen, Das) (1994)', 'Romance')"1.72173883558
691,"('Mrs. Winterbourne (1996)', 'Comedy|Romance')"0.985200167741
692,"('Solo (1996)', 'Action|Sci-Fi|Thriller')"0.984891151077
694,"('Substitute, The (1996)', 'Action')"0.550752871699
695,"('True Crime (1995)', 'Mystery|Thriller')"0.768960300055
697,"('Feeling Minnesota (1996)', 'Drama|Romance')"1.10503464957
698,"('Delta of Venus (1994)', 'Drama')"0.492272030958
700,"('Angus (1995)', 'Comedy')"0.82680143485
702,"('Faces (1968)', 'Drama')"1.30082675783
703,"('Boys (1996)', 'Drama')"0.689127520687
704,"('Quest, The (1996)', 'Action|Adventure')"1.05924172256
705,"('Cosi (1996)', 'Comedy')"0.635103544777
707,"('Mulholland Falls (1996)', 'Crime|Film-Noir|Thriller')"0.84811501736
708,"('Truth About Cats & Dogs, The (1996)', 'Comedy|Romance')"0.757452982177
709,"('Oliver & Company (1988)', "Animation|Children's")"0.864136911078
710,"('Celtic Pride (1996)', 'Comedy')"1.00102166719
711,"('Flipper (1996)', "Adventure|Children's")"0.855238905411
714,"('Dead Man (1995)', 'Western')"0.820285532078
715,"('Horseman on the Roof, The (Hussard sur le toit, Le) (1995)', 'Drama')"0.830003910266
716,"('Switchblade Sisters (1975)', 'Crime')"1.05577006354
718,"('Visitors, The (Les Visiteurs) (1993)', 'Comedy|Sci-Fi')"1.25063148235
719,"('Multiplicity (1996)', 'Comedy')"0.80042300644
720,"('Wallace & Gromit: The Best of Aardman Animation (1996)', 'Animation')"0.682124885073
722,"('Haunted World of Edward D. Wood Jr., The (1995)', 'Documentary')"0.508414857867
724,"('Craft, The (1996)', 'Drama|Horror')"0.658444137005
725,"('Great White Hype, The (1996)', 'Comedy')"1.06009137112
728,"('Cold Comfort Farm (1995)', 'Comedy')"0.765510602756
731,"("Heaven's Prisoners (1996)", 'Mystery|Thriller')"0.670960248157
732,"('Original Gangstas (1996)', 'Crime')"1.16469558503
733,"('Rock, The (1996)', 'Action|Adventure|Thriller')"0.825535535445
735,"('Cemetery Man (Dellamorte Dellamore) (1994)', 'Comedy|Horror')"0.9688879025
736,"('Twister (1996)', 'Action|Adventure|Romance|Thriller')"0.844433698213
737,"('Barb Wire (1996)', 'Action|Sci-Fi')"1.03510624926
741,"('Ghost in the Shell (Kokaku kidotai) (1995)', 'Animation|Sci-Fi')"0.867366746527
742,"('Thinner (1996)', 'Horror|Thriller')"0.890836597047
743,"('Spy Hard (1996)', 'Comedy')"0.711981889125
745,"('Close Shave, A (1995)', 'Animation|Comedy|Thriller')"0.58615636377
746,"('Force of Evil (1948)', 'Film-Noir')"0.587221400171
747,"('Stupids, The (1996)', 'Comedy')"0.805314340321
748,"('Arrival, The (1996)', 'Action|Sci-Fi|Thriller')"0.758152802975
749,"('Man from Down Under, The (1943)', 'Drama')"0.424622694767
750,"('Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb (1963)', 'Sci-Fi|War')"0.690356211871
751,"('Careful (1992)', 'Comedy')"1.14405780662
753,"('Month by the Lake, A (1995)', 'Comedy|Drama')"0.756051473446
754,"('Gold Diggers: The Secret of Bear Mountain (1995)', "Adventure|Children's")"0.996360004185
755,"('Kim (1950)', "Children's|Drama")"0.407482980565
757,"('Ashes of Time (1994)', 'Drama')"0.572065595295
759,"('Maya Lin: A Strong Clear Vision (1994)', 'Documentary')"0.766836406189
760,"('Stalingrad (1993)', 'War')"1.07048205267
761,"('Phantom, The (1996)', 'Adventure')"0.833244773965
762,"('Striptease (1996)', 'Comedy|Crime')"0.784255590223
764,"('Heavy (1995)', 'Drama|Romance')"0.805616159881
765,"('Jack (1996)', 'Comedy|Drama')"0.997248616592
766,"('I Shot Andy Warhol (1996)', 'Drama')"0.904341210532
767,"('Grass Harp, The (1995)', 'Drama')"0.530548219612
769,"('Marlene Dietrich: Shadow and Light (1996)', 'Documentary')"0.751234968003
771,"('Vie est belle, La (Life is Rosey) (1987)', 'Comedy|Drama')"0.20069242253
775,"('Spirits of the Dead (Tre Passi nel Delirio) (1968)', 'Horror')"0.404103013985
778,"('Trainspotting (1996)', 'Drama')"0.770468279906
779,"("'Til There Was You (1997)", 'Drama|Romance')"0.792762658264
780,"('Independence Day (ID4) (1996)', 'Action|Sci-Fi|War')"0.986395026712
781,"('Stealing Beauty (1996)', 'Drama')"0.75660674474
782,"('Fan, The (1996)', 'Thriller')"1.00115156862
783,"('Hunchback of Notre Dame, The (1996)', "Animation|Children's|Musical")"0.797237555092
784,"('Cable Guy, The (1996)', 'Comedy')"0.942942910146
785,"('Kingpin (1996)', 'Comedy')"0.98286239454
786,"('Eraser (1996)', 'Action|Thriller')"0.875916615251
788,"('Nutty Professor, The (1996)', 'Comedy|Fantasy|Romance|Sci-Fi')"0.904850945591
791,"('Last Klezmer: Leopold Kozlowski, His Life and Music, The (1995)', 'Documentary')"0.428189043182
793,"("My Life and Times With Antonin Artaud (En compagnie d'Antonin Artaud) (1993)", 'Drama')"1.30144807046
798,"('Daylight (1996)', 'Action|Adventure|Thriller')"0.927045688606
799,"('Frighteners, The (1996)', 'Comedy|Horror')"0.949391301
800,"('Lone Star (1996)', 'Drama|Mystery')"0.686910089821
801,"('Harriet the Spy (1996)', "Children's|Comedy")"1.15705813213
802,"('Phenomenon (1996)', 'Drama|Romance')"0.77176031637
803,"('Walking and Talking (1996)', 'Romance')"0.609044439949
804,"("She's the One (1996)", 'Comedy|Romance')"0.810671085086
805,"('Time to Kill, A (1996)', 'Drama')"0.847542100336
806,"('American Buffalo (1996)', 'Drama')"0.508076173911
807,"('Rendezvous in Paris (Rendez-vous de Paris, Les) (1995)', 'Comedy|Romance')"0.931942903173
808,"('Alaska (1996)', "Adventure|Children's")"0.613893940973
809,"('Fled (1996)', 'Action|Adventure')"0.699535709962
810,"('Kazaam (1996)', "Children's|Comedy|Fantasy")"0.704092619379
811,"('Bewegte Mann, Der (1994)', 'Comedy')"1.05277912213
813,"('Larger Than Life (1996)', 'Comedy')"1.23524016948
818,"('Very Brady Sequel, A (1996)', 'Comedy')"1.05468249011
820,"('Death in the Garden (Mort en ce jardin, La) (1956)', 'Drama')"0.425133512989
821,"('Crude Oasis, The (1995)', 'Romance')"2.22647350533
823,"('Collectionneuse, La (1967)', 'Drama')"1.43171046337
824,"('Kaspar Hauser (1993)', 'Drama')"0.661527351276
828,"('Adventures of Pinocchio, The (1996)', "Adventure|Children's")"1.0091869936
829,"("Joe's Apartment (1996)", 'Comedy|Musical')"1.06767450746
830,"('First Wives Club, The (1996)', 'Comedy')"0.865530763865
831,"('Stonewall (1995)', 'Drama')"0.944961001634
832,"('Ransom (1996)', 'Drama|Thriller')"0.844233511169
833,"('High School High (1996)', 'Comedy')"0.690861048521
835,"('Foxfire (1996)', 'Drama')"0.819943890179
836,"('Chain Reaction (1996)', 'Action|Adventure|Thriller')"0.887818630657
837,"('Matilda (1996)', "Children's|Comedy")"0.882242444387
838,"('Emma (1996)', 'Comedy|Drama|Romance')"0.701874517845
839,"('Crow: City of Angels, The (1996)', 'Action|Thriller')"0.930514304914
840,"('House Arrest (1996)', 'Comedy')"1.42801162223
841,"('Eyes Without a Face (1959)', 'Horror')"1.18079637664
842,"('Tales from the Crypt Presents: Bordello of Blood (1996)', 'Horror')"1.09481358919
846,"('Flirt (1995)', 'Drama')"1.12418783229
847,"('Big Squeeze, The (1996)', 'Comedy|Drama')"1.94229758782
848,"('Spitfire Grill, The (1996)', 'Drama')"0.846631962276
849,"('Escape from L.A. (1996)', 'Action|Adventure|Sci-Fi|Thriller')"1.06290369581
850,"('Cyclo (1995)', 'Crime|Drama')"0.936999647977
851,"('Basquiat (1996)', 'Drama')"0.924375476023
852,"('Tin Cup (1996)', 'Comedy|Romance')"0.838595378022
853,"('Dingo (1992)', 'Drama')"1.06830013769
854,"('Ballad of Narayama, The (Narayama Bushiko) (1958)', 'Drama')"1.99657724017
858,"('Godfather, The (1972)', 'Action|Crime|Drama')"0.667891040868
861,"('Supercop (1992)', 'Action|Thriller')"0.890119304743
862,"('Manny & Lo (1996)', 'Drama')"0.420461598168
863,"('Celestial Clockwork (1994)', 'Comedy')"0.180007768021
864,"('Wife, The (1995)', 'Comedy|Drama')"0.568590020843
866,"('Bound (1996)', 'Crime|Drama|Romance|Thriller')"0.707378714324
867,"('Carpool (1996)', 'Comedy|Crime')"1.08721262312
869,"('Kansas City (1996)', 'Crime')"0.751615282819
870,"("Gone Fishin' (1997)", 'Comedy')"1.02389569209
874,"('Killer: A Journal of Murder (1995)', 'Crime|Drama')"2.56758800574
875,"('Nothing to Lose (1994)', 'Drama')"1.11991621475
876,"('Police Story 4: Project S (Chao ji ji hua) (1993)', 'Action')"2.35856941408
877,"('Girls Town (1996)', 'Drama')"1.24965317497
879,"('Relic, The (1997)', 'Horror')"0.805224747022
880,"('Island of Dr. Moreau, The (1996)', 'Sci-Fi|Thriller')"0.918305822895
881,"('First Kid (1996)', "Children's|Comedy")"1.23525978323
882,"('Trigger Effect, The (1996)', 'Drama|Thriller')"1.46755652669
885,"('Bogus (1996)', "Children's|Drama|Fantasy")"1.15740558712
886,"('Bulletproof (1996)', 'Action')"0.714355301134
888,"('Land Before Time III: The Time of the Great Giving (1995)', "Animation|Children's")"1.05526755782
891,"('Halloween: The Curse of Michael Myers (1995)', 'Horror|Thriller')"1.29001627023
892,"('Twelfth Night (1996)', 'Comedy|Drama|Romance')"0.684485050006
893,"('Mother Night (1996)', 'Drama')"0.771746891559
896,"('Wild Reeds (1994)', 'Drama')"1.04844825407
897,"('For Whom the Bell Tolls (1943)', 'Adventure|War')"0.745317514178
898,"('Philadelphia Story, The (1940)', 'Comedy|Romance')"0.655517310903
899,"("Singin' in the Rain (1952)", 'Musical|Romance')"0.761808814721
900,"('American in Paris, An (1951)', 'Musical|Romance')"0.869464052502
901,"('Funny Face (1957)', 'Comedy|Musical')"0.936038142066
902,"("Breakfast at Tiffany's (1961)", 'Drama|Romance')"0.745364845943
903,"('Vertigo (1958)', 'Mystery|Thriller')"0.698072690653
904,"('Rear Window (1954)', 'Mystery|Thriller')"0.638623828078
905,"('It Happened One Night (1934)', 'Comedy')"0.61890845958
906,"('Gaslight (1944)', 'Mystery|Thriller')"0.724749285917
907,"('Gay Divorcee, The (1934)', 'Comedy|Musical|Romance')"0.589841031994
908,"('North by Northwest (1959)', 'Drama|Thriller')"0.634322977552
909,"('Apartment, The (1960)', 'Comedy|Drama')"0.621643286752
910,"('Some Like It Hot (1959)', 'Comedy|Crime')"0.707503813413
911,"('Charade (1963)', 'Comedy|Mystery|Romance|Thriller')"0.711457608048
912,"('Casablanca (1942)', 'Drama|Romance|War')"0.697642209735
913,"('Maltese Falcon, The (1941)', 'Film-Noir|Mystery')"0.637606233869
914,"('My Fair Lady (1964)', 'Musical|Romance')"0.664908247443
915,"('Sabrina (1954)', 'Comedy|Romance')"0.689027783476
916,"('Roman Holiday (1953)', 'Comedy|Romance')"0.646492078318
917,"('Little Princess, The (1939)', "Children's|Drama")"0.868171705995
918,"('Meet Me in St. Louis (1944)', 'Musical')"0.677780140278
919,"('Wizard of Oz, The (1939)', "Adventure|Children's|Drama|Musical")"0.728562508306
920,"('Gone with the Wind (1939)', 'Drama|Romance|War')"0.864755208336
921,"('My Favorite Year (1982)', 'Comedy')"0.592413538467
922,"('Sunset Blvd. (a.k.a. Sunset Boulevard) (1950)', 'Film-Noir')"0.652709648676
923,"('Citizen Kane (1941)', 'Drama')"0.731565633857
924,"('2001: A Space Odyssey (1968)', 'Drama|Mystery|Sci-Fi|Thriller')"0.829856472926
925,"('Golden Earrings (1947)', 'Adventure|Romance')"0.405201267148
926,"('All About Eve (1950)', 'Drama')"0.68090515686
927,"('Women, The (1939)', 'Comedy')"0.790654372482
928,"('Rebecca (1940)', 'Romance|Thriller')"0.610890636577
929,"('Foreign Correspondent (1940)', 'Thriller')"0.79588319438
930,"('Notorious (1946)', 'Film-Noir|Romance|Thriller')"0.622423342512
931,"('Spellbound (1945)', 'Mystery|Romance|Thriller')"0.636861857633
932,"('Affair to Remember, An (1957)', 'Romance')"0.765405370772
933,"('To Catch a Thief (1955)', 'Comedy|Romance|Thriller')"0.633808038036
934,"('Father of the Bride (1950)', 'Comedy')"0.790255553628
935,"('Band Wagon, The (1953)', 'Comedy|Musical')"0.728664461349
936,"('Ninotchka (1939)', 'Comedy|Romance')"0.47036092648
937,"('Love in the Afternoon (1957)', 'Comedy|Romance')"0.958454896483
938,"('Gigi (1958)', 'Musical')"0.969352755447
939,"('Reluctant Debutante, The (1958)', 'Comedy|Drama')"2.14917495096
940,"('Adventures of Robin Hood, The (1938)', 'Action|Adventure')"0.668014701333
941,"('Mark of Zorro, The (1940)', 'Adventure')"0.620240129256
942,"('Laura (1944)', 'Crime|Film-Noir|Mystery')"0.782982619078
943,"('Ghost and Mrs. Muir, The (1947)', 'Drama|Romance')"0.668203084744
944,"('Lost Horizon (1937)', 'Drama')"0.862897011013
945,"('Top Hat (1935)', 'Comedy|Musical|Romance')"0.594011439625
946,"('To Be or Not to Be (1942)', 'Comedy|Drama|War')"0.679655230303
947,"('My Man Godfrey (1936)', 'Comedy')"0.48671366321
948,"('Giant (1956)', 'Drama')"0.634674281462
949,"('East of Eden (1955)', 'Drama')"0.643424685135
950,"('Thin Man, The (1934)', 'Mystery')"0.553377835973
951,"('His Girl Friday (1940)', 'Comedy')"0.716872517988
952,"('Around the World in 80 Days (1956)', 'Adventure|Comedy')"0.725352179783
953,"("It's a Wonderful Life (1946)", 'Drama')"0.716099851416
954,"('Mr. Smith Goes to Washington (1939)', 'Drama')"0.61821818775
955,"('Bringing Up Baby (1938)', 'Comedy')"0.662277591125
956,"('Penny Serenade (1941)', 'Drama|Romance')"0.554143373575
957,"('Scarlet Letter, The (1926)', 'Drama')"1.05853353241
958,"('Lady of Burlesque (1943)', 'Comedy|Mystery')"2.03356471629
959,"('Of Human Bondage (1934)', 'Drama')"0.866766544883
960,"('Angel on My Shoulder (1946)', 'Crime|Drama')"0.911280674388
961,"('Little Lord Fauntleroy (1936)', 'Drama')"1.0402146219
962,"('They Made Me a Criminal (1939)', 'Crime|Drama')"0.116944321146
963,"('Inspector General, The (1949)', 'Musical')"0.689271369548
964,"('Angel and the Badman (1947)', 'Western')"0.914200631066
965,"('39 Steps, The (1935)', 'Thriller')"0.606171440766
966,"('Walk in the Sun, A (1945)', 'Drama')"0.205025118456
967,"('Outlaw, The (1943)', 'Western')"0.969149734761
968,"('Night of the Living Dead (1968)', 'Horror|Sci-Fi')"0.95203470439
969,"('African Queen, The (1951)', 'Action|Adventure|Romance|War')"0.629664661409
970,"('Beat the Devil (1954)', 'Comedy|Drama')"1.1215890092
971,"('Cat on a Hot Tin Roof (1958)', 'Drama')"0.63088795728
973,"('Meet John Doe (1941)', 'Drama')"0.624454342698
974,"('Algiers (1938)', 'Drama|Romance')"0.658821425856
975,"('Something to Sing About (1937)', 'Comedy|Musical')"1.58331644694
976,"('Farewell to Arms, A (1932)', 'Romance|War')"1.20331186042
978,"('Blue Angel, The (Blaue Engel, Der) (1930)', 'Drama')"0.82943783405
981,"('Dangerous Ground (1997)', 'Drama')"1.57050861341
982,"('Picnic (1955)', 'Drama')"0.919378268148
984,"('Pompatus of Love, The (1996)', 'Comedy|Drama')"0.730406445942
985,"('Small Wonders (1996)', 'Documentary')"1.84307908316
986,"('Fly Away Home (1996)', "Adventure|Children's")"0.828014342868
987,"('Bliss (1997)', 'Drama|Romance')"1.39353249039
988,"('Grace of My Heart (1996)', 'Comedy|Drama')"0.797467118895
990,"('Maximum Risk (1996)', 'Action|Adventure|Thriller')"0.965559738631
991,"('Michael Collins (1996)', 'Drama|War')"0.852378118368
992,"("Rich Man's Wife, The (1996)", 'Thriller')"0.591471132864
993,"('Infinity (1996)', 'Drama')"0.277143607714
994,"('Big Night (1996)', 'Drama')"0.567903869005
996,"('Last Man Standing (1996)', 'Action|Drama|Western')"0.795982713569
997,"('Caught (1996)', 'Drama|Thriller')"0.989330910154
998,"('Set It Off (1996)', 'Action|Crime')"0.877525679871
999,"('2 Days in the Valley (1996)', 'Crime')"0.836467498714
1000,"('Curdled (1996)', 'Crime')"2.34838378003
1002,"("Ed's Next Move (1996)", 'Comedy')"0.503923739829
1003,"('Extreme Measures (1996)', 'Drama|Thriller')"0.801088826591
1004,"('Glimmer Man, The (1996)', 'Action|Thriller')"1.17930027854
1005,"('D3: The Mighty Ducks (1996)', "Children's|Comedy")"1.07865478519
1006,"('Chamber, The (1996)', 'Drama')"0.763956283704
1007,"('Apple Dumpling Gang, The (1975)', "Children's|Comedy|Western")"0.530549774794
1008,"('Davy Crockett, King of the Wild Frontier (1955)', 'Western')"0.82144297639
1009,"('Escape to Witch Mountain (1975)', "Adventure|Children's|Fantasy")"0.772756300033
1010,"('Love Bug, The (1969)', "Children's|Comedy")"0.857929217254
1011,"('Herbie Rides Again (1974)', "Adventure|Children's|Comedy")"0.578145150068
1012,"('Old Yeller (1957)', "Children's|Drama")"0.73623904097
1013,"('Parent Trap, The (1961)', "Children's|Drama")"0.905635118521
1014,"('Pollyanna (1960)', "Children's|Comedy|Drama")"0.992073723141
1015,"('Homeward Bound: The Incredible Journey (1993)', "Adventure|Children's")"0.792621101626
1016,"('Shaggy Dog, The (1959)', "Children's|Comedy")"0.800975596473
1017,"('Swiss Family Robinson (1960)', "Adventure|Children's")"0.785989543776
1018,"('That Darn Cat! (1965)', "Children's|Comedy|Mystery")"0.743784054147
1019,"('20,000 Leagues Under the Sea (1954)', "Adventure|Children's|Fantasy|Sci-Fi")"0.750445417023
1020,"('Cool Runnings (1993)', 'Comedy')"0.855942309482
1021,"('Angels in the Outfield (1994)', "Children's|Comedy")"1.00269057478
1022,"('Cinderella (1950)', "Animation|Children's|Musical")"0.775796562623
1023,"('Winnie the Pooh and the Blustery Day (1968)', "Animation|Children's")"0.756670267835
1024,"('Three Caballeros, The (1945)', "Animation|Children's|Musical")"0.794486321484
1025,"('Sword in the Stone, The (1963)', "Animation|Children's")"0.687234660849
1026,"('So Dear to My Heart (1949)', "Children's|Drama")"1.38736943247
1027,"('Robin Hood: Prince of Thieves (1991)', 'Drama')"0.800682521775
1028,"('Mary Poppins (1964)', "Children's|Comedy|Musical")"0.756361223916
1029,"('Dumbo (1941)', "Animation|Children's|Musical")"0.733908621819
1030,"("Pete's Dragon (1977)", "Adventure|Animation|Children's|Musical")"0.842637697258
1031,"('Bedknobs and Broomsticks (1971)', "Adventure|Children's|Musical")"0.790088060077
1032,"('Alice in Wonderland (1951)', "Animation|Children's|Musical")"0.74875157732
1033,"('Fox and the Hound, The (1981)', "Animation|Children's")"0.665122863022
1034,"('Freeway (1996)', 'Crime')"0.933769210468
1035,"('Sound of Music, The (1965)', 'Musical')"0.858821811566
1036,"('Die Hard (1988)', 'Action|Thriller')"0.650508835856
1037,"('Lawnmower Man, The (1992)', 'Action|Sci-Fi|Thriller')"0.863923766708
1038,"('Unhook the Stars (1996)', 'Drama')"0.637740036391
1041,"('Secrets & Lies (1996)', 'Drama')"0.706566865553
1042,"('That Thing You Do! (1996)', 'Comedy')"0.825664755608
1043,"('To Gillian on Her 37th Birthday (1996)', 'Drama|Romance')"0.852011441256
1044,"('Surviving Picasso (1996)', 'Drama')"0.748083767916
1046,"('Beautiful Thing (1996)', 'Drama|Romance')"0.993086949589
1047,"('Long Kiss Goodnight, The (1996)', 'Action|Thriller')"0.873778888853
1049,"('Ghost and the Darkness, The (1996)', 'Action|Adventure')"0.91683872781
1050,"('Looking for Richard (1996)', 'Documentary|Drama')"0.935812173245
1051,"('Trees Lounge (1996)', 'Drama')"0.834909802998
1053,"('Normal Life (1996)', 'Crime|Drama')"1.05658046397
1054,"('Get on the Bus (1996)', 'Drama')"1.20261473511
1055,"('Shadow Conspiracy (1997)', 'Thriller')"1.67794417261
1056,"('Jude (1996)', 'Drama')"0.713698140874
1057,"('Everyone Says I Love You (1996)', 'Comedy|Musical|Romance')"0.715409498294
1058,"('Bitter Sugar (Azucar Amargo) (1996)', 'Drama')"0.191936107457
1059,"("William Shakespeare's Romeo and Juliet (1996)", 'Drama|Romance')"1.00305846738
1060,"('Swingers (1996)', 'Comedy|Drama')"0.752638412121
1061,"('Sleepers (1996)', 'Crime|Drama')"0.797752826873
1063,"('Johns (1996)', 'Drama')"1.65805872221
1064,"('Aladdin and the King of Thieves (1996)', "Animation|Children's|Comedy")"0.877863464118
1066,"('Shall We Dance? (1937)', 'Comedy|Musical|Romance')"0.617475940938
1067,"('Damsel in Distress, A (1937)', 'Comedy|Musical|Romance')"0.614489621752
1068,"('Crossfire (1947)', 'Crime|Film-Noir')"0.496717430304
1069,"('Murder, My Sweet (1944)', 'Film-Noir|Thriller')"0.954186944568
1070,"('Macao (1952)', 'Adventure')"0.58029689143
1071,"('For the Moment (1994)', 'Romance|War')"0.997652523745
1073,"('Willy Wonka and the Chocolate Factory (1971)', "Adventure|Children's|Comedy|Fantasy")"0.78853832486
1076,"('Innocents, The (1961)', 'Thriller')"1.0130500092
1077,"('Sleeper (1973)', 'Comedy|Sci-Fi')"0.596001397875
1078,"('Bananas (1971)', 'Comedy|War')"0.704811622647
1079,"('Fish Called Wanda, A (1988)', 'Comedy')"0.731563725467
1080,"("Monty Python's Life of Brian (1979)", 'Comedy')"0.756604120522
1081,"('Victor/Victoria (1982)', 'Comedy|Musical')"0.878517711738
1082,"('Candidate, The (1972)', 'Drama')"0.632021834474
1083,"('Great Race, The (1965)', 'Comedy|Musical')"0.7666218479
1084,"('Bonnie and Clyde (1967)', 'Crime|Drama')"0.619049975596
1085,"('Old Man and the Sea, The (1958)', 'Adventure|Drama')"0.853318081446
1086,"('Dial M for Murder (1954)', 'Mystery|Thriller')"0.631148058979
1087,"('Madame Butterfly (1995)', 'Musical')"0.193265973725
1088,"('Dirty Dancing (1987)', 'Musical|Romance')"0.982010883481
1089,"('Reservoir Dogs (1992)', 'Crime|Thriller')"0.83190617444
1090,"('Platoon (1986)', 'Drama|War')"0.600256416559
1091,"("Weekend at Bernie's (1989)", 'Comedy')"0.768247452674
1092,"('Basic Instinct (1992)', 'Mystery|Thriller')"0.749092792234
1093,"('Doors, The (1991)', 'Drama|Musical')"0.808041626134
1094,"('Crying Game, The (1992)', 'Drama|Romance|War')"0.772618133043
1095,"('Glengarry Glen Ross (1992)', 'Drama')"0.923338551499
1096,"("Sophie's Choice (1982)", 'Drama')"0.716955751303
1097,"('E.T. the Extra-Terrestrial (1982)', "Children's|Drama|Fantasy|Sci-Fi")"0.71746711392
1099,"('Christmas Carol, A (1938)', 'Drama')"0.613004945731
1100,"('Days of Thunder (1990)', 'Action|Romance')"0.846497100022
1101,"('Top Gun (1986)', 'Action|Romance')"0.895749396171
1102,"('American Strays (1996)', 'Action')"0.0211358049174
1103,"('Rebel Without a Cause (1955)', 'Drama')"0.673460508396
1104,"('Streetcar Named Desire, A (1951)', 'Drama')"0.750543658379
1105,"('Children of the Corn IV: The Gathering (1996)', 'Horror')"1.19631025963
1111,"("Microcosmos (Microcosmos: Le peuple de l'herbe) (1996)", 'Documentary')"0.608926528506
1112,"('Palookaville (1996)', 'Action|Drama')"0.8124705193
1113,"('Associate, The (1996)', 'Comedy')"1.02889817168
1114,"('Funeral, The (1996)', 'Drama')"1.13340156548
1116,"('Single Girl, A (La Fille Seule) (1995)', 'Drama')"0.499674958247
1117,"('Eighth Day, The (Le Huiti\xc3\x83\xc5\xa1me jour ) (1996)', 'Drama')"1.00321357907
1119,"('Drunks (1997)', 'Drama')"0.918540955416
1120,"('People vs. Larry Flynt, The (1996)', 'Drama')"0.63400748346
1121,"('Glory Daze (1996)', 'Drama')"0.380894397781
1123,"('Perfect Candidate, A (1996)', 'Documentary')"1.23071108002
1124,"('On Golden Pond (1981)', 'Drama')"0.852506570205
1125,"('Return of the Pink Panther, The (1974)', 'Comedy')"0.655379530168
1126,"('Drop Dead Fred (1991)', 'Comedy|Fantasy')"1.0181952722
1127,"('Abyss, The (1989)', 'Action|Adventure|Sci-Fi|Thriller')"0.786330256894
1128,"('Fog, The (1980)', 'Horror')"0.919918742375
1129,"('Escape from New York (1981)', 'Action|Adventure|Sci-Fi|Thriller')"0.886388485853
1130,"('Howling, The (1980)', 'Horror')"0.893242544559
1131,"('Jean de Florette (1986)', 'Drama')"0.777945922098
1132,"('Manon of the Spring (Manon des sources) (1986)', 'Drama')"0.689129087765
1133,"('Talking About Sex (1994)', 'Comedy|Drama')"2.24987517333
1135,"('Private Benjamin (1980)', 'Comedy')"0.721969970756
1136,"('Monty Python and the Holy Grail (1974)', 'Comedy')"0.685149790992
1144,"('Line King: Al Hirschfeld, The (1996)', 'Documentary')"0.85469371389
1145,"('Snowriders (1996)', 'Documentary')"0.17233822218
1147,"('When We Were Kings (1996)', 'Documentary')"0.770642071354
1148,"('Wrong Trousers, The (1993)', 'Animation|Comedy')"0.603791393377
1150,"('Return of Martin Guerre, The (Retour de Martin Guerre, Le) (1982)', 'Drama')"0.596542876047
1151,"('Faust (1994)', 'Animation|Comedy|Thriller')"1.50054296884
1152,"('He Walked by Night (1948)', 'Crime|Film-Noir|Thriller')"0.951197431306
1153,"('Raw Deal (1948)', 'Film-Noir')"1.86664183265
1154,"('T-Men (1947)', 'Film-Noir')"0.749955510008
1160,"('Six of a Kind (1934)', 'Comedy')"1.00092004373
1161,"('Tin Drum, The (Blechtrommel, Die) (1979)', 'Drama')"0.561082363831
1162,"('Ruling Class, The (1972)', 'Comedy')"0.79481515741
1164,"('Two or Three Things I Know About Her (1966)', 'Drama')"0.24320654645
1167,"('Dear God (1996)', 'Comedy')"0.865583048328
1169,"('American Dream (1990)', 'Documentary')"0.904972742403
1170,"('Best of the Best 3: No Turning Back (1995)', 'Action')"0.287366009517
1171,"('Bob Roberts (1992)', 'Comedy')"0.8319278364
1172,"('Cinema Paradiso (1988)', 'Comedy|Drama|Romance')"0.710033215047
1173,"('Cook the Thief His Wife & Her Lover, The (1989)', 'Drama')"1.08107759885
1175,"('Delicatessen (1991)', 'Comedy|Sci-Fi')"0.845447294153
1176,"('Double Life of Veronique, The (La Double Vie de V\xc3\x83\xc2\xa9ronique) (1991)', 'Drama')"0.963460943739
1177,"('Enchanted April (1991)', 'Drama')"0.714344416929
1178,"('Paths of Glory (1957)', 'Drama|War')"0.640489090427
1179,"('Grifters, The (1990)', 'Crime|Drama|Film-Noir')"0.795720175468
1180,"('Hear My Song (1991)', 'Comedy')"0.897227790451
1183,"('English Patient, The (1996)', 'Drama|Romance|War')"1.0201784411
1184,"('Mediterraneo (1991)', 'Comedy|War')"0.691164406052
1185,"('My Left Foot (1989)', 'Drama')"0.581544467273
1186,"('Sex, Lies, and Videotape (1989)', 'Drama')"0.834393722453
1187,"('Passion Fish (1992)', 'Drama')"0.678111326594