Introduction

This note provides key examples to the book https://bookdown.org/speegled/foundations-of-statistics/RData.html#reading-data-from-files

1 Data in R

Section 1.1 Arithmetic and Variable Assignment

x <- 4*2 + 6/3 - 7  # Assign the result of right side to variable x

y <- "Hello World!"

z <- TRUE

w <- NA  # Assign a missing value to w

p <- NULL  # Assign none to w

All of the above variables are called objects.

How can we name an object? An object in general starts with a letter (a-z or A-Z) or an underscore character "_“, contains no space or any special symbol (such as $ and @), but can contain digits (0-9). A multi-word variable name can be created such as with”familyIncome“,”family.income“, or”family_income".

Section 1.2 Vectors

p <- c(5, 8, 12, 55)

q <- c("cat", "dog", "snake")

r <- c(FALSE, TRUE, TRUE, FALSE, FALSE)

Making patterned vectors:

rep(2, 5) # Repeat 2 five times
## [1] 2 2 2 2 2
rep(c(2, 4), 5) # Repeat the vector c(2, 4) five times
##  [1] 2 4 2 4 2 4 2 4 2 4
rep(c(1, 2, 3), c(3, 4, 5)) # Repeat each a certain number of times
##  [1] 1 1 1 2 2 2 2 3 3 3 3 3
rep(c(1, 2, 3), each = 5) # each repeats 5 times
##  [1] 1 1 1 1 1 2 2 2 2 2 3 3 3 3 3

Vectorization: perform element-wise operations on vectors, matrices, and arrays. This allows for faster execution compared to using explicit loops.

c(3,6,9,10) + 5
## [1]  8 11 14 15
c(3,6,9,10) / 5
## [1] 0.6 1.2 1.8 2.0

Section 1.3 Indexing Vectors

x = c(4, 8, 2, 0, 0, 5, 7)

x[5]
## [1] 0
x[c(2, 6)]
## [1] 8 5
x[c(6, 2)]
## [1] 5 8
x[x > 5]
## [1] 8 7
x[x != 0]
## [1] 4 8 2 5 7
x[-3]
## [1] 4 8 0 0 5 7

Section 1.4 Data Types

Data can be stored as numeric/double, integer, character, factor and logical data types, among others.

x < 3.2
## [1] FALSE FALSE  TRUE  TRUE  TRUE FALSE FALSE
y <- 100
z <- "Tom"

p <- TRUE

q <- NA

r <- NULL

Age_group <- c("0-10", "11-20", "0-10", "51-60", "0-10", "21-30", "41-50", "51-60", "61+", "21-30")

Age_group2 <- factor(Age_group)

typeof(x)
## [1] "double"
typeof(y)
## [1] "double"
typeof(z)
## [1] "character"
typeof(p)
## [1] "logical"
typeof(q)
## [1] "logical"
typeof(r)
## [1] "NULL"
typeof(Age_group)
## [1] "character"
typeof(Age_group2)
## [1] "integer"

Section 1.5 Data Frame

head(mtcars)
##                    mpg cyl disp  hp drat    wt  qsec vs am gear carb
## Mazda RX4         21.0   6  160 110 3.90 2.620 16.46  0  1    4    4
## Mazda RX4 Wag     21.0   6  160 110 3.90 2.875 17.02  0  1    4    4
## Datsun 710        22.8   4  108  93 3.85 2.320 18.61  1  1    4    1
## Hornet 4 Drive    21.4   6  258 110 3.08 3.215 19.44  1  0    3    1
## Hornet Sportabout 18.7   8  360 175 3.15 3.440 17.02  0  0    3    2
## Valiant           18.1   6  225 105 2.76 3.460 20.22  1  0    3    1
names(mtcars)
##  [1] "mpg"  "cyl"  "disp" "hp"   "drat" "wt"   "qsec" "vs"   "am"   "gear"
## [11] "carb"
colnames(mtcars)
##  [1] "mpg"  "cyl"  "disp" "hp"   "drat" "wt"   "qsec" "vs"   "am"   "gear"
## [11] "carb"
rownames(mtcars)
##  [1] "Mazda RX4"           "Mazda RX4 Wag"       "Datsun 710"         
##  [4] "Hornet 4 Drive"      "Hornet Sportabout"   "Valiant"            
##  [7] "Duster 360"          "Merc 240D"           "Merc 230"           
## [10] "Merc 280"            "Merc 280C"           "Merc 450SE"         
## [13] "Merc 450SL"          "Merc 450SLC"         "Cadillac Fleetwood" 
## [16] "Lincoln Continental" "Chrysler Imperial"   "Fiat 128"           
## [19] "Honda Civic"         "Toyota Corolla"      "Toyota Corona"      
## [22] "Dodge Challenger"    "AMC Javelin"         "Camaro Z28"         
## [25] "Pontiac Firebird"    "Fiat X1-9"           "Porsche 914-2"      
## [28] "Lotus Europa"        "Ford Pantera L"      "Ferrari Dino"       
## [31] "Maserati Bora"       "Volvo 142E"
dim(mtcars)
## [1] 32 11
str(mtcars)
## 'data.frame':    32 obs. of  11 variables:
##  $ mpg : num  21 21 22.8 21.4 18.7 18.1 14.3 24.4 22.8 19.2 ...
##  $ cyl : num  6 6 4 6 8 6 8 4 4 6 ...
##  $ disp: num  160 160 108 258 360 ...
##  $ hp  : num  110 110 93 110 175 105 245 62 95 123 ...
##  $ drat: num  3.9 3.9 3.85 3.08 3.15 2.76 3.21 3.69 3.92 3.92 ...
##  $ wt  : num  2.62 2.88 2.32 3.21 3.44 ...
##  $ qsec: num  16.5 17 18.6 19.4 17 ...
##  $ vs  : num  0 0 1 1 0 1 0 1 1 1 ...
##  $ am  : num  1 1 1 0 0 0 0 0 0 0 ...
##  $ gear: num  4 4 4 3 3 3 3 4 4 4 ...
##  $ carb: num  4 4 1 1 2 1 4 2 2 4 ...
summary(mtcars)
##       mpg             cyl             disp             hp       
##  Min.   :10.40   Min.   :4.000   Min.   : 71.1   Min.   : 52.0  
##  1st Qu.:15.43   1st Qu.:4.000   1st Qu.:120.8   1st Qu.: 96.5  
##  Median :19.20   Median :6.000   Median :196.3   Median :123.0  
##  Mean   :20.09   Mean   :6.188   Mean   :230.7   Mean   :146.7  
##  3rd Qu.:22.80   3rd Qu.:8.000   3rd Qu.:326.0   3rd Qu.:180.0  
##  Max.   :33.90   Max.   :8.000   Max.   :472.0   Max.   :335.0  
##       drat             wt             qsec             vs        
##  Min.   :2.760   Min.   :1.513   Min.   :14.50   Min.   :0.0000  
##  1st Qu.:3.080   1st Qu.:2.581   1st Qu.:16.89   1st Qu.:0.0000  
##  Median :3.695   Median :3.325   Median :17.71   Median :0.0000  
##  Mean   :3.597   Mean   :3.217   Mean   :17.85   Mean   :0.4375  
##  3rd Qu.:3.920   3rd Qu.:3.610   3rd Qu.:18.90   3rd Qu.:1.0000  
##  Max.   :4.930   Max.   :5.424   Max.   :22.90   Max.   :1.0000  
##        am              gear            carb      
##  Min.   :0.0000   Min.   :3.000   Min.   :1.000  
##  1st Qu.:0.0000   1st Qu.:3.000   1st Qu.:2.000  
##  Median :0.0000   Median :4.000   Median :2.000  
##  Mean   :0.4062   Mean   :3.688   Mean   :2.812  
##  3rd Qu.:1.0000   3rd Qu.:4.000   3rd Qu.:4.000  
##  Max.   :1.0000   Max.   :5.000   Max.   :8.000

Choosing rows:

mtcars[mtcars$carb == 2, ]
##                    mpg cyl  disp  hp drat    wt  qsec vs am gear carb
## Hornet Sportabout 18.7   8 360.0 175 3.15 3.440 17.02  0  0    3    2
## Merc 240D         24.4   4 146.7  62 3.69 3.190 20.00  1  0    4    2
## Merc 230          22.8   4 140.8  95 3.92 3.150 22.90  1  0    4    2
## Honda Civic       30.4   4  75.7  52 4.93 1.615 18.52  1  1    4    2
## Dodge Challenger  15.5   8 318.0 150 2.76 3.520 16.87  0  0    3    2
## AMC Javelin       15.2   8 304.0 150 3.15 3.435 17.30  0  0    3    2
## Pontiac Firebird  19.2   8 400.0 175 3.08 3.845 17.05  0  0    3    2
## Porsche 914-2     26.0   4 120.3  91 4.43 2.140 16.70  0  1    5    2
## Lotus Europa      30.4   4  95.1 113 3.77 1.513 16.90  1  1    5    2
## Volvo 142E        21.4   4 121.0 109 4.11 2.780 18.60  1  1    4    2
mtcars[mtcars$carb == 2 & mtcars$wt >= 3.2, ] # The & means that both conditions should meet
##                    mpg cyl disp  hp drat    wt  qsec vs am gear carb
## Hornet Sportabout 18.7   8  360 175 3.15 3.440 17.02  0  0    3    2
## Dodge Challenger  15.5   8  318 150 2.76 3.520 16.87  0  0    3    2
## AMC Javelin       15.2   8  304 150 3.15 3.435 17.30  0  0    3    2
## Pontiac Firebird  19.2   8  400 175 3.08 3.845 17.05  0  0    3    2

Selecting columns:

mtcars[, c("hp", "am", "disp")]
##                      hp am  disp
## Mazda RX4           110  1 160.0
## Mazda RX4 Wag       110  1 160.0
## Datsun 710           93  1 108.0
## Hornet 4 Drive      110  0 258.0
## Hornet Sportabout   175  0 360.0
## Valiant             105  0 225.0
## Duster 360          245  0 360.0
## Merc 240D            62  0 146.7
## Merc 230             95  0 140.8
## Merc 280            123  0 167.6
## Merc 280C           123  0 167.6
## Merc 450SE          180  0 275.8
## Merc 450SL          180  0 275.8
## Merc 450SLC         180  0 275.8
## Cadillac Fleetwood  205  0 472.0
## Lincoln Continental 215  0 460.0
## Chrysler Imperial   230  0 440.0
## Fiat 128             66  1  78.7
## Honda Civic          52  1  75.7
## Toyota Corolla       65  1  71.1
## Toyota Corona        97  0 120.1
## Dodge Challenger    150  0 318.0
## AMC Javelin         150  0 304.0
## Camaro Z28          245  0 350.0
## Pontiac Firebird    175  0 400.0
## Fiat X1-9            66  1  79.0
## Porsche 914-2        91  1 120.3
## Lotus Europa        113  1  95.1
## Ford Pantera L      264  1 351.0
## Ferrari Dino        175  1 145.0
## Maserati Bora       335  1 301.0
## Volvo 142E          109  1 121.0

Section 1.6 Reading Data from Files

Way 1: Read data stored on local computer

D = read.csv(file = "AlocalFile.csv")
D

Way 2: Read data remotely

D = read.csv(file = "https://web.stcloudstate.edu/szhang/Attrition.csv")
D
##      Age Attrition             Department DistanceFromHome Education
## 1     41       Yes                  Sales                1         2
## 2     49        No Research & Development                8         1
## 3     37       Yes Research & Development                2         2
## 4     33        No Research & Development                3         4
## 5     27        No Research & Development                2         1
## 6     32        No Research & Development                2         2
## 7     59        No Research & Development                3         3
## 8     30        No Research & Development               24         1
## 9     38        No Research & Development               23         3
## 10    36        No Research & Development               27         3
## 11    35        No Research & Development               16         3
## 12    29        No Research & Development               15         2
## 13    31        No Research & Development               26         1
## 14    34        No Research & Development               19         2
## 15    28       Yes Research & Development               24         3
## 16    29        No Research & Development               21         4
## 17    32        No Research & Development                5         2
## 18    22        No Research & Development               16         2
## 19    53        No                  Sales                2         4
## 20    38        No Research & Development                2         3
## 21    24        No Research & Development               11         2
## 22    36       Yes                  Sales                9         4
## 23    34        No Research & Development                7         4
## 24    21        No Research & Development               15         2
## 25    34       Yes Research & Development                6         1
## 26    53        No Research & Development                5         3
## 27    32       Yes Research & Development               16         1
## 28    42        No                  Sales                8         4
## 29    44        No Research & Development                7         4
## 30    46        No                  Sales                2         4
## 31    33        No Research & Development                2         3
## 32    44        No Research & Development               10         4
## 33    30        No Research & Development                9         2
## 34    39       Yes                  Sales                5         3
## 35    24       Yes Research & Development                1         3
## 36    43        No Research & Development                2         2
## 37    50       Yes                  Sales                3         2
## 38    35        No                  Sales                2         3
## 39    36        No Research & Development                5         4
## 40    33        No                  Sales                1         3
## 41    35        No Research & Development                4         2
## 42    27        No Research & Development                2         4
## 43    26       Yes Research & Development               25         3
## 44    27        No                  Sales                8         3
## 45    30        No Research & Development                1         2
## 46    41       Yes Research & Development               12         3
## 47    34        No                  Sales               23         4
## 48    37        No Research & Development               19         2
## 49    46        No                  Sales                5         4
## 50    35        No Research & Development                8         1
## 51    48       Yes Research & Development                1         2
## 52    28       Yes Research & Development                5         4
## 53    44        No                  Sales                1         5
## 54    35        No Research & Development               11         2
## 55    26        No                  Sales               23         3
## 56    33        No Research & Development                1         2
## 57    35        No                  Sales               18         5
## 58    35        No Research & Development               23         4
## 59    31        No Research & Development                7         4
## 60    37        No Research & Development                1         4
## 61    32        No Research & Development                1         3
## 62    38        No Research & Development               29         5
## 63    50        No Research & Development                7         2
## 64    59        No                  Sales               25         3
## 65    36        No Research & Development                8         3
## 66    55        No Research & Development                8         3
## 67    36        No Research & Development               11         3
## 68    45        No Research & Development                7         3
## 69    35        No Research & Development                1         3
## 70    36       Yes Research & Development                9         3
## 71    59        No                  Sales                1         1
## 72    29        No Research & Development                2         3
## 73    31        No Research & Development                1         4
## 74    32        No Research & Development                1         3
## 75    36        No Research & Development                6         3
## 76    31        No Research & Development                8         4
## 77    35        No                  Sales                1         4
## 78    45        No Research & Development                6         4
## 79    37        No Research & Development                7         4
## 80    46        No        Human Resources                5         2
## 81    30        No Research & Development                1         1
## 82    35        No Research & Development                1         3
## 83    55        No                  Sales                1         2
## 84    38        No Research & Development                6         3
## 85    34        No Research & Development                1         2
## 86    56        No Research & Development                7         3
## 87    23        No                  Sales                2         1
## 88    51        No Research & Development                9         4
## 89    30        No Research & Development                2         3
## 90    46       Yes                  Sales                9         2
## 91    40        No Research & Development                1         4
## 92    51        No                  Sales               21         4
## 93    30        No                  Sales                4         2
## 94    46        No Research & Development                1         3
## 95    32        No                  Sales                6         4
## 96    54        No Research & Development                2         4
## 97    24        No                  Sales                3         2
## 98    28        No                  Sales                4         3
## 99    58        No                  Sales               10         4
## 100   44        No Research & Development               23         3
## 101   37       Yes        Human Resources                6         4
## 102   32        No Research & Development                1         1
## 103   20       Yes Research & Development                6         3
## 104   34        No Research & Development                6         4
## 105   37        No Research & Development                2         2
## 106   59        No        Human Resources                2         4
## 107   50        No Research & Development                1         3
## 108   25       Yes                  Sales                5         3
## 109   25        No Research & Development                7         1
## 110   22        No Research & Development               15         3
## 111   51        No Research & Development                1         4
## 112   34       Yes Research & Development                7         3
## 113   54        No        Human Resources               26         3
## 114   24        No Research & Development               18         1
## 115   34        No Research & Development                6         4
## 116   37        No                  Sales                3         3
## 117   34        No Research & Development                5         3
## 118   36        No                  Sales               11         2
## 119   36        No Research & Development                3         2
## 120   43        No                  Sales               26         2
## 121   30        No Research & Development               23         3
## 122   33        No                  Sales               22         2
## 123   56       Yes Research & Development               14         4
## 124   51        No Research & Development                6         3
## 125   31       Yes                  Sales                6         4
## 126   26        No Research & Development                6         3
## 127   58       Yes Research & Development               23         4
## 128   19       Yes                  Sales               22         1
## 129   22        No Research & Development                2         1
## 130   49        No Research & Development               20         4
## 131   43        No Research & Development               28         3
## 132   50        No                  Sales               12         3
## 133   31       Yes                  Sales               20         3
## 134   41        No                  Sales                9         1
## 135   26        No        Human Resources               25         1
## 136   36        No Research & Development                6         2
## 137   51       Yes Research & Development                8         4
## 138   39        No                  Sales                4         4
## 139   25        No                  Sales               28         3
## 140   30        No        Human Resources                9         3
## 141   32       Yes Research & Development                9         3
## 142   45        No Research & Development               29         3
## 143   38        No Research & Development                3         5
## 144   30        No Research & Development               18         3
## 145   32        No                  Sales                9         2
## 146   30        No Research & Development                5         3
## 147   30        No Research & Development                2         1
## 148   41        No Research & Development               10         3
## 149   41        No Research & Development                9         4
## 150   19        No Research & Development                3         1
## 151   40        No Research & Development               26         3
## 152   35        No                  Sales                1         5
## 153   53        No                  Sales                6         2
## 154   45        No Research & Development                9         3
## 155   32        No                  Sales                8         3
## 156   29        No Research & Development                1         1
## 157   51        No Research & Development                7         4
## 158   58        No Research & Development                9         3
## 159   40        No                  Sales                4         4
## 160   34        No                  Sales                2         4
## 161   22        No Research & Development               19         1
## 162   27        No Research & Development                9         3
## 163   28        No Research & Development               21         3
## 164   57        No Research & Development               24         2
## 165   27        No Research & Development                3         3
## 166   50        No Research & Development               11         3
## 167   41        No Research & Development               14         3
## 168   30        No                  Sales                5         3
## 169   38        No                  Sales                1         4
## 170   32        No Research & Development                6         5
## 171   27        No Research & Development               17         3
## 172   19       Yes                  Sales                1         1
## 173   36        No Research & Development                3         2
## 174   30        No Research & Development                9         3
## 175   45        No                  Sales                4         2
## 176   56        No Research & Development                8         3
## 177   33        No Research & Development                2         3
## 178   19       Yes Research & Development                2         3
## 179   46        No                  Sales                1         2
## 180   38        No Research & Development                9         2
## 181   31        No Research & Development               12         1
## 182   34        No Research & Development               27         2
## 183   41       Yes                  Sales               20         2
## 184   50        No Research & Development                1         3
## 185   53        No Research & Development               13         2
## 186   33        No Research & Development               14         3
## 187   40        No Research & Development                4         1
## 188   55        No Research & Development               14         4
## 189   34        No Research & Development                2         1
## 190   51        No Research & Development                3         3
## 191   52        No Research & Development                1         4
## 192   27        No Research & Development                9         3
## 193   35       Yes Research & Development               23         2
## 194   43        No Research & Development                7         3
## 195   45        No Research & Development                2         2
## 196   37        No Research & Development               21         3
## 197   35        No Research & Development                2         3
## 198   42        No Research & Development               21         2
## 199   38        No Research & Development                2         4
## 200   38        No Research & Development               29         3
## 201   27        No Research & Development                1         1
## 202   49        No Research & Development               18         4
## 203   34        No Research & Development               10         4
## 204   40        No Research & Development               19         2
## 205   38       Yes Research & Development               29         1
## 206   29       Yes                  Sales               27         3
## 207   22        No Research & Development                5         3
## 208   36        No Research & Development               18         1
## 209   40        No Research & Development                9         5
## 210   46        No Research & Development                1         4
## 211   32       Yes                  Sales                4         4
## 212   30        No Research & Development                1         1
## 213   27        No                  Sales               20         3
## 214   51        No Research & Development                8         4
## 215   30       Yes Research & Development                3         3
## 216   41        No                  Sales                6         3
## 217   30       Yes                  Sales               26         4
## 218   29       Yes Research & Development                1         3
## 219   45        No                  Sales                6         3
## 220   54        No                  Sales                3         3
## 221   36        No Research & Development                5         2
## 222   33        No Research & Development                4         4
## 223   37        No Research & Development               11         3
## 224   38        No                  Sales                3         3
## 225   31        No Research & Development                1         4
## 226   59        No Research & Development                3         3
## 227   37        No                  Sales                4         4
## 228   29        No                  Sales                1         1
## 229   35        No                  Sales                1         3
## 230   29       Yes Research & Development               18         1
## 231   52        No Research & Development                2         3
## 232   42        No Research & Development                4         2
## 233   59        No        Human Resources                6         2
## 234   50        No                  Sales                1         4
## 235   33       Yes Research & Development               14         3
## 236   43        No                  Sales               16         3
## 237   33       Yes Research & Development                2         2
## 238   52        No                  Sales                2         4
## 239   32        No                  Sales                4         2
## 240   32       Yes Research & Development                1         3
## 241   39        No Research & Development                1         4
## 242   32        No                  Sales               26         4
## 243   41        No Research & Development               19         2
## 244   40        No Research & Development               24         2
## 245   45        No Research & Development                1         3
## 246   31        No Research & Development                3         4
## 247   33        No Research & Development                5         4
## 248   34        No Research & Development                2         4
## 249   37        No Research & Development                1         2
## 250   45        No Research & Development                7         4
## 251   37       Yes Research & Development               10         3
## 252   39        No Research & Development                2         4
## 253   29        No Research & Development               15         3
## 254   42        No Research & Development               17         2
## 255   29        No                  Sales               20         2
## 256   25        No Research & Development                1         3
## 257   42        No Research & Development                2         3
## 258   40        No Research & Development                2         2
## 259   51        No Research & Development                1         3
## 260   31       Yes Research & Development               29         2
## 261   32        No Research & Development                7         3
## 262   38        No                  Sales                2         2
## 263   32        No Research & Development                2         1
## 264   46        No                  Sales                2         3
## 265   28       Yes Research & Development                2         4
## 266   29        No                  Sales                2         3
## 267   31        No Research & Development               23         3
## 268   25        No Research & Development                5         2
## 269   45        No Research & Development               20         2
## 270   36        No Research & Development                6         3
## 271   55        No Research & Development                1         3
## 272   47       Yes Research & Development               29         4
## 273   28        No Research & Development                9         3
## 274   37        No                  Sales                6         4
## 275   21        No Research & Development                3         2
## 276   37        No Research & Development                1         4
## 277   35        No Research & Development               22         3
## 278   38        No                  Sales                7         2
## 279   26        No Research & Development                1         3
## 280   50        No Research & Development                4         1
## 281   53        No Research & Development                3         4
## 282   42        No                  Sales                1         1
## 283   29        No                  Sales                2         2
## 284   55        No Research & Development               20         2
## 285   26        No Research & Development               11         2
## 286   37        No Research & Development                1         3
## 287   44       Yes Research & Development               24         3
## 288   38        No Research & Development               23         4
## 289   26       Yes Research & Development               16         4
## 290   28        No Research & Development                8         2
## 291   49        No Research & Development               10         4
## 292   36        No Research & Development                3         3
## 293   31        No                  Sales                5         3
## 294   26       Yes                  Sales                4         4
## 295   37        No Research & Development                9         3
## 296   42        No                  Sales               26         3
## 297   18       Yes Research & Development                3         3
## 298   35        No                  Sales               16         3
## 299   36        No Research & Development               18         4
## 300   51        No Research & Development                2         3
## 301   41        No                  Sales                2         4
## 302   18        No                  Sales               10         3
## 303   28        No Research & Development               16         2
## 304   31        No                  Sales                7         3
## 305   39        No Research & Development                1         3
## 306   36        No Research & Development               24         4
## 307   32        No                  Sales                7         3
## 308   38        No Research & Development               25         2
## 309   58        No Research & Development                1         4
## 310   31        No Research & Development                5         4
## 311   31        No        Human Resources                2         3
## 312   45        No Research & Development                7         3
## 313   31        No Research & Development                2         4
## 314   33        No Research & Development                5         4
## 315   39        No Research & Development               10         1
## 316   43        No Research & Development               10         4
## 317   49        No Research & Development                1         2
## 318   52       Yes Research & Development                8         4
## 319   27        No Research & Development                5         3
## 320   32        No                  Sales                8         2
## 321   27        No                  Sales                2         3
## 322   31        No                  Sales                7         3
## 323   32        No Research & Development                2         4
## 324   28       Yes Research & Development                2         4
## 325   30        No Research & Development               28         2
## 326   31        No Research & Development                7         2
## 327   39        No Research & Development                7         2
## 328   39       Yes                  Sales                3         2
## 329   33        No                  Sales               10         3
## 330   47        No Research & Development                5         5
## 331   43        No Research & Development               10         4
## 332   27        No                  Sales                1         1
## 333   54        No Research & Development               20         4
## 334   43        No Research & Development                7         3
## 335   45        No Research & Development                8         4
## 336   40        No                  Sales                1         2
## 337   29       Yes Research & Development                8         4
## 338   29        No Research & Development                9         5
## 339   30        No                  Sales                5         3
## 340   27        No                  Sales                8         4
## 341   37        No Research & Development                5         2
## 342   38        No Research & Development               15         2
## 343   31        No Research & Development                7         4
## 344   29        No                  Sales               10         1
## 345   35        No Research & Development                5         4
## 346   23        No Research & Development               26         1
## 347   41        No Research & Development                6         3
## 348   47        No                  Sales                4         1
## 349   42        No Research & Development               23         5
## 350   29        No                  Sales                2         3
## 351   42        No        Human Resources                2         1
## 352   32        No Research & Development                2         3
## 353   48        No                  Sales               29         1
## 354   37        No Research & Development                6         3
## 355   30        No                  Sales               25         2
## 356   26        No                  Sales                1         3
## 357   42        No Research & Development                2         4
## 358   21       Yes                  Sales                1         1
## 359   36        No                  Sales                1         5
## 360   36        No                  Sales                3         4
## 361   57        No Research & Development                1         4
## 362   40        No Research & Development               10         4
## 363   21        No                  Sales                9         2
## 364   33       Yes                  Sales                5         3
## 365   37        No Research & Development               10         3
## 366   46        No Research & Development                7         4
## 367   41       Yes                  Sales                4         3
## 368   50        No Research & Development               10         3
## 369   40       Yes                  Sales               22         2
## 370   31        No Research & Development                9         4
## 371   21       Yes                  Sales               12         3
## 372   29        No Research & Development               23         3
## 373   35        No Research & Development                9         4
## 374   27        No Research & Development                1         2
## 375   28        No                  Sales                9         4
## 376   49        No Research & Development                7         3
## 377   51        No                  Sales               14         2
## 378   36        No Research & Development                2         3
## 379   34       Yes                  Sales               19         3
## 380   55        No Research & Development                2         3
## 381   24        No                  Sales               10         4
## 382   30        No                  Sales                2         1
## 383   26       Yes Research & Development                3         1
## 384   22        No Research & Development               11         3
## 385   36        No                  Sales                2         2
## 386   30       Yes Research & Development                4         3
## 387   37        No Research & Development               14         3
## 388   40        No                  Sales                2         2
## 389   42        No Research & Development                1         4
## 390   37        No Research & Development               10         4
## 391   43        No Research & Development               12         3
## 392   40        No Research & Development                2         3
## 393   54        No Research & Development                5         2
## 394   34        No                  Sales                4         4
## 395   31        No Research & Development                7         2
## 396   43        No Research & Development               21         3
## 397   43        No Research & Development                8         4
## 398   25        No                  Sales                4         2
## 399   37        No Research & Development               25         5
## 400   31        No Research & Development                1         2
## 401   39        No Research & Development                1         1
## 402   56        No                  Sales                6         3
## 403   30        No                  Sales               12         3
## 404   41        No                  Sales                1         3
## 405   28        No Research & Development               17         2
## 406   25       Yes Research & Development                3         3
## 407   52        No Research & Development                3         3
## 408   45        No Research & Development               10         2
## 409   52        No Research & Development                4         2
## 410   42        No Research & Development               29         2
## 411   30        No Research & Development                2         3
## 412   60        No Research & Development                7         3
## 413   46        No Research & Development               18         3
## 414   42        No Research & Development               28         4
## 415   24       Yes                  Sales                1         1
## 416   34       Yes                  Sales                6         2
## 417   38        No Research & Development                2         2
## 418   40        No                  Sales                2         4
## 419   26        No Research & Development               23         3
## 420   30        No Research & Development                3         3
## 421   29        No Research & Development                3         4
## 422   29       Yes Research & Development               25         5
## 423   19       Yes        Human Resources                2         2
## 424   30        No                  Sales               22         4
## 425   57        No                  Sales               29         3
## 426   50        No Research & Development               29         4
## 427   30        No Research & Development                2         3
## 428   60        No                  Sales               28         3
## 429   47        No Research & Development                2         2
## 430   46        No Research & Development                2         3
## 431   35        No Research & Development               22         3
## 432   54        No Research & Development                8         4
## 433   34        No Research & Development                2         4
## 434   46        No                  Sales               10         3
## 435   31        No Research & Development                9         1
## 436   33       Yes Research & Development               15         1
## 437   33       Yes Research & Development               10         1
## 438   30        No                  Sales                7         1
## 439   35        No Research & Development               16         3
## 440   31       Yes Research & Development               20         3
## 441   34       Yes        Human Resources               23         3
## 442   42        No Research & Development                5         2
## 443   36        No                  Sales               10         4
## 444   22       Yes Research & Development                4         1
## 445   48        No                  Sales                2         5
## 446   55        No                  Sales               18         5
## 447   41        No                  Sales               10         2
## 448   35        No                  Sales                1         3
## 449   40        No Research & Development                6         3
## 450   39        No Research & Development                8         1
## 451   31        No                  Sales                2         1
## 452   42        No Research & Development               24         3
## 453   45        No                  Sales                2         3
## 454   26       Yes        Human Resources               17         4
## 455   29        No Research & Development               19         3
## 456   33        No Research & Development                1         5
## 457   31        No                  Sales                7         3
## 458   18       Yes                  Sales                5         3
## 459   40        No                  Sales               28         3
## 460   41        No Research & Development                2         4
## 461   26        No                  Sales               29         2
## 462   35        No                  Sales                1         3
## 463   34        No                  Sales               21         4
## 464   26       Yes Research & Development               24         3
## 465   37        No Research & Development                1         3
## 466   46        No Research & Development               18         1
## 467   41        No                  Sales                2         5
## 468   37        No                  Sales                9         4
## 469   52        No Research & Development                6         2
## 470   32       Yes                  Sales               11         4
## 471   24        No                  Sales               24         3
## 472   38        No Research & Development               10         3
## 473   37        No Research & Development                1         4
## 474   49        No Research & Development               18         4
## 475   24        No Research & Development               23         3
## 476   26        No                  Sales               28         2
## 477   24        No Research & Development               17         2
## 478   50        No        Human Resources                3         3
## 479   25        No                  Sales               13         1
## 480   24       Yes Research & Development                7         3
## 481   30       Yes                  Sales               12         4
## 482   34        No Research & Development                1         2
## 483   31       Yes                  Sales               13         4
## 484   35        No Research & Development               25         2
## 485   31        No                  Sales                6         4
## 486   27        No Research & Development                6         4
## 487   37        No                  Sales                2         3
## 488   20        No Research & Development                1         3
## 489   42        No Research & Development                2         4
## 490   43        No Research & Development                6         4
## 491   38        No Research & Development                1         1
## 492   43        No Research & Development                9         5
## 493   48        No Research & Development                1         4
## 494   44        No        Human Resources                1         4
## 495   34        No                  Sales               14         3
## 496   27       Yes                  Sales                2         1
## 497   21        No                  Sales               22         1
## 498   44        No Research & Development                3         4
## 499   22        No Research & Development                6         1
## 500   33        No                  Sales                8         4
## 501   32        No Research & Development                9         4
## 502   30        No Research & Development                3         3
## 503   53        No                  Sales                1         1
## 504   34        No Research & Development                1         5
## 505   45       Yes                  Sales               26         4
## 506   26        No Research & Development                6         3
## 507   37        No Research & Development                3         3
## 508   29        No                  Sales                3         2
## 509   35        No Research & Development                6         4
## 510   33        No Research & Development                6         3
## 511   54        No        Human Resources               19         4
## 512   36        No Research & Development                9         2
## 513   27        No Research & Development                3         4
## 514   20       Yes Research & Development               10         1
## 515   33       Yes Research & Development                3         3
## 516   35        No Research & Development                3         3
## 517   23        No Research & Development                4         3
## 518   25        No                  Sales                8         3
## 519   38        No                  Sales                7         4
## 520   29        No Research & Development                1         4
## 521   48        No                  Sales                2         1
## 522   27        No                  Sales                3         1
## 523   37        No Research & Development               10         2
## 524   50        No Research & Development               28         1
## 525   34        No Research & Development                9         3
## 526   24       Yes                  Sales                3         2
## 527   39        No Research & Development                2         4
## 528   32        No                  Sales               10         3
## 529   50       Yes                  Sales                8         2
## 530   38        No Research & Development                1         4
## 531   27        No Research & Development                1         2
## 532   32        No Research & Development                3         2
## 533   47        No                  Sales               14         4
## 534   40        No                  Sales                5         4
## 535   53        No Research & Development                7         3
## 536   41        No        Human Resources               10         4
## 537   60        No                  Sales               16         4
## 538   27        No Research & Development               10         2
## 539   41        No        Human Resources                1         3
## 540   50        No                  Sales                8         4
## 541   28       Yes Research & Development                1         2
## 542   36        No Research & Development                8         3
## 543   38        No Research & Development                1         3
## 544   44        No Research & Development               24         3
## 545   47        No                  Sales                3         3
## 546   30        No                  Sales               27         5
## 547   29        No                  Sales               10         3
## 548   42       Yes Research & Development               19         3
## 549   43        No                  Sales               15         3
## 550   34        No Research & Development                8         2
## 551   23        No Research & Development                9         1
## 552   39        No        Human Resources                3         3
## 553   56        No Research & Development                9         3
## 554   40        No Research & Development                2         1
## 555   27        No Research & Development                7         3
## 556   29        No                  Sales               10         3
## 557   53        No Research & Development                6         3
## 558   35        No Research & Development                2         4
## 559   32        No Research & Development               24         4
## 560   38        No Research & Development                2         5
## 561   34        No Research & Development                8         5
## 562   52        No                  Sales                3         4
## 563   33       Yes Research & Development                1         4
## 564   25        No                  Sales               26         1
## 565   45        No                  Sales                2         2
## 566   23        No Research & Development               10         1
## 567   47       Yes                  Sales               27         2
## 568   34        No                  Sales                2         3
## 569   55       Yes Research & Development                2         3
## 570   36        No                  Sales                8         4
## 571   52        No Research & Development               19         4
## 572   26        No Research & Development                1         2
## 573   29        No Research & Development               27         3
## 574   26       Yes                  Sales                8         3
## 575   34        No Research & Development                1         4
## 576   54        No Research & Development               19         4
## 577   27        No                  Sales                8         1
## 578   37        No Research & Development               10         1
## 579   38        No Research & Development                2         4
## 580   34        No Research & Development                2         4
## 581   35        No                  Sales                8         4
## 582   30        No Research & Development                1         3
## 583   40        No Research & Development                2         2
## 584   34        No                  Sales                8         2
## 585   42        No Research & Development                8         3
## 586   23       Yes Research & Development                6         3
## 587   24        No Research & Development                9         3
## 588   52        No Research & Development               11         4
## 589   50        No Research & Development                2         3
## 590   29       Yes Research & Development                1         2
## 591   33        No Research & Development                7         3
## 592   33       Yes                  Sales               16         3
## 593   47        No Research & Development                2         2
## 594   36        No Research & Development                1         3
## 595   29        No Research & Development               23         2
## 596   58       Yes Research & Development                2         4
## 597   35        No Research & Development                1         4
## 598   42        No Research & Development                1         2
## 599   28       Yes Research & Development                2         4
## 600   36        No        Human Resources               13         3
## 601   32        No Research & Development                4         3
## 602   40        No Research & Development               16         4
## 603   30        No Research & Development                2         3
## 604   45        No Research & Development                2         3
## 605   42        No Research & Development               29         3
## 606   38        No Research & Development               12         3
## 607   34        No Research & Development               16         4
## 608   49       Yes                  Sales               11         3
## 609   55       Yes                  Sales                2         1
## 610   43        No Research & Development               14         2
## 611   27        No Research & Development                5         1
## 612   35        No Research & Development                7         3
## 613   28        No                  Sales                2         4
## 614   34        No        Human Resources                3         2
## 615   26       Yes Research & Development                5         2
## 616   27        No Research & Development                3         3
## 617   51        No                  Sales               26         4
## 618   44        No Research & Development                4         3
## 619   25        No Research & Development                2         1
## 620   33        No                  Sales                1         3
## 621   35        No Research & Development               27         1
## 622   36        No                  Sales                1         2
## 623   32        No                  Sales               13         4
## 624   30        No Research & Development                5         4
## 625   53        No                  Sales                7         2
## 626   45        No                  Sales                9         3
## 627   32        No Research & Development                8         2
## 628   52        No Research & Development               25         4
## 629   37        No                  Sales               16         4
## 630   28        No        Human Resources                8         2
## 631   22        No Research & Development                1         2
## 632   44        No Research & Development                8         4
## 633   42        No Research & Development                2         1
## 634   36        No        Human Resources                8         3
## 635   25        No                  Sales                3         1
## 636   35        No Research & Development                9         3
## 637   35       Yes Research & Development               25         4
## 638   32        No Research & Development                1         3
## 639   25        No                  Sales                4         1
## 640   49        No Research & Development                1         3
## 641   24        No Research & Development                4         1
## 642   32        No                  Sales                5         2
## 643   38        No                  Sales                9         3
## 644   42        No Research & Development                3         3
## 645   31        No Research & Development               11         4
## 646   29       Yes                  Sales                1         3
## 647   53        No                  Sales                8         3
## 648   35        No Research & Development               25         3
## 649   37        No                  Sales               21         2
## 650   53        No Research & Development               23         4
## 651   43        No Research & Development                1         3
## 652   47        No                  Sales                2         2
## 653   37        No                  Sales               19         2
## 654   50        No Research & Development                2         4
## 655   39        No        Human Resources                2         3
## 656   33        No        Human Resources                3         2
## 657   32       Yes Research & Development               25         4
## 658   29        No Research & Development                7         1
## 659   44        No Research & Development                9         2
## 660   28        No                  Sales                5         4
## 661   58       Yes Research & Development                2         1
## 662   43        No Research & Development                8         3
## 663   20       Yes                  Sales                2         3
## 664   21       Yes Research & Development               18         1
## 665   36        No Research & Development               14         1
## 666   47        No                  Sales                2         4
## 667   22       Yes Research & Development                3         1
## 668   41       Yes Research & Development                2         4
## 669   28        No Research & Development                9         3
## 670   39       Yes Research & Development                6         3
## 671   27        No Research & Development                4         3
## 672   34        No Research & Development               10         3
## 673   42        No                  Sales               14         2
## 674   33        No Research & Development                1         4
## 675   58        No Research & Development                5         3
## 676   31        No                  Sales                7         4
## 677   35        No Research & Development               21         1
## 678   49        No Research & Development                8         2
## 679   48        No Research & Development               20         4
## 680   31        No                  Sales               20         2
## 681   36        No Research & Development                7         4
## 682   38        No Research & Development                1         3
## 683   32        No Research & Development                1         3
## 684   25       Yes                  Sales               19         2
## 685   40        No                  Sales               10         4
## 686   26        No                  Sales                1         3
## 687   41        No Research & Development                6         3
## 688   36        No Research & Development                2         4
## 689   19       Yes                  Sales               21         3
## 690   20       Yes Research & Development                4         3
## 691   31        No Research & Development               12         3
## 692   40        No Research & Development                9         4
## 693   32        No Research & Development                3         4
## 694   36       Yes                  Sales                3         1
## 695   33        No Research & Development                1         3
## 696   37       Yes                  Sales                1         4
## 697   45        No Research & Development                4         2
## 698   29        No                  Sales               20         3
## 699   35        No                  Sales               18         3
## 700   52        No Research & Development                1         2
## 701   58       Yes Research & Development                2         3
## 702   53        No                  Sales                2         2
## 703   30        No                  Sales                8         2
## 704   38        No                  Sales               10         3
## 705   35        No                  Sales                3         4
## 706   39        No                  Sales                2         5
## 707   40       Yes                  Sales               24         3
## 708   47        No Research & Development               16         4
## 709   36        No                  Sales                8         4
## 710   31       Yes Research & Development                9         2
## 711   33        No                  Sales               17         3
## 712   29       Yes Research & Development               10         3
## 713   33        No Research & Development               13         1
## 714   45        No Research & Development                1         4
## 715   50        No Research & Development                1         2
## 716   33        No Research & Development                1         4
## 717   41        No Research & Development                9         3
## 718   27        No Research & Development               16         4
## 719   45        No Research & Development               23         2
## 720   47        No                  Sales                4         2
## 721   30       Yes Research & Development               22         3
## 722   50        No Research & Development               24         3
## 723   38        No Research & Development               10         1
## 724   46        No Research & Development                7         2
## 725   24        No Research & Development               17         1
## 726   35       Yes Research & Development               14         4
## 727   31        No Research & Development                1         1
## 728   18        No Research & Development                5         2
## 729   54        No Research & Development               17         3
## 730   35        No Research & Development               25         4
## 731   30        No Research & Development                8         2
## 732   20       Yes Research & Development               11         3
## 733   30       Yes Research & Development                5         3
## 734   26        No Research & Development                2         2
## 735   22        No Research & Development                8         1
## 736   48        No Research & Development                6         3
## 737   48        No Research & Development                4         4
## 738   41        No Research & Development                7         2
## 739   39        No Research & Development                1         1
## 740   27        No Research & Development                2         4
## 741   35        No Research & Development               10         3
## 742   42        No                  Sales                5         2
## 743   50        No Research & Development                9         3
## 744   59        No Research & Development                2         3
## 745   37       Yes Research & Development               11         2
## 746   55        No Research & Development               18         4
## 747   41        No Research & Development                7         1
## 748   38        No                  Sales                3         4
## 749   26       Yes                  Sales               29         2
## 750   52       Yes                  Sales                2         1
## 751   44        No                  Sales               28         3
## 752   50        No                  Sales                1         3
## 753   36       Yes Research & Development               16         4
## 754   39        No Research & Development               22         3
## 755   33        No                  Sales                8         1
## 756   45        No                  Sales               11         2
## 757   32        No Research & Development               29         4
## 758   34        No                  Sales                1         4
## 759   59        No                  Sales                1         2
## 760   45        No        Human Resources               24         4
## 761   53        No                  Sales                2         3
## 762   36       Yes Research & Development               15         3
## 763   26       Yes Research & Development                2         3
## 764   34        No                  Sales               10         4
## 765   28        No                  Sales               10         1
## 766   38        No Research & Development                3         4
## 767   50        No Research & Development                2         4
## 768   37        No Research & Development                3         3
## 769   40        No                  Sales               26         3
## 770   26        No Research & Development                1         1
## 771   46        No Research & Development                1         4
## 772   54        No                  Sales                2         4
## 773   56        No Research & Development                9         3
## 774   36        No Research & Development               12         5
## 775   55        No Research & Development                2         1
## 776   43        No                  Sales               25         3
## 777   20       Yes                  Sales                9         3
## 778   21       Yes Research & Development               10         3
## 779   46        No Research & Development                8         4
## 780   51       Yes Research & Development                4         4
## 781   28       Yes Research & Development               24         2
## 782   26        No Research & Development                1         2
## 783   30        No Research & Development               20         3
## 784   41        No Research & Development                7         2
## 785   38        No Research & Development               17         1
## 786   40        No Research & Development               20         4
## 787   27        No Research & Development                8         5
## 788   55        No Research & Development                2         1
## 789   28        No Research & Development               10         3
## 790   44       Yes        Human Resources                1         2
## 791   33        No Research & Development                5         3
## 792   35       Yes                  Sales                4         3
## 793   33       Yes Research & Development               29         4
## 794   28        No Research & Development               15         2
## 795   34        No Research & Development                3         1
## 796   37        No                  Sales               10         4
## 797   25       Yes Research & Development                4         1
## 798   26       Yes Research & Development               21         3
## 799   33       Yes Research & Development               25         3
## 800   42        No Research & Development                2         2
## 801   28       Yes Research & Development                1         3
## 802   50       Yes                  Sales                1         4
## 803   33        No                  Sales                7         3
## 804   34        No Research & Development                3         4
## 805   48        No Research & Development                1         4
## 806   45        No                  Sales                9         4
## 807   52        No Research & Development                7         4
## 808   38        No                  Sales               10         4
## 809   29        No Research & Development               28         4
## 810   28        No Research & Development                3         3
## 811   46        No                  Sales                3         1
## 812   38        No                  Sales                2         2
## 813   43        No Research & Development               27         3
## 814   39       Yes Research & Development                2         3
## 815   40        No Research & Development               14         3
## 816   21        No Research & Development                1         1
## 817   39        No Research & Development                9         3
## 818   36        No Research & Development               18         4
## 819   31        No                  Sales               20         3
## 820   28        No Research & Development                2         1
## 821   35        No                  Sales               11         2
## 822   49        No                  Sales                8         4
## 823   34        No Research & Development                2         2
## 824   29        No Research & Development               10         3
## 825   42        No Research & Development               29         3
## 826   29        No Research & Development                8         1
## 827   38        No        Human Resources                1         3
## 828   28        No Research & Development                6         3
## 829   18       Yes Research & Development                8         1
## 830   33       Yes                  Sales                9         4
## 831   41        No Research & Development               12         4
## 832   31       Yes Research & Development               15         3
## 833   37        No Research & Development               25         2
## 834   27        No Research & Development                6         3
## 835   34        No                  Sales                9         1
## 836   35        No        Human Resources                8         4
## 837   29       Yes                  Sales               23         1
## 838   40        No Research & Development                9         4
## 839   42       Yes                  Sales               12         3
## 840   42        No                  Sales                4         4
## 841   35        No Research & Development                1         4
## 842   24        No Research & Development               24         3
## 843   28       Yes Research & Development               12         1
## 844   26        No Research & Development                3         4
## 845   30        No                  Sales               10         3
## 846   40        No Research & Development               26         2
## 847   35        No Research & Development                2         3
## 848   34        No Research & Development                1         3
## 849   35        No Research & Development                4         4
## 850   43       Yes                  Sales                9         3
## 851   32        No                  Sales                2         1
## 852   56        No Research & Development                4         4
## 853   29        No Research & Development                6         1
## 854   19        No Research & Development                9         2
## 855   45        No Research & Development                7         3
## 856   37        No Research & Development                1         3
## 857   20        No Research & Development                3         3
## 858   44       Yes Research & Development               10         4
## 859   53        No Research & Development                7         2
## 860   29        No Research & Development               15         1
## 861   22       Yes Research & Development                3         4
## 862   46        No                  Sales                2         3
## 863   44        No Research & Development               17         3
## 864   33        No        Human Resources                2         3
## 865   41       Yes Research & Development                5         2
## 866   30        No                  Sales               29         4
## 867   40        No                  Sales                2         4
## 868   50        No Research & Development                2         3
## 869   28        No Research & Development               19         4
## 870   46        No Research & Development               15         2
## 871   35        No                  Sales               17         4
## 872   24       Yes Research & Development               17         2
## 873   33        No                  Sales               25         3
## 874   36        No Research & Development                6         4
## 875   30        No Research & Development                7         4
## 876   44        No Research & Development               29         4
## 877   20        No                  Sales               21         3
## 878   46        No Research & Development                2         4
## 879   42        No        Human Resources                2         5
## 880   60        No                  Sales                7         4
## 881   32        No Research & Development               13         3
## 882   32        No Research & Development                2         2
## 883   36        No Research & Development                1         3
## 884   33        No Research & Development                9         3
## 885   40        No                  Sales               10         3
## 886   25        No                  Sales               10         4
## 887   30        No Research & Development                1         3
## 888   42        No Research & Development               26         5
## 889   35        No                  Sales                8         2
## 890   27        No Research & Development               14         3
## 891   54        No Research & Development                1         4
## 892   44        No Research & Development                2         1
## 893   19       Yes Research & Development               10         3
## 894   29        No Research & Development                1         3
## 895   54        No Research & Development                3         3
## 896   31        No Research & Development               11         2
## 897   31        No Research & Development               24         3
## 898   59        No                  Sales                3         3
## 899   43        No Research & Development                3         3
## 900   49        No Research & Development                4         2
## 901   36        No Research & Development                3         3
## 902   48        No Research & Development                2         2
## 903   27        No Research & Development                4         2
## 904   29        No Research & Development                7         3
## 905   48        No Research & Development                1         3
## 906   29        No Research & Development                1         3
## 907   34        No Research & Development               20         3
## 908   44        No                  Sales                5         3
## 909   33        No                  Sales               10         5
## 910   19        No Research & Development               25         3
## 911   23        No Research & Development                1         2
## 912   25       Yes                  Sales               24         1
## 913   26        No Research & Development                4         2
## 914   45       Yes                  Sales                2         3
## 915   55        No Research & Development                8         1
## 916   21       Yes Research & Development               10         2
## 917   46        No                  Sales                4         2
## 918   34        No                  Sales                2         3
## 919   51        No                  Sales                9         3
## 920   59        No Research & Development               18         4
## 921   34        No Research & Development               19         3
## 922   28        No Research & Development                1         4
## 923   44        No Research & Development                4         2
## 924   34        No        Human Resources               11         3
## 925   35        No Research & Development                6         1
## 926   42        No Research & Development                7         4
## 927   43        No                  Sales                4         4
## 928   36        No Research & Development                2         4
## 929   44       Yes Research & Development               15         3
## 930   28        No Research & Development                2         3
## 931   51        No Research & Development                6         2
## 932   30        No Research & Development                9         2
## 933   29       Yes Research & Development                7         3
## 934   28        No Research & Development                1         3
## 935   25        No Research & Development                1         3
## 936   32        No                  Sales                8         3
## 937   45        No Research & Development               25         3
## 938   39        No Research & Development               13         4
## 939   58        No Research & Development               23         4
## 940   32       Yes Research & Development                7         2
## 941   39       Yes Research & Development               23         3
## 942   30        No Research & Development                6         3
## 943   36        No Research & Development               10         4
## 944   46        No        Human Resources                1         2
## 945   28        No Research & Development                1         3
## 946   50        No Research & Development               28         3
## 947   40       Yes                  Sales               25         4
## 948   52       Yes                  Sales                5         3
## 949   30        No Research & Development               17         4
## 950   39        No Research & Development               18         2
## 951   31        No                  Sales                2         4
## 952   41        No                  Sales               10         2
## 953   31       Yes                  Sales                1         3
## 954   44       Yes Research & Development                3         3
## 955   42        No Research & Development                2         1
## 956   55        No Research & Development                2         2
## 957   56        No        Human Resources                8         4
## 958   40        No Research & Development               16         2
## 959   34        No Research & Development                9         3
## 960   40        No Research & Development                2         3
## 961   41        No                  Sales                1         3
## 962   35        No Research & Development                4         4
## 963   51        No        Human Resources                5         3
## 964   38        No                  Sales                2         2
## 965   34        No                  Sales               15         2
## 966   25        No Research & Development               19         1
## 967   58       Yes Research & Development                7         4
## 968   40        No Research & Development                1         4
## 969   36        No                  Sales                7         3
## 970   48        No Research & Development                4         3
## 971   27        No                  Sales               11         3
## 972   51        No Research & Development               11         2
## 973   18        No Research & Development                1         3
## 974   35        No Research & Development                1         3
## 975   27        No                  Sales                2         1
## 976   55       Yes                  Sales               13         4
## 977   56        No Research & Development               23         3
## 978   34        No Research & Development               26         1
## 979   40        No Research & Development                2         1
## 980   34        No Research & Development               29         3
## 981   31       Yes                  Sales                2         3
## 982   35       Yes                  Sales               18         4
## 983   38        No Research & Development                7         3
## 984   34        No Research & Development                2         4
## 985   28        No                  Sales               26         3
## 986   31       Yes Research & Development               22         4
## 987   39        No                  Sales               21         4
## 988   51        No                  Sales                2         3
## 989   41        No Research & Development               22         3
## 990   37        No Research & Development                4         1
## 991   33        No                  Sales                5         1
## 992   32        No                  Sales                2         1
## 993   39        No Research & Development               25         2
## 994   25        No                  Sales               18         1
## 995   52        No Research & Development               28         2
## 996   43        No Research & Development                6         3
## 997   27        No                  Sales               10         3
## 998   27       Yes Research & Development               17         4
## 999   26        No Research & Development                2         1
## 1000  42        No        Human Resources               10         3
## 1001  52        No Research & Development                8         4
## 1002  37        No Research & Development               11         3
## 1003  35        No Research & Development               18         2
## 1004  25        No Research & Development                1         3
## 1005  26        No Research & Development                7         3
## 1006  29        No        Human Resources               17         3
## 1007  49       Yes Research & Development               28         2
## 1008  29       Yes Research & Development               14         1
## 1009  54        No Research & Development                1         3
## 1010  58        No Research & Development                1         3
## 1011  55        No Research & Development                1         4
## 1012  36        No                  Sales                3         4
## 1013  31       Yes                  Sales                1         4
## 1014  30        No                  Sales                7         4
## 1015  31        No Research & Development                8         5
## 1016  34        No Research & Development                1         4
## 1017  31       Yes Research & Development                8         3
## 1018  27        No Research & Development               11         1
## 1019  36        No Research & Development                4         4
## 1020  36        No                  Sales               16         4
## 1021  47        No Research & Development                1         3
## 1022  25       Yes                  Sales                9         2
## 1023  37        No Research & Development                5         2
## 1024  56        No Research & Development                1         2
## 1025  47        No Research & Development                2         4
## 1026  24        No                  Sales                4         1
## 1027  32        No                  Sales                7         5
## 1028  34        No Research & Development                1         3
## 1029  41        No Research & Development                5         5
## 1030  40        No Research & Development                9         4
## 1031  31        No                  Sales                8         2
## 1032  46       Yes                  Sales                9         3
## 1033  39       Yes Research & Development                2         3
## 1034  31       Yes Research & Development                1         5
## 1035  45        No Research & Development               20         3
## 1036  31        No        Human Resources                8         2
## 1037  31       Yes Research & Development                2         3
## 1038  45        No Research & Development               29         3
## 1039  48        No                  Sales                7         3
## 1040  34       Yes        Human Resources                9         4
## 1041  40        No Research & Development                8         1
## 1042  28        No                  Sales                5         3
## 1043  44        No Research & Development                5         3
## 1044  53        No Research & Development                2         3
## 1045  49        No Research & Development                5         4
## 1046  40        No Research & Development                2         3
## 1047  44        No Research & Development               20         3
## 1048  33        No                  Sales                7         3
## 1049  34        No                  Sales                3         3
## 1050  30        No                  Sales               16         1
## 1051  42        No Research & Development                9         2
## 1052  44        No                  Sales                1         5
## 1053  30        No Research & Development                7         3
## 1054  57        No Research & Development                1         2
## 1055  49        No Research & Development                7         4
## 1056  34        No Research & Development               15         3
## 1057  28       Yes                  Sales                1         3
## 1058  29       Yes                  Sales               13         3
## 1059  34       Yes                  Sales               24         4
## 1060  35        No                  Sales                7         1
## 1061  24       Yes Research & Development                9         3
## 1062  24        No                  Sales               13         2
## 1063  44        No Research & Development                2         1
## 1064  29        No                  Sales               19         3
## 1065  30        No        Human Resources                1         3
## 1066  55        No Research & Development                4         4
## 1067  33        No Research & Development                4         4
## 1068  47        No                  Sales               14         3
## 1069  28       Yes Research & Development                2         2
## 1070  28        No Research & Development                1         3
## 1071  28        No                  Sales                7         3
## 1072  49        No Research & Development                3         2
## 1073  29        No Research & Development                2         1
## 1074  28        No Research & Development               29         1
## 1075  33        No Research & Development                8         5
## 1076  32        No Research & Development               10         3
## 1077  54        No Research & Development               11         4
## 1078  29       Yes Research & Development                1         4
## 1079  44        No Research & Development               28         3
## 1080  39        No Research & Development                6         3
## 1081  46        No                  Sales                3         3
## 1082  35        No Research & Development               16         3
## 1083  23        No Research & Development               20         1
## 1084  40       Yes Research & Development                9         4
## 1085  34        No                  Sales                1         3
## 1086  31       Yes Research & Development                3         3
## 1087  50        No Research & Development               22         5
## 1088  34        No                  Sales                7         2
## 1089  42        No Research & Development                2         3
## 1090  37        No Research & Development               13         3
## 1091  29        No Research & Development                8         1
## 1092  33        No Research & Development               25         3
## 1093  45        No Research & Development               28         3
## 1094  42        No Research & Development                2         3
## 1095  40        No                  Sales                9         2
## 1096  33        No Research & Development               28         4
## 1097  40        No        Human Resources                6         2
## 1098  24        No Research & Development               21         2
## 1099  40        No Research & Development                8         2
## 1100  45        No Research & Development                1         4
## 1101  35        No                  Sales               28         4
## 1102  32        No Research & Development                5         2
## 1103  36        No                  Sales                2         4
## 1104  48        No                  Sales               16         4
## 1105  29        No Research & Development                9         3
## 1106  33        No                  Sales                8         4
## 1107  30       Yes                  Sales                1         3
## 1108  38        No        Human Resources               10         4
## 1109  35        No Research & Development                1         3
## 1110  30        No                  Sales               29         4
## 1111  35       Yes Research & Development                2         3
## 1112  53       Yes Research & Development                2         5
## 1113  38       Yes Research & Development                2         3
## 1114  32        No Research & Development                1         4
## 1115  48        No Research & Development               15         4
## 1116  34        No Research & Development                7         4
## 1117  55        No                  Sales               26         5
## 1118  34        No Research & Development                1         4
## 1119  26        No Research & Development                3         3
## 1120  38        No                  Sales               14         3
## 1121  38        No                  Sales               16         3
## 1122  36        No                  Sales                1         4
## 1123  29        No Research & Development                3         1
## 1124  35        No Research & Development               10         4
## 1125  39        No                  Sales                6         3
## 1126  29        No Research & Development                2         1
## 1127  50        No                  Sales                9         3
## 1128  23        No Research & Development               10         3
## 1129  36        No Research & Development                6         4
## 1130  42        No Research & Development                9         2
## 1131  35        No Research & Development               28         3
## 1132  34        No Research & Development               10         4
## 1133  40        No                  Sales               14         2
## 1134  43        No Research & Development               27         3
## 1135  35        No Research & Development                7         2
## 1136  46        No                  Sales                1         4
## 1137  28       Yes Research & Development               24         3
## 1138  22        No Research & Development               26         2
## 1139  50        No Research & Development               20         5
## 1140  32        No Research & Development                5         4
## 1141  44        No Research & Development                7         3
## 1142  30        No Research & Development                7         3
## 1143  45        No Research & Development                5         5
## 1144  45        No                  Sales               26         3
## 1145  31        No                  Sales                2         4
## 1146  36        No Research & Development               12         4
## 1147  34        No Research & Development               10         4
## 1148  49        No Research & Development               25         4
## 1149  39        No Research & Development               10         5
## 1150  27        No Research & Development               19         3
## 1151  35        No Research & Development               18         5
## 1152  28        No Research & Development               27         3
## 1153  21        No Research & Development                5         1
## 1154  18       Yes                  Sales                3         2
## 1155  47        No        Human Resources               26         4
## 1156  39        No Research & Development                3         2
## 1157  40        No Research & Development               15         3
## 1158  35        No Research & Development                8         4
## 1159  37        No Research & Development               19         3
## 1160  39        No Research & Development                4         3
## 1161  45        No Research & Development                2         2
## 1162  38        No Research & Development                2         2
## 1163  35       Yes                  Sales               10         3
## 1164  37        No Research & Development               10         3
## 1165  40        No Research & Development               16         3
## 1166  44        No        Human Resources                1         5
## 1167  48        No Research & Development                4         5
## 1168  35       Yes                  Sales               15         2
## 1169  24        No Research & Development                2         1
## 1170  27        No Research & Development                8         3
## 1171  27        No Research & Development                2         3
## 1172  40       Yes Research & Development                7         3
## 1173  29        No                  Sales               10         3
## 1174  36        No Research & Development                5         4
## 1175  25        No Research & Development                2         1
## 1176  39        No Research & Development               12         3
## 1177  49        No Research & Development               22         4
## 1178  50        No Research & Development               17         5
## 1179  20        No                  Sales                2         3
## 1180  34        No Research & Development                3         3
## 1181  36        No Research & Development                7         3
## 1182  49        No Research & Development                6         1
## 1183  36        No Research & Development                1         4
## 1184  36        No Research & Development                3         2
## 1185  54        No Research & Development               22         5
## 1186  43        No Research & Development               15         2
## 1187  35       Yes                  Sales               12         4
## 1188  38        No Research & Development                1         3
## 1189  29        No                  Sales                5         3
## 1190  33        No                  Sales                2         4
## 1191  32        No Research & Development                2         3
## 1192  31        No                  Sales                5         4
## 1193  49        No Research & Development               16         3
## 1194  38        No Research & Development                2         3
## 1195  47        No                  Sales                2         4
## 1196  49        No Research & Development                1         3
## 1197  41        No                  Sales               23         2
## 1198  20        No                  Sales                9         1
## 1199  33        No                  Sales               16         3
## 1200  36        No Research & Development               26         4
## 1201  44        No        Human Resources                1         3
## 1202  23       Yes Research & Development                8         1
## 1203  38        No Research & Development                4         2
## 1204  53        No Research & Development               24         4
## 1205  48       Yes                  Sales                7         2
## 1206  32       Yes Research & Development                2         4
## 1207  26        No Research & Development                7         3
## 1208  55        No Research & Development               22         3
## 1209  34        No Research & Development                5         2
## 1210  60        No Research & Development                1         4
## 1211  33        No Research & Development               21         3
## 1212  37        No                  Sales                1         4
## 1213  34        No Research & Development               19         3
## 1214  23       Yes                  Sales                7         3
## 1215  44        No Research & Development                2         3
## 1216  35        No Research & Development                2         4
## 1217  43        No                  Sales                2         3
## 1218  24        No Research & Development                9         3
## 1219  41        No                  Sales                6         3
## 1220  29        No Research & Development                9         4
## 1221  36        No                  Sales                2         4
## 1222  45        No Research & Development                1         1
## 1223  24       Yes        Human Resources               22         1
## 1224  47       Yes                  Sales                9         3
## 1225  26        No Research & Development               17         4
## 1226  45        No Research & Development               28         2
## 1227  32        No Research & Development               10         3
## 1228  31        No Research & Development                2         4
## 1229  41        No        Human Resources                4         3
## 1230  40        No Research & Development                8         2
## 1231  24        No Research & Development               29         1
## 1232  46        No Research & Development               13         4
## 1233  35        No Research & Development               27         4
## 1234  30        No Research & Development               16         1
## 1235  47        No                  Sales                2         4
## 1236  46        No                  Sales                2         3
## 1237  36       Yes                  Sales               13         5
## 1238  32       Yes                  Sales                1         2
## 1239  23        No Research & Development                4         1
## 1240  31        No Research & Development               24         1
## 1241  39        No Research & Development                1         3
## 1242  32        No                  Sales               19         3
## 1243  40        No                  Sales                7         4
## 1244  45        No        Human Resources                4         3
## 1245  30        No Research & Development                2         4
## 1246  24        No        Human Resources               10         3
## 1247  30       Yes        Human Resources                8         3
## 1248  31        No                  Sales                5         3
## 1249  27        No Research & Development                8         3
## 1250  29       Yes                  Sales                9         3
## 1251  29        No Research & Development                1         3
## 1252  30        No                  Sales               15         2
## 1253  34        No Research & Development                2         4
## 1254  33        No                  Sales                2         3
## 1255  49        No                  Sales               11         4
## 1256  33       Yes                  Sales               16         3
## 1257  38        No Research & Development                2         2
## 1258  31       Yes                  Sales               16         4
## 1259  29        No Research & Development                4         3
## 1260  30        No Research & Development               16         3
## 1261  32        No Research & Development                5         4
## 1262  38        No Research & Development               18         3
## 1263  43       Yes Research & Development               17         3
## 1264  42        No Research & Development               12         3
## 1265  55        No Research & Development                2         3
## 1266  33        No Research & Development                4         3
## 1267  41        No Research & Development                9         4
## 1268  34        No                  Sales               10         3
## 1269  53        No Research & Development                1         4
## 1270  43        No        Human Resources                2         3
## 1271  34        No                  Sales                3         2
## 1272  21       Yes                  Sales                7         1
## 1273  38        No Research & Development                6         2
## 1274  22       Yes Research & Development                8         1
## 1275  31        No                  Sales               29         4
## 1276  51        No Research & Development                3         3
## 1277  37        No                  Sales                9         2
## 1278  46        No Research & Development                2         4
## 1279  36        No Research & Development               10         3
## 1280  44       Yes Research & Development                1         2
## 1281  37        No        Human Resources                8         2
## 1282  35       Yes                  Sales               27         3
## 1283  33        No Research & Development                8         4
## 1284  28        No Research & Development                1         3
## 1285  39        No Research & Development               10         1
## 1286  46        No                  Sales               26         2
## 1287  40        No Research & Development                2         2
## 1288  42        No Research & Development               13         3
## 1289  35        No Research & Development                2         2
## 1290  38        No        Human Resources                2         3
## 1291  34       Yes Research & Development                9         4
## 1292  37       Yes Research & Development               10         4
## 1293  39        No                  Sales               20         3
## 1294  43        No Research & Development                9         3
## 1295  41        No Research & Development                5         3
## 1296  41        No                  Sales                4         1
## 1297  30        No Research & Development               10         3
## 1298  26       Yes        Human Resources               20         2
## 1299  46       Yes Research & Development               21         2
## 1300  40        No Research & Development                1         3
## 1301  34        No                  Sales                8         2
## 1302  58        No                  Sales                2         3
## 1303  35        No Research & Development               23         4
## 1304  47        No Research & Development                4         3
## 1305  40        No Research & Development               12         3
## 1306  54        No Research & Development                7         4
## 1307  31        No                  Sales                7         4
## 1308  28        No Research & Development                1         3
## 1309  38        No                  Sales                2         4
## 1310  26        No                  Sales               10         3
## 1311  58        No Research & Development               15         4
## 1312  18        No Research & Development               14         3
## 1313  31       Yes        Human Resources               18         5
## 1314  29       Yes        Human Resources               13         3
## 1315  45        No                  Sales                2         4
## 1316  36        No Research & Development                2         4
## 1317  43        No                  Sales                2         4
## 1318  27        No Research & Development                5         2
## 1319  29        No Research & Development               20         1
## 1320  32        No                  Sales               10         4
## 1321  42        No Research & Development               10         4
## 1322  47        No Research & Development                9         4
## 1323  46        No Research & Development                2         2
## 1324  28        No        Human Resources                1         2
## 1325  29        No Research & Development               29         1
## 1326  42        No Research & Development                8         3
## 1327  32       Yes                  Sales                2         4
## 1328  46        No                  Sales                3         3
## 1329  27        No                  Sales               23         1
## 1330  29        No        Human Resources                6         1
## 1331  43        No Research & Development                6         3
## 1332  48        No Research & Development               10         3
## 1333  29       Yes Research & Development               24         2
## 1334  46       Yes                  Sales               10         3
## 1335  27        No Research & Development               15         3
## 1336  39        No Research & Development               19         4
## 1337  55        No Research & Development                2         4
## 1338  28        No                  Sales                3         3
## 1339  30       Yes                  Sales                9         3
## 1340  22       Yes Research & Development                7         1
## 1341  36        No                  Sales               10         4
## 1342  31        No Research & Development               20         3
## 1343  34        No                  Sales                4         3
## 1344  29        No Research & Development                7         3
## 1345  37        No Research & Development                7         4
## 1346  35        No Research & Development               16         2
## 1347  45        No Research & Development               25         2
## 1348  36        No        Human Resources                2         1
## 1349  40        No Research & Development                1         4
## 1350  26        No Research & Development                1         2
## 1351  27        No                  Sales                2         2
## 1352  48        No Research & Development               22         3
## 1353  44        No Research & Development                1         4
## 1354  34       Yes Research & Development               16         4
## 1355  56       Yes Research & Development               24         2
## 1356  36        No                  Sales               17         2
## 1357  41        No                  Sales                8         3
## 1358  42        No Research & Development                6         3
## 1359  31        No                  Sales               10         2
## 1360  34        No                  Sales                3         1
## 1361  31        No Research & Development                4         3
## 1362  26        No Research & Development                6         3
## 1363  45        No Research & Development                1         4
## 1364  33        No                  Sales               10         4
## 1365  28        No                  Sales                1         2
## 1366  29       Yes                  Sales               24         3
## 1367  39        No                  Sales               21         4
## 1368  27        No Research & Development                2         4
## 1369  34        No Research & Development               22         4
## 1370  28       Yes                  Sales               13         2
## 1371  47        No Research & Development               14         4
## 1372  56        No                  Sales               11         5
## 1373  39        No Research & Development                9         2
## 1374  38        No Research & Development                8         3
## 1375  58        No                  Sales               21         3
## 1376  32       Yes Research & Development                5         2
## 1377  38        No Research & Development                9         2
## 1378  49        No Research & Development                2         1
## 1379  42        No                  Sales               12         4
## 1380  27       Yes        Human Resources               22         3
## 1381  35        No                  Sales               18         4
## 1382  28        No Research & Development               16         3
## 1383  31        No Research & Development                3         2
## 1384  36        No Research & Development                9         4
## 1385  34        No                  Sales                1         3
## 1386  34        No                  Sales               13         4
## 1387  26        No Research & Development                1         3
## 1388  29        No Research & Development                1         3
## 1389  32        No Research & Development               15         4
## 1390  31        No Research & Development                1         3
## 1391  28       Yes Research & Development               17         3
## 1392  38        No                  Sales                1         3
## 1393  35        No                  Sales                7         4
## 1394  27        No                  Sales                9         3
## 1395  32        No Research & Development                5         4
## 1396  31       Yes                  Sales               26         4
## 1397  53       Yes                  Sales               24         4
## 1398  54        No Research & Development                9         2
## 1399  33        No Research & Development                7         2
## 1400  43        No Research & Development               11         3
## 1401  38        No        Human Resources                1         4
## 1402  55        No        Human Resources               26         4
## 1403  31        No Research & Development                2         1
## 1404  39        No                  Sales               15         4
## 1405  42        No Research & Development               23         2
## 1406  31        No Research & Development               10         3
## 1407  54        No Research & Development               10         3
## 1408  24        No Research & Development                1         2
## 1409  23        No Research & Development               12         2
## 1410  40        No Research & Development               11         3
## 1411  40        No                  Sales                2         2
## 1412  25        No        Human Resources                2         3
## 1413  30        No Research & Development                1         2
## 1414  25        No Research & Development                2         1
## 1415  47        No Research & Development               25         3
## 1416  33        No Research & Development                1         2
## 1417  38        No                  Sales                1         4
## 1418  31        No                  Sales                2         2
## 1419  38        No Research & Development                6         4
## 1420  42        No Research & Development               18         4
## 1421  41        No Research & Development                1         3
## 1422  47        No Research & Development                1         1
## 1423  35        No Research & Development               11         4
## 1424  22        No Research & Development                1         2
## 1425  35        No Research & Development                9         4
## 1426  33        No Research & Development               15         2
## 1427  32        No Research & Development               29         4
## 1428  40        No Research & Development                1         4
## 1429  32        No                  Sales                1         4
## 1430  39        No Research & Development               24         1
## 1431  38        No Research & Development               10         3
## 1432  32        No                  Sales                1         4
## 1433  37        No Research & Development               10         3
## 1434  25        No                  Sales                8         2
## 1435  52        No                  Sales               29         4
## 1436  44        No Research & Development                1         3
## 1437  21        No                  Sales                5         1
## 1438  39        No Research & Development                9         3
## 1439  23       Yes                  Sales                9         3
## 1440  36        No                  Sales                3         3
## 1441  36        No Research & Development                4         2
## 1442  56        No Research & Development                1         4
## 1443  29       Yes Research & Development                1         4
## 1444  42        No Research & Development                2         3
## 1445  56       Yes Research & Development                7         2
## 1446  41        No Research & Development               28         4
## 1447  34        No                  Sales               28         3
## 1448  36        No                  Sales               15         4
## 1449  41        No                  Sales                3         3
## 1450  32        No Research & Development                2         3
## 1451  35        No        Human Resources               26         4
## 1452  38        No                  Sales               10         2
## 1453  50       Yes                  Sales                1         4
## 1454  36        No                  Sales               11         4
## 1455  45        No                  Sales               20         3
## 1456  40        No Research & Development                2         4
## 1457  35        No Research & Development               18         4
## 1458  40        No Research & Development                2         4
## 1459  35        No Research & Development                1         4
## 1460  29        No Research & Development               13         2
## 1461  29        No Research & Development               28         4
## 1462  50       Yes                  Sales               28         3
## 1463  39        No                  Sales               24         1
## 1464  31        No Research & Development                5         3
## 1465  26        No                  Sales                5         3
## 1466  36        No Research & Development               23         2
## 1467  39        No Research & Development                6         1
## 1468  27        No Research & Development                4         3
## 1469  49        No                  Sales                2         3
## 1470  34        No Research & Development                8         3
##        EducationField EnvironmentSatisfaction JobSatisfaction MaritalStatus
## 1       Life Sciences                       2               4        Single
## 2       Life Sciences                       3               2       Married
## 3               Other                       4               3        Single
## 4       Life Sciences                       4               3       Married
## 5             Medical                       1               2       Married
## 6       Life Sciences                       4               4        Single
## 7             Medical                       3               1       Married
## 8       Life Sciences                       4               3      Divorced
## 9       Life Sciences                       4               3        Single
## 10            Medical                       3               3       Married
## 11            Medical                       1               2       Married
## 12      Life Sciences                       4               3        Single
## 13      Life Sciences                       1               3      Divorced
## 14            Medical                       2               4      Divorced
## 15      Life Sciences                       3               3        Single
## 16      Life Sciences                       2               1      Divorced
## 17      Life Sciences                       1               2      Divorced
## 18            Medical                       4               4      Divorced
## 19      Life Sciences                       1               4       Married
## 20      Life Sciences                       4               4        Single
## 21              Other                       1               3      Divorced
## 22      Life Sciences                       3               1        Single
## 23      Life Sciences                       1               2        Single
## 24      Life Sciences                       3               4        Single
## 25            Medical                       2               1        Single
## 26              Other                       3               3      Divorced
## 27      Life Sciences                       2               1        Single
## 28          Marketing                       3               2       Married
## 29            Medical                       1               4       Married
## 30          Marketing                       2               1        Single
## 31            Medical                       3               4        Single
## 32              Other                       4               4       Married
## 33            Medical                       4               3        Single
## 34   Technical Degree                       4               4       Married
## 35            Medical                       2               4       Married
## 36            Medical                       4               3      Divorced
## 37          Marketing                       1               3       Married
## 38          Marketing                       4               4       Married
## 39      Life Sciences                       2               1       Married
## 40      Life Sciences                       3               1       Married
## 41              Other                       3               4      Divorced
## 42      Life Sciences                       4               1      Divorced
## 43      Life Sciences                       1               3        Single
## 44      Life Sciences                       4               3        Single
## 45            Medical                       3               4        Single
## 46   Technical Degree                       2               3       Married
## 47          Marketing                       2               3        Single
## 48      Life Sciences                       2               2       Married
## 49          Marketing                       1               4        Single
## 50      Life Sciences                       4               4       Married
## 51      Life Sciences                       1               3        Single
## 52   Technical Degree                       3               3        Single
## 53          Marketing                       2               1      Divorced
## 54            Medical                       3               1       Married
## 55          Marketing                       3               4       Married
## 56      Life Sciences                       1               4        Single
## 57      Life Sciences                       2               1       Married
## 58            Medical                       3               1       Married
## 59      Life Sciences                       4               4      Divorced
## 60      Life Sciences                       1               3      Divorced
## 61            Medical                       1               4       Married
## 62      Life Sciences                       4               4        Single
## 63            Medical                       2               3      Divorced
## 64      Life Sciences                       1               1        Single
## 65   Technical Degree                       3               3      Divorced
## 66            Medical                       4               3      Divorced
## 67      Life Sciences                       2               2        Single
## 68      Life Sciences                       2               1      Divorced
## 69            Medical                       2               1       Married
## 70            Medical                       4               3       Married
## 71      Life Sciences                       1               3        Single
## 72      Life Sciences                       3               2       Married
## 73            Medical                       3               2        Single
## 74      Life Sciences                       2               2       Married
## 75      Life Sciences                       2               4       Married
## 76      Life Sciences                       3               4        Single
## 77          Marketing                       3               1        Single
## 78              Other                       4               1       Married
## 79            Medical                       1               3        Single
## 80            Medical                       2               2      Divorced
## 81      Life Sciences                       4               4       Married
## 82            Medical                       2               3        Single
## 83      Life Sciences                       1               4       Married
## 84            Medical                       2               4      Divorced
## 85            Medical                       1               2       Married
## 86      Life Sciences                       4               4        Single
## 87   Technical Degree                       3               1      Divorced
## 88      Life Sciences                       4               4       Married
## 89      Life Sciences                       3               4       Married
## 90            Medical                       3               4        Single
## 91      Life Sciences                       3               2       Married
## 92          Marketing                       3               4        Single
## 93            Medical                       3               2      Divorced
## 94            Medical                       3               1       Married
## 95            Medical                       2               3        Single
## 96   Technical Degree                       1               3       Married
## 97              Other                       1               3       Married
## 98            Medical                       2               3       Married
## 99            Medical                       4               3        Single
## 100           Medical                       2               2       Married
## 101   Human Resources                       3               1      Divorced
## 102     Life Sciences                       4               1        Single
## 103     Life Sciences                       4               4        Single
## 104             Other                       1               3        Single
## 105     Life Sciences                       3               4      Divorced
## 106   Human Resources                       3               4       Married
## 107     Life Sciences                       1               2       Married
## 108         Marketing                       3               3        Single
## 109           Medical                       4               4       Married
## 110           Medical                       2               4        Single
## 111           Medical                       1               1        Single
## 112     Life Sciences                       1               3        Single
## 113   Human Resources                       4               4        Single
## 114     Life Sciences                       2               3       Married
## 115     Life Sciences                       3               2      Divorced
## 116     Life Sciences                       3               4        Single
## 117           Medical                       3               1        Single
## 118  Technical Degree                       2               4       Married
## 119     Life Sciences                       1               4      Divorced
## 120     Life Sciences                       3               4       Married
## 121     Life Sciences                       1               3      Divorced
## 122         Marketing                       3               2       Married
## 123     Life Sciences                       2               2       Married
## 124     Life Sciences                       1               3        Single
## 125     Life Sciences                       2               3       Married
## 126             Other                       3               2       Married
## 127           Medical                       4               4       Married
## 128         Marketing                       4               3        Single
## 129  Technical Degree                       3               4       Married
## 130           Medical                       3               1       Married
## 131           Medical                       2               3        Single
## 132         Marketing                       3               4        Single
## 133     Life Sciences                       2               3       Married
## 134     Life Sciences                       3               3      Divorced
## 135     Life Sciences                       3               3       Married
## 136           Medical                       2               2      Divorced
## 137     Life Sciences                       1               4        Single
## 138     Life Sciences                       4               3       Married
## 139     Life Sciences                       1               3       Married
## 140   Human Resources                       3               4       Married
## 141           Medical                       1               1        Single
## 142           Medical                       3               4        Single
## 143  Technical Degree                       4               3        Single
## 144     Life Sciences                       1               3        Single
## 145           Medical                       4               4      Divorced
## 146  Technical Degree                       4               1      Divorced
## 147           Medical                       2               4        Single
## 148     Life Sciences                       4               1      Divorced
## 149     Life Sciences                       3               1       Married
## 150           Medical                       2               2        Single
## 151           Medical                       2               2      Divorced
## 152         Marketing                       3               2       Married
## 153         Marketing                       2               3       Married
## 154     Life Sciences                       2               2      Divorced
## 155         Marketing                       2               4        Single
## 156  Technical Degree                       4               3       Married
## 157           Medical                       2               3       Married
## 158           Medical                       2               2       Married
## 159         Marketing                       3               4       Married
## 160         Marketing                       3               3       Married
## 161           Medical                       3               4       Married
## 162           Medical                       4               2      Divorced
## 163           Medical                       3               4       Married
## 164     Life Sciences                       3               4      Divorced
## 165           Medical                       3               3      Divorced
## 166     Life Sciences                       3               2        Single
## 167     Life Sciences                       1               3      Divorced
## 168     Life Sciences                       2               4       Married
## 169     Life Sciences                       1               4        Single
## 170     Life Sciences                       3               3        Single
## 171  Technical Degree                       3               2       Married
## 172  Technical Degree                       3               1        Single
## 173           Medical                       4               2        Single
## 174           Medical                       3               1      Divorced
## 175     Life Sciences                       3               1      Divorced
## 176     Life Sciences                       3               1      Divorced
## 177     Life Sciences                       3               4        Single
## 178     Life Sciences                       2               4        Single
## 179         Marketing                       2               1      Divorced
## 180     Life Sciences                       3               4        Single
## 181           Medical                       3               4       Married
## 182           Medical                       4               2        Single
## 183         Marketing                       2               2        Single
## 184           Medical                       3               3       Married
## 185           Medical                       4               1      Divorced
## 186           Medical                       4               2       Married
## 187           Medical                       4               3       Married
## 188           Medical                       3               2        Single
## 189     Life Sciences                       4               3       Married
## 190           Medical                       4               2        Single
## 191     Life Sciences                       3               3       Married
## 192           Medical                       4               2        Single
## 193     Life Sciences                       2               3       Married
## 194           Medical                       4               4      Divorced
## 195           Medical                       1               4       Married
## 196     Life Sciences                       2               1       Married
## 197           Medical                       2               2        Single
## 198           Medical                       3               3      Divorced
## 199     Life Sciences                       4               3       Married
## 200  Technical Degree                       4               4       Married
## 201  Technical Degree                       3               1       Married
## 202     Life Sciences                       4               4      Divorced
## 203           Medical                       4               3      Divorced
## 204           Medical                       3               4       Married
## 205           Medical                       2               1       Married
## 206         Marketing                       2               4       Married
## 207     Life Sciences                       4               2      Divorced
## 208           Medical                       2               4        Single
## 209     Life Sciences                       4               4       Married
## 210           Medical                       4               1      Divorced
## 211           Medical                       4               4       Married
## 212     Life Sciences                       3               3        Single
## 213     Life Sciences                       4               3        Single
## 214     Life Sciences                       2               2       Married
## 215  Technical Degree                       4               1        Single
## 216     Life Sciences                       4               4        Single
## 217         Marketing                       3               1        Single
## 218  Technical Degree                       3               3        Single
## 219           Medical                       4               4        Single
## 220         Marketing                       4               1       Married
## 221     Life Sciences                       4               2        Single
## 222           Medical                       3               2       Married
## 223             Other                       2               4      Divorced
## 224     Life Sciences                       1               3      Divorced
## 225           Medical                       3               3       Married
## 226     Life Sciences                       3               4       Married
## 227         Marketing                       1               4      Divorced
## 228           Medical                       2               4       Married
## 229         Marketing                       3               3        Single
## 230           Medical                       3               4        Single
## 231     Life Sciences                       3               4        Single
## 232  Technical Degree                       3               4       Married
## 233           Medical                       2               3       Married
## 234           Medical                       4               4      Divorced
## 235           Medical                       3               4       Married
## 236         Marketing                       4               4       Married
## 237     Life Sciences                       1               1       Married
## 238     Life Sciences                       1               3        Single
## 239     Life Sciences                       3               2       Married
## 240     Life Sciences                       4               3        Single
## 241           Medical                       3               3      Divorced
## 242         Marketing                       3               4       Married
## 243     Life Sciences                       3               1      Divorced
## 244  Technical Degree                       1               4      Divorced
## 245             Other                       3               4       Married
## 246           Medical                       2               3      Divorced
## 247     Life Sciences                       3               4       Married
## 248     Life Sciences                       4               1       Married
## 249           Medical                       3               1       Married
## 250     Life Sciences                       1               3       Married
## 251           Medical                       1               3      Divorced
## 252  Technical Degree                       3               3        Single
## 253     Life Sciences                       3               4        Single
## 254     Life Sciences                       4               1        Single
## 255         Marketing                       4               4      Divorced
## 256     Life Sciences                       1               3       Married
## 257           Medical                       4               1      Divorced
## 258           Medical                       1               3      Divorced
## 259     Life Sciences                       3               4       Married
## 260           Medical                       3               2        Single
## 261     Life Sciences                       2               2       Married
## 262     Life Sciences                       4               4       Married
## 263  Technical Degree                       4               1        Single
## 264  Technical Degree                       3               2       Married
## 265     Life Sciences                       1               3        Single
## 266           Medical                       1               2       Married
## 267           Medical                       2               4       Married
## 268     Life Sciences                       2               1      Divorced
## 269           Medical                       3               4       Married
## 270     Life Sciences                       4               4       Married
## 271           Medical                       4               1        Single
## 272     Life Sciences                       1               2       Married
## 273           Medical                       4               4       Married
## 274           Medical                       3               4       Married
## 275           Medical                       4               3        Single
## 276           Medical                       1               4      Divorced
## 277     Life Sciences                       2               2      Divorced
## 278           Medical                       1               1      Divorced
## 279     Life Sciences                       3               2      Divorced
## 280     Life Sciences                       1               2      Divorced
## 281           Medical                       3               3       Married
## 282     Life Sciences                       2               3       Married
## 283     Life Sciences                       2               4        Single
## 284  Technical Degree                       2               4       Married
## 285           Medical                       1               1       Married
## 286     Life Sciences                       4               4        Single
## 287     Life Sciences                       4               3      Divorced
## 288     Life Sciences                       4               4      Divorced
## 289           Medical                       1               2      Divorced
## 290     Life Sciences                       4               4        Single
## 291     Life Sciences                       3               1        Single
## 292  Technical Degree                       3               2        Single
## 293         Marketing                       4               2      Divorced
## 294         Marketing                       4               4        Single
## 295           Medical                       2               4       Married
## 296         Marketing                       3               2       Married
## 297     Life Sciences                       3               3        Single
## 298         Marketing                       3               2       Married
## 299     Life Sciences                       3               4       Married
## 300           Medical                       4               2      Divorced
## 301     Life Sciences                       4               2        Single
## 302           Medical                       4               3        Single
## 303           Medical                       2               1        Single
## 304  Technical Degree                       2               4       Married
## 305           Medical                       3               4      Divorced
## 306     Life Sciences                       2               2       Married
## 307     Life Sciences                       4               3       Married
## 308     Life Sciences                       1               2       Married
## 309     Life Sciences                       4               3      Divorced
## 310  Technical Degree                       3               4       Married
## 311   Human Resources                       1               1       Married
## 312     Life Sciences                       1               1      Divorced
## 313     Life Sciences                       3               4      Divorced
## 314     Life Sciences                       4               2       Married
## 315           Medical                       3               1       Married
## 316     Life Sciences                       3               4        Single
## 317  Technical Degree                       3               3        Single
## 318           Medical                       3               2       Married
## 319     Life Sciences                       3               2        Single
## 320  Technical Degree                       3               2       Married
## 321     Life Sciences                       4               3        Single
## 322         Marketing                       4               4      Divorced
## 323           Medical                       1               4        Single
## 324           Medical                       1               4       Married
## 325           Medical                       4               4       Married
## 326     Life Sciences                       3               3       Married
## 327           Medical                       3               4       Married
## 328           Medical                       4               3       Married
## 329         Marketing                       2               4        Single
## 330     Life Sciences                       4               3       Married
## 331     Life Sciences                       3               3      Divorced
## 332         Marketing                       3               2       Married
## 333     Life Sciences                       4               3        Single
## 334     Life Sciences                       3               1       Married
## 335             Other                       4               4       Married
## 336           Medical                       2               4       Married
## 337             Other                       2               1       Married
## 338             Other                       2               4        Single
## 339         Marketing                       4               3      Divorced
## 340         Marketing                       2               2       Married
## 341           Medical                       4               4      Divorced
## 342     Life Sciences                       3               4      Divorced
## 343           Medical                       3               4        Single
## 344         Marketing                       4               2      Divorced
## 345  Technical Degree                       3               2        Single
## 346     Life Sciences                       3               4      Divorced
## 347           Medical                       4               2        Single
## 348           Medical                       2               3        Single
## 349     Life Sciences                       1               4        Single
## 350     Life Sciences                       4               3       Married
## 351  Technical Degree                       3               3      Divorced
## 352           Medical                       3               2       Married
## 353           Medical                       1               3       Married
## 354           Medical                       3               1      Divorced
## 355  Technical Degree                       4               3       Married
## 356     Life Sciences                       3               3       Married
## 357             Other                       1               4        Single
## 358  Technical Degree                       1               2        Single
## 359           Medical                       4               4        Single
## 360           Medical                       1               4       Married
## 361           Medical                       4               3       Married
## 362     Life Sciences                       4               3       Married
## 363           Medical                       1               4        Single
## 364         Marketing                       4               3        Single
## 365           Medical                       3               1       Married
## 366           Medical                       3               3       Married
## 367         Marketing                       1               2        Single
## 368  Technical Degree                       4               4        Single
## 369         Marketing                       3               3       Married
## 370     Life Sciences                       3               2        Single
## 371     Life Sciences                       3               2        Single
## 372     Life Sciences                       4               4        Single
## 373     Life Sciences                       3               2        Single
## 374           Medical                       4               2      Divorced
## 375     Life Sciences                       2               4        Single
## 376             Other                       2               3        Single
## 377     Life Sciences                       3               4       Married
## 378     Life Sciences                       4               3       Married
## 379         Marketing                       1               4        Single
## 380     Life Sciences                       3               4        Single
## 381         Marketing                       4               3      Divorced
## 382  Technical Degree                       3               2       Married
## 383  Technical Degree                       3               1        Single
## 384           Medical                       1               2       Married
## 385           Medical                       2               3       Married
## 386  Technical Degree                       3               4        Single
## 387     Life Sciences                       4               1      Divorced
## 388         Marketing                       4               2      Divorced
## 389     Life Sciences                       2               1      Divorced
## 390     Life Sciences                       3               2        Single
## 391     Life Sciences                       1               2      Divorced
## 392           Medical                       2               3       Married
## 393           Medical                       1               1       Married
## 394         Marketing                       3               3       Married
## 395           Medical                       2               1       Married
## 396           Medical                       4               4       Married
## 397             Other                       3               3      Divorced
## 398     Life Sciences                       2               4        Single
## 399           Medical                       2               3       Married
## 400     Life Sciences                       4               1       Married
## 401     Life Sciences                       2               3      Divorced
## 402     Life Sciences                       3               1       Married
## 403  Technical Degree                       2               3        Single
## 404         Marketing                       2               1       Married
## 405           Medical                       3               1      Divorced
## 406           Medical                       1               1       Married
## 407           Medical                       4               3       Married
## 408     Life Sciences                       1               4       Married
## 409     Life Sciences                       4               4       Married
## 410     Life Sciences                       1               3      Divorced
## 411     Life Sciences                       3               4        Single
## 412     Life Sciences                       1               1       Married
## 413           Medical                       3               3      Divorced
## 414  Technical Degree                       4               4       Married
## 415  Technical Degree                       1               2        Single
## 416         Marketing                       4               3      Divorced
## 417     Life Sciences                       4               4       Married
## 418     Life Sciences                       3               3       Married
## 419     Life Sciences                       1               4      Divorced
## 420     Life Sciences                       3               4       Married
## 421           Medical                       2               3       Married
## 422  Technical Degree                       3               2       Married
## 423  Technical Degree                       1               4        Single
## 424             Other                       3               1       Married
## 425         Marketing                       1               4      Divorced
## 426     Life Sciences                       2               3       Married
## 427           Medical                       3               4        Single
## 428         Marketing                       3               1       Married
## 429           Medical                       1               4      Divorced
## 430     Life Sciences                       1               3       Married
## 431     Life Sciences                       4               3        Single
## 432     Life Sciences                       3               3        Single
## 433     Life Sciences                       4               3      Divorced
## 434         Marketing                       3               4       Married
## 435     Life Sciences                       3               2      Divorced
## 436           Medical                       2               3       Married
## 437           Medical                       1               4      Divorced
## 438         Marketing                       4               2        Single
## 439     Life Sciences                       4               3       Married
## 440     Life Sciences                       1               3       Married
## 441   Human Resources                       2               1      Divorced
## 442             Other                       2               3       Married
## 443           Medical                       2               4        Single
## 444  Technical Degree                       3               3        Single
## 445         Marketing                       2               4       Married
## 446     Life Sciences                       1               2        Single
## 447     Life Sciences                       4               4        Single
## 448         Marketing                       2               3       Married
## 449     Life Sciences                       2               3        Single
## 450     Life Sciences                       3               3       Married
## 451     Life Sciences                       2               4        Single
## 452           Medical                       4               1       Married
## 453             Other                       4               2       Married
## 454     Life Sciences                       2               3      Divorced
## 455  Technical Degree                       4               4      Divorced
## 456           Medical                       1               3      Divorced
## 457     Life Sciences                       3               4      Divorced
## 458         Marketing                       2               2        Single
## 459             Other                       3               1      Divorced
## 460             Other                       1               3        Single
## 461           Medical                       1               3      Divorced
## 462           Medical                       1               3        Single
## 463     Life Sciences                       4               4        Single
## 464  Technical Degree                       3               4        Single
## 465  Technical Degree                       2               4        Single
## 466           Medical                       1               3       Married
## 467     Life Sciences                       2               1       Married
## 468           Medical                       1               2      Divorced
## 469  Technical Degree                       4               1      Divorced
## 470             Other                       4               3       Married
## 471           Medical                       4               4       Married
## 472           Medical                       3               3       Married
## 473     Life Sciences                       2               2       Married
## 474     Life Sciences                       4               3      Divorced
## 475           Medical                       2               4       Married
## 476         Marketing                       1               2       Married
## 477             Other                       4               2       Married
## 478           Medical                       1               2       Married
## 479           Medical                       2               3       Married
## 480     Life Sciences                       1               3       Married
## 481     Life Sciences                       2               1       Married
## 482     Life Sciences                       2               4       Married
## 483           Medical                       2               1      Divorced
## 484             Other                       1               4        Single
## 485           Medical                       1               4      Divorced
## 486           Medical                       1               3      Divorced
## 487         Marketing                       4               3       Married
## 488     Life Sciences                       4               2        Single
## 489     Life Sciences                       3               4       Married
## 490             Other                       2               4      Divorced
## 491     Life Sciences                       3               1        Single
## 492           Medical                       4               3      Divorced
## 493     Life Sciences                       4               1       Married
## 494     Life Sciences                       1               3        Single
## 495  Technical Degree                       3               3      Divorced
## 496         Marketing                       3               1      Divorced
## 497  Technical Degree                       3               3        Single
## 498             Other                       4               4       Married
## 499           Medical                       1               3       Married
## 500         Marketing                       3               3      Divorced
## 501     Life Sciences                       1               4       Married
## 502           Medical                       3               3      Divorced
## 503           Medical                       4               1        Single
## 504     Life Sciences                       2               4       Married
## 505     Life Sciences                       1               1       Married
## 506     Life Sciences                       3               4       Married
## 507             Other                       3               3       Married
## 508           Medical                       2               3       Married
## 509     Life Sciences                       2               4        Single
## 510     Life Sciences                       3               4      Divorced
## 511           Medical                       3               2       Married
## 512           Medical                       2               2      Divorced
## 513           Medical                       1               4        Single
## 514           Medical                       4               3        Single
## 515     Life Sciences                       1               1        Single
## 516     Life Sciences                       3               3       Married
## 517           Medical                       1               1       Married
## 518     Life Sciences                       4               2       Married
## 519         Marketing                       4               4        Single
## 520     Life Sciences                       2               4      Divorced
## 521         Marketing                       2               2       Married
## 522           Medical                       4               4      Divorced
## 523     Life Sciences                       4               4        Single
## 524           Medical                       4               3       Married
## 525           Medical                       4               2        Single
## 526     Life Sciences                       1               3        Single
## 527  Technical Degree                       4               3        Single
## 528         Marketing                       4               4        Single
## 529  Technical Degree                       2               3       Married
## 530     Life Sciences                       2               4        Single
## 531     Life Sciences                       3               1       Married
## 532     Life Sciences                       3               4        Single
## 533         Marketing                       4               1        Single
## 534     Life Sciences                       4               1       Married
## 535     Life Sciences                       3               3       Married
## 536   Human Resources                       2               4      Divorced
## 537         Marketing                       1               1        Single
## 538     Life Sciences                       4               1      Divorced
## 539   Human Resources                       4               3       Married
## 540         Marketing                       4               2       Married
## 541     Life Sciences                       1               2        Single
## 542     Life Sciences                       1               1       Married
## 543     Life Sciences                       3               3        Single
## 544           Medical                       1               3        Single
## 545           Medical                       4               3      Divorced
## 546         Marketing                       3               4      Divorced
## 547     Life Sciences                       3               3        Single
## 548           Medical                       3               3      Divorced
## 549     Life Sciences                       4               4       Married
## 550           Medical                       2               3        Single
## 551           Medical                       2               1       Married
## 552   Human Resources                       3               2       Married
## 553           Medical                       3               4       Married
## 554           Medical                       4               4        Single
## 555           Medical                       4               1        Single
## 556         Marketing                       4               2      Divorced
## 557     Life Sciences                       4               4        Single
## 558     Life Sciences                       4               1      Divorced
## 559     Life Sciences                       1               4       Married
## 560           Medical                       4               3       Married
## 561     Life Sciences                       2               1      Divorced
## 562         Marketing                       3               1       Married
## 563             Other                       4               4        Single
## 564           Medical                       3               4        Single
## 565  Technical Degree                       2               3        Single
## 566           Medical                       1               3        Single
## 567     Life Sciences                       2               3        Single
## 568             Other                       4               4        Single
## 569           Medical                       4               1       Married
## 570     Life Sciences                       1               1        Single
## 571           Medical                       4               4       Married
## 572     Life Sciences                       1               4      Divorced
## 573           Medical                       2               3       Married
## 574  Technical Degree                       4               1        Single
## 575     Life Sciences                       2               4        Single
## 576           Medical                       4               1      Divorced
## 577         Marketing                       3               4       Married
## 578     Life Sciences                       4               1      Divorced
## 579     Life Sciences                       1               1        Single
## 580           Medical                       3               1        Single
## 581     Life Sciences                       1               4       Married
## 582     Life Sciences                       4               3       Married
## 583           Medical                       3               2       Married
## 584     Life Sciences                       3               1       Married
## 585     Life Sciences                       2               4      Divorced
## 586     Life Sciences                       3               1       Married
## 587     Life Sciences                       3               2      Divorced
## 588     Life Sciences                       4               3       Married
## 589           Medical                       3               3       Married
## 590     Life Sciences                       2               1       Married
## 591           Medical                       3               3       Married
## 592         Marketing                       1               1        Single
## 593             Other                       3               4       Married
## 594             Other                       3               2       Married
## 595     Life Sciences                       3               3       Married
## 596     Life Sciences                       4               2        Single
## 597     Life Sciences                       4               3        Single
## 598     Life Sciences                       4               4       Married
## 599           Medical                       3               3        Single
## 600   Human Resources                       3               2       Married
## 601     Life Sciences                       3               3       Married
## 602           Medical                       1               3        Single
## 603           Medical                       3               4        Single
## 604     Life Sciences                       2               3        Single
## 605     Life Sciences                       2               2       Married
## 606     Life Sciences                       1               1      Divorced
## 607     Life Sciences                       3               4        Single
## 608         Marketing                       3               4       Married
## 609           Medical                       3               4        Single
## 610     Life Sciences                       2               1       Married
## 611  Technical Degree                       3               4      Divorced
## 612             Other                       3               3        Single
## 613         Marketing                       2               2       Married
## 614   Human Resources                       3               4       Married
## 615           Medical                       3               3       Married
## 616           Medical                       4               4       Married
## 617         Marketing                       1               3       Married
## 618           Medical                       4               2        Single
## 619           Medical                       1               1        Single
## 620           Medical                       1               1      Divorced
## 621           Medical                       3               1        Single
## 622     Life Sciences                       2               4       Married
## 623     Life Sciences                       2               4      Divorced
## 624     Life Sciences                       2               4      Divorced
## 625         Marketing                       1               4       Married
## 626         Marketing                       4               1      Divorced
## 627           Medical                       3               3       Married
## 628           Medical                       3               4       Married
## 629         Marketing                       4               3      Divorced
## 630           Medical                       2               4      Divorced
## 631     Life Sciences                       4               4       Married
## 632     Life Sciences                       1               4       Married
## 633           Medical                       2               4        Single
## 634     Life Sciences                       1               1       Married
## 635             Other                       3               1       Married
## 636     Life Sciences                       4               3       Married
## 637     Life Sciences                       4               2      Divorced
## 638     Life Sciences                       4               4      Divorced
## 639         Marketing                       3               1       Married
## 640  Technical Degree                       3               1       Married
## 641     Life Sciences                       1               4       Married
## 642     Life Sciences                       2               2       Married
## 643         Marketing                       2               2       Married
## 644     Life Sciences                       3               4       Married
## 645     Life Sciences                       4               4       Married
## 646           Medical                       2               3      Divorced
## 647         Marketing                       1               4       Married
## 648  Technical Degree                       4               2       Married
## 649           Medical                       3               4       Married
## 650     Life Sciences                       4               4        Single
## 651     Life Sciences                       4               4       Married
## 652         Marketing                       3               4       Married
## 653           Medical                       1               2        Single
## 654     Life Sciences                       1               1      Divorced
## 655     Life Sciences                       4               4       Married
## 656   Human Resources                       4               2      Divorced
## 657     Life Sciences                       1               4        Single
## 658           Medical                       1               4      Divorced
## 659     Life Sciences                       2               1       Married
## 660           Medical                       1               4        Single
## 661     Life Sciences                       4               4      Divorced
## 662     Life Sciences                       1               2      Divorced
## 663           Medical                       3               3        Single
## 664             Other                       4               4        Single
## 665     Life Sciences                       3               4       Married
## 666     Life Sciences                       4               4        Single
## 667     Life Sciences                       2               3       Married
## 668     Life Sciences                       2               4      Divorced
## 669           Medical                       3               3      Divorced
## 670           Medical                       4               1       Married
## 671     Life Sciences                       2               3        Single
## 672     Life Sciences                       2               2      Divorced
## 673           Medical                       3               3        Single
## 674             Other                       3               1        Single
## 675  Technical Degree                       3               2      Divorced
## 676     Life Sciences                       2               3       Married
## 677     Life Sciences                       4               4       Married
## 678             Other                       1               2       Married
## 679           Medical                       4               3       Married
## 680         Marketing                       4               3       Married
## 681             Other                       2               4        Single
## 682  Technical Degree                       4               1       Married
## 683     Life Sciences                       3               2       Married
## 684         Marketing                       3               2       Married
## 685         Marketing                       1               2      Divorced
## 686           Medical                       3               1        Single
## 687           Medical                       4               1        Single
## 688           Medical                       3               3        Single
## 689             Other                       4               2        Single
## 690  Technical Degree                       1               1        Single
## 691           Medical                       4               4       Married
## 692           Medical                       4               2      Divorced
## 693           Medical                       3               1       Married
## 694     Life Sciences                       3               4       Married
## 695     Life Sciences                       2               4        Single
## 696     Life Sciences                       1               3       Married
## 697     Life Sciences                       3               2       Married
## 698  Technical Degree                       3               4       Married
## 699           Medical                       3               3       Married
## 700     Life Sciences                       4               4       Married
## 701  Technical Degree                       4               3        Single
## 702           Medical                       3               3      Divorced
## 703             Other                       3               3      Divorced
## 704  Technical Degree                       3               4        Single
## 705     Life Sciences                       4               4      Divorced
## 706     Life Sciences                       1               3        Single
## 707     Life Sciences                       2               2        Single
## 708           Medical                       3               3      Divorced
## 709  Technical Degree                       1               4      Divorced
## 710           Medical                       3               1        Single
## 711     Life Sciences                       4               3        Single
## 712     Life Sciences                       4               1        Single
## 713     Life Sciences                       2               4        Single
## 714           Medical                       4               4      Divorced
## 715           Medical                       4               4      Divorced
## 716             Other                       3               2       Married
## 717           Medical                       1               3      Divorced
## 718  Technical Degree                       3               2       Married
## 719     Life Sciences                       4               1       Married
## 720     Life Sciences                       4               4        Single
## 721     Life Sciences                       1               3       Married
## 722     Life Sciences                       4               3       Married
## 723           Medical                       3               3       Married
## 724           Medical                       4               3      Divorced
## 725           Medical                       4               3      Divorced
## 726             Other                       3               2      Divorced
## 727     Life Sciences                       3               1       Married
## 728     Life Sciences                       2               4        Single
## 729  Technical Degree                       3               3       Married
## 730           Medical                       3               3      Divorced
## 731     Life Sciences                       2               1       Married
## 732           Medical                       4               1        Single
## 733           Medical                       2               2        Single
## 734           Medical                       4               4       Married
## 735     Life Sciences                       2               1       Married
## 736     Life Sciences                       1               3        Single
## 737     Life Sciences                       3               3        Single
## 738           Medical                       4               3        Single
## 739     Life Sciences                       4               4       Married
## 740     Life Sciences                       1               4       Married
## 741             Other                       2               4      Divorced
## 742         Marketing                       4               3       Married
## 743     Life Sciences                       1               4       Married
## 744     Life Sciences                       3               4        Single
## 745           Medical                       1               2       Married
## 746           Medical                       3               2       Married
## 747     Life Sciences                       2               3      Divorced
## 748     Life Sciences                       2               4        Single
## 749           Medical                       2               1        Single
## 750         Marketing                       1               4       Married
## 751           Medical                       4               4       Married
## 752     Life Sciences                       4               3       Married
## 753     Life Sciences                       3               1        Single
## 754           Medical                       4               1        Single
## 755     Life Sciences                       2               4        Single
## 756     Life Sciences                       4               4       Married
## 757           Medical                       4               3        Single
## 758         Marketing                       2               4      Divorced
## 759  Technical Degree                       2               4       Married
## 760           Medical                       2               2        Single
## 761         Marketing                       3               2       Married
## 762             Other                       1               3      Divorced
## 763     Life Sciences                       1               1       Married
## 764     Life Sciences                       3               3       Married
## 765           Medical                       4               2       Married
## 766             Other                       3               3       Married
## 767           Medical                       2               3       Married
## 768             Other                       4               2        Single
## 769         Marketing                       3               1       Married
## 770           Medical                       1               3      Divorced
## 771           Medical                       4               4      Divorced
## 772     Life Sciences                       3               3       Married
## 773           Medical                       1               3       Married
## 774           Medical                       4               4        Single
## 775           Medical                       3               1        Single
## 776           Medical                       3               4      Divorced
## 777         Marketing                       4               4        Single
## 778     Life Sciences                       3               1        Single
## 779     Life Sciences                       4               1      Divorced
## 780     Life Sciences                       1               3       Married
## 781  Technical Degree                       2               1        Single
## 782           Medical                       1               1       Married
## 783             Other                       3               1       Married
## 784  Technical Degree                       2               3       Married
## 785     Life Sciences                       3               3       Married
## 786  Technical Degree                       1               4       Married
## 787     Life Sciences                       1               3       Married
## 788     Life Sciences                       4               2       Married
## 789             Other                       3               3        Single
## 790           Medical                       2               1       Married
## 791     Life Sciences                       4               4      Divorced
## 792  Technical Degree                       4               1        Single
## 793           Medical                       1               3        Single
## 794     Life Sciences                       1               3      Divorced
## 795     Life Sciences                       1               4        Single
## 796     Life Sciences                       4               4      Divorced
## 797  Technical Degree                       4               4       Married
## 798           Medical                       1               3      Divorced
## 799           Medical                       1               2        Single
## 800           Medical                       4               1       Married
## 801           Medical                       1               2      Divorced
## 802             Other                       4               3        Single
## 803     Life Sciences                       4               2       Married
## 804     Life Sciences                       3               4       Married
## 805           Medical                       1               4        Single
## 806     Life Sciences                       2               3       Married
## 807     Life Sciences                       2               2        Single
## 808         Marketing                       3               3      Divorced
## 809     Life Sciences                       3               4      Divorced
## 810           Medical                       4               2      Divorced
## 811         Marketing                       1               3       Married
## 812         Marketing                       4               2        Single
## 813     Life Sciences                       3               1       Married
## 814     Life Sciences                       1               4      Divorced
## 815           Medical                       3               3        Single
## 816  Technical Degree                       4               2        Single
## 817     Life Sciences                       3               2        Single
## 818     Life Sciences                       1               4        Single
## 819     Life Sciences                       3               4       Married
## 820     Life Sciences                       1               2       Married
## 821         Marketing                       4               4      Divorced
## 822  Technical Degree                       4               2       Married
## 823     Life Sciences                       4               3        Single
## 824     Life Sciences                       4               2      Divorced
## 825           Medical                       2               4        Single
## 826           Medical                       2               4       Married
## 827   Human Resources                       3               3       Married
## 828     Life Sciences                       3               3      Divorced
## 829           Medical                       3               3        Single
## 830         Marketing                       1               1        Single
## 831     Life Sciences                       2               4       Married
## 832           Medical                       3               3       Married
## 833           Medical                       3               4      Divorced
## 834     Life Sciences                       4               3       Married
## 835     Life Sciences                       2               3       Married
## 836  Technical Degree                       3               3        Single
## 837     Life Sciences                       4               1       Married
## 838           Medical                       2               3        Single
## 839     Life Sciences                       3               1        Single
## 840         Marketing                       2               1        Single
## 841           Medical                       4               3       Married
## 842           Medical                       4               2        Single
## 843     Life Sciences                       3               4       Married
## 844           Medical                       1               4       Married
## 845         Marketing                       3               3       Married
## 846           Medical                       3               4       Married
## 847     Life Sciences                       3               2      Divorced
## 848           Medical                       4               1        Single
## 849             Other                       4               4       Married
## 850         Marketing                       1               3        Single
## 851     Life Sciences                       3               1      Divorced
## 852  Technical Degree                       4               1      Divorced
## 853           Medical                       2               4       Married
## 854     Life Sciences                       3               1        Single
## 855           Medical                       1               3       Married
## 856     Life Sciences                       4               4       Married
## 857     Life Sciences                       1               3        Single
## 858     Life Sciences                       3               3        Single
## 859           Medical                       4               3      Divorced
## 860     Life Sciences                       2               4       Married
## 861     Life Sciences                       3               4       Married
## 862         Marketing                       3               1       Married
## 863     Life Sciences                       4               3        Single
## 864   Human Resources                       2               3       Married
## 865     Life Sciences                       1               1      Divorced
## 866     Life Sciences                       3               1      Divorced
## 867           Medical                       2               2       Married
## 868           Medical                       4               1       Married
## 869           Medical                       4               1       Married
## 870     Life Sciences                       4               2       Married
## 871     Life Sciences                       3               1       Married
## 872     Life Sciences                       4               2       Married
## 873           Medical                       2               3       Married
## 874     Life Sciences                       3               3      Divorced
## 875     Life Sciences                       3               3      Divorced
## 876             Other                       4               4        Single
## 877         Marketing                       3               4        Single
## 878  Technical Degree                       4               4      Divorced
## 879           Medical                       4               1       Married
## 880         Marketing                       2               4      Divorced
## 881             Other                       3               2       Married
## 882     Life Sciences                       4               3        Single
## 883  Technical Degree                       3               1      Divorced
## 884           Medical                       1               4       Married
## 885  Technical Degree                       2               2      Divorced
## 886     Life Sciences                       3               4        Single
## 887           Medical                       4               2       Married
## 888           Medical                       1               1       Married
## 889         Marketing                       3               4       Married
## 890     Life Sciences                       1               1       Married
## 891     Life Sciences                       4               3      Divorced
## 892     Life Sciences                       1               4       Married
## 893           Medical                       1               2        Single
## 894     Life Sciences                       1               4      Divorced
## 895     Life Sciences                       4               4       Married
## 896           Medical                       3               1       Married
## 897           Medical                       3               1        Single
## 898     Life Sciences                       3               4        Single
## 899     Life Sciences                       3               4       Married
## 900           Medical                       1               3       Married
## 901  Technical Degree                       3               2       Married
## 902  Technical Degree                       4               2        Single
## 903     Life Sciences                       1               3      Divorced
## 904     Life Sciences                       3               4      Divorced
## 905     Life Sciences                       4               4        Single
## 906     Life Sciences                       4               4      Divorced
## 907  Technical Degree                       3               3       Married
## 908         Marketing                       2               2       Married
## 909         Marketing                       4               3      Divorced
## 910     Life Sciences                       2               4        Single
## 911     Life Sciences                       4               3       Married
## 912     Life Sciences                       3               4        Single
## 913     Life Sciences                       3               4        Single
## 914         Marketing                       1               2        Single
## 915           Medical                       4               2      Divorced
## 916     Life Sciences                       1               3        Single
## 917         Marketing                       4               2       Married
## 918         Marketing                       3               1        Single
## 919     Life Sciences                       4               2      Divorced
## 920           Medical                       4               4        Single
## 921           Medical                       3               2      Divorced
## 922           Medical                       4               3        Single
## 923     Life Sciences                       3               1      Divorced
## 924     Life Sciences                       3               2       Married
## 925     Life Sciences                       3               3       Married
## 926           Medical                       2               2       Married
## 927         Marketing                       4               4        Single
## 928     Life Sciences                       3               2        Single
## 929           Medical                       1               4       Married
## 930     Life Sciences                       4               4       Married
## 931           Medical                       2               3        Single
## 932           Medical                       3               3        Single
## 933  Technical Degree                       2               3      Divorced
## 934  Technical Degree                       4               1        Single
## 935           Medical                       4               2        Single
## 936           Medical                       3               4       Married
## 937           Medical                       2               2        Single
## 938           Medical                       3               2      Divorced
## 939     Life Sciences                       1               3      Divorced
## 940     Life Sciences                       4               3       Married
## 941           Medical                       3               1        Single
## 942  Technical Degree                       1               4       Married
## 943  Technical Degree                       4               3       Married
## 944     Life Sciences                       4               1        Single
## 945     Life Sciences                       3               4       Married
## 946     Life Sciences                       4               1       Married
## 947         Marketing                       4               2        Single
## 948     Life Sciences                       2               2        Single
## 949           Medical                       2               1       Married
## 950     Life Sciences                       1               3        Single
## 951     Life Sciences                       4               3      Divorced
## 952           Medical                       3               2        Single
## 953     Life Sciences                       4               2        Single
## 954     Life Sciences                       1               1       Married
## 955     Life Sciences                       3               3       Married
## 956           Medical                       4               3       Married
## 957     Life Sciences                       4               2        Single
## 958     Life Sciences                       3               3      Divorced
## 959     Life Sciences                       4               4      Divorced
## 960     Life Sciences                       3               4        Single
## 961         Marketing                       3               1      Divorced
## 962     Life Sciences                       3               3        Single
## 963     Life Sciences                       3               2      Divorced
## 964     Life Sciences                       2               1      Divorced
## 965           Medical                       3               1        Single
## 966           Medical                       4               4       Married
## 967           Medical                       3               1       Married
## 968     Life Sciences                       2               2       Married
## 969         Marketing                       1               1       Married
## 970     Life Sciences                       4               4        Single
## 971           Medical                       3               4       Married
## 972  Technical Degree                       4               2        Single
## 973     Life Sciences                       4               4        Single
## 974           Medical                       4               4       Married
## 975     Life Sciences                       4               4        Single
## 976         Marketing                       1               3        Single
## 977     Life Sciences                       4               2       Married
## 978  Technical Degree                       1               3      Divorced
## 979           Medical                       2               3      Divorced
## 980           Medical                       2               3       Married
## 981     Life Sciences                       3               4        Single
## 982         Marketing                       4               3       Married
## 983     Life Sciences                       4               3      Divorced
## 984  Technical Degree                       3               4        Single
## 985     Life Sciences                       3               1       Married
## 986           Medical                       4               3       Married
## 987     Life Sciences                       1               4       Married
## 988         Marketing                       2               2       Married
## 989     Life Sciences                       4               4      Divorced
## 990     Life Sciences                       3               3       Married
## 991     Life Sciences                       2               4       Married
## 992         Marketing                       3               2       Married
## 993     Life Sciences                       3               3       Married
## 994     Life Sciences                       1               3       Married
## 995           Medical                       4               3       Married
## 996           Medical                       1               3        Single
## 997         Marketing                       4               4       Married
## 998     Life Sciences                       4               3        Single
## 999           Medical                       1               4        Single
## 1000  Human Resources                       3               1       Married
## 1001            Other                       3               1       Married
## 1002          Medical                       1               3        Single
## 1003    Life Sciences                       3               4        Single
## 1004 Technical Degree                       1               4       Married
## 1005            Other                       3               1        Single
## 1006            Other                       2               1        Single
## 1007    Life Sciences                       1               1        Single
## 1008            Other                       3               4        Single
## 1009          Medical                       4               4        Single
## 1010          Medical                       4               1       Married
## 1011          Medical                       2               4      Divorced
## 1012        Marketing                       1               2        Single
## 1013    Life Sciences                       2               3        Single
## 1014        Marketing                       4               1      Divorced
## 1015    Life Sciences                       1               2        Single
## 1016            Other                       4               1      Divorced
## 1017    Life Sciences                       1               2        Single
## 1018    Life Sciences                       2               1       Married
## 1019    Life Sciences                       1               4        Single
## 1020        Marketing                       3               1       Married
## 1021 Technical Degree                       1               4       Married
## 1022    Life Sciences                       1               1       Married
## 1023 Technical Degree                       3               3        Single
## 1024    Life Sciences                       1               1       Married
## 1025          Medical                       1               3       Married
## 1026          Medical                       4               3       Married
## 1027        Marketing                       4               4       Married
## 1028    Life Sciences                       4               2       Married
## 1029          Medical                       2               3       Married
## 1030            Other                       3               3      Divorced
## 1031    Life Sciences                       1               4      Divorced
## 1032        Marketing                       1               4      Divorced
## 1033    Life Sciences                       1               1        Single
## 1034    Life Sciences                       3               2        Single
## 1035          Medical                       2               1      Divorced
## 1036          Medical                       4               2        Single
## 1037    Life Sciences                       2               4       Married
## 1038 Technical Degree                       2               4       Married
## 1039        Marketing                       3               1      Divorced
## 1040 Technical Degree                       1               3       Married
## 1041          Medical                       4               2      Divorced
## 1042          Medical                       4               1        Single
## 1043    Life Sciences                       3               3        Single
## 1044          Medical                       4               2        Single
## 1045 Technical Degree                       1               3       Married
## 1046          Medical                       3               3      Divorced
## 1047    Life Sciences                       4               2        Single
## 1048          Medical                       4               1       Married
## 1049            Other                       4               1        Single
## 1050    Life Sciences                       4               3       Married
## 1051          Medical                       1               4        Single
## 1052        Marketing                       1               3       Married
## 1053 Technical Degree                       3               3      Divorced
## 1054    Life Sciences                       2               3       Married
## 1055    Life Sciences                       3               2      Divorced
## 1056          Medical                       2               1      Divorced
## 1057 Technical Degree                       1               3       Married
## 1058 Technical Degree                       1               2        Single
## 1059          Medical                       1               2        Single
## 1060    Life Sciences                       4               3       Married
## 1061          Medical                       2               1        Single
## 1062    Life Sciences                       4               2       Married
## 1063          Medical                       2               3        Single
## 1064    Life Sciences                       3               3      Divorced
## 1065    Life Sciences                       3               3      Divorced
## 1066    Life Sciences                       4               3       Married
## 1067          Medical                       1               2       Married
## 1068          Medical                       3               3       Married
## 1069          Medical                       3               1        Single
## 1070    Life Sciences                       1               3      Divorced
## 1071    Life Sciences                       3               1        Single
## 1072          Medical                       3               1       Married
## 1073    Life Sciences                       4               2       Married
## 1074    Life Sciences                       3               2       Married
## 1075    Life Sciences                       4               3        Single
## 1076          Medical                       3               4        Single
## 1077          Medical                       2               4      Divorced
## 1078 Technical Degree                       1               1        Single
## 1079    Life Sciences                       4               1       Married
## 1080    Life Sciences                       2               2        Single
## 1081    Life Sciences                       3               2       Married
## 1082    Life Sciences                       4               2        Single
## 1083    Life Sciences                       1               3        Single
## 1084    Life Sciences                       4               1        Single
## 1085 Technical Degree                       4               3       Married
## 1086    Life Sciences                       4               3        Single
## 1087          Medical                       3               4        Single
## 1088 Technical Degree                       2               3       Married
## 1089          Medical                       3               2       Married
## 1090          Medical                       1               4       Married
## 1091            Other                       3               1       Married
## 1092    Life Sciences                       4               2        Single
## 1093 Technical Degree                       4               4       Married
## 1094    Life Sciences                       4               4       Married
## 1095          Medical                       1               1       Married
## 1096    Life Sciences                       2               3       Married
## 1097          Medical                       3               4        Single
## 1098 Technical Degree                       3               1      Divorced
## 1099    Life Sciences                       4               4      Divorced
## 1100 Technical Degree                       1               2      Divorced
## 1101    Life Sciences                       2               3       Married
## 1102    Life Sciences                       4               2       Married
## 1103    Life Sciences                       3               4        Single
## 1104    Life Sciences                       3               3      Divorced
## 1105    Life Sciences                       3               3       Married
## 1106    Life Sciences                       1               1       Married
## 1107    Life Sciences                       2               1       Married
## 1108  Human Resources                       3               3       Married
## 1109          Medical                       4               1        Single
## 1110 Technical Degree                       3               2       Married
## 1111    Life Sciences                       1               1      Divorced
## 1112 Technical Degree                       3               4       Married
## 1113          Medical                       3               2       Married
## 1114 Technical Degree                       4               1       Married
## 1115            Other                       3               1       Married
## 1116          Medical                       1               4        Single
## 1117        Marketing                       3               4       Married
## 1118    Life Sciences                       2               4       Married
## 1119    Life Sciences                       1               4       Married
## 1120    Life Sciences                       3               2       Married
## 1121    Life Sciences                       2               2        Single
## 1122    Life Sciences                       2               3        Single
## 1123          Medical                       2               1        Single
## 1124          Medical                       1               3        Single
## 1125          Medical                       4               3       Married
## 1126    Life Sciences                       1               4      Divorced
## 1127        Marketing                       3               3       Married
## 1128 Technical Degree                       4               3       Married
## 1129    Life Sciences                       1               1       Married
## 1130            Other                       4               4        Single
## 1131    Life Sciences                       2               3       Married
## 1132 Technical Degree                       4               3       Married
## 1133    Life Sciences                       4               1       Married
## 1134 Technical Degree                       4               2      Divorced
## 1135    Life Sciences                       3               4       Married
## 1136    Life Sciences                       4               1        Single
## 1137          Medical                       3               2       Married
## 1138            Other                       2               3       Married
## 1139          Medical                       2               3       Married
## 1140            Other                       2               4       Married
## 1141          Medical                       2               4      Divorced
## 1142          Medical                       2               2       Married
## 1143          Medical                       3               1        Single
## 1144        Marketing                       1               1       Married
## 1145            Other                       4               1        Single
## 1146    Life Sciences                       3               3       Married
## 1147    Life Sciences                       3               4      Divorced
## 1148    Life Sciences                       3               1       Married
## 1149          Medical                       2               1       Married
## 1150            Other                       4               1      Divorced
## 1151    Life Sciences                       2               1       Married
## 1152          Medical                       2               1      Divorced
## 1153          Medical                       3               4        Single
## 1154          Medical                       2               4        Single
## 1155    Life Sciences                       4               3       Married
## 1156          Medical                       3               3      Divorced
## 1157    Life Sciences                       1               3       Married
## 1158    Life Sciences                       3               3       Married
## 1159    Life Sciences                       3               3       Married
## 1160          Medical                       1               3        Single
## 1161            Other                       4               4      Divorced
## 1162          Medical                       4               3       Married
## 1163          Medical                       4               1       Married
## 1164          Medical                       2               2       Married
## 1165    Life Sciences                       3               4        Single
## 1166  Human Resources                       1               4       Married
## 1167          Medical                       3               4       Married
## 1168          Medical                       1               4      Divorced
## 1169 Technical Degree                       1               4        Single
## 1170          Medical                       2               3       Married
## 1171          Medical                       4               4        Single
## 1172    Life Sciences                       1               1        Single
## 1173          Medical                       3               3        Single
## 1174    Life Sciences                       2               1       Married
## 1175    Life Sciences                       4               3      Divorced
## 1176          Medical                       4               2       Married
## 1177            Other                       1               2       Married
## 1178    Life Sciences                       4               1      Divorced
## 1179          Medical                       3               3        Single
## 1180    Life Sciences                       4               2      Divorced
## 1181    Life Sciences                       1               2        Single
## 1182    Life Sciences                       3               3       Married
## 1183          Medical                       4               3       Married
## 1184    Life Sciences                       4               1      Divorced
## 1185          Medical                       2               3       Married
## 1186    Life Sciences                       3               3       Married
## 1187            Other                       4               4        Single
## 1188    Life Sciences                       4               4       Married
## 1189          Medical                       1               2      Divorced
## 1190          Medical                       4               4      Divorced
## 1191          Medical                       4               2      Divorced
## 1192    Life Sciences                       1               4       Married
## 1193          Medical                       4               1      Divorced
## 1194          Medical                       4               2        Single
## 1195    Life Sciences                       2               2      Divorced
## 1196    Life Sciences                       3               3        Single
## 1197    Life Sciences                       4               3        Single
## 1198    Life Sciences                       4               1        Single
## 1199    Life Sciences                       3               4      Divorced
## 1200    Life Sciences                       1               3       Married
## 1201    Life Sciences                       3               4      Divorced
## 1202          Medical                       4               3        Single
## 1203          Medical                       4               3       Married
## 1204          Medical                       2               4       Married
## 1205          Medical                       4               3       Married
## 1206    Life Sciences                       4               2        Single
## 1207          Medical                       4               4        Single
## 1208 Technical Degree                       1               2      Divorced
## 1209          Medical                       2               4       Married
## 1210          Medical                       3               4      Divorced
## 1211          Medical                       2               2       Married
## 1212          Medical                       3               4      Divorced
## 1213    Life Sciences                       2               4       Married
## 1214    Life Sciences                       3               4      Divorced
## 1215    Life Sciences                       3               4       Married
## 1216          Medical                       1               4        Single
## 1217          Medical                       4               4       Married
## 1218          Medical                       3               3       Married
## 1219        Marketing                       4               3        Single
## 1220          Medical                       4               3       Married
## 1221    Life Sciences                       3               4        Single
## 1222    Life Sciences                       3               3       Married
## 1223  Human Resources                       4               3       Married
## 1224    Life Sciences                       3               3       Married
## 1225          Medical                       4               3       Married
## 1226 Technical Degree                       4               2        Single
## 1227    Life Sciences                       1               3       Married
## 1228    Life Sciences                       2               3       Married
## 1229  Human Resources                       3               2       Married
## 1230    Life Sciences                       2               1       Married
## 1231          Medical                       2               1      Divorced
## 1232    Life Sciences                       3               2        Single
## 1233    Life Sciences                       4               3       Married
## 1234    Life Sciences                       2               4       Married
## 1235        Marketing                       3               2       Married
## 1236    Life Sciences                       3               4      Divorced
## 1237        Marketing                       2               1      Divorced
## 1238    Life Sciences                       1               2        Single
## 1239          Medical                       3               2        Single
## 1240 Technical Degree                       4               4        Single
## 1241    Life Sciences                       4               4       Married
## 1242    Life Sciences                       4               3       Married
## 1243          Medical                       2               2        Single
## 1244    Life Sciences                       3               3       Married
## 1245 Technical Degree                       4               1        Single
## 1246          Medical                       1               4       Married
## 1247  Human Resources                       3               4      Divorced
## 1248 Technical Degree                       1               3       Married
## 1249          Medical                       3               4        Single
## 1250        Marketing                       2               2        Single
## 1251    Life Sciences                       4               3        Single
## 1252        Marketing                       3               1      Divorced
## 1253          Medical                       4               4       Married
## 1254        Marketing                       4               2        Single
## 1255        Marketing                       4               4        Single
## 1256    Life Sciences                       1               1        Single
## 1257          Medical                       3               2       Married
## 1258        Marketing                       1               3       Married
## 1259 Technical Degree                       4               1      Divorced
## 1260    Life Sciences                       3               3       Married
## 1261 Technical Degree                       2               2        Single
## 1262          Medical                       2               4       Married
## 1263 Technical Degree                       3               3       Married
## 1264          Medical                       2               2      Divorced
## 1265          Medical                       3               1       Married
## 1266 Technical Degree                       4               2      Divorced
## 1267    Life Sciences                       3               1      Divorced
## 1268    Life Sciences                       4               3      Divorced
## 1269          Medical                       1               3       Married
## 1270    Life Sciences                       2               4        Single
## 1271    Life Sciences                       4               4        Single
## 1272        Marketing                       2               2        Single
## 1273            Other                       4               3       Married
## 1274          Medical                       3               1       Married
## 1275        Marketing                       1               4       Married
## 1276 Technical Degree                       1               3       Married
## 1277        Marketing                       2               2       Married
## 1278          Medical                       3               4      Divorced
## 1279    Life Sciences                       4               1       Married
## 1280          Medical                       3               2      Divorced
## 1281            Other                       3               2      Divorced
## 1282    Life Sciences                       3               4        Single
## 1283    Life Sciences                       4               1       Married
## 1284    Life Sciences                       3               4       Married
## 1285          Medical                       3               3        Single
## 1286    Life Sciences                       2               2        Single
## 1287    Life Sciences                       3               1       Married
## 1288          Medical                       2               1       Married
## 1289          Medical                       2               4      Divorced
## 1290  Human Resources                       1               2      Divorced
## 1291    Life Sciences                       4               1       Married
## 1292          Medical                       4               1        Single
## 1293    Life Sciences                       3               4      Divorced
## 1294    Life Sciences                       1               3        Single
## 1295    Life Sciences                       2               2        Single
## 1296        Marketing                       3               3      Divorced
## 1297          Medical                       1               3        Single
## 1298          Medical                       4               2       Married
## 1299          Medical                       4               2       Married
## 1300    Life Sciences                       3               4      Divorced
## 1301 Technical Degree                       2               3       Married
## 1302          Medical                       2               2      Divorced
## 1303          Medical                       2               3       Married
## 1304    Life Sciences                       3               2      Divorced
## 1305    Life Sciences                       2               1      Divorced
## 1306          Medical                       4               4       Married
## 1307        Marketing                       1               1       Married
## 1308          Medical                       3               1       Married
## 1309        Marketing                       2               4       Married
## 1310          Medical                       3               4        Single
## 1311    Life Sciences                       1               3       Married
## 1312          Medical                       2               3        Single
## 1313  Human Resources                       4               1       Married
## 1314  Human Resources                       1               1      Divorced
## 1315    Life Sciences                       3               3       Married
## 1316            Other                       4               2       Married
## 1317    Life Sciences                       1               4       Married
## 1318    Life Sciences                       4               4        Single
## 1319          Medical                       4               4       Married
## 1320        Marketing                       4               4        Single
## 1321 Technical Degree                       3               3       Married
## 1322    Life Sciences                       2               3        Single
## 1323    Life Sciences                       4               4      Divorced
## 1324    Life Sciences                       3               4      Divorced
## 1325    Life Sciences                       4               3      Divorced
## 1326    Life Sciences                       4               3        Single
## 1327        Marketing                       3               2        Single
## 1328 Technical Degree                       1               1      Divorced
## 1329          Medical                       2               3       Married
## 1330          Medical                       4               2       Married
## 1331          Medical                       1               3       Married
## 1332    Life Sciences                       4               2       Married
## 1333    Life Sciences                       4               4        Single
## 1334    Life Sciences                       3               2       Married
## 1335    Life Sciences                       4               1       Married
## 1336            Other                       4               4      Divorced
## 1337 Technical Degree                       2               4       Married
## 1338          Medical                       2               2       Married
## 1339          Medical                       2               4        Single
## 1340    Life Sciences                       4               2        Single
## 1341 Technical Degree                       2               3       Married
## 1342    Life Sciences                       2               3      Divorced
## 1343    Life Sciences                       3               4       Married
## 1344    Life Sciences                       4               1        Single
## 1345          Medical                       4               1       Married
## 1346            Other                       4               2       Married
## 1347    Life Sciences                       2               4       Married
## 1348  Human Resources                       2               4        Single
## 1349    Life Sciences                       1               1      Divorced
## 1350    Life Sciences                       2               3       Married
## 1351          Medical                       1               3        Single
## 1352          Medical                       4               4      Divorced
## 1353    Life Sciences                       2               1       Married
## 1354 Technical Degree                       4               1       Married
## 1355    Life Sciences                       1               4        Single
## 1356        Marketing                       3               2       Married
## 1357        Marketing                       3               2       Married
## 1358          Medical                       3               1       Married
## 1359          Medical                       3               4      Divorced
## 1360          Medical                       4               4       Married
## 1361          Medical                       1               3      Divorced
## 1362            Other                       3               4       Married
## 1363          Medical                       2               3        Single
## 1364        Marketing                       2               3        Single
## 1365    Life Sciences                       3               4       Married
## 1366 Technical Degree                       3               1        Single
## 1367    Life Sciences                       1               3       Married
## 1368 Technical Degree                       2               2       Married
## 1369            Other                       3               4       Married
## 1370        Marketing                       4               3        Single
## 1371 Technical Degree                       3               2       Married
## 1372        Marketing                       4               1       Married
## 1373          Medical                       1               1       Married
## 1374          Medical                       4               2      Divorced
## 1375    Life Sciences                       4               4       Married
## 1376    Life Sciences                       1               3        Single
## 1377    Life Sciences                       2               4      Divorced
## 1378    Life Sciences                       2               4       Married
## 1379        Marketing                       2               4      Divorced
## 1380  Human Resources                       1               2       Married
## 1381          Medical                       2               1       Married
## 1382          Medical                       3               3        Single
## 1383          Medical                       3               1      Divorced
## 1384    Life Sciences                       1               2       Married
## 1385        Marketing                       1               4        Single
## 1386          Medical                       4               3      Divorced
## 1387          Medical                       3               1        Single
## 1388    Life Sciences                       1               1       Married
## 1389          Medical                       3               4      Divorced
## 1390    Life Sciences                       4               1       Married
## 1391 Technical Degree                       3               4      Divorced
## 1392    Life Sciences                       1               1        Single
## 1393    Life Sciences                       3               4       Married
## 1394        Marketing                       4               4        Single
## 1395    Life Sciences                       4               4        Single
## 1396        Marketing                       1               4       Married
## 1397    Life Sciences                       1               1        Single
## 1398    Life Sciences                       1               3       Married
## 1399    Life Sciences                       4               3      Divorced
## 1400    Life Sciences                       1               3       Married
## 1401            Other                       4               2       Married
## 1402  Human Resources                       3               2       Married
## 1403          Medical                       4               4      Divorced
## 1404        Marketing                       2               1        Single
## 1405    Life Sciences                       4               3        Single
## 1406          Medical                       3               3       Married
## 1407          Medical                       3               1        Single
## 1408    Life Sciences                       2               3        Single
## 1409            Other                       4               4        Single
## 1410 Technical Degree                       4               3       Married
## 1411        Marketing                       2               2       Married
## 1412  Human Resources                       3               2       Married
## 1413          Medical                       4               2       Married
## 1414            Other                       4               3      Divorced
## 1415          Medical                       1               3        Single
## 1416          Medical                       2               3      Divorced
## 1417    Life Sciences                       4               2       Married
## 1418    Life Sciences                       1               3       Married
## 1419    Life Sciences                       1               3       Married
## 1420    Life Sciences                       4               1      Divorced
## 1421    Life Sciences                       4               4       Married
## 1422          Medical                       3               2       Married
## 1423          Medical                       4               3       Married
## 1424    Life Sciences                       4               3        Single
## 1425          Medical                       2               3        Single
## 1426          Medical                       2               4       Married
## 1427    Life Sciences                       3               2        Single
## 1428    Life Sciences                       1               4       Married
## 1429          Medical                       2               2       Married
## 1430    Life Sciences                       1               4        Single
## 1431          Medical                       2               3       Married
## 1432        Marketing                       3               4       Married
## 1433    Life Sciences                       3               4       Married
## 1434            Other                       1               3      Divorced
## 1435    Life Sciences                       1               4      Divorced
## 1436          Medical                       2               4        Single
## 1437          Medical                       3               1        Single
## 1438    Life Sciences                       4               4        Single
## 1439        Marketing                       4               1       Married
## 1440          Medical                       1               4       Married
## 1441    Life Sciences                       4               2      Divorced
## 1442    Life Sciences                       3               3      Divorced
## 1443          Medical                       1               4       Married
## 1444    Life Sciences                       1               3       Married
## 1445 Technical Degree                       4               3       Married
## 1446    Life Sciences                       1               2       Married
## 1447        Marketing                       4               3       Married
## 1448        Marketing                       4               4      Divorced
## 1449    Life Sciences                       3               2      Divorced
## 1450 Technical Degree                       4               1        Single
## 1451    Life Sciences                       3               4        Single
## 1452    Life Sciences                       1               4       Married
## 1453    Life Sciences                       2               3      Divorced
## 1454        Marketing                       2               4       Married
## 1455    Life Sciences                       4               3        Single
## 1456    Life Sciences                       3               3        Single
## 1457    Life Sciences                       3               3       Married
## 1458          Medical                       3               3       Married
## 1459    Life Sciences                       3               4       Married
## 1460            Other                       4               2       Married
## 1461          Medical                       4               1        Single
## 1462        Marketing                       4               1      Divorced
## 1463        Marketing                       2               4       Married
## 1464          Medical                       2               1        Single
## 1465            Other                       4               3        Single
## 1466          Medical                       3               4       Married
## 1467          Medical                       4               1       Married
## 1468    Life Sciences                       2               2       Married
## 1469          Medical                       4               2       Married
## 1470          Medical                       2               3       Married
##      MonthlyIncome NumCompaniesWorked WorkLifeBalance YearsAtCompany
## 1             5993                  8               1              6
## 2             5130                  1               3             10
## 3             2090                  6               3              0
## 4             2909                  1               3              8
## 5             3468                  9               3              2
## 6             3068                  0               2              7
## 7             2670                  4               2              1
## 8             2693                  1               3              1
## 9             9526                  0               3              9
## 10            5237                  6               2              7
## 11            2426                  0               3              5
## 12            4193                  0               3              9
## 13            2911                  1               2              5
## 14            2661                  0               3              2
## 15            2028                  5               3              4
## 16            9980                  1               3             10
## 17            3298                  0               2              6
## 18            2935                  1               2              1
## 19           15427                  2               3             25
## 20            3944                  5               3              3
## 21            4011                  0               2              4
## 22            3407                  7               3              5
## 23           11994                  0               3             12
## 24            1232                  1               3              0
## 25            2960                  2               3              4
## 26           19094                  4               2             14
## 27            3919                  1               3             10
## 28            6825                  0               3              9
## 29           10248                  3               3             22
## 30           18947                  3               2              2
## 31            2496                  4               3              1
## 32            6465                  2               4              4
## 33            2206                  1               3             10
## 34            2086                  3               4              1
## 35            2293                  2               2              2
## 36            2645                  1               2              5
## 37            2683                  1               3              3
## 38            2014                  1               3              2
## 39            3419                  9               4              1
## 40            5376                  2               3              5
## 41            1951                  1               3              1
## 42            2341                  1               3              1
## 43            2293                  1               2              1
## 44            8726                  1               3              9
## 45            4011                  1               3             12
## 46           19545                  1               3             22
## 47            4568                  0               3              9
## 48            3022                  4               3              1
## 49            5772                  4               3              9
## 50            2269                  1               3              1
## 51            5381                  9               3              1
## 52            3441                  1               2              2
## 53            5454                  5               2              4
## 54            9884                  2               3              4
## 55            4157                  7               2              2
## 56           13458                  1               3             15
## 57            9069                  1               2              9
## 58            4014                  3               3              2
## 59            5915                  3               2              7
## 60            5993                  1               4              7
## 61            6162                  1               3              9
## 62            2406                  1               3             10
## 63           18740                  5               2             27
## 64            7637                  7               2             21
## 65           10096                  1               3             17
## 66           14756                  2               3              5
## 67            6499                  1               3              6
## 68            9724                  2               3              1
## 69            2194                  4               2              3
## 70            3388                  0               2              1
## 71            5473                  7               2              4
## 72            2703                  0               3              5
## 73            2501                  1               3              1
## 74            6220                  1               3             10
## 75            3038                  3               3              1
## 76            4424                  1               3             11
## 77            4312                  0               3             15
## 78           13245                  4               4              0
## 79           13664                  4               4              5
## 80            5021                  8               3              4
## 81            5126                  1               2             10
## 82            2859                  1               3              6
## 83           10239                  3               3              1
## 84            5329                  7               3             13
## 85            4325                  1               3              5
## 86            7260                  4               2              6
## 87            2322                  3               3              0
## 88            2075                  3               3              4
## 89            4152                  1               3             11
## 90            9619                  1               3              9
## 91           13503                  1               2             22
## 92            5441                  0               1             10
## 93            5209                  1               2             11
## 94           10673                  2               2             10
## 95            5010                  1               3             11
## 96           13549                  9               1              4
## 97            4999                  0               2              3
## 98            4221                  1               4              5
## 99           13872                  0               2             37
## 100           2042                  4               4              3
## 101           2073                  4               3              3
## 102           2956                  1               3              1
## 103           2926                  1               3              1
## 104           4809                  1               3             16
## 105           5163                  5               4              1
## 106          18844                  9               3              3
## 107          18172                  3               2              8
## 108           5744                  1               3              6
## 109           2889                  1               3              2
## 110           2871                  1               3              0
## 111           7484                  3               2             13
## 112           6074                  1               3              9
## 113          17328                  2               3              5
## 114           2774                  0               3              5
## 115           4505                  6               3              1
## 116           7428                  2               3              5
## 117          11631                  2               3             11
## 118           9738                  0               3              9
## 119           2835                  5               3              1
## 120          16959                  1               4             25
## 121           2613                  1               2             10
## 122           6146                  0               4              7
## 123           4963                  9               3              5
## 124          19537                  7               3             20
## 125           6172                  4               2              7
## 126           2368                  1               2              5
## 127          10312                  1               2             40
## 128           1675                  1               2              0
## 129           2523                  0               3              2
## 130           6567                  1               2             15
## 131           4739                  4               3              3
## 132           9208                  4               3              2
## 133           4559                  3               3              2
## 134           8189                  3               3              9
## 135           2942                  1               3              8
## 136           4941                  6               3              3
## 137          10650                  2               3              4
## 138           5902                  4               4             15
## 139           8639                  2               3              2
## 140           6347                  0               1             11
## 141           4200                  7               4              5
## 142           3452                  5               2              6
## 143           4317                  3               3              3
## 144           2632                  1               2              5
## 145           4668                  0               4              8
## 146           3204                  5               3              3
## 147           2720                  0               3              5
## 148          17181                  4               2              7
## 149           2238                  2               3              5
## 150           1483                  1               3              1
## 151           5605                  1               3             20
## 152           7295                  1               3             10
## 153           2306                  2               1              7
## 154           2348                  8               1             17
## 155           8998                  1               3              9
## 156           4319                  1               3             10
## 157           6132                  2               3              1
## 158           3346                  4               2              1
## 159          10855                  7               2             12
## 160           2231                  6               3              4
## 161           2323                  1               3              2
## 162           2024                  6               1              2
## 163           2713                  1               1              5
## 164           9439                  3               1              5
## 165           2566                  1               2              1
## 166          19926                  3               3              5
## 167           2451                  4               3              9
## 168           9419                  2               3             10
## 169           8686                  4               4              8
## 170           3038                  3               3              5
## 171           3058                  0               2              5
## 172           2325                  0               4              0
## 173           2088                  4               2              8
## 174           3072                  1               3             12
## 175           5006                  4               4              5
## 176           4257                  4               3              2
## 177           2500                  0               4              3
## 178           1102                  1               2              1
## 179          10453                  1               3             24
## 180           2288                  1               3              2
## 181           3929                  8               3              4
## 182           2311                  2               3              3
## 183           3140                  1               2              4
## 184           3690                  2               2              3
## 185           4450                  1               3              4
## 186           2756                  1               3              8
## 187          19033                  1               3             20
## 188          18722                  8               3             24
## 189           9547                  1               2             10
## 190          13734                  3               3              7
## 191          19999                  0               3             33
## 192           2279                  1               2              7
## 193           5916                  3               3              1
## 194           2089                  4               4              5
## 195          16792                  9               3             20
## 196           3564                  1               2              8
## 197           4425                  5               3              6
## 198           5265                  2               3              5
## 199           6553                  9               3              1
## 200           6261                  3               1              7
## 201           4298                  5               3              2
## 202           6804                  1               3              7
## 203           3815                  1               4              5
## 204           2741                  8               4              7
## 205           6673                  7               3              1
## 206           7639                  1               2             10
## 207           2328                  1               2              4
## 208           2153                  1               3              8
## 209           4876                  9               1              3
## 210           9396                  7               3              4
## 211          10400                  1               2             14
## 212           8474                  1               3             11
## 213           9981                  1               3              7
## 214          12490                  5               1             10
## 215           2657                  5               3              5
## 216          13591                  3               3              1
## 217           6696                  5               2              6
## 218           2058                  0               2              6
## 219           8865                  6               3             19
## 220           5940                  2               3              6
## 221           5914                  8               4             13
## 222           2622                  6               3              3
## 223          12185                  1               3             10
## 224          10609                  0               2             16
## 225           4345                  0               3              5
## 226           2177                  3               3              1
## 227           2793                  4               3              9
## 228           7918                  1               3             11
## 229           8789                  1               4             10
## 230           2389                  1               2              4
## 231           3212                  7               2              2
## 232          19232                  1               3             22
## 233           2267                  8               2              2
## 234          19517                  3               2              7
## 235           2436                  5               1              5
## 236          16064                  5               3             17
## 237           2707                  7               4              9
## 238          19068                  1               4             33
## 239           3931                  2               3              4
## 240           3730                  0               1              3
## 241           2232                  7               3              3
## 242           4465                  0               3              3
## 243           3072                  2               2              1
## 244           3319                  1               3              9
## 245          19202                  0               3             24
## 246          13675                  9               3              2
## 247           2911                  1               2              2
## 248           5957                  6               3             11
## 249           3920                  2               2              3
## 250           6434                  4               3              3
## 251          10048                  6               3              1
## 252          10938                  0               3             19
## 253           2340                  1               3              6
## 254           6545                  3               3              3
## 255           6931                  2               3              3
## 256           4898                  0               3              4
## 257           2593                  0               3              9
## 258          19436                  0               3             21
## 259           2723                  1               2              1
## 260           3479                  0               4              5
## 261           2794                  1               1              5
## 262           5249                  3               3              8
## 263           2176                  4               3              6
## 264          16872                  3               2              7
## 265           3485                  2               1              0
## 266           6644                  2               3              0
## 267           5582                  0               3              9
## 268           4000                  1               3              6
## 269          13496                  0               3             20
## 270           3210                  0               3             15
## 271          19045                  0               3             36
## 272          11849                  1               2             10
## 273           2070                  1               2              5
## 274           6502                  4               4              5
## 275           3230                  1               4              3
## 276          13603                  2               3              5
## 277          11996                  7               2              7
## 278           5605                  1               3              8
## 279           6397                  1               1              6
## 280          19144                  3               2             10
## 281          17584                  3               2              5
## 282           4907                  1               3             20
## 283           4554                  1               2             10
## 284           5415                  3               3             10
## 285           4741                  1               3              5
## 286           2115                  1               3             17
## 287           3161                  3               1              1
## 288           5745                  9               3              2
## 289           2373                  2               3              3
## 290           3310                  1               3              5
## 291          18665                  9               3              3
## 292           4485                  4               3              8
## 293           2789                  1               2              2
## 294           5828                  1               3              8
## 295           2326                  1               2              4
## 296          13525                  5               4             20
## 297           1420                  1               3              0
## 298           8020                  0               2             11
## 299           3688                  4               3              1
## 300           5482                  5               3              4
## 301          16015                  1               3             22
## 302           1200                  1               3              0
## 303           5661                  0               3              8
## 304           6929                  4               2              8
## 305           9613                  0               2             18
## 306           5674                  7               3              9
## 307           5484                  1               2             13
## 308          12061                  3               3             10
## 309           5660                  2               3              5
## 310           4821                  0               3              5
## 311           6410                  3               3              2
## 312           5210                  1               3             24
## 313           2695                  0               1              2
## 314          11878                  6               3             10
## 315          17068                  1               3             21
## 316           2455                  0               3              8
## 317          13964                  7               3              7
## 318           4941                  2               2              8
## 319           2478                  1               2              4
## 320           5228                  1               3             13
## 321           4478                  1               3              5
## 322           7547                  4               3              7
## 323           5055                  7               2              7
## 324           3464                  5               2              3
## 325           5775                  1               3             10
## 326           8943                  1               3             10
## 327          19272                  1               3             21
## 328           5238                  4               2              1
## 329           4682                  3               2              7
## 330          18300                  4               3              3
## 331           5257                  1               4              9
## 332           6349                  0               3              5
## 333           4869                  3               2              4
## 334           9985                  8               2              1
## 335           3697                  9               3             10
## 336           7457                  2               2              4
## 337           2119                  1               2              7
## 338           3983                  0               3              3
## 339           6118                  1               3             10
## 340           6214                  1               3              8
## 341           6347                  7               2              6
## 342          11510                  0               3             11
## 343           7143                  1               2             11
## 344           8268                  1               3              7
## 345           8095                  0               3             16
## 346           2904                  1               2              4
## 347           6032                  6               3              5
## 348           2976                  3               3              0
## 349          15992                  2               3              1
## 350           4649                  1               2              4
## 351           2696                  0               3              3
## 352           2370                  1               3              8
## 353          12504                  3               1              0
## 354           5974                  4               3              7
## 355           4736                  7               4              2
## 356           5296                  1               3              8
## 357           6781                  3               3              1
## 358           2174                  1               3              3
## 359           6653                  4               3              1
## 360           9699                  4               3             13
## 361           6755                  2               3              3
## 362           2213                  3               3              7
## 363           2610                  1               2              3
## 364           2851                  1               3              1
## 365           3452                  6               3              5
## 366           5258                  2               4              1
## 367           9355                  1               3              8
## 368          10496                  6               3              4
## 369           6380                  2               3              6
## 370           2657                  0               3              2
## 371           2716                  1               3              1
## 372           2201                  9               3              3
## 373           6540                  9               3              1
## 374           3816                  1               3              5
## 375           5253                  1               3              7
## 376          10965                  8               3              5
## 377           4936                  4               2              7
## 378           2543                  4               3              2
## 379           5304                  8               2              5
## 380          16659                  2               3              5
## 381           4260                  1               4              5
## 382           2476                  1               3              1
## 383           3102                  0               3              6
## 384           2244                  1               3              2
## 385           7596                  1               3             10
## 386           2285                  9               3              1
## 387           3034                  1               2             18
## 388           5715                  7               3              5
## 389           2576                  3               3              5
## 390           4197                  2               2              1
## 391          14336                  1               3             25
## 392           3448                  6               3              1
## 393          19406                  4               2              4
## 394           6538                  9               3              3
## 395           4306                  1               1             13
## 396           2258                  7               3              3
## 397           4522                  4               3              5
## 398           4487                  1               3              5
## 399           4449                  3               3             13
## 400           2218                  1               3              4
## 401          19197                  1               3             21
## 402          13212                  9               2              7
## 403           6577                  0               3              5
## 404           8392                  1               3             10
## 405           4558                  1               3             10
## 406           4031                  5               3              2
## 407           7969                  2               3              5
## 408           2654                  3               2              2
## 409          16555                  2               1              5
## 410           4556                  2               3              5
## 411           6091                  2               3              5
## 412          19566                  5               1             29
## 413           4810                  2               2             10
## 414           4523                  0               4              6
## 415           3202                  1               3              5
## 416           2351                  0               2              2
## 417           1702                  1               3              1
## 418          18041                  0               3             20
## 419           2886                  1               1              3
## 420           2097                  4               1              5
## 421          11935                  1               3             10
## 422           2546                  5               4              2
## 423           2564                  1               4              1
## 424           8412                  0               3              9
## 425          14118                  3               2              1
## 426          17046                  0               3             27
## 427           2564                  0               2             11
## 428          10266                  4               4             18
## 429           5070                  5               3              5
## 430          17861                  6               1              3
## 431           4230                  0               3              5
## 432           3780                  7               3              1
## 433           2768                  3               3              7
## 434           9071                  2               3              3
## 435          10648                  1               4             13
## 436          13610                  7               4              7
## 437           3408                  7               3              4
## 438           2983                  0               3              3
## 439           7632                  4               3              8
## 440           9824                  3               3              1
## 441           9950                  9               3              3
## 442           2093                  4               3              2
## 443           9980                  1               2             10
## 444           3894                  5               3              2
## 445           4051                  2               3              9
## 446          16835                  3               3             10
## 447           6230                  7               3             14
## 448           4717                  9               3             11
## 449          13237                  7               3             20
## 450           3755                  1               3              8
## 451           6582                  4               4              6
## 452           7406                  1               2             10
## 453           4805                  0               4              8
## 454           2741                  0               2              7
## 455           4262                  4               4              3
## 456          16184                  4               3              6
## 457          11557                  9               2              5
## 458           1878                  1               3              0
## 459          10932                  3               3              1
## 460           6811                  2               3              8
## 461           4306                  5               3              0
## 462           4859                  1               3              5
## 463           5337                  1               3             10
## 464           2340                  1               1              1
## 465           7491                  4               4              6
## 466          10527                  5               2              2
## 467          16595                  7               3             18
## 468           8834                  1               3              9
## 469           5577                  3               3             10
## 470           4707                  8               3              4
## 471           2400                  0               3              2
## 472           9824                  3               3              1
## 473           6447                  6               2              6
## 474          19502                  1               3             31
## 475           2725                  1               3              6
## 476           6272                  1               4              5
## 477           2127                  1               3              1
## 478          18200                  1               3             32
## 479           2096                  1               3              7
## 480           2886                  1               3              6
## 481           2033                  1               4              1
## 482           3622                  1               3              6
## 483           4233                  2               1              3
## 484           3681                  4               3              3
## 485           5460                  4               4              7
## 486           2187                  0               2              5
## 487           9602                  4               2              3
## 488           2836                  1               4              1
## 489           4089                  1               3             10
## 490          16627                  4               2              1
## 491           2619                  3               2              0
## 492           5679                  3               3              8
## 493          15402                  7               1              3
## 494           5985                  4               4              2
## 495           2579                  1               3              8
## 496           3041                  0               3              4
## 497           3447                  1               3              3
## 498          19513                  4               4              2
## 499           2773                  0               3              2
## 500           7104                  0               3              5
## 501           6322                  1               2              6
## 502           2083                  1               3              1
## 503           8381                  7               4             14
## 504           2691                  1               2             10
## 505           4286                  2               3              1
## 506           2659                  1               3              3
## 507           9434                  1               3             10
## 508           5561                  1               2              6
## 509           6646                  1               3             17
## 510           7725                  3               1             13
## 511          10725                  2               4              9
## 512           8847                  2               3              3
## 513           2045                  0               3              4
## 514           1009                  1               3              1
## 515           3348                  1               3             10
## 516           1281                  1               3              1
## 517           2819                  2               4              3
## 518           4851                  0               3              3
## 519           4028                  0               3              7
## 520           2720                  1               3             10
## 521           8120                  3               3              2
## 522           4647                  1               3              6
## 523           4680                  3               3              1
## 524           3221                  1               3             20
## 525           8621                  1               4              8
## 526           4577                  9               3              2
## 527           4553                  1               3             20
## 528           5396                  1               2             10
## 529           6796                  3               3              4
## 530           7625                  0               2              9
## 531           7412                  1               3              9
## 532          11159                  3               3              7
## 533           4960                  2               3              7
## 534          10475                  5               3             18
## 535          14814                  3               3              5
## 536          19141                  3               2             21
## 537           5405                  8               3              2
## 538           8793                  1               2              9
## 539          19189                  1               3             22
## 540           3875                  7               3              2
## 541           2216                  7               3              7
## 542          11713                  9               3              8
## 543           7861                  4               4              1
## 544           3708                  2               3              5
## 545          13770                  9               2             22
## 546           5304                  7               2              8
## 547           2642                  1               3              1
## 548           2759                  6               3              2
## 549           6804                  3               3              2
## 550           6142                  3               3              5
## 551           2500                  1               4              4
## 552           6389                  9               1              8
## 553          11103                  7               2             10
## 554           2342                  0               2              4
## 555           6811                  8               1              7
## 556           2297                  1               3              2
## 557           2450                  2               3              2
## 558           5093                  2               4              1
## 559           5309                  1               3             10
## 560           3057                  6               1              1
## 561           5121                  3               3              0
## 562          16856                  1               4             34
## 563           2686                  1               2             10
## 564           6180                  1               2              6
## 565           6632                  0               3              8
## 566           3505                  1               3              2
## 567           6397                  4               3              5
## 568           6274                  1               3              6
## 569          19859                  5               3              5
## 570           7587                  1               3             10
## 571           4258                  0               3              4
## 572           4364                  3               3              2
## 573           4335                  4               2              8
## 574           5326                  6               2              4
## 575           3280                  2               3              4
## 576           5485                  9               3              5
## 577           4342                  0               3              4
## 578           2782                  0               2              5
## 579           5980                  6               3             15
## 580           4381                  1               3              6
## 581           2572                  1               2              3
## 582           3833                  3               3              2
## 583           4244                  1               3              8
## 584           6500                  5               3              3
## 585          18430                  1               2             24
## 586           1601                  1               3              0
## 587           2694                  1               3              1
## 588           3149                  8               3              5
## 589          17639                  5               3              4
## 590           2319                  1               3              1
## 591          11691                  0               4             13
## 592           5324                  5               3              3
## 593          16752                  1               2             26
## 594           5228                  0               3              9
## 595           2700                  1               3             10
## 596          19246                  7               3             31
## 597           2506                  3               3              2
## 598           6062                  9               3              4
## 599           4382                  6               2              2
## 600           2143                  4               3              5
## 601           6162                  1               3             14
## 602           5094                  6               3              1
## 603           6877                  5               2              0
## 604           2274                  1               3              1
## 605           4434                  1               2              9
## 606           6288                  2               2              4
## 607           2553                  1               3              5
## 608           7654                  1               4              9
## 609           5160                  4               2              9
## 610          17159                  6               3              4
## 611          12808                  1               3              9
## 612          10221                  3               4              8
## 613           4779                  1               3              8
## 614           3737                  0               1              3
## 615           2366                  1               3              8
## 616           1706                  1               2              0
## 617          16307                  2               2             20
## 618           5933                  9               2              5
## 619           3424                  7               2              4
## 620           4037                  1               3              9
## 621           2559                  1               2              6
## 622           6201                  1               2             18
## 623           4403                  2               2              5
## 624           3761                  9               2              5
## 625          10934                  7               3              5
## 626          10761                  4               3              5
## 627           5175                  5               2              5
## 628          13826                  3               3              9
## 629           6334                  4               3              1
## 630           4936                  1               3              5
## 631           4775                  6               1              2
## 632           2818                  2               2              3
## 633           2515                  5               3              2
## 634           2342                  0               3              5
## 635           4194                  1               3              5
## 636          10685                  1               3             17
## 637           2022                  1               2             10
## 638           2314                  0               3              3
## 639           4256                  1               4              5
## 640           3580                  2               3              4
## 641           3162                  0               2              5
## 642           6524                  1               3             10
## 643           2899                  0               3              2
## 644           5231                  2               2              5
## 645           2356                  3               3              6
## 646           2800                  6               3              3
## 647          11836                  5               3              2
## 648          10903                  3               3             13
## 649           2973                  5               3              5
## 650          14275                  6               3             12
## 651           5562                  4               2              5
## 652           4537                  0               3              7
## 653           7642                  1               3             10
## 654          17924                  1               3             31
## 655           5204                  8               3              5
## 656           2277                  3               4              4
## 657           2795                  1               1              1
## 658           2532                  6               3              4
## 659           2559                  1               3              8
## 660           4908                  1               3              4
## 661           2380                  9               2              1
## 662           4765                  4               4              1
## 663           2044                  1               2              2
## 664           2693                  1               2              1
## 665           6586                  0               2             16
## 666           3294                  1               2              3
## 667           4171                  0               4              3
## 668           2778                  4               2              7
## 669           2377                  5               3              2
## 670           2404                  7               1              2
## 671           2318                  1               3              1
## 672           2008                  1               3              1
## 673           6244                  7               3              5
## 674           2799                  3               3              3
## 675          10552                  2               3              6
## 676           2329                  3               4              7
## 677           4014                  1               1             10
## 678           7403                  4               2             26
## 679           2259                  4               2              0
## 680           6932                  1               2              9
## 681           4678                  2               3              6
## 682          13582                  1               3             15
## 683           2332                  6               3              3
## 684           2413                  1               3              1
## 685           9705                  2               2              1
## 686           4294                  1               3              7
## 687           4721                  2               3             18
## 688           2519                  4               3             11
## 689           2121                  1               4              1
## 690           2973                  1               3              1
## 691           5855                  0               1              9
## 692           3617                  8               3              1
## 693           6725                  1               4              8
## 694          10325                  1               3             16
## 695           6949                  0               3              5
## 696          10609                  5               1             14
## 697           4447                  1               2              9
## 698           2157                  1               3              3
## 699           4601                  1               3              5
## 700          17099                  2               2              9
## 701           2479                  4               3              1
## 702          14852                  6               4             17
## 703           7264                  5               4              8
## 704           5666                  1               3              5
## 705           7823                  6               3             10
## 706           7880                  0               3              8
## 707          13194                  4               2              1
## 708           5067                  1               4             19
## 709           5079                  4               3              7
## 710           2321                  0               3              3
## 711          17444                  1               3             10
## 712           2404                  6               3              0
## 713           3452                  3               3              3
## 714           2270                  3               3              5
## 715          17399                  9               2              5
## 716           5488                  1               3              6
## 717          19419                  2               4             18
## 718           2811                  9               3              2
## 719           3633                  1               3              9
## 720           4163                  1               3              9
## 721           2132                  4               3              5
## 722          13973                  3               3             12
## 723           2684                  0               2              2
## 724          10845                  6               3              8
## 725           4377                  1               3              4
## 726           3743                  1               1              4
## 727           4148                  1               3              4
## 728           1051                  1               3              0
## 729          10739                  8               3             10
## 730          10388                  1               2             16
## 731          11416                  0               2              8
## 732           2600                  1               3              1
## 733           2422                  0               3              3
## 734           5472                  1               3              8
## 735           2451                  1               2              4
## 736           4240                  2               3              2
## 737          10999                  7               3             15
## 738           5003                  6               3              2
## 739          12742                  1               3             21
## 740           4227                  0               3              3
## 741           3917                  1               2              3
## 742          18303                  6               4              1
## 743           2380                  4               3              1
## 744          13726                  3               3              5
## 745           4777                  5               1              1
## 746           6385                  3               3              8
## 747          19973                  1               3             21
## 748           6861                  8               3              1
## 749           4969                  8               3              2
## 750          19845                  1               3             32
## 751          13320                  3               3             12
## 752           6347                  0               3             18
## 753           2743                  1               3             17
## 754          10880                  1               3             21
## 755           2342                  0               2              2
## 756          17650                  3               4              9
## 757           4025                  9               3              8
## 758           9725                  0               2             15
## 759          11904                  3               1              6
## 760           2177                  1               3              6
## 761           7525                  2               3             15
## 762           4834                  7               2              1
## 763           2042                  6               3              3
## 764           2220                  1               3              1
## 765           1052                  1               3              1
## 766           2821                  3               3              2
## 767          19237                  2               2              8
## 768           4107                  3               2              4
## 769           8396                  1               2              7
## 770           2007                  1               3              5
## 771          19627                  9               3              2
## 772          10686                  6               3              9
## 773           2942                  2               3              5
## 774           8858                  0               2             14
## 775          16756                  7               4              9
## 776          10798                  5               3              1
## 777           2323                  1               3              2
## 778           1416                  1               2              1
## 779           4615                  8               3             16
## 780           2461                  9               4             10
## 781           8722                  1               2             10
## 782           3955                  1               3              5
## 783           9957                  0               2              6
## 784           3376                  1               3             10
## 785           8823                  0               2             19
## 786          10322                  4               3             11
## 787           4621                  1               3              3
## 788          10976                  3               3              3
## 789           3660                  3               4              8
## 790          10482                  9               3             20
## 791           7119                  4               3              3
## 792           9582                  0               3              8
## 793           4508                  1               3             13
## 794           2207                  1               2              4
## 795           7756                  0               2              6
## 796           6694                  2               3              1
## 797           3691                  1               4              7
## 798           2377                  1               2              1
## 799           2313                  4               3              2
## 800          17665                  0               3             22
## 801           2596                  1               3              1
## 802           4728                  3               3              0
## 803           4302                  0               3              3
## 804           2979                  3               3              0
## 805          16885                  2               2              5
## 806           5593                  1               3             15
## 807          10445                  7               3              8
## 808           8740                  0               3              8
## 809           2514                  4               3              7
## 810           7655                  0               2              9
## 811          17465                  3               3             12
## 812           7351                  7               3              1
## 813          10820                  8               3              8
## 814          12169                  7               3             18
## 815          19626                  1               4             20
## 816           2070                  1               4              2
## 817           6782                  9               2              5
## 818           7779                  2               3             11
## 819           2791                  0               3              2
## 820           3201                  0               1              5
## 821           4968                  1               3              5
## 822          13120                  6               3              9
## 823           4033                  2               2              3
## 824           3291                  0               2              7
## 825           4272                  4               3              1
## 826           5056                  1               2             10
## 827           2844                  1               4              7
## 828           2703                  1               3              3
## 829           1904                  1               3              0
## 830           8224                  0               3              5
## 831           4766                  3               3              1
## 832           2610                  1               2              2
## 833           5731                  7               3              6
## 834           2539                  1               3              4
## 835           5714                  1               2              6
## 836           4323                  1               1              5
## 837           7336                  1               1             11
## 838          13499                  9               2             18
## 839          13758                  0               2             21
## 840           5155                  7               4              6
## 841           2258                  6               3              8
## 842           3597                  8               3              4
## 843           2515                  1               2              1
## 844           4420                  1               3              8
## 845           6578                  1               3             10
## 846           4422                  3               1              1
## 847          10274                  2               4              7
## 848           5343                  0               3             13
## 849           2376                  1               4              2
## 850           5346                  8               2              4
## 851           2827                  1               3              1
## 852          19943                  4               3              5
## 853           3131                  1               3             10
## 854           2552                  1               3              1
## 855           4477                  4               2              3
## 856           6474                  1               2             14
## 857           3033                  1               2              2
## 858           2936                  1               3              6
## 859          18606                  3               3              7
## 860           2168                  0               2              5
## 861           2853                  0               3              0
## 862          17048                  8               3             26
## 863           2290                  2               3              0
## 864           3600                  1               3              5
## 865           2107                  6               1              1
## 866           4115                  8               3              4
## 867           4327                  5               3              0
## 868          17856                  2               3              2
## 869           3196                  1               3              6
## 870          19081                  5               3              4
## 871           8966                  3               3              7
## 872           2210                  1               1              1
## 873           4539                  1               2             10
## 874           2741                  1               3              7
## 875           3491                  1               2             10
## 876           4541                  1               3             20
## 877           2678                  1               3              2
## 878           7379                  2               2              6
## 879           6272                  7               4              4
## 880           5220                  0               3             11
## 881           2743                  1               3              2
## 882           4998                  4               3              8
## 883          10252                  2               3              7
## 884           2781                  0               3             14
## 885           6852                  7               4              5
## 886           4950                  0               3              4
## 887           3579                  0               3             11
## 888          13191                  3               3              1
## 889          10377                  4               2             13
## 890           2235                  1               2              9
## 891          10502                  7               1              5
## 892           2011                  1               3             10
## 893           1859                  1               4              1
## 894           3760                  1               3              3
## 895          17779                  3               3             10
## 896           6833                  1               2              6
## 897           6812                  1               3             10
## 898           5171                  5               3              6
## 899          19740                  3               3              8
## 900          18711                  2               4              1
## 901           3692                  1               2             11
## 902           2559                  5               2              1
## 903           2517                  1               3              5
## 904           6623                  1               3              6
## 905          18265                  6               4              1
## 906          16124                  3               2              7
## 907           2585                  0               2              1
## 908          18213                  7               3             22
## 909           8380                  0               3              9
## 910           2994                  1               3              1
## 911           1223                  1               3              1
## 912           1118                  1               3              1
## 913           2875                  1               2              8
## 914          18824                  2               3             24
## 915          13577                  1               3             33
## 916           2625                  1               1              2
## 917          18789                  2               3             11
## 918           4538                  0               3              3
## 919          19847                  4               2             29
## 920          10512                  6               2              9
## 921           4444                  4               4             11
## 922           2154                  0               2              4
## 923          19190                  1               2             25
## 924           4490                  4               4             10
## 925           3506                  0               3              3
## 926           2372                  6               3              1
## 927          10231                  3               4             21
## 928           5410                  9               3             16
## 929           7978                  1               3             10
## 930           3867                  1               3              2
## 931           2838                  0               2              7
## 932           4695                  7               3              8
## 933           3339                  3               3              7
## 934           2080                  2               2              3
## 935           2096                  1               2              2
## 936           6209                  1               4             10
## 937          18061                  3               3              0
## 938          17123                  6               3             19
## 939           2372                  1               3              2
## 940           4883                  1               3             10
## 941           3904                  0               3              5
## 942           4627                  0               3              9
## 943           7094                  3               3              7
## 944           3423                  6               4              7
## 945           6674                  0               3              9
## 946          16880                  4               3              3
## 947           9094                  2               3              5
## 948           8446                  9               2              8
## 949          11916                  1               3              9
## 950           4534                  0               3              8
## 951           9852                  1               2             10
## 952           6151                  1               3             19
## 953           2302                  1               4              3
## 954           2362                  4               4              3
## 955          17861                  0               2             20
## 956          19187                  4               3             19
## 957          19717                  6               3              7
## 958           3544                  9               3              4
## 959           8500                  0               2              9
## 960           4661                  1               3              9
## 961           4103                  0               3              9
## 962           4249                  1               3              9
## 963          14026                  1               3             33
## 964           6893                  3               3              7
## 965           6125                  1               4             10
## 966           3669                  3               2              3
## 967          10008                  7               2             10
## 968           2387                  3               3              4
## 969           4639                  2               2             15
## 970           7898                  1               3             10
## 971           2534                  8               3              1
## 972          13142                  3               2              5
## 973           1611                  1               4              0
## 974           5363                  0               3              9
## 975           5071                  3               3              6
## 976          13695                  6               2             19
## 977          13402                  4               3             19
## 978           2029                  1               3              5
## 979           6377                  5               3             12
## 980           5429                  4               3              8
## 981           2785                  7               4              1
## 982           4614                  0               2              4
## 983           2610                  1               3              4
## 984           6687                  1               4             14
## 985           4724                  1               3              5
## 986           6179                  1               2             10
## 987           6120                  3               4              5
## 988          10596                  2               3              4
## 989           5467                  3               2              6
## 990           2996                  7               3              6
## 991           9998                  6               4              5
## 992           4078                  0               2              3
## 993          10920                  3               3              6
## 994           6232                  2               2              3
## 995          13247                  2               2              5
## 996           4081                  1               1             20
## 997           5769                  1               3              6
## 998           2394                  1               3              8
## 999           3904                  0               3              4
## 1000         16799                  0               3             20
## 1001          2950                  9               1              5
## 1002          3629                  4               3              3
## 1003          9362                  2               3              2
## 1004          3229                  4               2              3
## 1005          3578                  0               3              7
## 1006          7988                  1               2             10
## 1007          4284                  3               3              4
## 1008          7553                  0               3              8
## 1009         17328                  6               2             20
## 1010         19701                  3               3              9
## 1011         14732                  2               4              7
## 1012          9278                  3               3              5
## 1013          1359                  1               3              1
## 1014          4779                  7               3              3
## 1015         16422                  3               4              3
## 1016          2996                  5               3              4
## 1017          1261                  1               4              1
## 1018          2099                  0               4              5
## 1019          5810                  1               2             10
## 1020          5647                  4               2              3
## 1021          3420                  7               2              6
## 1022          4400                  3               3              3
## 1023          3500                  0               1              6
## 1024          2066                  2               4              3
## 1025         17169                  3               4             20
## 1026          4162                  1               3              5
## 1027          9204                  4               2              4
## 1028          3294                  5               2              5
## 1029          2127                  2               2              4
## 1030          3975                  3               4              8
## 1031         10793                  1               3             13
## 1032         10096                  4               4              7
## 1033          3646                  2               4              1
## 1034          7446                  1               3             10
## 1035         10851                  2               3              7
## 1036          2109                  9               3              3
## 1037          3722                  6               1              2
## 1038          9380                  4               4              3
## 1039          5486                  4               3              2
## 1040          2742                  1               3              2
## 1041         13757                  2               3              9
## 1042          8463                  0               3              5
## 1043          3162                  3               3              5
## 1044         16598                  4               2              9
## 1045          6651                  2               2              3
## 1046          2345                  2               4              3
## 1047          3420                  1               2              5
## 1048          4373                  0               3              4
## 1049          4759                  3               3             13
## 1050          5301                  8               2              2
## 1051          3673                  1               3             12
## 1052          4768                  7               2              1
## 1053          1274                  1               2              1
## 1054          4900                  0               2             12
## 1055         10466                  3               3              8
## 1056         17007                  7               2             14
## 1057          2909                  3               4              3
## 1058          5765                  5               1              5
## 1059          4599                  0               4             15
## 1060          2404                  1               3              1
## 1061          3172                  2               2              0
## 1062          2033                  1               3              1
## 1063         10209                  5               2              2
## 1064          8620                  1               3             10
## 1065          2064                  0               4              5
## 1066          4035                  0               3              3
## 1067          3838                  8               3              5
## 1068          4591                  3               2              5
## 1069          2561                  7               2              0
## 1070          1563                  1               1              1
## 1071          4898                  0               3              4
## 1072          4789                  4               3              3
## 1073          3180                  0               3              3
## 1074          6549                  1               2              8
## 1075          6388                  2               3              0
## 1076         11244                  2               4              5
## 1077         16032                  3               3             14
## 1078          2362                  6               1              9
## 1079         16328                  3               4             20
## 1080          8376                  4               3              2
## 1081         16606                  8               4             13
## 1082          8606                  1               1             11
## 1083          2272                  0               3              4
## 1084          2018                  3               1              5
## 1085          7083                  1               3             10
## 1086          4084                  1               1              7
## 1087         14411                  1               3             32
## 1088          2308                  0               3             11
## 1089          4841                  4               3              1
## 1090          4285                  1               3             10
## 1091          9715                  3               3              7
## 1092          4320                  1               3              5
## 1093          2132                  4               3              5
## 1094         10124                  2               1             20
## 1095          5473                  0               4              8
## 1096          5207                  1               3             15
## 1097         16437                  1               3             21
## 1098          2296                  0               3              1
## 1099          4069                  3               3              2
## 1100          7441                  1               3             10
## 1101          2430                  0               3              5
## 1102          5878                  3               3              7
## 1103          2644                  3               2              3
## 1104          6439                  8               3              8
## 1105          2451                  6               2              1
## 1106          6392                  2               1              2
## 1107          9714                  1               3             10
## 1108          6077                  3               3              6
## 1109          2450                  1               3              3
## 1110          9250                  3               3              4
## 1111          2074                  1               3              1
## 1112         10169                  0               3             33
## 1113          4855                  4               3              5
## 1114          4087                  4               2              6
## 1115          2367                  8               2              8
## 1116          2972                  1               1              1
## 1117         19586                  1               3             36
## 1118          5484                  9               2              2
## 1119          2061                  1               3              1
## 1120          9924                  0               3              9
## 1121          4198                  2               4              3
## 1122          6815                  6               3              1
## 1123          4723                  1               3             10
## 1124          6142                  3               3              5
## 1125          8237                  2               3              7
## 1126          8853                  1               4              6
## 1127         19331                  4               3              1
## 1128          2073                  2               3              2
## 1129          5562                  3               3              3
## 1130         19613                  8               3              1
## 1131          3407                  1               2             10
## 1132          5063                  1               2              8
## 1133          4639                  1               3              5
## 1134          4876                  5               3              6
## 1135          2690                  1               2              1
## 1136         17567                  1               1             26
## 1137          2408                  1               3              1
## 1138          2814                  1               2              4
## 1139         11245                  2               3             30
## 1140          3312                  3               3              3
## 1141         19049                  0               2             22
## 1142          2141                  1               2              6
## 1143          5769                  1               3             10
## 1144          4385                  1               3             10
## 1145          5332                  7               3              5
## 1146          4663                  9               3              3
## 1147          4724                  1               3              9
## 1148          3211                  1               2              9
## 1149          5377                  2               3              7
## 1150          4066                  1               3              7
## 1151          5208                  1               3             16
## 1152          4877                  0               2              5
## 1153          3117                  1               3              2
## 1154          1569                  1               4              0
## 1155         19658                  3               3              5
## 1156          3069                  0               3             10
## 1157         10435                  1               3             18
## 1158          4148                  1               3             14
## 1159          5768                  3               2              4
## 1160          5042                  0               1              9
## 1161          5770                  1               3             10
## 1162          7756                  3               4              5
## 1163         10306                  9               3             13
## 1164          3936                  1               1              8
## 1165          7945                  6               2              4
## 1166          5743                  4               3             10
## 1167         15202                  2               3              2
## 1168          5440                  6               2              2
## 1169          3760                  1               3              6
## 1170          3517                  7               3              3
## 1171          2580                  2               2              4
## 1172          2166                  3               1              4
## 1173          5869                  9               3              5
## 1174          8008                  4               3              3
## 1175          5206                  1               3              7
## 1176          5295                  4               3              5
## 1177         16413                  3               3              4
## 1178         13269                  5               3             14
## 1179          2783                  1               3              2
## 1180          5433                  1               3             11
## 1181          2013                  2               3              4
## 1182         13966                  2               3             15
## 1183          4374                  0               3              3
## 1184          6842                  6               3              5
## 1185         17426                  3               3             10
## 1186         17603                  1               3             14
## 1187          4581                  3               4             11
## 1188          4735                  7               4             13
## 1189          4187                  1               2             10
## 1190          5505                  1               3              6
## 1191          5470                  0               2              9
## 1192          5476                  1               3             10
## 1193          2587                  4               2              2
## 1194          2440                  1               3              4
## 1195         15972                  6               3              3
## 1196         15379                  4               3              8
## 1197          7082                  3               3              2
## 1198          2728                  1               3              2
## 1199          5368                  1               3              6
## 1200          5347                  6               2              3
## 1201          3195                  4               3              2
## 1202          3989                  1               3              5
## 1203          3306                  7               2              0
## 1204          7005                  3               3              4
## 1205          2655                  2               3              9
## 1206          1393                  1               3              1
## 1207          2570                  1               3              7
## 1208          3537                  5               3              4
## 1209          3986                  1               4             15
## 1210         10883                  3               4              1
## 1211          2028                  1               3             14
## 1212          9525                  1               2              6
## 1213          2929                  1               3             10
## 1214          2275                  1               3              3
## 1215          7879                  1               3              8
## 1216          4930                  0               4              5
## 1217          7847                  1               3             10
## 1218          4401                  1               3              5
## 1219          9241                  1               3             10
## 1220          2974                  9               3              5
## 1221          4502                  3               2             13
## 1222         10748                  3               2             23
## 1223          1555                  1               3              1
## 1224         12936                  7               1             23
## 1225          2305                  1               4              3
## 1226         16704                  1               3             21
## 1227          3433                  6               2              5
## 1228          3477                  1               4              5
## 1229          6430                  6               3              3
## 1230          6516                  2               3              1
## 1231          3907                  1               4              6
## 1232          5562                  6               3             10
## 1233          6883                  2               3              7
## 1234          2862                  1               2             10
## 1235          4978                  7               1              1
## 1236         10368                  4               2             10
## 1237          6134                  5               3              2
## 1238          6735                  6               3              0
## 1239          3295                  1               1              3
## 1240          5238                  2               2              5
## 1241          6472                  1               3              9
## 1242          9610                  3               1              4
## 1243         19833                  1               2             21
## 1244          9756                  4               4              5
## 1245          4968                  0               3              9
## 1246          2145                  0               3              2
## 1247          2180                  6               2              4
## 1248          8346                  1               3              5
## 1249          3445                  1               2              6
## 1250          2760                  1               3              2
## 1251          6294                  8               4              3
## 1252          7140                  2               3              7
## 1253          2932                  0               3              5
## 1254          5147                  8               2             11
## 1255          4507                  3               4              5
## 1256          8564                  2               2              0
## 1257          2468                  4               2              6
## 1258          8161                  2               3              1
## 1259          2109                  1               3              1
## 1260          5294                  3               3              7
## 1261          2718                  2               3              7
## 1262          5811                  3               3              1
## 1263          2437                  9               3              1
## 1264          2766                  8               2              5
## 1265         19038                  8               3              1
## 1266          3055                  5               2              9
## 1267          2289                  1               3              5
## 1268          4001                  1               3             15
## 1269         12965                  4               2              3
## 1270          3539                  0               3              9
## 1271          6029                  5               3              2
## 1272          2679                  1               3              1
## 1273          3702                  1               3              5
## 1274          2398                  1               3              1
## 1275          5468                  1               3             12
## 1276         13116                  2               3              2
## 1277          4189                  1               3              5
## 1278         19328                  7               3              2
## 1279          8321                  7               3             12
## 1280          2342                  1               2              5
## 1281          4071                  2               2             10
## 1282          5813                  1               3             10
## 1283          3143                  6               3             10
## 1284          2044                  1               4              5
## 1285         13464                  7               3              4
## 1286          7991                  8               3              2
## 1287          3377                  4               2              4
## 1288          5538                  5               2              0
## 1289          5762                  2               3              7
## 1290          2592                  5               3             11
## 1291          5346                  4               2              7
## 1292          4213                  1               1             10
## 1293          4127                  2               3              2
## 1294          2438                  4               2              3
## 1295          6870                  3               1              3
## 1296         10447                  0               4             22
## 1297          9667                  9               3              7
## 1298          2148                  0               3              5
## 1299          8926                  4               4              9
## 1300          6513                  4               3              5
## 1301          6799                  1               3             10
## 1302         16291                  4               2             16
## 1303          2705                  0               4              5
## 1304         10333                  8               3             22
## 1305          4448                  2               3              7
## 1306          6854                  4               2              7
## 1307          9637                  2               3              3
## 1308          3591                  1               3              3
## 1309          5405                  2               2              4
## 1310          4684                  1               3              5
## 1311         15787                  2               3              2
## 1312          1514                  1               1              0
## 1313          2956                  0               3              1
## 1314          2335                  4               3              2
## 1315          5154                  4               4              8
## 1316          6962                  4               3              1
## 1317          5675                  1               3              7
## 1318          2379                  0               2              5
## 1319          3812                  1               4             11
## 1320          4648                  8               4              0
## 1321          2936                  3               2              6
## 1322          2105                  4               3              2
## 1323          8578                  3               2              9
## 1324          2706                  1               3              3
## 1325          6384                  8               3              7
## 1326          3968                  4               3              0
## 1327          9907                  7               2              2
## 1328         13225                  2               3             19
## 1329          3540                  1               3              9
## 1330          2804                  1               3              1
## 1331         19392                  7               3             16
## 1332         19665                  4               3             22
## 1333          2439                  1               2              1
## 1334          7314                  5               3              8
## 1335          4774                  0               2              7
## 1336          3902                  8               3              2
## 1337          2662                  8               4              5
## 1338          2856                  1               3              1
## 1339          1081                  1               2              1
## 1340          2472                  1               3              1
## 1341          5673                  1               3             10
## 1342          4197                  1               3             10
## 1343          9713                  2               3              5
## 1344          2062                  3               3              3
## 1345          4284                  5               3              5
## 1346          4788                  0               3              3
## 1347          5906                  0               2              9
## 1348          3886                  1               2             10
## 1349         16823                  2               3             19
## 1350          2933                  1               2              1
## 1351          6500                  0               2              8
## 1352         17174                  3               3             22
## 1353          5033                  2               3              2
## 1354          2307                  1               3              5
## 1355          2587                  1               3              4
## 1356          5507                  2               1              4
## 1357          4393                  5               3              5
## 1358         13348                  9               4             13
## 1359          6583                  2               3              5
## 1360          8103                  3               2              4
## 1361          3978                  8               2              2
## 1362          2544                  0               3              7
## 1363          5399                  4               3              4
## 1364          5487                  1               2             10
## 1365          6834                  1               3              7
## 1366          1091                  1               3              1
## 1367          5736                  6               3              3
## 1368          2226                  1               2              5
## 1369          5747                  1               3             15
## 1370          9854                  3               3              2
## 1371          5467                  8               4              8
## 1372          5380                  4               3              0
## 1373          5151                  1               3             10
## 1374          2133                  1               3             20
## 1375         17875                  4               2              1
## 1376          2432                  3               3              4
## 1377          4771                  2               4              5
## 1378         19161                  3               3              5
## 1379          5087                  3               3              0
## 1380          2863                  1               3              1
## 1381          5561                  0               1              5
## 1382          2144                  1               2              5
## 1383          3065                  1               4              4
## 1384          2810                  1               3              5
## 1385          9888                  1               2             14
## 1386          8628                  1               2              8
## 1387          2867                  0               2              7
## 1388          5373                  0               2              5
## 1389          6667                  5               3              5
## 1390          5003                  1               3             10
## 1391          2367                  5               2              4
## 1392          2858                  4               2              1
## 1393          5204                  1               3             10
## 1394          4105                  1               3              7
## 1395          9679                  8               3              1
## 1396          5617                  1               3             10
## 1397         10448                  6               2              2
## 1398          2897                  3               2              4
## 1399          5968                  1               3              9
## 1400          7510                  1               3             10
## 1401          2991                  0               3              6
## 1402         19636                  4               3             10
## 1403          1129                  1               3              1
## 1404         13341                  0               3             20
## 1405          4332                  1               3             20
## 1406         11031                  4               4             11
## 1407          4440                  6               3              5
## 1408          4617                  1               2              4
## 1409          2647                  1               4              5
## 1410          6323                  1               4             10
## 1411          5677                  3               3             11
## 1412          2187                  4               3              2
## 1413          3748                  1               2             12
## 1414          3977                  6               2              2
## 1415          8633                  2               3             17
## 1416          2008                  1               2              1
## 1417          4440                  0               3             15
## 1418          3067                  0               3              2
## 1419          5321                  2               3              8
## 1420          5410                  6               2              4
## 1421          2782                  3               3              5
## 1422         11957                  0               1             13
## 1423          2660                  7               3              2
## 1424          3375                  0               4              3
## 1425          5098                  1               3             10
## 1426          4878                  0               3              9
## 1427          2837                  1               3              6
## 1428          2406                  8               2              1
## 1429          2269                  0               3              2
## 1430          4108                  7               3              7
## 1431         13206                  3               3             18
## 1432         10422                  1               3             14
## 1433         13744                  1               3             16
## 1434          4907                  0               2              5
## 1435          3482                  2               2              9
## 1436          2436                  6               3              4
## 1437          2380                  1               3              2
## 1438         19431                  2               2              6
## 1439          1790                  1               2              1
## 1440          7644                  0               3              9
## 1441          5131                  7               3              4
## 1442          6306                  1               2             13
## 1443          4787                  9               4              2
## 1444         18880                  5               2             22
## 1445          2339                  8               1             10
## 1446         13570                  0               3             20
## 1447          6712                  1               3              8
## 1448          5406                  1               2             15
## 1449          8938                  2               3              5
## 1450          2439                  1               3              4
## 1451          8837                  1               3              9
## 1452          5343                  1               3             10
## 1453          6728                  7               3              6
## 1454          6652                  4               2              6
## 1455          4850                  8               3              5
## 1456          2809                  2               3              2
## 1457          5689                  1               4             10
## 1458          2001                  2               3              5
## 1459          2977                  1               3              4
## 1460          4025                  4               3              4
## 1461          3785                  1               1              5
## 1462         10854                  4               3              3
## 1463         12031                  0               2             20
## 1464          9936                  0               3              9
## 1465          2966                  0               3              4
## 1466          2571                  4               3              5
## 1467          9991                  4               3              7
## 1468          6142                  1               3              6
## 1469          5390                  2               2              9
## 1470          4404                  2               4              4

Section 1.7 Missing Values

x <- c(45, 56, NA, 23, 11, 43, NA, NA, 90)

y <- c("Alice", "Bob", NA, "David")

x
## [1] 45 56 NA 23 11 43 NA NA 90
y
## [1] "Alice" "Bob"   NA      "David"
is.na(x)
## [1] FALSE FALSE  TRUE FALSE FALSE FALSE  TRUE  TRUE FALSE
is.na(y)
## [1] FALSE FALSE  TRUE FALSE
na.omit(x) # The result looks complicated, but it can be treated as a numeric vector
## [1] 45 56 23 11 43 90
## attr(,"na.action")
## [1] 3 7 8
## attr(,"class")
## [1] "omit"
as.numeric(na.omit(x)) # clean the previous result
## [1] 45 56 23 11 43 90
na.omit(y)
## [1] "Alice" "Bob"   "David"
## attr(,"na.action")
## [1] 3
## attr(,"class")
## [1] "omit"
DF = data.frame(name = c("Alice", "Bob", "Cindy", "Donald", NA),
                math = c(45, NA, 89, 90, 93),
                physics = c(97, 87, 79, NA, 66))

str(DF)
## 'data.frame':    5 obs. of  3 variables:
##  $ name   : chr  "Alice" "Bob" "Cindy" "Donald" ...
##  $ math   : num  45 NA 89 90 93
##  $ physics: num  97 87 79 NA 66
summary(DF)
##      name                math          physics     
##  Length:5           Min.   :45.00   Min.   :66.00  
##  Class :character   1st Qu.:78.00   1st Qu.:75.75  
##  Mode  :character   Median :89.50   Median :83.00  
##                     Mean   :79.25   Mean   :82.25  
##                     3rd Qu.:90.75   3rd Qu.:89.50  
##                     Max.   :93.00   Max.   :97.00  
##                     NA's   :1       NA's   :1
DF$name = factor(DF$name)
summary(DF)
##      name        math          physics     
##  Alice :1   Min.   :45.00   Min.   :66.00  
##  Bob   :1   1st Qu.:78.00   1st Qu.:75.75  
##  Cindy :1   Median :89.50   Median :83.00  
##  Donald:1   Mean   :79.25   Mean   :82.25  
##  NA's  :1   3rd Qu.:90.75   3rd Qu.:89.50  
##             Max.   :93.00   Max.   :97.00  
##             NA's   :1       NA's   :1

2 Probability

2.1 Probability Basics

  • An experiment is a process that produces an observation.

  • An outcome is a possible observation.

  • The set of all possible outcomes is called the sample space.

  • An event is a subset of the sample space. The sample space is a special event (called the sure event) which always occurs. The empty set is another special event (called the impossible event) which never occurs. If an event contains only one possible outcome, it is called a elementary or simple event.

We focus on an experiment whose sample space contains outcomes that are equally likely.

The probability of an event \(E\), denoted by \(P(E)\), is a number between 0 and 1, inclusive. We assign 1 to the probability of the sample space. We assign 0 to the probability of the impossible event. The probability of each simple event has the probability of 1 divided by the total number of possible outcomes in the sample space.

Suppose that two six-sided dice are rolled and the numbers appearing on the dice are observed.

  1. What is the experiment?

  2. What is the sample space?

  3. How many different events are there?

  4. How can we calculate the probability that The sum of the dice is 6?

2.4 Simulations

How can we do a simulation to approximate the probability in the previous example?

We will use the sample() function provided by R to randomly select a sample from a population. The selection process can be with or without replacement.

The following R code simulates the rolling of two six-sided dice (D6) 10,00 times and calculates the probability of the sum being equal to 6.

n = 1000
s = rep(0, n)  # or do: numeric(n), which produces a vector of 1000 zeros

for (i in 1:n){
  d1 = sample(1:6, size = 1)
  d2 = sample(1:6, size = 1)
  s[i] = d1 + d2
  
}

sum(s == 6)/n
## [1] 0.16

Explanation of the above code:

  • Initialization:

    • n = 1000: Sets the number of simulations to 1000.

    • s = rep(0, n): Initializes a vector s of length n filled with zeros. This vector will be used to store the sums of two dice rolls in each simulation.

  • Simulation Loop:

    • for (i in 1:n) {…}: Executes a loop for each simulation from 1 to n.

    • d1 = sample(1:6, size = 1): Simulates the roll of the first die, randomly selecting a number from 1 to 6.

    • d2 = sample(1:6, size = 1): Simulates the roll of the second die, again randomly selecting a number from 1 to 6.

    • s[i] = d1 + d2: Calculates the sum of the two dice rolls and stores it in the vector s.

  • Calculate Probability:

    • sum(s == 6) / n: Calculates the probability of the sum being equal to 6. It counts the number of times the sum is 6 (sum(s == 6)) and divides it by the total number of simulations (n).

Random Variables

3.1 Discrete Random Variables

A discrete random variable (usually denoted by a capital letter) is a random variable that can only take on values that form a finite or infinite sequence. The following are some examples:

  • \(X\) denotes the number of Heads observed when a coin is tossed 4 times.
  • \(Y\) denotes the number of students absent in a class of 20.
  • \(X\) denotes the number of phone call I will receive tomorrow between 8:00 am and 9:00 am.

A discrete random variable is characterized by its probability mass function (pmf) which is often given either in table form, or as an equation.

3.1.1 Expected Values of Discrete Random Variables

The expected value of a random variable is, intuitively, the average value that you would expect to get if you observed the random variable more and more times.

To calculate the expected value of a random variable, we multiply its values by the corresponding probabilities and then sum the resulting values up.

3.2 Continuous Random Variables

A continuous random variable is defined as a variable that can assume any value within a given interval. Such a variable is described by a probability density function (PDF), which is a function that assigns non-negative values to each possible outcome and has a curve such that the total area under the curve equals 1.

The probability density function (PDF) enables the calculation of the probability that the random variable falls within a specific interval. To compute this probability, one must determine the area enclosed by the interval beneath the curve of the PDF and the x-axis.

Here is an example:

A random variable (\(X\)) has the pdf given by \(f(x) = 3(1-x)^2, 0<x<1\). Calculate the probability that \(0.2<X<0.8\).

We can use the following R code:

# Define the probability density function (pdf)
f=function(x) 3*(1-x)^2

# Use the integrate() function to compute the area
integrate(f, 0.4,0.8)
## 0.208 with absolute error < 2.3e-15

4.1 Estimating Probabilities of Random Variables via Simulation

How can you estimate the probability that \(X^2-20X>9500\), where \(X\) has a normal distribution with mean 100 and standard deviation 15?

The R code:

# Set seed for reproducibility
set.seed(123)

# Set the number of simulations
num_simulations <- 2000

# Generate random samples from a normal distribution with mean 100 and standard deviation 15
X <- rnorm(num_simulations, mean = 100, sd = 15)

# Calculate the values of X^2 - 20X
expr <- X^2 - 20*X

# Count the number of samples that satisfy the condition
num_satisfy_condition <- sum(expr > 9500)

# Calculate the estimated probability
estimated_probability <- num_satisfy_condition / num_simulations

# Print the estimated probability
print(estimated_probability)

Exercise 1: Let \(X\) and \(Y\) be independent standard normal random variables. Estimate \(P(XY>0.1)\)

Exercise 2: Let \(X\) be normally distributed with mean 69 and standard deviation 3.5. Estimate the mean and standard deviation of \(((X-69)/3.5)^2\).

5 Data Manipulation

5.0 The pipe operator %>%

The pipe operator %>% is a powerful tool in the tidyverse ecosystem that allows you to chain together multiple operations in a readable and concise manner. It passes the output of one function as the first argument to the next function. Here are some examples of how to use the pipe operator %>%:

# Chain together operations using the pipe operator
mtcars %>%
  filter(cyl == 4) %>%
  select(mpg, hp) %>%
  head()
##                 mpg hp
## Datsun 710     22.8 93
## Merc 240D      24.4 62
## Merc 230       22.8 95
## Fiat 128       32.4 66
## Honda Civic    30.4 52
## Toyota Corolla 33.9 65

5.1 Data manipulation (Wrangling)

Data wrangling is the process of cleaning, transforming, and organizing raw data into a more structured format for better analysis and visualization.

The following is a list of commonly used functions for data wrangling:

  • select() forms a new data frame with selected columns.
  • arrange() forms a new data frame with row(s) arranged in a specified order.
  • filter() forms a new data frame consisting of rows that satisfy certain filtering conditions.
  • mutate() and transmute() allow you to create new columns out of a data frame. mutate adds to the data frame, and transmute creates a new data frame.
  • summarize() summarizes a data frame into a single row.
  • distinct() collapses the identical observations into a single one.
  • group_by() groups the data to perform tasks by groups.

Example:

  • Read data
movies <- read.csv("http://stat.slu.edu/~speegle/_book_data/movieLensData", as.is = TRUE)
n = nrow(movies)
# Randomly pool out 10000 rows from the data
movies = movies[sample(1:n, 10000), ]
  • Create a new data frame with the columns MovieID and Rating.
select(movies, Rating, MovieID)
##       Rating MovieID
## 45851    4.0    1394
## 50323    3.5    1682
## 92328    5.0    6711
## 32019    5.0     973
## 45140    5.0    1378
## 47974    3.5    1569
## 14649    3.5     351
## 51895    3.5    1784
## 57017    3.0    2089
## 34229    5.0    1088
## 87640    5.0    5135
## 95850    3.5    8865
## 37847    5.0    1207
## 22817    3.0     587
## 55159    4.0    2005
## 17023    3.0     410
## 32770    4.5    1032
## 99516    3.5   54736
## 76904    2.0    3481
## 10886    3.0     272
## 75658    2.5    3354
## 84475    4.0    4447
## 60435    2.0    2324
## 4453     4.0      82
## 55001    3.0    2001
## 42528    4.5    1284
## 15061    2.0     356
## 37002    3.5    1197
## 89357    4.0    5618
## 60985    4.0    2353
## 75149    3.0    3264
## 4345     3.0      74
## 45781    4.0    1393
## 86411    4.0    4914
## 74146    4.5    3175
## 20890    4.5     527
## 14413    3.0     349
## 34442    5.0    1090
## 96969    5.0   31696
## 15510    3.0     364
## 67509    3.0    2718
## 15171    5.0     356
## 16749    3.0     380
## 1612     3.0      19
## 13300    3.0     327
## 43560    5.0    1307
## 10188    3.0     257
## 31578    5.0     942
## 46475    2.0    1441
## 33904    3.0    1079
## 26029    4.0     665
## 9449     3.0     233
## 23552    5.0     590
## 61105    5.0    2355
## 3217     3.5      47
## 4705     3.0      95
## 36318    3.0    1185
## 29777    4.0     866
## 41061    5.0    1258
## 73149    3.0    3095
## 25455    5.0     633
## 41603    4.0    1266
## 27287    3.0     743
## 16509    4.0     377
## 58447    4.0    2167
## 25213    5.0     610
## 80294    3.0    3895
## 22011    5.0     551
## 13310    3.0     327
## 8014     3.0     186
## 56015    4.0    2028
## 29645    5.0     858
## 18233    1.0     448
## 43808    4.0    1332
## 29388    3.0     849
## 25678    2.0     648
## 65921    4.0    2664
## 59217    3.0    2253
## 1199     3.5      12
## 53874    4.5    1955
## 58800    4.0    2194
## 87160    4.0    5010
## 69948    2.0    2890
## 69930    2.0    2890
## 69303    4.0    2846
## 72211    4.0    3022
## 57076    4.0    2094
## 1501     3.0      18
## 16303    4.0     377
## 76149    3.5    3408
## 87293    2.5    5025
## 50600    5.0    1699
## 67005    2.0    2707
## 4050     3.0      62
## 39827    4.0    1234
## 25257    4.5     611
## 41145    3.0    1259
## 47638    1.0    1544
## 70863    2.0    2949
## 4361     4.0      76
## 75178    5.0    3265
## 85380    3.5    4718
## 13202    5.0     318
## 72813    4.0    3071
## 8618     3.0     208
## 43611    5.0    1307
## 44211    3.0    1356
## 32949    4.5    1036
## 4293     3.0      70
## 16542    3.0     379
## 67931    3.0    2746
## 80471    3.0    3911
## 99019    5.0   49286
## 52800    5.0    1909
## 81042    3.0    3980
## 15214    3.0     357
## 29987    5.0     899
## 54457    3.0    1969
## 12376    4.0     306
## 124      4.0       1
## 60886    4.0    2348
## 80846    3.0    3967
## 22910    2.5     588
## 41968    2.5    1270
## 13783    5.0     339
## 83849    4.0    4310
## 37967    4.5    1208
## 17971    3.0     440
## 38785    4.0    1217
## 49415    3.0    1635
## 87146    3.0    5009
## 33811    5.0    1079
## 39512    3.0    1226
## 66465    4.0    2692
## 18827    3.5     463
## 11599    2.0     292
## 84542    4.5    4465
## 12956    5.0     318
## 206      3.0       1
## 18046    4.0     442
## 78550    4.0    3684
## 84936    2.0    4608
## 13556    4.0     333
## 79715    3.5    3793
## 82954    3.0    4207
## 12686    5.0     316
## 15349    3.0     358
## 19900    5.0     494
## 46833    3.0    1479
## 41153    5.0    1259
## 23355    4.0     589
## 16726    3.0     380
## 44544    5.0    1367
## 43401    4.0    1303
## 48371    5.0    1584
## 49605    5.0    1641
## 29788    1.5     867
## 26005    5.0     663
## 99659    4.0   55995
## 27490    3.0     750
## 86558    3.5    4963
## 78112    2.0    3623
## 19416    5.0     480
## 96580    3.5   27790
## 65400    2.5    2628
## 75169    5.0    3265
## 66781    3.0    2701
## 4398     3.0      79
## 37460    3.5    1200
## 43841    4.0    1333
## 95312    3.0    8532
## 4975     1.0     104
## 42394    3.0    1279
## 90263    4.0    5952
## 82755    1.0    4129
## 53370    2.5    1923
## 27575    4.0     759
## 10616    3.0     262
## 31530    4.0     936
## 56896    4.0    2082
## 86406    5.0    4914
## 98543    3.0   45722
## 82255    4.0    4034
## 62349    3.5    2406
## 42819    4.0    1290
## 39994    3.5    1240
## 47839    1.0    1556
## 4393     5.0      79
## 86286    4.0    4896
## 64578    4.5    2571
## 81343    4.5    3996
## 67460    4.0    2717
## 48683    4.0    1597
## 79374    2.0    3753
## 34506    1.0    1091
## 12348    4.0     306
## 96376    4.0   26148
## 42793    5.0    1289
## 38495    5.0    1213
## 3380     4.0      47
## 54503    4.0    1972
## 77311    2.0    3526
## 87112    5.0    4995
## 35739    5.0    1136
## 38472    4.0    1213
## 43313    3.0    1301
## 44384    2.0    1357
## 73697    4.0    3146
## 27872    3.5     780
## 54805    4.5    1997
## 89631    4.0    5685
## 7508     3.0     172
## 48054    4.0    1573
## 29277    2.5     838
## 53961    4.0    1958
## 91245    4.0    6333
## 62128    2.5    2396
## 75237    4.0    3270
## 64830    2.0    2580
## 77562    5.0    3545
## 85796    1.0    4826
## 84860    3.5    4571
## 20218    2.0     500
## 8944     4.0     223
## 93589    4.0    7143
## 3849     4.0      57
## 62693    3.0    2421
## 67117    1.0    2710
## 19995    3.0     497
## 89887    4.0    5816
## 50372    3.0    1682
## 71223    4.0    2968
## 95780    3.0    8800
## 83611    5.0    4298
## 94257    3.5    7361
## 21367    1.0     537
## 43036    5.0    1293
## 23635    3.5     590
## 65435    4.0    2628
## 28456    3.0     786
## 27836    3.0     778
## 79413    4.0    3755
## 13626    4.0     337
## 81015    2.0    3977
## 86211    4.0    4886
## 75098    3.0    3261
## 41895    3.0    1270
## 56818    4.0    2081
## 3524     4.0      50
## 21693    4.0     541
## 99613    3.5   55765
## 79097    3.5    3740
## 17486    3.0     431
## 21668    5.0     541
## 9552     2.0     235
## 55376    2.5    2011
## 21708    5.0     541
## 50516    3.0    1690
## 54409    2.5    1968
## 44078    3.5    1346
## 74506    4.0    3203
## 37584    5.0    1203
## 130      5.0       1
## 89398    4.0    5618
## 67370    3.0    2716
## 46195    2.0    1408
## 98508    4.0   45672
## 83437    4.0    4255
## 56868    5.0    2081
## 94344    4.5    7386
## 86258    2.0    4890
## 75680    4.0    3354
## 32539    3.0    1025
## 70400    5.0    2918
## 19845    3.0     493
## 87392    3.0    5060
## 83148    3.5    4226
## 28965    3.0     809
## 16943    1.0     397
## 95384    4.5    8622
## 272      5.0       1
## 41876    2.0    1270
## 55002    3.0    2001
## 26533    4.0     719
## 76577    4.0    3450
## 66054    2.0    2672
## 76892    4.0    3481
## 77285    3.0    3524
## 80086    2.0    3861
## 42296    3.0    1277
## 887      3.0       9
## 75135    3.0    3263
## 28127    3.0     780
## 73449    4.0    3108
## 58595    3.0    2174
## 53168    2.0    1918
## 13151    3.5     318
## 42956    2.5    1291
## 70194    3.0    2915
## 9745     4.5     246
## 31469    4.5     932
## 99753    4.0   56788
## 16780    2.0     380
## 86837    3.5    4979
## 96264    4.5    8981
## 22354    5.0     562
## 38574    5.0    1214
## 94775    4.0    7925
## 40796    4.0    1252
## 65829    1.5    2657
## 46320    3.0    1417
## 56018    5.0    2028
## 12097    5.0     296
## 39259    4.0    1222
## 47486    3.0    1527
## 42673    1.0    1287
## 67327    4.0    2716
## 867      5.0       9
## 26636    2.0     724
## 57143    3.0    2098
## 25855    3.0     653
## 86482    3.0    4958
## 20578    5.0     515
## 3793     4.0      52
## 6672     1.5     158
## 39523    3.0    1227
## 88465    2.5    5378
## 67023    4.5    2707
## 55786    3.0    2021
## 3066     3.0      44
## 76214    3.0    3418
## 57417    3.0    2112
## 42084    5.0    1272
## 41795    5.0    1270
## 48234    4.5    1580
## 39560    4.0    1228
## 95943    4.0    8902
## 7352     1.0     168
## 33606    3.0    1073
## 96783    3.5   30812
## 39615    5.0    1230
## 74065    4.0    3168
## 84423    3.0    4446
## 46486    4.0    1442
## 34154    3.0    1086
## 18921    3.0     467
## 99706    4.0   56367
## 62896    4.0    2429
## 84203    2.5    4369
## 78209    4.0    3624
## 24714    5.0     597
## 76345    4.0    3424
## 18075    4.0     442
## 29047    2.5     830
## 9605     3.0     236
## 10813    3.0     266
## 71421    2.5    2985
## 57877    3.0    2134
## 8243     5.0     196
## 4681     3.0      95
## 38560    3.0    1214
## 40284    4.0    1244
## 32343    2.0    1016
## 8044     3.0     187
## 325      3.0       2
## 41887    5.0    1270
## 77109    3.5    3503
## 41166    5.0    1259
## 81828    4.5    4019
## 13728    3.0     338
## 48708    4.0    1603
## 87134    4.0    5008
## 58540    4.0    2174
## 49161    4.5    1617
## 5027     2.5     105
## 92057    3.5    6565
## 34508    4.0    1092
## 3097     4.0      44
## 53692    5.0    1952
## 65089    5.0    2600
## 5647     5.0     123
## 82127    3.0    4029
## 40583    4.0    1247
## 75392    3.5    3296
## 56169    3.0    2041
## 46669    4.0    1466
## 73442    5.0    3108
## 60006    2.0    2302
## 18292    3.0     454
## 34468    3.0    1090
## 4047     3.0      62
## 34335    5.0    1089
## 74359    4.0    3181
## 43726    5.0    1321
## 94755    3.5    7842
## 43979    3.0    1343
## 94434    4.0    7438
## 28638    1.0     788
## 22040    3.0     551
## 71105    4.0    2959
## 36563    5.0    1193
## 4775     4.0      97
## 81548    3.5    4010
## 94037    4.0    7293
## 6346     4.0     151
## 59103    3.0    2245
## 1338     3.0      16
## 159      2.0       1
## 8990     4.0     223
## 3618     4.0      50
## 84027    3.0    4343
## 33011    4.5    1036
## 21397    5.0     538
## 3176     3.5      45
## 29238    3.0     837
## 75923    3.5    3386
## 29234    4.0     837
## 21747    2.0     541
## 91788    4.0    6534
## 96088    4.0    8958
## 80626    3.0    3948
## 36306    4.0    1185
## 1179     4.0      12
## 14674    3.0     353
## 10408    5.0     260
## 30786    5.0     916
## 4811     4.0     100
## 74904    4.5    3254
## 17760    5.0     435
## 59493    3.0    2278
## 9160     4.0     229
## 13834    4.0     339
## 48477    4.0    1587
## 27025    4.0     736
## 34131    3.0    1084
## 49653    2.0    1644
## 46190    3.0    1408
## 82363    1.0    4052
## 92494    4.0    6796
## 52537    4.0    1884
## 44326    4.0    1356
## 19788    3.0     491
## 62421    2.5    2406
## 1510     0.5      19
## 92970    4.5    6934
## 30873    5.0     919
## 58910    5.0    2206
## 41298    5.0    1262
## 19072    5.0     474
## 89616    2.5    5679
## 98546    3.0   45722
## 6979     4.0     162
## 32036    4.0     986
## 73974    4.0    3160
## 6588     4.0     153
## 73125    3.0    3093
## 82867    3.0    4161
## 6734     3.0     160
## 14144    5.0     344
## 43978    3.5    1343
## 70591    4.0    2928
## 34735    3.0    1096
## 95044    2.0    8361
## 72665    4.0    3060
## 33001    4.0    1036
## 4614     3.0      94
## 92326    2.5    6711
## 72050    4.0    3006
## 67553    3.0    2720
## 70294    4.0    2916
## 66632    1.0    2699
## 5811     1.0     141
## 27838    5.0     778
## 72681    3.0    3060
## 24601    2.5     595
## 39063    4.0    1220
## 84875    5.0    4571
## 29933    5.0     898
## 42538    5.0    1284
## 45311    2.0    1385
## 73061    3.0    3087
## 9927     3.0     252
## 13433    4.0     329
## 60622    4.0    2333
## 99997    4.0   63876
## 14857    5.0     356
## 39857    4.0    1234
## 7632     3.0     173
## 57364    4.0    2109
## 85442    3.5    4720
## 67359    5.0    2716
## 9427     5.0     232
## 43637    4.0    1310
## 96952    4.0   31694
## 55673    4.5    2019
## 67455    3.5    2716
## 78307    3.5    3639
## 49814    4.0    1653
## 96460    4.5   26729
## 4179     3.0      66
## 50038    4.0    1673
## 32476    4.0    1022
## 26222    3.0     691
## 22755    5.0     587
## 22506    2.0     586
## 43251    5.0    1299
## 51153    4.0    1726
## 53037    1.0    1917
## 69147    1.0    2826
## 9574     3.0     236
## 71364    4.0    2985
## 33175    5.0    1042
## 27901    3.0     780
## 43125    4.0    1296
## 67712    5.0    2726
## 75283    4.0    3273
## 10223    2.0     259
## 51369    5.0    1734
## 54569    3.0    1977
## 96173    3.0    8961
## 58354    3.5    2160
## 14680    5.0     353
## 46276    4.0    1411
## 59702    4.0    2290
## 83287    2.0    4238
## 66246    3.0    2683
## 75139    3.0    3263
## 53980    4.0    1959
## 49811    3.0    1653
## 11168    4.0     281
## 3934     3.0      60
## 14899    5.0     356
## 18367    3.0     454
## 58692    4.0    2186
## 21508    3.5     539
## 37404    3.0    1200
## 8883     4.0     223
## 4610     3.0      94
## 1073     3.0      11
## 92873    4.5    6888
## 99802    4.0   58047
## 5905     5.0     141
## 81977    3.0    4023
## 45016    4.0    1376
## 24980    5.0     608
## 51289    3.5    1732
## 5760     4.0     140
## 66582    2.5    2699
## 77503    1.5    3536
## 68432    2.0    2770
## 15257    4.0     357
## 2892     3.0      39
## 170      4.0       1
## 76772    1.0    3471
## 77018    4.0    3494
## 96250    3.5    8974
## 28776    3.0     802
## 90698    3.0    6059
## 73050    4.0    3087
## 78714    2.5    3702
## 52898    5.0    1912
## 26355    4.0     708
## 16373    4.0     377
## 73263    4.5    3101
## 39938    5.0    1235
## 43386    5.0    1303
## 8275     3.0     198
## 27410    2.0     748
## 88441    2.0    5378
## 21871    0.5     546
## 64239    4.0    2542
## 20650    1.0     516
## 67814    4.0    2734
## 71995    2.0    3005
## 38816    4.5    1218
## 8083     4.0     191
## 25299    3.0     616
## 46470    4.0    1441
## 45584    3.5    1391
## 18048    1.0     442
## 59733    4.0    2291
## 41552    3.0    1265
## 54535    2.0    1974
## 6090     5.0     150
## 36222    4.5    1183
## 98021    4.0   40819
## 96084    3.5    8957
## 11406    3.0     289
## 48749    2.5    1608
## 21717    3.0     541
## 79014    4.0    3728
## 41296    4.0    1262
## 20949    5.0     527
## 37888    5.0    1207
## 49794    5.0    1653
## 23906    3.0     592
## 77967    1.0    3593
## 95529    3.0    8641
## 76329    4.0    3424
## 71576    3.0    2987
## 31180    4.0     923
## 24448    4.0     595
## 55984    5.0    2028
## 15927    0.5     368
## 91695    2.5    6502
## 38457    4.0    1213
## 4412     1.0      79
## 60395    3.0    2324
## 23632    3.0     590
## 75661    1.0    3354
## 42777    3.0    1288
## 76597    4.0    3451
## 82602    3.0    4100
## 70739    3.0    2947
## 24590    5.0     595
## 45687    2.5    1393
## 3572     4.0      50
## 56870    4.0    2081
## 92993    4.0    6942
## 38481    5.0    1213
## 30361    4.5     908
## 49083    5.0    1617
## 41947    3.0    1270
## 31956    4.0     969
## 74768    3.5    3250
## 8122     4.0     193
## 15796    0.5     367
## 3913     4.0      58
## 56390    4.0    2058
## 94250    4.0    7361
## 32401    4.0    1019
## 73843    4.0    3148
## 84844    3.5    4571
## 58512    5.0    2171
## 47278    4.5    1517
## 24989    4.0     608
## 61499    1.0    2376
## 68862    2.5    2802
## 76454    2.0    3439
## 72481    3.0    3044
## 60790    3.0    2338
## 69163    3.0    2826
## 82328    4.0    4041
## 87064    3.5    4995
## 99954    3.5   60074
## 83032    3.0    4223
## 2790     4.0      36
## 16257    3.0     376
## 58954    4.5    2231
## 564      3.0       5
## 24166    5.0     593
## 92666    4.5    6863
## 73903    1.0    3156
## 53791    5.0    1954
## 87493    3.5    5064
## 54714    4.0    1994
## 33347    4.0    1057
## 87401    2.5    5060
## 17438    3.0     428
## 24575    3.5     595
## 99212    4.0   51931
## 80833    4.5    3967
## 87170    3.0    5010
## 94559    2.0    7482
## 69411    3.0    2858
## 59059    4.0    2243
## 90241    5.0    5952
## 61590    1.0    2380
## 53186    2.0    1919
## 31773    5.0     953
## 42474    4.0    1282
## 41358    3.5    1263
## 44765    2.0    1372
## 98018    4.0   40819
## 79429    2.0    3755
## 37545    4.0    1201
## 74337    3.0    3178
## 11859    5.0     296
## 65723    3.0    2642
## 17953    4.0     440
## 26508    5.0     714
## 80641    4.0    3948
## 69346    4.0    2857
## 50326    5.0    1682
## 97714    4.0   37720
## 88843    4.0    5445
## 42071    4.0    1272
## 39951    5.0    1236
## 80579    4.0    3926
## 59526    4.5    2278
## 7066     3.0     163
## 61312    2.0    2366
## 64495    5.0    2571
## 82092    4.0    4027
## 50427    4.5    1687
## 19181    4.0     475
## 56603    2.0    2069
## 91537    3.5    6378
## 88643    5.0    5418
## 63182    5.0    2459
## 6140     3.0     150
## 78585    2.0    3686
## 64077    4.0    2533
## 49806    4.5    1653
## 84066    4.0    4349
## 32415    3.5    1020
## 63208    2.0    2463
## 72093    3.0    3011
## 76304    3.5    3421
## 6879     5.0     161
## 33940    2.0    1080
## 96715    3.5   30749
## 36663    4.0    1196
## 8278     5.0     198
## 68046    4.5    2761
## 98184    3.5   42736
## 38969    5.0    1220
## 74166    3.0    3175
## 88484    3.5    5379
## 54438    3.0    1968
## 40087    2.5    1240
## 48035    2.5    1573
## 29311    3.0     839
## 89221    4.0    5538
## 94717    4.0    7826
## 5227     4.0     110
## 19933    4.0     494
## 62303    3.0    2405
## 9171     4.0     229
## 72123    2.0    3017
## 46443    2.0    1438
## 74311    2.0    3177
## 58185    3.0    2146
## 68715    3.0    2796
## 95864    3.0    8870
## 82861    1.5    4159
## 88957    1.5    5463
## 77335    3.0    3526
## 59712    3.0    2291
## 91126    3.5    6308
## 9039     3.0     224
## 63314    5.0    2470
## 56416    3.0    2058
## 32175    3.0    1004
## 68724    4.0    2797
## 86434    4.0    4936
## 29371    4.0     848
## 50563    4.5    1693
## 87576    1.5    5106
## 26525    3.0     719
## 29593    5.0     858
## 385      2.5       2
## 46479    2.0    1441
## 41430    3.0    1265
## 84035    2.5    4344
## 90710    3.5    6067
## 85259    3.5    4680
## 8796     4.0     218
## 52683    2.0    1894
## 32943    3.5    1036
## 75443    4.0    3300
## 55286    5.0    2009
## 86108    4.0    4881
## 61898    3.0    2394
## 84618    3.5    4489
## 96463    4.0   26734
## 57879    4.0    2134
## 95131    3.0    8372
## 70395    5.0    2918
## 48846    3.0    1610
## 38032    2.0    1208
## 67983    4.0    2750
## 7603     3.5     173
## 65324    3.5    2617
## 41164    4.0    1259
## 45255    2.0    1380
## 51139    4.0    1722
## 2960     4.0      39
## 80489    4.0    3911
## 40320    3.5    1244
## 4281     4.0      70
## 18066    1.0     442
## 61305    4.0    2366
## 66153    3.5    2683
## 72282    3.5    3033
## 1285     4.0      16
## 37333    4.0    1199
## 8730     3.0     216
## 23129    3.0     589
## 56357    2.0    2054
## 13530    3.0     332
## 26266    2.0     697
## 26040    2.0     667
## 44638    5.0    1370
## 26975    3.0     736
## 7361     4.0     168
## 5761     2.0     140
## 82005    4.5    4025
## 11602    4.0     292
## 43461    3.5    1304
## 59887    3.0    2297
## 13959    3.5     342
## 44894    2.5    1374
## 66657    4.0    2700
## 23140    4.0     589
## 52082    3.5    1809
## 63947    4.0    2528
## 3280     3.0      47
## 94389    5.0    7438
## 87651    5.0    5135
## 10420    5.0     260
## 21632    4.5     541
## 54909    4.0    2000
## 11710    4.0     293
## 34461    4.0    1090
## 51017    3.0    1721
## 31758    3.0     953
## 41361    3.5    1263
## 76834    1.0    3477
## 43447    5.0    1304
## 87641    3.5    5135
## 78995    4.0    3724
## 13707    1.0     337
## 20185    3.0     500
## 17116    3.0     412
## 92924    4.0    6934
## 65160    3.0    2605
## 84810    3.0    4558
## 94888    3.0    8169
## 38565    5.0    1214
## 17398    3.0     426
## 56433    4.0    2059
## 4476     3.0      85
## 85734    3.5    4815
## 70609    5.0    2935
## 4447     4.0      81
## 6576     3.0     153
## 48700    3.0    1601
## 22225    3.0     553
## 1148     3.5      11
## 49008    3.0    1614
## 66168    4.0    2683
## 64112    3.0    2539
## 28099    4.0     780
## 75339    5.0    3275
## 29678    5.0     858
## 43085    5.0    1295
## 24249    3.0     593
## 17459    2.5     429
## 1891     3.0      23
## 70240    4.0    2916
## 42231    5.0    1276
## 63864    1.0    2516
## 13679    5.0     337
## 12099    5.0     296
## 1045     2.0      10
## 12406    4.0     307
## 98719    3.5   47518
## 80399    4.0    3897
## 18304    4.0     454
## 52337    2.0    1862
## 97424    3.0   34048
## 45784    4.0    1394
## 82747    4.0    4128
## 37631    3.5    1203
## 51379    4.0    1735
## 41907    2.5    1270
## 62289    3.0    2404
## 11235    4.0     282
## 80617    2.0    3946
## 10426    5.0     260
## 22633    4.5     586
## 71486    4.0    2987
## 26425    3.0     708
## 91238    3.5    6333
## 94411    3.5    7438
## 38946    4.0    1220
## 15962    3.0     368
## 18246    3.0     449
## 66006    4.0    2671
## 87940    4.0    5266
## 73030    3.0    3083
## 54739    4.0    1994
## 1715     3.0      21
## 96825    3.0   30825
## 76209    4.0    3418
## 82294    4.0    4039
## 73674    2.0    3141
## 24151    4.0     593
## 20352    4.0     508
## 34013    5.0    1080
## 93755    5.0    7153
## 83554    1.0    4280
## 25348    1.0     626
## 15190    4.0     357
## 54489    1.0    1971
## 57063    2.0    2093
## 17571    4.0     432
## 25736    5.0     648
## 59278    4.0    2263
## 20054    4.0     500
## 92563    4.0    6808
## 48063    4.5    1573
## 62319    4.0    2405
## 44266    4.0    1356
## 25163    5.0     608
## 56770    4.0    2080
## 84549    3.0    4466
## 85032    1.0    4633
## 64207    4.0    2542
## 37093    4.5    1198
## 12059    2.0     296
## 81029    4.0    3978
## 87186    4.0    5010
## 78765    4.0    3703
## 95335    3.5    8575
## 63964    3.0    2529
## 99754    3.0   56801
## 79918    3.0    3826
## 4479     5.0      85
## 54797    2.0    1997
## 18747    3.0     457
## 10027    4.0     253
## 82406    5.0    4062
## 24224    5.0     593
## 85487    2.0    4732
## 96184    3.5    8966
## 26599    3.0     720
## 96518    4.5   27700
## 70357    3.0    2917
## 299      5.0       2
## 65403    3.0    2628
## 57583    4.0    2116
## 75213    5.0    3267
## 11395    3.0     289
## 19775    4.0     491
## 27398    3.0     748
## 24434    4.0     595
## 98369    4.5   44665
## 9263     4.0     231
## 44327    5.0    1356
## 24430    3.0     595
## 35713    4.5    1136
## 71250    4.0    2970
## 9505     5.0     235
## 31254    4.0     924
## 92649    2.5    6863
## 71635    2.5    2989
## 46942    5.0    1485
## 93278    1.5    7017
## 33750    3.5    1077
## 9022     1.0     224
## 9032     3.0     224
## 3046     2.5      43
## 29909    4.0     898
## 4283     4.5      70
## 89619    4.0    5679
## 29925    4.0     898
## 13314    2.0     327
## 83487    5.0    4265
## 30398    5.0     909
## 66560    4.0    2694
## 44424    4.0    1358
## 29737    2.0     861
## 3449     1.0      48
## 96238    3.5    8972
## 60217    4.0    2318
## 94692    3.0    7791
## 86887    4.5    4993
## 2397     3.0      32
## 27746    4.0     778
## 82345    4.0    4047
## 20197    3.0     500
## 12472    4.0     314
## 4060     3.5      62
## 76962    3.0    3483
## 60647    2.0    2333
## 85694    3.0    4799
## 38400    5.0    1212
## 18317    4.0     454
## 43082    4.0    1295
## 28736    4.0     800
## 33299    3.0    1049
## 76920    5.0    3481
## 39926    5.0    1235
## 71202    3.0    2967
## 99426    3.0   54001
## 43780    3.0    1327
## 29712    5.0     858
## 27994    5.0     780
## 22661    3.0     586
## 70988    5.0    2959
## 18070    5.0     442
## 76833    3.0    3477
## 95774    4.5    8798
## 25692    4.0     648
## 82286    4.0    4037
## 2923     3.0      39
## 58781    4.5    2194
## 14526    5.0     349
## 24001    3.0     593
## 34148    4.0    1085
## 53117    2.5    1917
## 90458    4.0    5989
## 28001    4.0     780
## 13341    3.0     329
## 66397    4.0    2690
## 42415    5.0    1280
## 55864    3.0    2023
## 25457    3.0     634
## 17399    5.0     426
## 86284    4.0    4896
## 18270    4.0     452
## 61518    4.0    2377
## 40935    5.0    1256
## 82871    3.0    4161
## 69784    4.0    2872
## 31069    4.0     922
## 13911    2.0     340
## 93632    5.0    7147
## 88066    3.5    5299
## 91001    3.5    6281
## 87685    3.5    5151
## 97726    4.0   37729
## 92537    4.0    6807
## 25484    5.0     637
## 36591    4.0    1193
## 90466    5.0    5989
## 10964    4.0     273
## 81379    4.5    3996
## 18807    2.0     460
## 5181     5.0     110
## 98666    3.5   46970
## 47386    5.0    1518
## 54636    1.0    1983
## 36473    2.0    1193
## 36987    4.0    1197
## 94443    3.0    7439
## 63935    3.0    2527
## 76350    4.0    3424
## 3376     2.0      47
## 6138     4.0     150
## 8394     3.0     204
## 58581    5.0    2174
## 5040     1.0     107
## 67960    2.5    2747
## 28959    2.0     809
## 6529     2.0     153
## 7557     4.0     173
## 66302    4.0    2686
## 15461    3.0     364
## 87981    3.5    5283
## 93598    4.0    7143
## 81462    2.0    4002
## 73762    4.0    3147
## 81990    1.0    4025
## 60935    4.0    2352
## 3879     4.0      58
## 74630    3.0    3239
## 41187    3.5    1259
## 55980    5.0    2028
## 15125    5.0     356
## 67868    5.0    2739
## 37143    4.0    1198
## 38678    4.0    1214
## 68486    2.0    2781
## 9571     4.0     235
## 29268    4.5     838
## 87129    4.0    5007
## 16254    3.0     376
## 57516    3.5    2115
## 44492    5.0    1361
## 30642    4.0     913
## 98840    3.5   48394
## 17451    5.0     428
## 22388    3.0     569
## 92163    4.0    6636
## 40384    3.5    1246
## 72883    5.0    3076
## 9563     2.0     235
## 77069    4.5    3499
## 96234    2.5    8972
## 24834    3.0     597
## 54088    4.5    1961
## 49092    4.0    1617
## 13612    3.0     336
## 6762     1.0     160
## 46571    4.5    1457
## 24040    4.0     593
## 32001    5.0     971
## 80758    3.5    3950
## 4101     4.0      62
## 47014    4.0    1489
## 31605    4.0     945
## 71382    5.0    2985
## 27555    5.0     750
## 54937    3.0    2000
## 38315    4.0    1210
## 36821    3.0    1196
## 97041    4.5   32300
## 13732    3.0     338
## 34237    3.5    1089
## 10496    4.5     260
## 92989    4.5    6936
## 54859    4.0    2000
## 75511    3.0    3311
## 35648    5.0    1136
## 42522    4.0    1283
## 58294    1.0    2153
## 3333     4.0      47
## 98521    3.5   45722
## 77144    4.0    3505
## 49551    2.0    1641
## 17622    4.0     434
## 30295    4.5     908
## 57670    4.0    2121
## 9523     3.0     235
## 74455    4.0    3196
## 95609    1.0    8665
## 13789    4.0     339
## 42234    3.0    1276
## 8104     3.0     193
## 85830    3.0    4846
## 49198    4.5    1617
## 50484    3.0    1690
## 5080     3.0     110
## 87694    3.0    5152
## 84434    1.0    4446
## 12571    5.0     316
## 72775    4.0    3068
## 87451    4.0    5060
## 34500    4.0    1091
## 62025    5.0    2396
## 49938    3.0    1665
## 57550    3.0    2115
## 3138     4.5      45
## 31628    4.0     947
## 66788    3.0    2701
## 9727     3.0     246
## 49105    3.0    1617
## 10574    5.0     261
## 51854    3.5    1784
## 61673    2.0    2384
## 9825     5.0     247
## 28299    3.0     784
## 91902    2.5    6539
## 59607    5.0    2288
## 78836    3.0    3704
## 42564    4.0    1285
## 63487    3.0    2485
## 26555    3.5     719
## 58507    3.0    2169
## 73297    4.0    3104
## 6268     5.0     150
## 72882    4.0    3076
## 85786    1.5    4823
## 29588    5.0     858
## 48758    4.0    1608
## 29333    3.0     839
## 37877    5.0    1207
## 60785    2.0    2338
## 91019    3.5    6281
## 25040    5.0     608
## 94931    3.0    8235
## 87149    5.0    5010
## 48712    3.0    1603
## 2325     4.0      32
## 96903    0.5   31424
## 29952    4.0     899
## 32780    3.0    1032
## 59383    4.5    2268
## 13963    4.0     342
## 16128    1.0     372
## 68498    1.5    2787
## 33293    3.0    1049
## 18669    3.0     457
## 14026    2.0     344
## 61741    5.0    2390
## 45342    4.0    1387
## 44730    3.0    1372
## 75133    2.0    3263
## 92677    3.5    6867
## 34124    3.0    1084
## 99838    4.0   58559
## 78316    4.0    3643
## 38898    3.0    1219
## 72230    1.0    3026
## 62389    3.5    2406
## 64401    4.0    2565
## 77621    3.5    3552
## 85435    3.5    4720
## 75393    5.0    3296
## 8021     3.0     186
## 67520    2.5    2719
## 7222     3.0     165
## 18008    3.5     441
## 52855    5.0    1910
## 22341    5.0     562
## 60893    4.0    2348
## 64499    5.0    2571
## 26507    3.0     714
## 20543    3.0     514
## 7145     5.0     165
## 94822    5.0    8019
## 24142    3.0     593
## 7982     2.5     186
## 86484    4.0    4958
## 58220    3.0    2150
## 82999    1.0    4215
## 39116    4.0    1221
## 65552    3.5    2628
## 31389    4.0     928
## 53996    3.0    1959
## 92157    3.5    6624
## 33732    5.0    1077
## 71770    5.0    2997
## 99087    2.5   50804
## 758      4.0       7
## 56266    3.0    2053
## 25966    3.0     661
## 42605    3.0    1285
## 92557    3.5    6807
## 65197    3.0    2609
## 35515    4.0    1129
## 18885    3.0     466
## 25776    4.0     648
## 15455    3.5     364
## 6955     3.0     161
## 58487    3.0    2167
## 75233    4.0    3270
## 98351    5.0   44555
## 55619    2.0    2018
## 96044    4.0    8949
## 68717    2.0    2796
## 65365    5.0    2621
## 16891    3.0     383
## 85       5.0       1
## 95770    3.5    8798
## 20842    4.0     524
## 51907    3.5    1784
## 2833     3.0      36
## 7110     4.0     164
## 95571    4.0    8644
## 69296    2.5    2846
## 49091    5.0    1617
## 86620    5.0    4970
## 12541    4.0     315
## 7339     3.0     168
## 4354     3.0      76
## 52172    2.0    1831
## 62871    3.0    2428
## 81719    2.0    4015
## 34379    4.0    1089
## 11613    1.0     293
## 41841    5.0    1270
## 3389     3.5      47
## 26894    3.0     733
## 25672    3.0     648
## 79530    4.0    3783
## 92441    5.0    6783
## 47308    5.0    1517
## 36155    3.0    1179
## 4403     3.0      79
## 60483    3.0    2327
## 60588    4.0    2329
## 78022    4.0    3615
## 80106    3.0    3863
## 6123     5.0     150
## 96744    3.5   30793
## 25891    5.0     653
## 70762    5.0    2947
## 59654    4.0    2289
## 21567    4.0     540
## 5454     2.0     111
## 38628    4.5    1214
## 76702    4.5    3468
## 83379    4.0    4246
## 9225     3.0     231
## 60645    3.0    2333
## 16234    4.0     376
## 78090    5.0    3618
## 96607    3.0   27821
## 22020    3.0     551
## 52404    2.0    1876
## 47107    4.5    1500
## 96055    3.5    8950
## 53237    4.0    1921
## 73159    4.0    3097
## 99216    1.5   51935
## 86569    3.0    4963
## 75791    4.0    3361
## 24656    2.0     596
## 92918    4.5    6934
## 69561    5.0    2858
## 38504    2.5    1213
## 14823    2.0     355
## 27843    3.0     778
## 96527    3.0   27706
## 60183    1.0    2315
## 70139    5.0    2912
## 34603    3.5    1093
## 29657    5.0     858
## 6155     3.0     150
## 68732    4.0    2797
## 58596    5.0    2174
## 5892     2.5     141
## 9977     5.0     253
## 85199    4.5    4664
## 52086    5.0    1810
## 46424    2.0    1438
## 33332    3.0    1051
## 98147    2.5   42007
## 95901    4.5    8874
## 1968     5.0      25
## 99895    4.0   59336
## 38462    4.0    1213
## 9707     3.0     240
## 727      5.0       6
## 92791    4.5    6874
## 46385    3.0    1429
## 66293    4.0    2686
## 34475    3.5    1090
## 56551    4.0    2067
## 25419    4.0     628
## 63097    3.0    2454
## 85457    4.0    4720
## 31887    4.0     968
## 82624    4.0    4103
## 80599    4.0    3932
## 71182    4.0    2966
## 30968    2.0     919
## 42410    5.0    1280
## 51279    4.0    1732
## 93350    3.5    7036
## 29171    3.0     832
## 82428    5.0    4067
## 7739     3.0     180
## 94437    3.0    7438
## 10036    4.0     253
## 13597    3.0     333
## 83902    4.5    4321
## 49760    4.0    1653
## 16037    2.5     370
## 30757    3.0     915
## 62027    4.0    2396
## 45472    1.0    1388
## 83209    4.0    4226
## 3285     4.0      47
## 3999     5.0      62
## 96468    4.0   26776
## 83741    3.5    4306
## 19510    3.0     480
## 47355    3.0    1517
## 54105    4.0    1961
## 41771    3.0    1269
## 35782    1.0    1136
## 71540    5.0    2987
## 65845    3.0    2657
## 68509    4.0    2788
## 73679    4.0    3142
## 81284    4.0    3996
## 1745     3.0      21
## 35805    3.0    1136
## 4954     3.0     104
## 79099    3.0    3740
## 42309    4.0    1277
## 33097    3.0    1037
## 82376    3.0    4054
## 64912    2.5    2590
## 9719     3.0     244
## 33954    3.5    1080
## 12709    5.0     316
## 8777     5.0     218
## 56152    3.0    2036
## 674      4.0       6
## 66981    5.0    2706
## 83464    2.0    4262
## 13194    3.0     318
## 84509    1.0    4448
## 84436    3.0    4446
## 32984    3.5    1036
## 94276    3.0    7367
## 30705    4.0     914
## 57536    4.0    2115
## 7292     3.0     165
## 87327    3.5    5036
## 41102    5.0    1259
## 66741    5.0    2700
## 88420    3.0    5378
## 10961    5.0     273
## 83053    4.5    4223
## 73580    4.0    3114
## 2762     4.0      36
## 71212    3.5    2968
## 65190    3.0    2607
## 45186    1.0    1379
## 77450    3.0    3534
## 49401    4.0    1635
## 23151    3.0     589
## 24348    4.0     594
## 19917    2.0     494
## 65982    4.0    2671
## 1223     4.0      14
## 64440    4.0    2570
## 74878    4.0    3253
## 8238     4.0     196
## 36656    4.5    1196
## 86177    3.0    4886
## 93177    2.5    6979
## 11506    3.0     292
## 35411    5.0    1127
## 90723    4.0    6101
## 80511    4.0    3916
## 93224    3.5    6999
## 17631    4.0     434
## 74290    3.0    3176
## 20180    4.5     500
## 29123    1.0     832
## 63138    4.0    2455
## 2340     3.0      32
## 49348    4.0    1626
## 70244    4.0    2916
## 80282    4.0    3893
## 9378     3.5     231
## 63486    2.0    2485
## 63923    2.0    2526
## 49720    2.5    1646
## 82682    2.0    4113
## 70076    2.0    2907
## 68258    4.0    2762
## 54097    4.0    1961
## 42870    5.0    1291
## 22816    2.0     587
## 7543     3.0     172
## 29506    4.0     858
## 87595    5.0    5110
## 63189    1.0    2461
## 43451    4.0    1304
## 45776    4.0    1393
## 69925    3.0    2889
## 47334    4.0    1517
## 67304    3.5    2716
## 35746    4.0    1136
## 79066    4.0    3735
## 56192    4.0    2043
## 54871    3.0    2000
## 70304    2.5    2916
## 35247    4.0    1120
## 16626    2.0     380
## 43732    3.5    1321
## 46854    4.0    1480
## 63555    4.0    2490
## 26075    4.0     671
## 94909    3.0    8207
## 17178    3.0     415
## 55775    4.0    2021
## 919      2.0      10
## 44236    3.5    1356
## 8786     4.0     218
## 79236    4.0    3751
## 54642    2.0    1983
## 216      4.0       1
## 22590    3.0     586
## 14339    3.0     348
## 8811     1.0     220
## 80115    4.0    3863
## 97111    1.0   32627
## 21       4.0       1
## 87383    4.0    5055
## 14931    4.0     356
## 92907    4.0    6918
## 54509    1.0    1973
## 61350    3.0    2367
## 16533    0.5     379
## 37774    4.0    1206
## 51583    3.5    1755
## 73560    5.0    3114
## 80102    3.0    3863
## 96448    2.5   26686
## 35340    1.0    1126
## 45495    0.5    1389
## 346      3.0       2
## 47535    3.5    1527
## 26720    3.0     728
## 21191    3.0     529
## 76088    4.0    3408
## 68100    4.0    2762
## 85613    0.5    4775
## 41569    4.5    1265
## 92765    5.0    6874
## 63121    3.5    2455
## 29410    2.0     849
## 42722    3.0    1288
## 31046    2.5     920
## 43521    5.0    1307
## 6947     5.0     161
## 78973    1.0    3719
## 97941    2.0   40583
## 80760    4.5    3950
## 66747    2.0    2700
## 21901    2.0     548
## 12516    3.0     315
## 73157    3.0    3097
## 77682    3.0    3556
## 44675    1.5    1371
## 72187    3.0    3020
## 16721    5.0     380
## 14033    1.0     344
## 53474    5.0    1940
## 14481    2.0     349
## 2518     3.0      34
## 83914    3.0    4321
## 77802    2.0    3578
## 16188    3.0     375
## 9204     3.0     230
## 8007     2.0     186
## 48219    1.5    1580
## 29994    3.0     899
## 99809    3.0   58105
## 52112    3.0    1817
## 41871    3.0    1270
## 27220    4.5     741
## 34443    4.0    1090
## 63342    3.0    2470
## 17552    3.5     432
## 40962    5.0    1256
## 73235    4.0    3101
## 51866    1.0    1784
## 90132    1.5    5941
## 33534    3.0    1064
## 30346    4.0     908
## 64371    2.0    2561
## 17605    3.0     433
## 98857    3.5   48516
## 85375    3.5    4718
## 92226    5.0    6669
## 93108    4.0    6953
## 3223     3.0      47
## 42080    4.5    1272
## 97969    3.0   40815
## 30256    4.0     905
## 23223    3.0     589
## 37787    3.0    1206
## 11733    3.5     293
## 47402    3.0    1526
## 63527    1.0    2489
## 24538    2.0     595
## 22546    3.0     586
## 66521    3.0    2694
## 30847    4.0     919
## 21144    3.0     528
## 633      4.0       6
## 9650     4.0     237
## 46972    4.0    1485
## 31222    4.5     924
## 43954    4.0    1342
## 71193    4.0    2966
## 58131    3.5    2144
## 49068    3.0    1617
## 67453    2.0    2716
## 61369    2.0    2369
## 52262    4.0    1840
## 59647    3.0    2289
## 73474    2.0    3113
## 79686    3.0    3793
## 60112    5.0    2312
## 27333    4.0     745
## 37170    5.0    1198
## 14711    3.0     353
## 76322    4.0    3422
## 50557    3.0    1693
## 2731     5.0      36
## 46657    4.5    1464
## 65863    3.0    2657
## 84011    2.0    4340
## 30451    4.5     910
## 90949    2.0    6238
## 98434    4.0   45210
## 56710    4.0    2078
## 1887     4.0      23
## 78059    3.0    3617
## 13883    5.0     339
## 49842    4.0    1653
## 82264    4.0    4036
## 39480    4.0    1225
## 77279    4.0    3521
## 46073    4.0    1407
## 16656    5.0     380
## 45110    2.0    1377
## 22796    4.0     587
## 31074    4.0     922
## 36820    5.0    1196
## 10351    4.0     260
## 29155    3.0     832
## 57954    5.0    2137
## 44681    4.0    1371
## 12050    5.0     296
## 86398    4.0    4911
## 92092    3.0    6593
## 6293     4.0     150
## 34045    4.0    1081
## 32202    3.0    1007
## 34883    3.5    1097
## 48601    3.0    1592
## 91754    2.0    6503
## 8864     4.0     223
## 26126    3.0     673
## 60134    4.0    2313
## 73622    4.0    3117
## 11001    1.0     276
## 20095    4.0     500
## 75912    4.0    3386
## 57084    3.0    2094
## 56708    3.0    2078
## 28868    3.5     805
## 91078    3.5    6296
## 66646    3.0    2699
## 62952    4.0    2433
## 59818    4.0    2291
## 84186    3.0    4369
## 70472    3.0    2918
## 28138    3.0     780
## 21900    4.0     548
## 45912    3.0    1396
## 1062     3.0      11
## 16481    3.0     377
## 90033    4.5    5890
## 98967    3.0   49200
## 35438    4.0    1127
## 9402     4.0     232
## 7976     1.0     185
## 21530    4.0     539
## 89925    1.5    5853
## 8008     4.0     186
## 54488    2.0    1971
## 62883    3.5    2428
## 10799    5.0     266
## 7934     4.0     185
## 14865    4.0     356
## 33763    5.0    1077
## 46985    2.0    1485
## 71230    3.0    2968
## 33339    4.0    1054
## 33494    4.0    1061
## 46437    4.0    1438
## 12959    5.0     318
## 42669    5.0    1287
## 81141    5.0    3988
## 59663    5.0    2289
## 26974    5.0     736
## 69740    3.0    2871
## 22985    4.0     588
## 97451    2.0   34129
## 54969    3.5    2001
## 50879    3.0    1717
## 48437    4.0    1586
## 59991    4.0    2302
## 40682    3.0    1250
## 4237     3.0      70
## 68080    1.0    2762
## 43301    4.0    1301
## 70144    4.0    2912
## 76112    2.5    3408
## 301      4.0       2
## 25010    4.0     608
## 84192    3.0    4369
## 1806     5.0      21
## 9442     3.0     233
## 76812    2.0    3476
## 85629    3.0    4776
## 27004    4.0     736
## 29592    4.0     858
## 18310    3.0     454
## 84955    5.0    4616
## 2866     4.0      39
## 9077     3.0     225
## 62923    2.0    2431
## 91586    4.0    6385
## 80701    3.0    3948
## 53349    5.0    1923
## 77931    5.0    3581
## 42331    4.0    1278
## 14483    3.0     349
## 82820    1.0    4148
## 11755    2.0     295
## 71764    5.0    2997
## 35879    3.5    1148
## 6878     5.0     161
## 50380    3.5    1682
## 63317    3.0    2470
## 38317    4.0    1210
## 26079    5.0     671
## 37772    3.0    1206
## 82593    5.0    4095
## 96878    3.0   31255
## 24542    2.0     595
## 93262    2.5    7009
## 53573    5.0    1947
## 42687    3.0    1288
## 35113    2.0    1101
## 71396    3.0    2985
## 39168    5.0    1221
## 60356    1.0    2322
## 71622    3.5    2989
## 13003    5.0     318
## 33384    5.0    1059
## 27687    3.0     765
## 71516    4.5    2987
## 46207    2.0    1408
## 61857    0.5    2393
## 17345    2.0     421
## 81429    3.0    4000
## 92180    4.0    6650
## 55221    4.0    2006
## 26055    4.0     671
## 56988    4.0    2087
## 94511    4.0    7451
## 1052     4.0      10
## 47497    3.0    1527
## 15442    4.0     363
## 45626    1.0    1392
## 50754    4.0    1704
## 70764    3.0    2947
## 88628    3.5    5418
## 18819    4.0     461
## 74278    3.0    3176
## 54413    4.0    1968
## 46601    2.0    1459
## 4075     3.5      62
## 59631    2.0    2288
## 28224    4.0     783
## 7444     4.0     170
## 90867    5.0    6193
## 8688     4.0     215
## 90383    3.5    5959
## 83590    4.0    4292
## 3499     3.0      48
## 95828    3.0    8833
## 38128    4.0    1210
## 96240    2.5    8972
## 21935    4.0     550
## 19397    4.0     480
## 80949    4.0    3977
## 97879    4.0   39292
## 7336     4.0     168
## 20783    4.0     520
## 27000    5.0     736
## 64467    5.0    2571
## 42907    4.0    1291
## 86014    4.0    4876
## 19683    3.0     485
## 4979     1.0     105
## 85180    1.0    4649
## 6091     5.0     150
## 60096    4.0    2311
## 10433    4.0     260
## 46703    4.5    1466
## 42772    3.0    1288
## 10195    4.0     257
## 34856    5.0    1097
## 63648    3.0    2501
## 43639    3.0    1310
## 95574    2.0    8644
## 38526    3.5    1213
## 27523    4.0     750
## 82323    3.0    4041
## 15989    4.0     369
## 17262    2.0     420
## 30019    3.0     901
## 78120    1.5    3623
## 58825    3.0    2194
## 19027    4.0     471
## 60887    4.0    2348
## 20970    4.0     527
## 40485    3.5    1246
## 9754     5.0     246
## 94955    3.5    8337
## 98516    4.5   45720
## 93954    2.5    7254
## 26612    5.0     720
## 95668    3.0    8770
## 65301    3.0    2617
## 73850    4.0    3148
## 85589    4.0    4765
## 77721    2.0    3564
## 13513    3.0     330
## 11264    5.0     288
## 87808    3.0    5219
## 95019    3.5    8360
## 44048    3.0    1345
## 68555    3.0    2791
## 97877    3.5   39292
## 10133    2.0     256
## 96256    4.0    8977
## 47078    4.0    1500
## 28591    5.0     788
## 4536     1.0      88
## 82325    4.0    4041
## 13599    1.5     333
## 74279    3.0    3176
## 31328    3.0     924
## 92025    5.0    6552
## 90861    4.0    6188
## 5871     3.0     141
## 62741    4.0    2423
## 61379    2.5    2369
## 56939    4.0    2085
## 32418    2.0    1020
## 88129    3.0    5308
## 20919    4.5     527
## 47207    1.0    1513
## 10222    3.0     259
## 47405    4.0    1527
## 49616    4.0    1643
## 27995    3.5     780
## 4630     3.0      95
## 1644     2.0      20
## 69206    4.0    2832
## 46420    3.0    1438
## 58545    3.0    2174
## 7081     2.0     163
## 7115     4.0     164
## 40668    4.0    1249
## 51785    1.5    1784
## 38120    5.0    1210
## 68957    4.0    2804
## 87105    4.5    4995
## 3837     5.0      57
## 38146    4.0    1210
## 44982    3.5    1375
## 38085    4.5    1210
## 8201     3.0     196
## 61007    4.0    2353
## 58939    4.0    2226
## 67262    1.0    2713
## 43885    4.0    1334
## 4362     5.0      76
## 77123    3.0    3504
## 21148    3.5     529
## 35798    5.0    1136
## 46487    4.0    1442
## 58605    3.5    2174
## 25694    3.0     648
## 16149    5.0     373
## 21074    5.0     527
## 56547    4.0    2067
## 69954    4.0    2890
## 39246    3.0    1222
## 10519    5.0     260
## 22907    3.0     588
## 55591    2.0    2015
## 26843    5.0     733
## 31374    4.0     926
## 47581    3.0    1537
## 56697    3.0    2078
## 99360    3.5   53519
## 48444    3.0    1586
## 40044    4.0    1240
## 62657    1.0    2420
## 79592    2.0    3790
## 99285    4.0   52952
## 67881    4.0    2739
## 26807    2.0     733
## 43537    3.5    1307
## 28356    3.0     785
## 1064     5.0      11
## 93851    3.5    7162
## 45389    5.0    1387
## 74985    3.0    3256
## 82930    5.0    4190
## 66734    4.0    2700
## 16483    3.0     377
## 22282    4.5     555
## 15525    4.0     364
## 6325     4.0     150
## 97782    3.5   37855
## 74760    2.0    3250
## 61217    4.0    2359
## 22914    5.0     588
## 50796    3.0    1707
## 41089    4.0    1258
## 68152    3.5    2762
## 61474    2.0    2374
## 9642     5.0     236
## 31206    4.0     923
## 51816    3.0    1784
## 45355    3.5    1387
## 94396    4.5    7438
## 82419    3.0    4066
## 61112    4.0    2355
## 8501     3.0     208
## 29722    3.0     861
## 42780    5.0    1288
## 25087    5.0     608
## 82403    3.0    4062
## 21605    4.0     541
## 96305    3.0    8985
## 10214    2.0     258
## 25857    3.0     653
## 77348    4.0    3527
## 36133    3.0    1178
## 30525    4.0     912
## 89915    4.5    5833
## 97541    3.5   34405
## 44861    5.0    1374
## 44128    4.0    1348
## 76693    4.0    3468
## 5734     1.0     135
## 14137    1.0     344
## 79629    4.0    3793
## 77163    3.0    3507
## 52389    5.0    1875
## 63642    4.5    2501
## 11805    4.0     296
## 7431     4.0     170
## 46428    3.0    1438
## 24821    5.0     597
## 94151    3.0    7347
## 20717    4.0     520
## 84260    3.0    4370
## 50507    4.0    1690
## 69936    3.0    2890
## 85473    4.0    4728
## 62199    4.0    2401
## 20707    2.0     519
## 95174    4.0    8451
## 48973    3.0    1611
## 32267    5.0    1012
## 39247    3.0    1222
## 94388    2.0    7438
## 29247    5.0     837
## 24100    5.0     593
## 40447    4.5    1246
## 39707    4.0    1231
## 29278    4.0     838
## 38519    4.0    1213
## 2986     4.0      39
## 27883    3.5     780
## 35160    3.0    1104
## 23797    3.0     592
## 87346    3.5    5048
## 82179    4.0    4034
## 68436    3.0    2770
## 39495    4.5    1225
## 24464    3.0     595
## 56175    4.0    2041
## 27574    4.0     759
## 84355    3.0    4397
## 68985    3.0    2805
## 27787    2.5     778
## 84450    2.5    4446
## 77074    3.5    3499
## 85260    1.0    4680
## 12789    1.0     317
## 65025    5.0    2599
## 97455    3.0   34150
## 64270    5.0    2542
## 64372    3.0    2561
## 45994    2.0    1401
## 22321    5.0     556
## 14969    4.0     356
## 88972    3.5    5464
## 84853    3.5    4571
## 14605    3.0     350
## 83122    4.0    4226
## 47776    2.0    1552
## 98023    4.5   40819
## 89118    2.5    5502
## 62060    5.0    2396
## 51004    4.0    1721
## 37372    4.0    1200
## 62844    3.0    2427
## 1870     2.5      22
## 47854    1.0    1562
## 4290     3.5      70
## 43636    1.0    1308
## 25177    5.0     608
## 90939    4.0    6232
## 58949    4.5    2231
## 60022    4.0    2302
## 71348    2.0    2978
## 76365    3.0    3426
## 63617    2.0    2497
## 45433    5.0    1387
## 18343    3.0     454
## 64781    2.5    2577
## 31371    4.5     926
## 64413    3.0    2567
## 71459    2.0    2986
## 46257    4.0    1409
## 13920    4.0     341
## 60103    5.0    2311
## 68351    5.0    2764
## 96187    3.5    8966
## 62641    3.0    2418
## 27735    5.0     778
## 47977    3.0    1569
## 92840    4.0    6880
## 98411    3.0   45062
## 37639    5.0    1203
## 17008    4.0     410
## 11194    3.0     282
## 89390    4.0    5618
## 11951    5.0     296
## 21854    3.0     544
## 36459    1.0    1191
## 340      3.5       2
## 7547     3.0     172
## 44971    3.0    1375
## 90374    3.5    5957
## 18170    3.0     442
## 16180    2.0     374
## 44257    3.0    1356
## 15274    5.0     357
## 59523    1.0    2278
## 79241    3.0    3751
## 21424    3.0     539
## 60443    4.0    2324
## 30822    5.0     919
## 25804    3.0     648
## 76954    4.0    3481
## 51341    4.0    1732
## 76235    4.0    3418
## 60293    2.0    2321
## 73021    4.0    3082
## 70331    3.5    2916
## 53837    0.5    1954
## 12569    5.0     316
## 8993     4.0     223
## 74381    3.0    3185
## 86902    3.0    4993
## 70236    4.5    2916
## 18675    4.0     457
## 34370    5.0    1089
## 67476    4.0    2717
## 5828     3.0     141
## 15671    3.0     365
## 64067    4.0    2533
## 69896    2.0    2884
## 54196    3.0    1962
## 68657    4.0    2793
## 4673     3.0      95
## 97474    2.5   34162
## 84487    4.0    4447
## 50149    1.0    1676
## 96277    3.5    8983
## 26458    1.0     709
## 1607     1.5      19
## 62403    3.0    2406
## 7047     4.0     163
## 23001    2.0     588
## 66677    4.0    2700
## 60808    3.0    2338
## 15822    5.0     367
## 78863    4.0    3706
## 86422    4.0    4922
## 40052    4.0    1240
## 55490    3.5    2012
## 19017    3.5     471
## 4925     1.0     104
## 44739    3.0    1372
## 35409    4.0    1127
## 68345    3.0    2763
## 63821    2.0    2505
## 28383    3.0     785
## 72837    3.0    3072
## 76621    3.0    3452
## 26282    3.0     704
## 21183    3.0     529
## 69032    3.0    2808
## 90976    4.5    6254
## 84932    2.0    4603
## 16792    3.0     380
## 83895    4.0    4321
## 42229    5.0    1276
## 41807    5.0    1270
## 94123    3.0    7325
## 23799    3.0     592
## 50239    4.5    1680
## 53092    1.0    1917
## 64011    4.0    2529
## 55557    4.0    2013
## 68009    4.0    2759
## 70487    4.0    2918
## 46243    4.0    1409
## 13825    5.0     339
## 31272    3.0     924
## 73849    4.0    3148
## 91419    4.5    6377
## 27785    4.0     778
## 31936    4.0     969
## 39321    5.0    1223
## 83995    3.5    4335
## 28605    2.0     788
## 5804     4.0     141
## 56351    2.5    2054
## 86152    4.0    4886
## 72545    4.0    3052
## 80492    4.0    3911
## 90899    3.0    6218
## 69577    4.0    2858
## 79959    4.0    3827
## 35381    4.0    1127
## 78536    3.5    3683
## 168      4.0       1
## 57600    3.0    2117
## 23324    4.0     589
## 8357     3.0     203
## 14464    5.0     349
## 6403     4.0     152
## 97166    3.5   33162
## 17449    5.0     428
## 66378    3.5    2688
## 29264    3.0     838
## 79452    3.0    3759
## 82139    2.0    4031
## 94286    4.5    7371
## 17045    5.0     410
## 9010     4.0     223
## 72068    3.0    3006
## 72207    4.0    3022
## 10438    4.0     260
## 65662    3.5    2640
## 30028    5.0     902
## 38257    4.0    1210
## 90501    1.0    5991
## 8430     1.0     204
## 31569    4.0     941
## 40000    4.0    1240
## 92489    1.0    6794
## 80893    2.5    3969
## 84730    4.0    4531
## 69461    3.0    2858
## 38500    4.0    1213
## 63709    5.0    2502
## 5876     4.0     141
## 54595    1.0    1980
## 62631    4.0    2416
## 86374    2.0    4901
## 95381    5.0    8622
## 11252    3.0     283
## 24452    3.0     595
## 35417    3.0    1127
## 34293    4.0    1089
## 46998    3.0    1488
## 13326    2.0     328
## 91170    4.0    6331
## 23250    3.0     589
## 75444    4.0    3300
## 2106     3.0      26
## 55218    4.0    2006
## 3070     3.0      44
## 15685    3.0     366
## 32347    3.0    1017
## 83392    5.0    4246
## 61949    5.0    2395
## 89470    3.5    5650
## 37603    4.0    1203
## 81025    3.0    3978
## 18200    3.0     445
## 37562    4.0    1201
## 32158    3.5    1003
## 18983    5.0     471
## 95488    3.0    8636
## 33025    5.0    1036
## 89351    3.0    5617
## 12831    3.0     317
## 90686    0.5    6056
## 6544     3.0     153
## 67465    3.0    2717
## 45468    3.0    1388
## 29136    4.0     832
## 73227    3.0    3101
## 41447    4.0    1265
## 7036     4.0     163
## 93575    3.0    7143
## 7910     3.0     185
## 98825    3.0   48394
## 42597    3.0    1285
## 82009    2.0    4025
## 1932     3.0      24
## 12658    2.0     316
## 28359    1.0     785
## 22685    3.5     587
## 331      1.0       2
## 77848    5.0    3578
## 54730    4.0    1994
## 43908    4.0    1339
## 51086    1.0    1721
## 92661    4.0    6863
## 1098     3.0      11
## 10721    4.0     265
## 63524    5.0    2488
## 96075    4.5    8957
## 75367    4.0    3285
## 75675    0.5    3354
## 20450    4.5     509
## 28822    3.5     802
## 33759    4.0    1077
## 58409    3.0    2162
## 85451    4.5    4720
## 92512    3.5    6797
## 30931    4.0     919
## 63630    3.0    2500
## 15423    3.5     362
## 46141    4.0    1407
## 11538    4.0     292
## 8404     5.0     204
## 44801    1.0    1373
## 74177    5.0    3175
## 93812    3.5    7155
## 25832    3.0     653
## 16802    2.5     380
## 1552     2.0      19
## 79176    3.0    3745
## 9568     1.0     235
## 11585    3.0     292
## 32096    3.5     996
## 65975    4.0    2671
## 34984    1.0    1100
## 93937    1.5    7235
## 18982    3.0     471
## 90893    4.5    6218
## 48038    5.0    1573
## 33543    3.0    1068
## 17963    3.0     440
## 58845    4.0    2194
## 31562    5.0     940
## 29755    4.0     866
## 77124    5.0    3504
## 15133    5.0     356
## 7536     3.0     172
## 90155    3.5    5944
## 28380    3.0     785
## 19079    3.5     474
## 7546     3.5     172
## 74668    3.0    3246
## 62972    2.0    2434
## 52799    4.0    1909
## 15265    5.0     357
## 68462    3.0    2774
## 64151    4.5    2541
## 76056    4.0    3406
## 80958    3.0    3977
## 44887    3.0    1374
## 9372     4.0     231
## 96095    4.0    8958
## 71807    5.0    2997
## 46915    4.0    1485
## 91868    5.0    6539
## 96847    4.0   30898
## 8795     1.0     218
## 73443    5.0    3108
## 47791    3.5    1552
## 58435    3.0    2166
## 13004    5.0     318
## 1425     3.0      17
## 14307    5.0     348
## 76357    5.0    3424
## 45878    3.0    1395
## 70148    4.0    2912
## 15908    4.0     368
## 37754    5.0    1206
## 38002    3.5    1208
## 63872    2.0    2517
## 14254    5.0     345
## 8459     3.0     207
## 51154    3.0    1726
## 42989    4.0    1291
## 78473    3.0    3676
## 50847    1.0    1713
## 56723    2.0    2078
## 49577    4.0    1641
## 86018    4.5    4878
## 64894    4.0    2585
## 82499    3.5    4084
## 39798    4.0    1233
## 17281    1.0     420
## 36017    5.0    1172
## 19241    3.0     477
## 82781    3.5    4135
## 65911    4.0    2664
## 36460    3.0    1191
## 4662     5.0      95
## 37445    3.0    1200
## 46007    3.0    1404
## 8843     4.0     222
## 17377    4.0     425
## 79932    3.0    3826
## 9526     4.0     235
## 69536    4.0    2858
## 78400    4.0    3669
## 24838    2.5     597
## 6696     1.5     158
## 22739    4.0     587
## 98519    4.0   45720
## 43566    3.0    1307
## 29293    2.0     838
## 57156    2.0    2100
## 62104    3.0    2396
## 88376    3.0    5377
## 2779     5.0      36
## 3219     5.0      47
## 33648    5.0    1073
## 18829    4.0     464
## 84990    2.5    4623
## 65170    3.0    2606
## 41209    3.0    1260
## 40242    4.0    1242
## 86880    5.0    4993
## 11728    4.0     293
## 80780    3.0    3952
## 92054    3.0    6565
## 48694    3.0    1598
## 21705    4.0     541
## 63332    2.0    2470
## 19318    4.0     480
## 94914    4.0    8207
## 44204    2.0    1356
## 31729    5.0     953
## 95245    3.5    8520
## 10795    3.0     266
## 58934    4.0    2212
## 95145    4.0    8376
## 90703    3.0    6060
## 15034    5.0     356
## 10803    3.0     266
## 8888     3.0     223
## 80384    4.0    3897
## 5212     4.0     110
## 8288     5.0     198
## 9056     3.0     224
## 44688    1.5    1371
## 20545    4.0     514
## 50987    3.0    1721
## 25330    3.0     616
## 40147    2.5    1240
## 53578    4.0    1947
## 12195    5.0     300
## 8538     3.5     208
## 44414    4.0    1358
## 54382    3.5    1968
## 67141    5.0    2710
## 53889    4.0    1956
## 51843    4.0    1784
## 86921    4.5    4993
## 98864    3.5   48516
## 91856    4.5    6538
## 66488    4.0    2692
## 85091    3.0    4639
## 33951    4.0    1080
## 18639    5.0     457
## 44678    0.5    1371
## 11699    5.0     293
## 71930    4.0    3000
## 27071    5.0     736
## 72531    3.0    3052
## 74815    4.0    3252
## 13958    4.0     342
## 55753    2.0    2021
## 8376     3.0     203
## 31193    3.5     923
## 33412    4.0    1060
## 20000    5.0     497
## 55625    2.0    2018
## 62014    4.0    2396
## 31804    5.0     954
## 463      4.0       3
## 63516    3.5    2485
## 77276    5.0    3521
## 19192    3.0     475
## 84078    3.0    4351
## 17215    3.0     417
## 91195    4.0    6333
## 54896    4.0    2000
## 20571    5.0     515
## 8198     3.0     196
## 90800    2.5    6157
## 18919    4.0     466
## 86005    5.0    4876
## 67148    1.0    2710
## 31282    5.0     924
## 88849    4.0    5445
## 26312    1.0     707
## 88921    2.0    5459
## 9269     5.0     231
## 10080    1.0     253
## 98079    3.5   41566
## 38640    2.5    1214
## 22474    4.0     585
## 55186    3.0    2005
## 63603    2.0    2496
## 75223    3.5    3269
## 81958    4.0    4022
## 30448    4.0     910
## 48384    3.5    1584
## 70920    4.0    2951
## 4485     4.0      85
## 68623    4.0    2791
## 35734    3.5    1136
## 897      2.5      10
## 1567     3.0      19
## 95523    4.5    8641
## 90728    5.0    6104
## 62820    4.0    2427
## 71117    3.5    2959
## 82347    3.0    4047
## 73370    3.0    3107
## 37783    5.0    1206
## 10660    5.0     265
## 34297    4.0    1089
## 37922    5.0    1207
## 74466    4.0    3198
## 53177    4.0    1918
## 89339    3.5    5617
## 45670    5.0    1393
## 99909    3.0   59615
## 62446    5.0    2407
## 93160    4.0    6979
## 99067    4.0   50160
## 99496    5.0   54286
## 49090    1.0    1617
## 49766    3.5    1653
## 98068    2.5   41566
## 26073    3.0     671
## 54072    3.0    1961
## 91299    4.0    6365
## 86985    4.0    4993
## 47127    4.0    1500
## 81371    5.0    3996
## 52730    4.0    1897
## 40393    3.0    1246
## 98653    4.0   46850
## 43477    5.0    1304
## 68864    3.0    2802
## 63031    3.0    2446
## 8395     2.0     204
## 95555    4.5    8644
## 51717    2.0    1777
## 22703    3.0     587
## 57996    4.5    2140
## 12814    4.0     317
## 50518    2.0    1690
## 9824     3.0     247
## 96899    2.0   31420
## 79755    4.0    3798
## 41099    5.0    1259
## 50532    4.0    1690
## 75971    4.0    3394
## 83858    3.5    4310
## 63482    3.0    2485
## 75713    3.0    3358
## 12505    3.0     315
## 12318    2.0     303
## 86499    5.0    4963
## 15856    3.0     367
## 10379    3.0     260
## 86655    4.0    4973
## 83102    4.0    4226
## 94408    5.0    7438
## 84000    4.0    4338
## 93293    3.5    7020
## 81727    0.5    4015
## 89195    2.5    5528
## 95013    2.5    8360
## 43048    3.0    1293
## 20963    4.0     527
## 70705    4.0    2944
## 27959    3.5     780
## 94186    4.5    7361
## 74899    3.0    3254
## 70256    4.0    2916
## 73197    2.0    3100
## 46498    2.0    1445
## 64022    3.0    2529
## 17664    5.0     434
## 22452    2.0     585
## 98917    3.5   48774
## 27546    3.0     750
## 61262    4.0    2361
## 62654    3.0    2420
## 98610    4.0   46578
## 3605     5.0      50
## 33772    3.0    1077
## 48528    5.0    1589
## 56290    2.0    2054
## 48485    4.0    1587
## 37346    5.0    1199
## 69609    5.0    2858
## 23127    2.0     589
## 33369    4.5    1059
## 58329    2.0    2159
## 85855    3.0    4848
## 45447    2.5    1387
## 37084    3.5    1198
## 83496    3.5    4270
## 22057    4.0     551
## 76948    3.0    3481
## 44763    4.0    1372
## 77252    3.0    3513
## 62179    4.0    2398
## 55988    3.5    2028
## 17452    5.0     428
## 28934    3.0     805
## 4463     5.0      82
## 75130    4.0    3263
## 52203    4.0    1834
## 24329    3.5     594
## 22893    5.0     588
## 30096    5.0     903
## 94544    3.0    7458
## 30179    3.0     904
## 91809    4.0    6537
## 35355    4.0    1127
## 11087    3.0     278
## 28028    5.0     780
## 38140    4.0    1210
## 59037    3.0    2240
## 46436    3.0    1438
## 54179    4.0    1962
## 15769    2.0     367
## 54717    2.5    1994
## 44161    2.5    1351
## 14761    1.0     353
## 27818    3.0     778
## 92341    2.5    6711
## 15527    4.0     364
## 86776    3.0    4977
## 21775    2.0     542
## 93884    2.5    7173
## 81528    3.0    4008
## 56694    4.0    2077
## 77994    4.0    3608
## 67839    2.5    2735
## 7305     4.0     165
## 26281    1.0     704
## 23616    3.0     590
## 64906    4.0    2589
## 97904    3.0   39446
## 36382    3.0    1188
## 81482    2.5    4005
## 58762    3.5    2193
## 63147    2.5    2455
## 22989    5.0     588
## 65590    3.5    2640
## 39016    4.0    1220
## 15267    5.0     357
## 68615    5.0    2791
## 69686    4.0    2866
## 28110    3.5     780
## 91421    5.0    6377
## 45519    4.0    1391
## 65647    4.0    2640
## 47408    3.0    1527
## 85081    3.5    4639
## 63512    4.0    2485
## 67740    3.5    2728
## 58052    4.0    2141
## 22803    4.0     587
## 78962    3.0    3717
## 54448    4.5    1968
## 75546    4.0    3317
## 98014    3.0   40819
## 59781    4.0    2291
## 67700    2.0    2724
## 74095    3.0    3173
## 73587    5.0    3114
## 75618    5.0    3334
## 67607    3.0    2723
## 50985    4.0    1721
## 93735    4.0    7153
## 94528    3.0    7458
## 62620    4.0    2416
## 67568    4.0    2722
## 72786    1.0    3070
## 89278    3.0    5574
## 1807     2.5      21
## 99737    4.0   56782
## 13649    3.0     337
## 22841    5.0     588
## 50714    5.0    1704
## 17632    5.0     434
## 94731    4.0    7836
## 79787    4.5    3801
## 95726    2.5    8784
## 31185    3.5     923
## 17787    3.0     435
## 15605    4.0     364
## 61791    2.5    2391
## 48539    5.0    1590
## 62163    4.0    2398
## 25357    3.0     627
## 32315    4.0    1015
## 85379    2.5    4718
## 19350    5.0     480
## 40591    5.0    1247
## 85801    2.5    4835
## 98430    2.0   45186
## 70528    3.5    2921
## 76871    4.0    3481
## 67722    3.5    2727
## 38354    3.0    1211
## 40516    5.0    1247
## 76939    5.0    3481
## 3903     3.5      58
## 89890    3.5    5816
## 50983    4.0    1721
## 88795    3.0    5445
## 32371    4.0    1019
## 37616    4.5    1203
## 98941    5.0   48780
## 11444    5.0     292
## 27361    4.0     745
## 24974    5.0     608
## 86574    3.0    4963
## 91130    4.0    6316
## 41150    4.0    1259
## 22228    3.0     553
## 48345    4.5    1584
## 45492    1.0    1389
## 39064    4.0    1220
## 84749    3.0    4537
## 39397    5.0    1225
## 49451    4.0    1639
## 21782    1.0     543
## 4917     4.0     104
## 85334    3.0    4701
## 28529    1.0     788
## 26640    5.0     724
## 61032    3.5    2353
## 319      3.0       2
## 30874    4.0     919
## 56883    1.5    2082
## 84538    3.0    4465
## 50647    3.5    1703
## 33431    3.5    1060
## 54387    3.0    1968
## 25524    3.0     647
## 77156    3.5    3507
## 58051    5.0    2141
## 43057    3.0    1293
## 2307     3.5      32
## 51069    4.0    1721
## 6386     4.0     151
## 73900    3.0    3156
## 43502    4.0    1305
## 71648    3.0    2990
## 56005    4.5    2028
## 47949    3.0    1569
## 48825    4.0    1610
## 35925    4.5    1148
## 59366    4.5    2268
## 20319    3.0     508
## 65354    2.5    2617
## 42633    4.0    1287
## 86117    4.0    4881
## 69503    5.0    2858
## 19109    4.0     474
## 3146     4.0      45
## 84254    2.0    4370
## 7409     3.0     169
## 26646    4.0     724
## 79242    3.5    3751
## 25970    4.0     661
## 39103    4.5    1221
## 93266    2.5    7012
## 65175    2.0    2606
## 90084    3.5    5902
## 74917    4.0    3255
## 63411    2.0    2475
## 83458    2.0    4262
## 95713    5.0    8784
## 9881     3.0     249
## 13009    5.0     318
## 62889    2.0    2428
## 90309    4.5    5952
## 16091    3.0     371
## 11163    5.0     281
## 83064    3.0    4224
## 46375    4.0    1429
## 13994    1.0     343
## 65791    4.0    2649
## 10844    5.0     267
## 37115    4.0    1198
## 81438    3.5    4002
## 45692    4.0    1393
## 98419    3.0   45175
## 96217    4.0    8970
## 61823    4.0    2393
## 97750    3.5   37733
## 92944    3.5    6934
## 66338    4.5    2687
## 58683    4.5    2186
## 94178    2.0    7360
## 13516    3.0     330
## 97639    4.5   36517
## 49301    3.0    1625
## 26754    3.0     733
## 3063     4.0      43
## 73752    4.0    3147
## 12440    3.0     312
## 39359    4.5    1223
## 7978     3.0     185
## 67382    4.0    2716
## 17952    4.0     440
## 72281    4.0    3033
## 13780    5.0     339
## 99170    0.5   51575
## 19842    4.0     493
## 72045    4.0    3006
## 84422    3.0    4446
## 18039    2.0     441
## 12343    5.0     306
## 77881    5.0    3578
## 70432    3.0    2918
## 50544    5.0    1693
## 25759    4.0     648
## 60788    3.0    2338
## 53053    1.0    1917
## 20581    5.0     515
## 25863    4.0     653
## 67703    3.0    2724
## 73309    3.0    3104
## 4519     3.0      88
## 24234    5.0     593
## 81043    4.0    3980
## 52629    2.0    1888
## 52567    2.0    1884
## 21094    4.5     527
## 96062    5.0    8950
## 64178    4.0    2541
## 90633    4.5    6016
## 41008    2.0    1258
## 32076    3.0     994
## 69773    4.0    2872
## 40489    4.0    1246
## 35413    3.0    1127
## 74555    4.0    3210
## 94463    3.5    7445
## 70129    3.0    2908
## 47403    2.0    1526
## 77153    3.5    3507
## 82381    3.0    4054
## 3293     3.0      47
## 23065    4.0     588
## 61135    3.0    2355
## 47835    1.5    1556
## 8999     4.0     223
## 44928    5.0    1375
## 63741    4.0    2502
## 44122    5.0    1348
## 68803    3.0    2797
## 95021    3.5    8360
## 57480    3.5    2115
## 66480    4.0    2692
## 57404    4.0    2111
## 24996    5.0     608
## 76040    4.0    3404
## 88792    3.5    5445
## 5996     3.0     145
## 80534    2.0    3916
## 75171    3.0    3265
## 75416    3.0    3298
## 67808    5.0    2734
## 98287    2.5   44193
## 87839    4.5    5222
## 79924    2.0    3826
## 51093    3.0    1722
## 58024    3.0    2140
## 44246    5.0    1356
## 42641    3.0    1287
## 33927    4.0    1080
## 74160    3.0    3175
## 57595    3.0    2117
## 31757    5.0     953
## 23179    4.5     589
## 52757    4.5    1907
## 27896    5.0     780
## 74520    3.0    3203
## 3076     1.0      44
## 66547    3.0    2694
## 81912    5.0    4022
## 65861    4.0    2657
## 19530    5.0     480
## 58974    4.0    2231
## 18294    2.0     454
## 74442    5.0    3196
## 59206    1.0    2253
## 42259    4.0    1276
## 71893    4.0    2997
## 25752    2.0     648
## 67711    3.5    2726
## 1635     2.0      20
## 37249    4.5    1198
## 86161    4.5    4886
## 94239    4.5    7361
## 91217    3.0    6333
## 35327    1.5    1125
## 2613     5.0      34
## 18136    3.0     442
## 39756    4.0    1233
## 1852     4.0      22
## 47080    4.0    1500
## 31596    5.0     944
## 70761    3.0    2947
## 10533    3.0     260
## 41710    4.0    1267
## 8971     2.0     223
## 45686    3.5    1393
## 29835    3.0     880
## 57175    3.0    2100
## 89302    4.0    5602
## 39585    4.0    1228
## 45522    3.0    1391
## 78179    2.0    3623
## 94977    5.0    8360
## 20652    1.0     516
## 93671    3.5    7151
## 19923    4.0     494
## 84975    4.0    4621
## 24253    3.5     593
## 46728    3.0    1468
## 14287    3.0     346
## 89203    3.5    5528
## 76076    3.5    3408
## 17795    1.0     435
## 41819    4.5    1270
## 63319    4.0    2470
## 99834    4.5   58559
## 34951    3.0    1097
## 59063    5.0    2243
## 41228    4.0    1260
## 76152    4.0    3408
## 91781    4.0    6534
## 36235    3.0    1183
## 28120    5.0     780
## 5265     4.0     110
## 26619    4.0     720
## 81675    3.5    4014
## 55019    3.0    2001
## 16521    3.0     378
## 41531    4.0    1265
## 78458    4.0    3673
## 18012    5.0     441
## 10311    4.0     260
## 68214    3.5    2762
## 4142     5.0      65
## 52310    2.0    1856
## 42206    3.0    1275
## 20062    3.0     500
## 28408    3.0     786
## 22569    4.0     586
## 7014     4.0     162
## 28906    5.0     805
## 17289    4.0     420
## 38139    5.0    1210
## 30921    2.5     919
## 62378    2.0    2406
## 36729    5.0    1196
## 625      4.0       6
## 98743    4.0   47644
## 27729    4.0     769
## 21899    2.0     548
## 92937    1.5    6934
## 42269    5.0    1276
## 56557    4.0    2067
## 2042     4.0      25
## 77314    3.0    3526
## 44512    2.0    1365
## 36485    5.0    1193
## 71125    5.0    2959
## 88580    3.0    5400
## 68780    0.5    2797
## 59500    2.0    2278
## 71134    5.0    2959
## 92275    3.5    6708
## 31626    3.0     947
## 31350    5.0     926
## 38715    5.0    1215
## 13313    4.0     327
## 43767    1.0    1325
## 25206    4.0     610
## 17120    3.5     412
## 97370    3.5   33794
## 24172    5.0     593
## 79796    3.5    3801
## 80482    4.0    3911
## 76640    3.0    3457
## 64142    2.0    2540
## 54556    1.0    1976
## 89797    3.5    5810
## 68026    4.5    2761
## 73144    4.0    3095
## 55917    1.5    2027
## 90731    5.0    6104
## 74142    4.0    3174
## 53332    4.0    1923
## 79116    4.0    3742
## 66549    3.5    2694
## 50893    5.0    1719
## 12655    3.0     316
## 29896    2.0     895
## 69898    4.0    2885
## 5869     5.0     141
## 35313    3.0    1125
## 72377    5.0    3037
## 49893    3.0    1663
## 44942    4.0    1375
## 66200    4.5    2683
## 1219     2.0      14
## 98305    3.5   44195
## 31295    5.0     924
## 53666    5.0    1952
## 40958    5.0    1256
## 29321    1.0     839
## 47735    1.0    1552
## 75623    4.5    3334
## 16952    3.0     405
## 24825    4.0     597
## 32601    3.0    1027
## 63441    2.0    2478
## 19144    2.5     474
## 36237    2.0    1183
## 44014    4.0    1343
## 2270     4.5      32
## 40637    4.0    1249
## 44469    4.0    1358
## 27573    4.0     759
## 25365    4.0     628
## 76796    2.0    3476
## 9451     4.0     233
## 10078    3.0     253
## 45991    5.0    1399
## 9114     4.0     225
## 98617    4.5   46578
## 88791    3.0    5445
## 83754    5.0    4306
## 96104    5.0    8961
## 73637    3.5    3127
## 74958    4.0    3255
## 83488    2.0    4265
## 81027    3.0    3978
## 70654    1.0    2942
## 13092    5.0     318
## 24887    3.0     605
## 47597    5.0    1541
## 70029    4.0    2899
## 87168    4.0    5010
## 12481    4.0     314
## 53870    4.0    1955
## 28788    4.0     802
## 47740    4.0    1552
## 68501    4.0    2788
## 65659    5.0    2640
## 81693    3.5    4014
## 39039    3.5    1220
## 46288    3.0    1412
## 26685    2.5     725
## 57320    4.0    2108
## 34581    3.0    1093
## 60140    4.0    2313
## 16541    2.0     379
## 42608    4.5    1285
## 90431    3.5    5989
## 84231    3.0    4370
## 62959    4.0    2433
## 66836    4.0    2702
## 63710    5.0    2502
## 84248    2.5    4370
## 7408     3.0     169
## 57309    3.0    2108
## 67376    4.0    2716
## 65379    5.0    2622
## 21164    4.0     529
## 76765    4.0    3471
## 28984    4.0     818
## 39772    4.0    1233
## 53043    3.5    1917
## 44458    5.0    1358
## 5197     5.0     110
## 9339     4.0     231
## 76300    3.0    3421
## 71069    5.0    2959
## 99571    4.0   55247
## 860      3.0       9
## 73172    4.0    3098
## 31472    5.0     932
## 50726    5.0    1704
## 52454    2.5    1876
## 52025    5.0    1804
## 74962    3.5    3255
## 44420    5.0    1358
## 16383    5.0     377
## 91324    5.0    6365
## 65994    3.0    2671
## 39092    5.0    1221
## 87059    4.5    4995
## 85063    1.0    4638
## 34457    4.5    1090
## 33988    5.0    1080
## 2945     3.0      39
## 22097    4.0     552
## 54260    4.0    1965
## 83866    2.5    4310
## 94033    3.0    7293
## 22658    4.0     586
## 68266    5.0    2762
## 32960    4.0    1036
## 81138    1.0    3987
## 94879    5.0    8169
## 36012    5.0    1172
## 13224    2.0     319
## 42118    4.0    1273
## 77297    4.0    3524
## 18607    4.0     457
## 98539    4.0   45722
## 56230    4.0    2050
## 12996    4.0     318
## 35006    3.5    1101
## 9582     3.0     236
## 16320    4.0     377
## 80871    4.0    3968
## 93080    3.0    6952
## 65610    1.0    2640
## 49264    3.0    1623
## 66321    3.0    2687
## 27876    3.0     780
## 71581    4.0    2987
## 3101     3.0      44
## 85256    2.0    4679
## 71974    3.0    3005
## 71104    4.5    2959
## 38237    5.0    1210
## 75092    4.0    3260
## 62800    3.5    2424
## 3254     5.0      47
## 85545    2.0    4743
## 30761    4.0     915
## 37434    4.0    1200
## 34854    4.5    1097
## 87765    3.0    5218
## 26087    4.0     671
## 73459    2.0    3111
## 67779    5.0    2731
## 52215    4.0    1834
## 2409     4.5      32
## 57507    4.0    2115
## 41750    5.0    1269
## 42353    5.0    1278
## 64249    3.5    2542
## 69279    5.0    2841
## 21749    3.0     541
## 98209    3.0   43836
## 71856    5.0    2997
## 70495    3.0    2919
## 73386    3.0    3107
## 67991    3.0    2751
## 19374    4.0     480
## 62911    3.5    2431
## 43692    4.0    1320
## 7841     2.0     185
## 14859    4.0     356
## 44427    5.0    1358
## 30307    4.0     908
## 22009    5.0     551
## 81913    3.0    4022
## 93301    4.5    7022
## 39989    4.0    1238
## 94534    3.0    7458
## 11980    5.0     296
## 38341    4.0    1211
## 48517    4.0    1589
## 23975    4.0     593
## 60246    4.0    2320
## 27236    3.0     741
## 44795    3.0    1373
## 98187    3.5   42738
## 50086    3.0    1674
## 50621    4.0    1701
## 43663    3.0    1320
## 77618    2.0    3552
## 53962    4.0    1958
## 99034    4.0   49530
## 11332    3.5     288
## 71699    3.0    2993
## 47934    1.0    1569
## 32209    3.0    1008
## 38881    5.0    1219
## 78001    3.0    3608
## 29883    2.0     891
## 62232    2.0    2402
## 89748    4.0    5791
## 85775    4.0    4821
## 44584    4.0    1370
## 98664    4.5   46970
## 1962     4.0      25
## 964      3.0      10
## 97945    4.0   40614
## 25262    1.0     611
## 8256     1.0     196
## 46405    2.5    1431
## 108      4.0       1
## 28273    3.0     784
## 91493    3.0    6377
## 45246    0.5    1380
## 13504    2.5     329
## 4976     4.0     104
## 64858    3.0    2581
## 11393    2.5     288
## 57720    4.0    2124
## 48614    5.0    1594
## 93413    4.5    7075
## 91515    3.5    6378
## 9488     4.0     235
## 66004    3.0    2671
## 44902    5.0    1374
## 21971    2.0     551
## 19755    3.0     490
## 5874     3.0     141
## 29296    4.0     838
## 36949    5.0    1197
## 481      4.0       3
## 1089     4.0      11
## 89732    2.5    5784
## 96145    5.0    8961
## 38771    3.0    1215
## 14690    3.0     353
## 99859    4.5   59018
## 57558    3.0    2115
## 70416    5.0    2918
## 63931    3.5    2527
## 23204    5.0     589
## 4623     3.0      94
## 11718    4.0     293
## 30910    3.0     919
## 22909    4.0     588
## 4832     4.0     101
## 10489    5.0     260
## 15900    3.5     368
## 57249    4.0    2105
## 7880     4.0     185
## 46349    2.0    1425
## 18076    3.0     442
## 15820    4.0     367
## 66899    2.0    2706
## 7399     5.0     168
## 33294    4.0    1049
## 59274    3.0    2262
## 64540    4.0    2571
## 37901    5.0    1207
## 73531    4.0    3114
## 35823    4.5    1147
## 29170    4.0     832
## 7083     5.0     163
## 76675    5.0    3467
## 21019    5.0     527
## 19793    3.5     491
## 6599     3.0     153
## 49772    3.5    1653
## 26948    4.0     735
## 23115    4.0     589
## 85543    4.0    4741
## 63401    4.0    2474
## 6649     4.0     158
## 69255    3.0    2841
## 21107    5.0     527
## 72948    3.0    3081
## 7129     4.0     165
## 53482    3.0    1942
## 26965    2.0     736
## 83238    3.0    4232
## 93447    4.5    7090
## 29432    4.0     852
## 4713     3.0      95
## 9837     3.0     247
## 97366    3.5   33794
## 95950    4.0    8907
## 68954    5.0    2804
## 82420    3.0    4066
## 26107    3.5     673
## 48897    4.0    1610
## 38705    4.0    1214
## 60000    3.0    2302
## 747      3.0       7
## 24951    5.0     608
## 79970    3.0    3827
## 23786    3.0     592
## 50025    4.5    1673
## 64552    5.0    2571
## 14058    2.5     344
## 74873    3.5    3253
## 56826    4.5    2081
## 47490    4.0    1527
## 35704    2.5    1136
## 77796    4.5    3578
## 81286    4.0    3996
## 1337     4.0      16
## 67187    4.0    2712
## 29225    4.0     836
## 92678    5.0    6867
## 884      3.0       9
## 7960     3.5     185
## 10473    4.0     260
## 63373    4.0    2471
## 52659    2.5    1892
## 68344    2.0    2763
## 31938    5.0     969
## 77912    4.5    3578
## 76779    5.0    3471
## 31745    4.0     953
## 14772    2.0     354
## 94429    5.0    7438
## 98163    4.0   42094
## 18300    3.0     454
## 31638    2.0     948
## 64642    4.5    2571
## 1782     4.0      21
## 648      4.0       6
## 54159    4.5    1961
## 6019     2.0     147
## 53730    4.0    1953
## 14578    4.0     350
## 2483     3.0      32
## 14094    4.0     344
## 37668    4.0    1204
## 34267    4.0    1089
## 9322     5.0     231
## 62026    3.0    2396
## 57075    2.0    2094
## 43876    3.0    1334
## 81771    3.5    4018
## 31250    3.5     924
## 13174    5.0     318
## 21025    5.0     527
## 82146    4.5    4033
## 47190    4.0    1513
## 57326    4.0    2108
## 72563    5.0    3052
## 53974    5.0    1958
## 98820    4.0   48394
## 68690    4.0    2795
## 50967    1.0    1721
## 10717    4.0     265
## 9277     1.0     231
## 52589    5.0    1885
## 3784     5.0      52
## 72990    4.0    3082
## 31446    4.0     931
## 45155    5.0    1378
## 26352    4.0     708
## 93267    5.0    7013
## 32937    4.0    1036
## 75218    1.0    3268
## 21509    3.0     539
## 58760    3.0    2193
## 6311     5.0     150
## 27099    3.0     736
## 50179    2.5    1676
## 61399    4.0    2370
## 67055    3.0    2710
## 9638     2.5     236
## 28431    5.0     786
## 23537    3.0     590
## 6258     4.0     150
## 91732    4.0    6502
## 8905     4.0     223
## 43576    3.0    1307
## 38535    3.0    1213
## 2975     4.0      39
## 53895    5.0    1956
## 13122    5.0     318
## 49080    4.0    1617
## 85721    3.0    4814
## 94093    4.0    7323
## 47805    2.5    1552
## 51327    1.0    1732
## 14503    4.0     349
## 79562    1.0    3785
## 57671    1.0    2121
## 53026    3.0    1917
## 5380     3.5     111
## 85971    3.5    4874
## 20531    3.0     513
## 64986    3.0    2599
## 26752    2.0     733
## 50180    2.0    1676
## 46725    3.0    1466
## 10417    5.0     260
## 94401    3.5    7438
## 81966    2.0    4023
## 17733    1.0     434
## 22466    1.5     585
## 87672    5.0    5146
## 78549    5.0    3684
## 77096    4.0    3501
## 50973    4.0    1721
## 33085    4.0    1037
## 94781    4.0    7934
## 32250    1.0    1011
## 16024    1.0     370
## 49641    3.0    1644
## 63092    4.0    2454
## 46090    3.0    1407
## 82921    2.0    4181
## 96337    4.5   25850
## 53198    2.0    1920
## 553      4.0       5
## 29269    2.0     838
## 87309    1.0    5027
## 34688    3.0    1095
## 72932    3.5    3081
## 53139    3.5    1918
## 33373    4.0    1059
## 52205    2.0    1834
## 34638    4.0    1094
## 14840    5.0     356
## 75478    2.5    3301
## 98544    4.5   45722
## 45229    3.5    1380
## 67252    3.0    2712
## 4590     2.0      93
## 29255    3.0     837
## 32100    2.0     996
## 81035    2.0    3979
## 91639    4.0    6441
## 71590    3.0    2987
## 61701    1.0    2387
## 93796    4.5    7153
## 5690     2.0     132
## 22954    3.0     588
## 79896    4.0    3825
## 90195    4.0    5952
## 76390    3.0    3430
## 30511    4.0     912
## 11324    1.0     288
## 15979    3.0     368
## 65648    4.5    2640
## 33372    3.0    1059
## 47988    4.0    1571
## 14046    2.0     344
## 74420    2.0    3190
## 95702    5.0    8784
## 9661     3.0     237
## 78796    4.0    3703
## 17938    3.0     440
## 61598    1.0    2381
## 41402    4.0    1265
## 20534    5.0     514
## 82492    4.5    4084
## 98714    3.5   47200
## 8175     3.0     195
## 31655    3.0     950
## 64998    4.0    2599
## 58446    4.0    2167
## 29165    2.0     832
## 54155    5.0    1961
## 92229    4.0    6669
## 63818    4.0    2505
## 46433    4.0    1438
## 49692    3.5    1645
## 94165    3.0    7355
## 41224    5.0    1260
## 3453     0.5      48
## 67054    3.0    2710
## 43249    5.0    1299
## 76735    5.0    3471
## 84488    4.0    4447
## 62245    2.5    2402
## 23146    5.0     589
## 93054    4.0    6947
## 69008    1.5    2806
## 63117    3.5    2455
## 57488    2.0    2115
## 26595    3.0     720
## 83308    4.0    4239
## 16837    3.0     381
## 68480    2.0    2779
## 85725    4.0    4814
## 85886    4.5    4851
## 1901     3.0      23
## 97261    4.5   33592
## 84187    2.5    4369
## 12838    3.0     317
## 94582    3.5    7566
## 9399     4.0     232
## 88943    3.0    5459
## 72246    5.0    3030
## 8857     4.0     223
## 88221    4.0    5346
## 90951    2.5    6238
## 65447    3.5    2628
## 53678    3.0    1952
## 5784     4.0     141
## 51752    2.0    1779
## 19359    3.0     480
## 50798    0.5    1707
## 42057    2.0    1272
## 54610    1.0    1981
## 49101    5.0    1617
## 46338    2.0    1422
## 76031    4.0    3399
## 94525    3.0    7457
## 68521    4.0    2789
## 68629    4.0    2792
## 67092    4.0    2710
## 91951    4.0    6539
## 50517    2.0    1690
## 40367    4.0    1246
## 23608    4.0     590
## 77402    4.0    3527
## 42506    4.0    1283
## 57540    5.0    2115
## 19090    3.0     474
## 26169    5.0     678
## 996      3.0      10
## 43865    3.0    1333
## 11363    4.0     288
## 79511    4.0    3773
## 26962    3.0     736
## 1976     4.0      25
## 91473    3.5    6377
## 57025    4.0    2090
## 65691    1.0    2641
## 94832    3.5    8042
## 89891    3.5    5816
## 17917    4.0     440
## 81741    4.5    4016
## 28637    4.0     788
## 74346    4.0    3179
## 75268    4.0    3272
## 45172    2.0    1378
## 74750    3.0    3249
## 83793    5.0    4308
## 19124    5.0     474
## 68292    2.5    2763
## 17750    2.0     434
## 1896     2.0      23
## 57896    4.0    2134
## 92917    4.0    6934
## 71158    1.0    2961
## 7112     5.0     164
## 18433    3.0     455
## 68737    5.0    2797
## 65665    3.0    2640
## 80185    5.0    3868
## 14456    4.0     349
## 36079    3.5    1175
## 38127    3.5    1210
## 1765     4.0      21
## 23514    3.5     590
## 50162    4.0    1676
## 70371    4.0    2917
## 87299    3.0    5026
## 5722     5.0     135
## 15585    3.0     364
## 95357    4.0    8596
## 48082    4.0    1573
## 86116    4.0    4881
## 55620    4.0    2018
## 12756    5.0     316
## 10987    4.0     276
## 60768    5.0    2336
## 98550    4.0   45722
## 24240    4.0     593
## 81571    3.5    4011
## 93670    3.5    7151
## 36452    3.0    1191
## 12651    4.0     316
## 58049    4.0    2141
## 43824    3.0    1333
## 48089    3.0    1573
## 86556    4.0    4963
## 53588    5.0    1947
## 71033    3.5    2959
## 38373    4.0    1212
## 961      4.0      10
## 23375    2.0     590
## 204      4.0       1
## 47454    4.5    1527
## 92027    3.5    6558
## 46597    4.0    1459
## 14099    3.0     344
## 64341    4.0    2558
## 95091    4.0    8368
## 87563    3.0    5103
## 62822    2.0    2427
## 2036     5.0      25
## 70382    4.0    2918
## 75397    4.0    3296
## 38792    4.0    1217
## 36876    5.0    1196
## 77677    3.5    3555
## 78975    4.0    3719
## 7462     2.0     171
## 27276    4.0     743
## 35974    3.0    1171
## 9941     4.5     252
## 14632    3.0     350
## 6111     4.0     150
## 70979    3.5    2959
## 7458     4.0     170
## 69480    5.0    2858
## 55255    3.0    2006
## 78909    4.0    3712
## 94484    4.0    7445
## 45637    3.0    1393
## 3894     5.0      58
## 32213    3.0    1008
## 99974    3.0   61132
## 47320    3.0    1517
## 7779     2.0     180
## 73187    3.0    3098
## 88371    5.0    5377
## 20270    1.0     506
## 19778    4.0     491
## 45206    4.0    1380
## 84602    3.0    4487
## 70763    4.0    2947
## 62091    4.0    2396
## 90644    4.5    6016
## 49072    4.5    1617
## 52189    4.0    1834
## 70334    4.0    2916
## 67020    2.0    2707
## 45566    3.0    1391
## 26574    3.0     719
## 48472    3.5    1587
## 99066    1.0   50153
## 15340    2.0     358
## 7774     4.0     180
## 94685    4.0    7773
## 59841    3.0    2294
## 55552    2.5    2012
## 34390    4.0    1090
## 35654    4.0    1136
## 85832    4.5    4848
## 58230    4.0    2150
## 4597     3.0      94
## 17320    3.0     420
## 76179    3.0    3409
## 94584    3.0    7569
## 14927    3.0     356
## 96029    2.0    8949
## 65337    2.5    2617
## 84769    2.5    4545
## 11146    3.0     280
## 77146    3.0    3505
## 22434    5.0     577
## 84801    4.0    4557
## 94082    4.0    7318
## 68481    3.5    2779
## 71926    4.5    3000
## 30497    5.0     912
## 81034    5.0    3979
## 48388    1.0    1584
## 62711    4.0    2422
## 84247    4.0    4370
## 23928    5.0     593
## 88280    5.0    5349
## 33308    3.0    1049
## 75753    4.0    3360
## 862      5.0       9
## 77385    4.0    3527
## 85857    5.0    4848
## 15333    3.0     357
## 24400    2.5     594
## 56132    2.0    2033
## 82827    1.0    4148
## 49253    3.0    1620
## 7167     4.0     165
## 77548    5.0    3544
## 34356    3.5    1089
## 66163    2.5    2683
## 10038    3.0     253
## 5327     3.0     110
## 184      4.0       1
## 19963    5.0     497
## 42257    4.0    1276
## 19875    3.0     494
## 25318    4.0     616
## 21791    3.0     543
## 83270    4.0    4235
## 14943    5.0     356
## 19817    4.0     492
## 71558    4.0    2987
## 60205    4.0    2318
## 95047    1.5    8362
## 93715    5.0    7153
## 97614    4.0   35836
## 42023    5.0    1271
## 28160    5.0     781
## 68978    3.0    2805
## 47204    3.0    1513
## 52519    2.0    1883
## 88385    3.5    5377
## 42348    4.0    1278
## 38624    4.0    1214
## 34431    4.5    1090
## 75257    5.0    3271
## 17671    3.0     434
## 2838     4.0      38
## 30523    5.0     912
## 19482    5.0     480
## 30649    4.5     913
## 79237    4.5    3751
## 96324    4.0   25763
## 66792    2.0    2701
## 46783    1.0    1476
## 6393     3.0     151
## 42195    5.0    1275
## 60851    2.5    2341
## 56195    3.0    2044
## 26238    4.0     694
## 2692     5.0      35
## 20517    3.0     511
## 57858    1.0    2133
## 88810    2.5    5445
## 38901    5.0    1219
## 58827    3.0    2194
## 80549    5.0    3917
## 7116     5.0     164
## 47245    3.0    1516
## 12186    4.0     300
## 95596    3.5    8665
## 33247    3.0    1047
## 90862    3.5    6188
## 51897    3.0    1784
## 89794    2.0    5810
## 45657    4.0    1393
## 76305    5.0    3421
## 71958    3.0    3004
## 10841    3.0     267
## 87009    5.0    4993
## 76781    3.0    3471
## 2253     4.0      32
## 83281    5.0    4235
## 71816    5.0    2997
## 96225    5.0    8970
## 38997    4.0    1220
## 47214    2.0    1513
## 44460    3.5    1358
## 53975    3.0    1958
## 19224    4.0     477
## 51686    3.0    1777
## 40030    3.0    1240
## 10949    1.0     273
## 13060    4.0     318
## 63611    1.0    2497
## 61698    1.0    2386
## 86555    4.5    4963
## 77226    1.0    3511
## 59426    3.0    2272
## 84336    3.0    4388
## 45276    0.5    1381
## 88293    3.0    5349
## 49390    3.5    1633
## 57940    3.0    2137
## 30854    4.0     919
## 88805    2.5    5445
## 63158    2.0    2456
## 46430    3.0    1438
## 29636    3.5     858
## 11693    4.0     293
## 99242    2.5   52328
## 40776    4.0    1252
## 21427    4.0     539
## 53471    3.0    1940
## 73670    3.5    3135
## 16053    4.0     370
## 82316    4.5    4041
## 57575    2.0    2116
## 17655    2.0     434
## 21206    4.0     529
## 97517    3.0   34319
## 85655    3.0    4776
## 2047     2.5      25
## 50437    3.0    1687
## 80272    2.0    3893
## 37870    3.0    1207
## 90419    4.0    5989
## 30000    4.5     900
## 49458    5.0    1639
## 661      4.0       6
## 64091    3.0    2539
## 33240    4.0    1047
## 43974    2.0    1343
## 8878     1.0     223
## 45448    3.0    1387
## 29776    5.0     866
## 39142    5.0    1221
## 73177    4.0    3098
## 33027    3.0    1036
## 25735    5.0     648
## 52874    4.0    1911
## 22196    4.0     553
## 31080    1.0     922
## 37057    5.0    1197
## 29934    4.5     898
## 59364    1.0    2268
## 88933    2.5    5459
## 35646    4.0    1136
## 51324    3.0    1732
## 54199    4.0    1962
## 97038    4.0   32298
## 96843    1.5   30883
## 67260    1.0    2713
## 65566    4.0    2633
## 83402    2.0    4247
## 39188    5.0    1221
## 6214     5.0     150
## 94086    3.5    7318
## 80052    4.0    3852
## 98193    4.0   43333
## 16325    5.0     377
## 5309     4.0     110
## 63671    4.5    2502
## 24817    3.0     597
## 22129    3.0     553
## 62291    1.0    2404
## 90922    4.5    6218
## 84129    3.5    4361
## 46029    2.0    1405
## 32615    5.0    1028
## 8346     3.5     203
## 82636    3.5    4103
## 27375    3.5     745
## 59667    5.0    2289
## 44634    4.0    1370
## 92776    4.5    6874
## 12610    4.0     316
## 99235    3.5   52281
## 30846    4.5     919
## 58075    2.0    2143
## 11205    2.0     282
## 42562    4.0    1285
## 14572    4.0     350
## 55026    5.0    2001
## 74894    3.0    3253
## 88976    5.0    5464
## 43680    4.0    1320
## 41668    4.0    1267
## 705      5.0       6
## 99767    2.5   57368
## 95196    3.5    8464
## 65221    1.0    2613
## 45591    3.0    1391
## 92848    4.5    6881
## 38563    5.0    1214
## 7830     3.0     185
## 26742    4.0     733
## 5644     3.0     123
## 56965    1.0    2087
## 90022    1.0    5884
## 1236     4.0      14
## 67246    4.0    2712
## 95208    5.0    8464
## 3855     5.0      58
## 98950    4.0   48780
## 86070    3.5    4878
## 67171    2.0    2710
## 82000    2.5    4025
## 55324    5.0    2010
## 26035    4.0     666
## 89697    2.5    5749
## 9172     3.0     229
## 96919    4.0   31658
## 15314    3.5     357
## 13458    5.0     329
## 95735    3.5    8787
## 25053    4.0     608
## 43523    5.0    1307
## 52018    3.0    1801
## 78174    4.0    3623
## 70793    3.0    2948
## 91596    0.5    6390
## 67852    5.0    2739
## 82642    3.0    4104
## 85338    4.0    4703
## 45747    5.0    1393
## 65375    5.0    2622
## 88033    3.0    5293
## 46084    0.5    1407
## 92664    1.0    6863
## 26462    3.0     709
## 6415     2.0     153
## 76785    3.0    3471
## 58642    3.5    2174
## 72063    4.0    3006
## 25522    4.0     647
## 83463    4.0    4262
## 79717    4.0    3793
## 90101    4.0    5903
## 47674    4.0    1544
## 25307    3.0     616
## 70968    4.0    2953
## 2071     4.0      25
## 26391    5.0     708
## 34554    4.0    1092
## 51437    4.0    1747
## 79745    3.0    3794
## 93490    3.0    7101
## 63468    5.0    2478
## 61250    4.0    2359
## 42194    1.0    1275
## 16692    3.0     380
## 53959    5.0    1958
## 21809    4.0     543
## 6826     2.0     161
## 94056    2.5    7307
## 94859    5.0    8132
## 67217    3.0    2712
## 62833    3.5    2427
## 10221    4.0     258
## 53801    2.0    1954
## 54050    5.0    1961
## 97546    3.5   34405
## 89464    4.0    5646
## 15667    3.0     365
## 54537    2.0    1974
## 52320    4.0    1858
## 59983    4.0    2302
## 1511     3.0      19
## 86862    4.0    4992
## 3549     4.0      50
## 25829    3.0     653
## 24244    3.0     593
## 52699    4.0    1894
## 4009     1.0      62
## 3419     4.0      47
## 42026    2.0    1271
## 59039    4.0    2241
## 24630    5.0     596
## 27141    4.0     736
## 16352    4.0     377
## 31339    5.0     924
## 89344    3.0    5617
## 75388    4.0    3296
## 72070    4.0    3006
## 29740    4.0     861
## 25197    3.0     609
## 92774    4.0    6874
## 95820    1.0    8823
## 1139     4.0      11
## 86647    5.0    4973
## 17784    1.0     435
## 11572    3.0     292
## 83009    4.5    4217
## 1802     3.5      21
## 9496     2.0     235
## 79561    4.0    3785
## 28895    4.0     805
## 81082    4.0    3983
## 76633    4.0    3453
## 68938    4.0    2804
## 68911    2.5    2804
## 3946     3.0      60
## 32945    4.0    1036
## 87807    3.5    5219
## 74007    4.0    3160
## 1255     2.5      15
## 96297    0.5    8984
## 42510    5.0    1283
## 39566    4.5    1228
## 65159    2.0    2605
## 73461    1.0    3111
## 49679    3.0    1645
## 92302    4.0    6711
## 23787    4.0     592
## 18410    4.0     454
## 77804    4.0    3578
## 50212    4.5    1678
## 46582    4.0    1457
## 29548    5.0     858
## 25768    3.0     648
## 35431    1.0    1127
## 40758    5.0    1251
## 9328     3.0     231
## 83140    3.5    4226
## 44654    3.5    1370
## 4570     1.5      92
## 83592    4.0    4292
## 50788    4.0    1704
## 32977    4.0    1036
## 19139    3.0     474
## 35227    4.0    1120
## 13438    4.0     329
## 98811    4.5   48385
## 53707    5.0    1953
## 78677    4.0    3699
## 2596     5.0      34
## 94531    3.5    7458
## 82994    4.0    4214
## 53547    5.0    1945
## 68035    3.0    2761
## 12058    5.0     296
## 17030    1.0     410
## 46244    4.5    1409
## 34753    4.0    1097
## 7873     2.0     185
## 22917    2.5     588
## 21984    5.0     551
## 95670    2.0    8773
## 40624    4.0    1249
## 51229    3.0    1729
## 74824    5.0    3253
## 8551     3.0     208
## 25998    5.0     662
## 14445    4.0     349
## 724      4.0       6
## 54959    3.5    2000
## 15101    5.0     356
## 32355    4.0    1017
## 84525    4.0    4452
## 54733    4.0    1994
## 61479    3.5    2375
## 61968    3.0    2395
## 34575    3.0    1093
## 59520    3.0    2278
## 80343    5.0    3897
## 97617    3.5   35836
## 34401    5.0    1090
## 30453    3.0     910
## 40645    4.0    1249
## 5910     4.0     141
## 79129    3.5    3744
## 39824    5.0    1234
## 68851    2.0    2801
## 16127    3.0     372
## 92346    2.5    6724
## 87472    5.0    5062
## 886      1.0       9
## 77203    4.0    3510
## 46080    3.0    1407
## 38955    2.0    1220
## 94865    4.5    8154
## 25698    3.0     648
## 67623    3.0    2723
## 24304    3.0     594
## 71257    4.0    2971
## 9386     1.0     231
## 90053    4.0    5902
## 54682    3.0    1991
## 54449    3.0    1968
## 70372    3.0    2917
## 81422    2.0    3999
## 19574    5.0     480
## 27594    3.0     761
## 19301    3.0     480
## 80006    3.0    3837
## 82057    4.5    4027
## 34488    3.0    1091
## 34632    5.0    1094
## 88486    4.0    5380
## 16012    3.0     370
## 28193    5.0     783
## 72341    4.0    3034
## 56515    4.0    2065
## 97745    3.5   37733
## 40029    2.0    1240
## 27716    3.5     765
## 52154    2.0    1831
## 36026    4.5    1172
## 59360    5.0    2268
## 20665    4.0     517
## 77680    4.5    3556
## 7074     3.0     163
## 30054    1.0     902
## 7884     2.0     185
## 78051    3.0    3617
## 54515    1.0    1973
## 62988    3.0    2436
## 92637    3.5    6863
## 77345    4.0    3527
## 14432    3.0     349
## 68965    2.5    2804
## 10225    3.0     259
## 33264    4.0    1047
## 6814     2.0     160
## 65538    4.0    2628
## 61519    1.0    2377
## 30205    4.0     904
## 1582     2.0      19
## 82410    3.5    4063
## 13696    5.0     337
## 61005    2.0    2353
## 79698    3.0    3793
## 79784    1.0    3799
## 14774    4.0     354
## 41491    3.0    1265
## 75499    4.0    3307
## 4620     4.0      94
## 64612    5.0    2571
## 70550    3.5    2922
## 5129     4.0     110
## 9486     3.5     235
## 61199    5.0    2357
## 79447    3.0    3755
## 47599    3.0    1541
## 6276     3.0     150
## 30074    4.0     903
## 96653    3.5   30707
## 25807    3.0     648
## 56862    3.0    2081
## 74428    3.0    3194
## 30716    4.0     914
## 57780    1.0    2125
## 93882    3.0    7173
## 60147    5.0    2313
## 87358    2.5    5049
## 23505    5.0     590
## 25027    4.0     608
## 5131     5.0     110
## 31026    4.0     920
## 99143    5.0   51255
## 4102     3.0      62
## 30061    4.0     903
## 50358    4.0    1682
## 32125    4.0     999
## 34343    4.5    1089
## 81573    4.0    4011
## 71399    3.0    2985
## 72381    4.0    3037
## 41341    5.0    1263
## 19851    1.0     493
## 53856    5.0    1955
## 92120    4.0    6612
## 50977    1.0    1721
## 70570    5.0    2924
## 23853    4.0     592
## 44377    4.0    1357
## 43245    4.0    1299
## 123      5.0       1
## 33267    3.0    1047
## 70663    4.0    2943
## 35922    5.0    1148
## 66527    4.0    2694
## 78614    1.0    3695
## 58634    3.0    2174
## 81224    2.5    3994
## 51493    3.5    1748
## 2950     4.0      39
## 90118    2.0    5927
## 32332    2.0    1015
## 11684    4.0     293
## 33426    3.0    1060
## 59420    4.0    2272
## 10832    1.0     267
## 88814    5.0    5445
## 4738     4.0      95
## 41013    5.0    1258
## 49812    4.5    1653
## 85790    4.0    4823
## 19120    4.0     474
## 69457    3.5    2858
## 53510    4.0    1944
## 72951    0.5    3081
## 93390    5.0    7063
## 89601    4.0    5679
## 68971    4.0    2804
## 32807    4.0    1033
## 5409     5.0     111
## 50390    5.0    1682
## 4626     4.0      95
## 41116    3.0    1259
## 24757    4.0     597
## 85499    3.0    4734
## 7579     3.0     173
## 16523    4.0     378
## 146      3.0       1
## 22672    3.0     587
## 55938    3.0    2028
## 87857    5.0    5225
## 97672    3.5   36529
## 95855    4.0    8865
## 55294    5.0    2009
## 37684    3.0    1204
## 2847     4.0      39
## 70003    3.5    2890
## 32907    5.0    1035
## 16365    3.5     377
## 29189    1.0     833
## 97783    4.0   37857
## 39144    5.0    1221
## 37747    5.0    1206
## 82786    3.0    4135
## 78986    5.0    3723
## 86153    2.5    4886
## 46239    5.0    1409
## 77516    2.0    3536
## 39409    3.0    1225
## 33707    3.0    1073
## 40072    4.0    1240
## 56792    4.0    2081
## 25145    5.0     608
## 61117    3.5    2355
## 29522    5.0     858
## 30067    4.5     903
## 13801    3.0     339
## 17670    3.0     434
## 5795     4.0     141
## 14084    3.0     344
## 55335    3.5    2011
## 70709    4.5    2944
## 77449    4.5    3534
## 18252    2.0     450
## 75825    3.5    3362
## 29996    3.0     899
## 73784    3.5    3147
## 55711    3.0    2020
## 29762    4.0     866
## 49485    5.0    1639
## 53086    3.5    1917
## 65217    3.0    2613
## 60926    4.0    2352
## 87399    2.0    5060
## 14556    3.0     350
## 85574    3.0    4755
## 41348    5.0    1263
## 24422    4.0     595
## 2693     4.0      35
## 21937    4.0     550
## 20540    2.0     514
## 68012    3.0    2759
## 32432    4.5    1020
## 35198    4.0    1111
## 33176    3.0    1042
## 36611    3.0    1194
## 8029     3.0     186
## 78889    2.5    3709
## 47485    3.5    1527
## 94834    3.5    8042
## 71464    1.0    2986
## 97273    3.5   33615
## 56365    3.0    2054
## 17129    1.0     413
## 19051    2.0     473
## 89571    4.0    5673
## 90985    3.0    6265
## 90598    3.0    6002
## 92790    4.5    6874
## 13119    5.0     318
## 30957    4.0     919
## 66642    1.0    2699
## 77936    3.0    3590
## 42284    4.5    1276
## 86565    5.0    4963
## 72766    4.0    3068
## 88907    3.5    5459
## 58769    4.0    2193
## 88717    3.0    5428
## 57090    5.0    2094
## 69062    3.0    2815
## 85289    3.5    4692
## 19477    3.5     480
## 35003    3.0    1101
## 82562    3.5    4085
## 29233    3.0     837
## 87573    4.0    5105
## 50127    3.0    1676
## 93749    3.5    7153
## 45773    5.0    1393
## 46763    3.0    1476
## 93906    4.0    7206
## 92227    3.5    6669
## 76332    2.0    3424
## 48847    5.0    1610
## 92752    3.5    6874
## 7252     3.5     165
## 31643    5.0     949
## 71031    4.5    2959
## 4646     5.0      95
## 39878    4.5    1234
## 97876    3.5   39292
## 59422    3.0    2272
## 84947    1.0    4613
## 75767    4.0    3361
## 41829    3.5    1270
## 83381    1.0    4246
## 64325    3.0    2553
## 40189    4.5    1242
## 96480    2.5   26870
## 90367    3.5    5956
## 29281    4.0     838
## 38538    5.0    1213
## 50064    4.0    1674
## 51698    4.0    1777
## 39892    4.5    1234
## 99305    3.0   53000
## 8422     0.5     204
## 89539    4.5    5669
## 94836    3.5    8042
## 13944    3.0     342
## 77764    4.0    3576
## 798      3.0       7
## 92448    4.0    6787
## 7521     3.0     172
## 71111    5.0    2959
## 14949    5.0     356
## 92240    3.5    6690
## 17900    3.0     440
## 23338    4.0     589
## 70168    5.0    2915
## 47453    2.5    1527
## 25545    4.0     647
## 4097     4.0      62
## 27425    2.0     748
## 38492    1.5    1213
## 4054     3.0      62
## 28255    3.0     784
## 10126    3.0     255
## 71120    4.0    2959
## 76572    2.0    3450
## 18949    3.0     468
## 57758    4.0    2125
## 91557    4.5    6380
## 59068    3.0    2243
## 42789    2.0    1288
## 62390    2.0    2406
## 83426    4.0    4254
## 30053    5.0     902
## 90612    3.0    6003
## 56110    5.0    2028
## 91973    2.5    6541
## 20368    4.0     508
## 83283    4.0    4236
## 30301    3.5     908
## 34482    4.0    1090
## 27068    4.0     736
## 19609    2.0     481
## 43794    4.0    1330
## 31559    5.0     940
## 24518    2.0     595
## 48905    3.0    1610
## 87043    5.0    4995
## 41527    5.0    1265
## 67334    4.0    2716
## 15690    3.0     367
## 35967    4.0    1171
## 63939    3.0    2528
## 27457    3.0     750
## 53088    4.0    1917
## 37199    4.0    1198
## 75196    4.0    3267
## 74476    4.0    3198
## 49848    4.0    1653
## 9510     3.0     235
## 70344    4.0    2916
## 12480    4.0     314
## 77059    3.0    3499
## 873      3.0       9
## 12436    5.0     308
## 65395    4.0    2627
## 76685    4.0    3468
## 95510    4.5    8638
## 60976    3.0    2353
## 54321    2.0    1967
## 58122    3.0    2144
## 318      4.0       2
## 91980    1.0    6541
## 39490    5.0    1225
## 32819    5.0    1034
## 30541    3.0     912
## 10134    3.0     256
## 23051    3.5     588
## 73305    3.0    3104
## 12612    3.0     316
## 70594    4.0    2929
## 45789    5.0    1394
## 41034    5.0    1258
## 41761    4.0    1269
## 21306    4.0     534
## 61251    4.0    2359
## 81962    3.5    4022
## 85906    4.0    4855
## 79229    3.0    3751
## 43009    4.0    1292
## 36789    5.0    1196
## 57011    2.0    2088
## 60383    5.0    2324
## 87219    3.0    5013
## 9786     5.0     246
## 79105    3.0    3740
## 97442    4.0   34072
## 51662    4.0    1777
## 62964    2.0    2433
## 71285    5.0    2973
## 25720    4.0     648
## 82995    3.5    4214
## 98572    3.5   45928
## 69881    3.0    2882
## 95262    0.5    8528
## 25261    3.0     611
## 95025    5.0    8360
## 14591    4.0     350
## 83011    5.0    4218
## 74695    1.5    3247
## 84155    2.0    4367
## 83565    3.0    4280
## 61950    4.0    2395
## 32746    3.0    1031
## 15355    3.0     360
## 88228    4.0    5349
## 16321    3.0     377
## 8534     3.0     208
## 57223    3.0    2104
## 25910    3.0     653
## 12337    5.0     305
## 17016    3.0     410
## 57642    1.0    2119
## 61169    3.5    2355
## 35852    2.0    1148
## 29294    3.0     838
## 27226    4.5     741
## 98817    4.5   48394
## 79067    3.0    3735
## 54057    4.0    1961
## 7496     2.0     172
## 33565    4.0    1073
## 46946    2.0    1485
## 86188    2.5    4886
## 94994    2.5    8360
## 67943    3.0    2746
## 22562    3.0     586
## 41517    3.0    1265
## 42599    3.0    1285
## 62534    3.0    2411
## 21151    3.0     529
## 68261    5.0    2762
## 66490    2.0    2692
## 41331    5.0    1262
## 25182    4.0     608
## 81478    3.5    4005
## 96585    4.0   27790
## 85920    4.0    4865
## 66036    1.5    2671
## 99528    4.0   54881
## 3460     3.0      48
## 66198    3.0    2683
## 44934    3.0    1375
## 76171    4.0    3409
## 73825    3.0    3148
## 5294     3.5     110
## 58944    4.0    2231
## 41524    3.5    1265
## 53718    4.0    1953
## 80217    3.5    3873
## 68776    5.0    2797
## 23267    2.0     589
## 53508    5.0    1944
## 32916    4.0    1036
## 37571    4.0    1201
## 69610    4.0    2858
## 18967    5.0     469
## 92990    4.5    6936
## 7788     3.0     181
## 2698     4.0      35
## 46240    1.0    1409
## 23827    4.0     592
## 61172    5.0    2355
## 63984    4.0    2529
## 55110    4.0    2003
## 28857    3.0     804
## 32177    2.0    1004
## 37827    4.0    1206
## 59477    5.0    2273
## 42503    4.0    1283
## 15649    3.0     364
## 67754    4.0    2729
## 27391    1.0     747
## 7633     1.5     173
## 12319    1.0     304
## 55937    5.0    2028
## 3006     3.0      41
## 88291    3.0    5349
## 51859    4.0    1784
## 6172     4.0     150
## 86579    3.5    4963
## 85439    4.0    4720
## 21831    3.0     543
## 58106    3.0    2144
## 66809    3.0    2701
## 26737    4.0     733
## 99352    3.5   53464
## 61477    2.0    2375
## 48255    3.0    1580
## 25056    5.0     608
## 94499    4.0    7451
## 68962    1.5    2804
## 89956    3.5    5872
## 26293    3.0     704
## 14638    3.0     350
## 49282    5.0    1625
## 27973    4.0     780
## 2037     5.0      25
## 24624    4.0     596
## 46229    4.0    1408
## 96143    2.5    8961
## 73512    4.0    3114
## 54684    4.0    1991
## 91380    2.0    6371
## 24756    5.0     597
## 94062    2.5    7313
## 70681    4.0    2944
## 32809    5.0    1033
## 56542    5.0    2066
## 79949    3.0    3826
## 11452    4.0     292
## 32918    5.0    1036
## 96127    4.0    8961
## 55212    3.5    2006
## 50333    4.0    1682
## 62137    3.5    2396
## 51068    2.5    1721
## 42758    2.0    1288
## 93966    5.0    7254
## 64807    5.0    2580
## 63967    2.0    2529
## 16892    3.0     383
## 16686    5.0     380
## 78516    3.0    3682
## 45563    1.5    1391
## 21092    5.0     527
## 83233    3.0    4232
## 24058    5.0     593
## 27803    5.0     778
## 66583    2.0    2699
## 89520    4.0    5669
## 38302    2.5    1210
## 66508    5.0    2693
## 50511    3.5    1690
## 46574    5.0    1457
## 60654    4.0    2334
## 79737    3.0    3793
## 64473    4.0    2571
## 45145    3.0    1378
## 12536    1.5     315
## 28924    3.0     805
## 77157    4.0    3507
## 57987    4.0    2139
## 86780    3.0    4978
## 97656    3.5   36519
## 65758    3.5    2643
## 34726    4.0    1096
## 78888    2.0    3709
## 8748     4.0     216
## 56688    4.0    2076
## 35893    3.0    1148
## 9646     3.0     236
## 59591    3.0    2283
## 43006    4.0    1292
## 77137    3.5    3504
## 99542    4.0   54999
## 55968    3.0    2028
## 34117    4.0    1084
## 53243    3.5    1921
## 98425    4.0   45186
## 68493    4.0    2787
## 5195     4.5     110
## 90519    4.0    5991
## 19151    4.0     474
## 38555    3.5    1214
## 46102    2.5    1407
## 98213    2.5   43917
## 65009    2.5    2599
## 9810     2.0     247
## 95241    3.5    8507
## 58636    3.5    2174
## 6831     4.0     161
## 491      1.0       3
## 4865     1.0     104
## 88552    3.5    5395
## 56413    3.0    2058
## 39195    4.0    1221
## 82043    3.0    4027
## 68979    4.0    2805
## 24362    3.0     594
## 79536    3.5    3784
## 19928    3.0     494
## 63712    4.5    2502
## 83963    5.0    4327
## 38053    3.0    1208
## 64915    5.0    2593
## 86276    4.0    4896
## 94394    3.5    7438
## 9832     5.0     247
## 36629    5.0    1196
## 51845    4.0    1784
## 54663    4.0    1985
## 48895    3.0    1610
## 20555    3.0     514
## 35482    4.0    1129
## 71778    5.0    2997
## 26442    4.0     708
## 52669    4.0    1892
## 38746    4.5    1215
## 66159    4.0    2683
## 71826    4.0    2997
## 80796    3.0    3956
## 75606    4.5    3328
## 54265    4.0    1965
## 47287    4.0    1517
## 59932    3.5    2300
## 98047    5.0   41285
## 42005    5.0    1270
## 321      2.5       2
## 6791     3.0     160
## 90798    1.0    6157
## 23188    3.0     589
## 40847    4.0    1252
## 65727    1.0    2642
## 42152    5.0    1274
## 5053     2.0     107
## 12381    4.0     307
## 52997    4.0    1916
## 96207    5.0    8970
## 99713    4.0   56367
## 13098    5.0     318
## 53753    3.0    1953
## 4032     3.0      62
## 19422    4.0     480
## 85996    2.5    4874
## 84929    2.0    4602
## 22538    3.0     586
## 56214    4.0    2046
## 20374    3.5     508
## 65515    3.0    2628
## 8937     4.0     223
## 50238    2.0    1680
## 42235    4.0    1276
## 73261    4.0    3101
## 3578     5.0      50
## 93291    1.0    7019
## 84102    3.5    4359
## 75245    3.0    3270
## 51041    3.5    1721
## 47280    2.5    1517
## 46501    5.0    1446
## 11648    4.0     293
## 88895    2.0    5452
## 6758     3.0     160
## 69945    2.0    2890
## 80046    5.0    3852
## 79217    5.0    3751
## 44289    3.0    1356
## 76075    4.0    3408
## 97709    3.0   37386
## 48429    5.0    1586
## 36868    3.0    1196
## 53644    4.0    1950
## 41363    5.0    1263
## 51180    3.0    1729
## 9930     4.0     252
## 53931    4.0    1957
## 23690    2.0     592
## 41308    5.0    1262
## 1367     4.0      17
## 23212    5.0     589
## 98871    4.5   48516
## 95934    3.0    8884
## 58694    4.0    2186
## 72037    4.0    3006
## 30408    3.0     909
## 23410    4.0     590
## 71910    5.0    3000
## 10043    3.0     253
## 82185    5.0    4034
## 97471    5.0   34162
## 37825    4.0    1206
## 14517    5.0     349
## 92106    3.5    6595
## 55564    2.0    2013
## 18326    4.0     454
## 78329    3.5    3646
## 99092    4.5   50872
## 20513    4.0     510
## 29667    4.0     858
## 46849    2.5    1480
## 43862    3.5    1333
## 77430    2.0    3528
## 35555    4.0    1131
## 82187    1.5    4034
## 86076    3.0    4878
## 40009    4.0    1240
## 97938    3.5   40583
## 46647    2.0    1464
## 64070    5.0    2533
## 53230    3.5    1921
## 88360    3.0    5377
## 6049     5.0     150
## 43563    2.0    1307
## 93959    3.5    7254
## 54786    3.5    1997
## 27419    4.0     748
## 92144    4.5    6620
## 51111    3.0    1722
## 46868    3.0    1483
## 99       3.0       1
## 46586    2.5    1458
## 29439    4.0     852
## 63784    4.0    2502
## 70700    2.5    2944
## 4260     2.0      70
## 79921    2.5    3826
## 98272    4.5   44191
## 95412    3.5    8622
## 88639    4.0    5418
## 10280    4.0     260
## 70230    2.0    2916
## 74999    5.0    3256
## 77466    3.0    3535
## 50880    4.0    1717
## 15076    5.0     356
## 80849    4.0    3967
## 18749    5.0     457
## 53459    4.0    1938
## 5449     5.0     111
## 67079    2.5    2710
## 56917    3.0    2083
## 38585    4.5    1214
## 86187    4.0    4886
## 86945    4.5    4993
## 929      4.0      10
## 31514    4.0     934
## 90560    4.0    5995
## 88585    2.5    5401
## 9478     1.0     234
## 92662    2.0    6863
## 18906    3.0     466
## 70301    4.0    2916
## 16050    3.5     370
## 19384    4.0     480
## 66678    4.0    2700
## 17730    4.0     434
## 4335     4.0      74
## 52122    4.0    1821
## 28801    2.0     802
## 2061     5.0      25
## 44808    3.5    1373
## 83380    4.0    4246
## 57094    0.5    2094
## 97966    3.0   40815
## 8272     3.5     196
## 56221    3.0    2046
## 21537    4.0     539
## 13168    5.0     318
## 43852    3.0    1333
## 4454     5.0      82
## 38490    5.0    1213
## 65946    4.5    2667
## 22197    4.0     553
## 70188    3.0    2915
## 24190    5.0     593
## 5442     4.0     111
## 58784    5.0    2194
## 48279    4.0    1580
## 99191    5.0   51662
## 99784    4.0   57640
## 1523     2.0      19
## 34972    4.0    1099
## 34153    3.0    1086
## 26065    4.0     671
## 15709    3.0     367
## 33686    4.5    1073
## 8234     3.5     196
## 97112    3.5   32666
## 26692    2.0     725
## 85138    1.5    4643
## 44655    4.0    1370
## 16476    4.0     377
## 77948    3.0    3591
## 79223    2.0    3751
## 80694    3.5    3948
## 7298     3.0     165
## 51112    4.0    1722
## 1836     2.0      22
## 86892    2.0    4993
## 33697    5.0    1073
## 7644     2.5     173
## 59328    4.0    2268
## 13849    2.0     339
## 86383    5.0    4902
## 99661    4.5   56003
## 91575    2.5    6384
## 90647    4.0    6016
## 10102    2.5     253
## 25038    5.0     608
## 86761    3.5    4975
## 58571    4.0    2174
## 24324    3.0     594
## 12957    4.5     318
## 47846    1.0    1556
## 48406    5.0    1584
## 71543    2.5    2987
## 74272    3.0    3176
## 41189    3.0    1259
## 8542     1.0     208
## 6127     5.0     150
## 95482    3.0    8636
## 71801    4.5    2997
## 91589    5.0    6385
## 79939    3.0    3826
## 16388    3.5     377
## 22884    4.0     588
## 5633     3.0     122
## 50723    4.5    1704
## 8578     2.0     208
## 24198    4.0     593
## 27365    4.0     745
## 15462    3.0     364
## 72508    3.0    3046
## 13343    5.0     329
## 30770    3.0     915
## 98621    4.0   46578
## 26909    5.0     733
## 33063    4.5    1036
## 79594    4.0    3791
## 69496    5.0    2858
## 48960    4.0    1610
## 6704     5.0     158
## 28062    3.0     780
## 62953    3.0    2433
## 31476    3.5     933
## 94681    4.0    7773
## 7540     3.0     172
## 2324     4.0      32
## 90607    4.5    6003
## 52879    3.0    1911
## 62625    3.0    2416
## 70431    4.5    2918
## 4056     3.0      62
## 70259    4.0    2916
## 95371    2.5    8610
## 23060    5.0     588
## 64637    4.5    2571
## 61568    3.0    2379
## 20103    3.0     500
## 42920    4.0    1291
## 99461    3.0   54272
## 35240    3.0    1120
## 42104    4.0    1273
## 44080    3.0    1346
## 91545    3.5    6378
## 11920    4.0     296
## 12812    2.0     317
## 8055     3.0     188
## 18002    5.0     441
## 2637     3.0      34
## 10206    3.0     257
## 98057    4.0   41566
## 72396    4.5    3039
## 68414    4.0    2770
## 78573    3.0    3686
## 73218    3.0    3100
## 41261    3.0    1261
## 87960    5.0    5267
## 80988    2.5    3977
## 50454    2.0    1688
## 45517    2.0    1391
## 57122    3.5    2096
## 71527    1.0    2987
## 74829    2.0    3253
## 28292    4.0     784
## 97538    2.5   34405
## 90936    3.5    6231
## 30104    4.0     903
## 43577    3.5    1307
## 63116    4.0    2455
## 3530     4.5      50
## 43434    5.0    1304
## 85896    1.0    4855
## 60744    5.0    2336
## 48944    5.0    1610
## 31451    3.5     931
## 48643    4.0    1597
## 62879    3.0    2428
## 46269    4.0    1411
## 72534    4.5    3052
## 57103    3.0    2094
## 55252    2.0    2006
## 77240    4.0    3512
## 63800    2.0    2505
## 15256    3.0     357
## 64232    4.0    2542
## 26170    2.0     678
## 6507     2.0     153
## 41132    4.5    1259
## 59087    3.0    2244
## 57948    0.5    2137
## 27921    4.5     780
## 1574     2.0      19
## 80836    3.0    3967
## 71982    3.0    3005
## 90373    3.5    5957
## 183      3.0       1
## 17149    3.0     413
## 25713    4.0     648
## 44331    4.0    1356
## 21876    2.0     546
## 68142    4.5    2762
## 61068    4.0    2355
## 13565    4.0     333
## 9136     1.5     227
## 24502    3.0     595
## 47135    4.0    1500
## 55405    3.0    2011
## 29590    4.0     858
## 32143    3.0     999
## 73277    3.0    3101
## 36368    4.0    1187
## 1872     3.0      22
## 81279    1.0    3996
## 48641    1.0    1597
## 85212    2.0    4673
## 45024    4.0    1376
## 20011    3.5     497
## 96313    3.0    9005
## 1560     2.5      19
## 98545    5.0   45722
## 14391    5.0     349
## 79645    1.5    3793
## 92314    5.0    6711
## 98887    4.0   48696
## 41014    4.0    1258
## 68201    5.0    2762
## 51319    5.0    1732
## 32752    3.0    1031
## 27409    3.0     748
## 53639    4.0    1950
## 36242    4.0    1183
## 40820    4.0    1252
## 60082    4.0    2310
## 27027    2.0     736
## 17521    2.0     432
## 72791    4.0    3070
## 84612    2.0    4489
## 80740    4.0    3949
## 75110    4.0    3261
## 53051    2.0    1917
## 91653    4.0    6461
## 28534    5.0     788
## 3741     4.5      50
## 71409    5.0    2985
## 61986    2.0    2395
## 21141    4.0     527
## 20964    5.0     527
## 77801    3.0    3578
## 26017    4.0     663
## 98699    4.5   47099
## 34604    4.0    1093
## 55315    2.0    2010
## 97871    4.0   39292
## 83671    5.0    4306
## 10929    4.0     272
## 43483    4.5    1304
## 45619    4.0    1392
## 4850     3.0     103
## 97018    3.5   32031
## 92544    4.0    6807
## 439      3.0       3
## 81953    4.0    4022
## 50424    4.0    1686
## 88560    4.0    5400
## 24177    5.0     593
## 63748    5.0    2502
## 84980    3.0    4621
## 35301    3.0    1124
## 16966    2.0     405
## 61351    1.5    2367
## 13095    3.0     318
## 95852    4.0    8865
## 22140    4.0     553
## 67494    2.0    2717
## 1145     5.0      11
## 91992    4.0    6545
## 81853    3.0    4020
## 97916    2.5   40278
## 54603    2.0    1981
## 31703    3.0     952
## 47491    1.0    1527
## 66136    2.5    2683
## 35858    2.0    1148
## 61386    2.0    2369
## 73874    3.0    3154
## 80458    3.5    3911
## 45171    2.0    1378
## 22013    3.0     551
## 46101    3.5    1407
## 55962    4.0    2028
## 56800    4.0    2081
## 13666    2.5     337
## 69611    3.5    2858
## 69553    5.0    2858
## 49437    4.0    1639
## 78728    3.0    3702
## 19613    3.0     481
## 98687    4.5   46976
## 88218    3.5    5341
## 90386    0.5    5962
## 14036    3.0     344
## 21374    3.0     538
## 8569     3.0     208
## 79126    3.0    3743
## 82471    2.0    4080
## 14542    3.0     349
## 71369    4.0    2985
## 29339    3.0     840
## 74698    3.5    3247
## 29124    2.0     832
## 89946    3.0    5872
## 75530    3.0    3317
## 58163    3.0    2145
## 15300    3.5     357
## 16697    4.0     380
## 82311    1.0    4040
## 16241    3.0     376
## 43316    3.0    1301
## 20191    4.0     500
## 46005    2.0    1401
## 49387    2.0    1633
## 23647    4.0     592
## 30605    5.0     912
## 60503    4.0    2329
## 61796    4.0    2391
## 86330    1.5    4896
## 41069    4.0    1258
## 15330    4.0     357
## 11006    1.0     276
## 43956    3.0    1342
## 17467    4.0     431
## 45751    4.0    1393
## 76436    2.5    3438
## 13708    2.0     337
## 22544    3.0     586
## 92696    3.5    6868
## 36845    5.0    1196
## 33535    3.0    1064
## 43743    3.0    1321
## 25103    5.0     608
## 98854    2.5   48516
## 14289    3.0     347
## 13279    4.0     326
## 31260    4.0     924
## 71529    5.0    2987
## 54570    3.0    1977
## 20824    1.0     524
## 52034    5.0    1805
## 13451    3.0     329
## 7797     4.0     182
## 18247    3.0     450
## 4253     3.0      70
## 21778    2.5     543
## 39238    2.0    1222
## 76424    5.0    3435
## 26926    4.0     733
## 41793    4.0    1270
## 63877    3.0    2518
## 29359    1.0     842
## 42964    3.0    1291
## 93725    4.0    7153
## 41139    4.0    1259
## 11186    3.0     282
## 91422    4.0    6377
## 11360    1.0     288
## 3127     4.0      45
## 19726    3.0     487
## 42357    3.5    1278
## 53691    4.0    1952
## 92880    2.5    6890
## 45769    4.0    1393
## 80904    2.0    3972
## 70150    4.0    2912
## 57382    2.5    2110
## 59219    2.0    2253
## 77131    4.0    3504
## 90677    4.0    6032
## 92283    2.0    6709
## 91114    4.0    6305
## 64072    3.0    2533
## 99869    3.0   59105
## 40808    5.0    1252
## 27102    5.0     736
## 13698    4.0     337
## 95547    4.5    8644
## 83356    2.5    4246
## 14866    5.0     356
## 68221    5.0    2762
## 29663    5.0     858
## 39069    4.0    1221
## 12575    3.0     316
## 29252    5.0     837
## 62227    1.0    2402
## 56226    4.0    2048
## 93148    3.0    6974
## 61816    4.0    2393
## 17766    4.0     435
## 70051    3.0    2902
## 20329    5.0     508
## 13479    4.0     329
## 14954    1.0     356
## 58520    3.0    2172
## 50864    2.0    1717
## 99324    3.5   53125
## 78192    4.0    3624
## 45707    5.0    1393
## 22027    3.0     551
## 18262    4.0     450
## 17115    3.0     412
## 71985    4.0    3005
## 84206    5.0    4369
## 42626    1.0    1287
## 59782    3.0    2291
## 52397    4.0    1876
## 29803    4.0     877
## 96102    3.5    8958
## 67757    4.0    2729
## 74731    3.0    3248
## 31531    4.5     936
## 20937    5.0     527
## 19929    4.0     494
## 20016    5.0     497
## 83478    4.0    4262
## 82790    2.5    4141
## 30285    5.0     908
## 92403    3.0    6765
## 63112    2.0    2455
## 62074    4.0    2396
## 33160    4.0    1041
## 69599    5.0    2858
## 83516    2.5    4270
## 71881    3.0    2997
## 17098    3.5     410
## 25017    5.0     608
## 1461     4.0      17
## 12305    2.5     303
## 9701     3.0     239
## 61248    4.0    2359
## 15032    5.0     356
## 18127    3.0     442
## 23771    2.0     592
## 58008    3.0    2140
## 821      4.0       7
## 4496     3.0      86
## 21648    4.0     541
## 30138    3.5     904
## 42027    4.0    1271
## 90139    4.0    5943
## 42143    3.5    1274
## 80822    4.0    3964
## 53002    4.0    1916
## 48269    3.5    1580
## 31701    3.0     952
## 36983    3.5    1197
## 90407    5.0    5971
## 4771     3.0      97
## 69586    5.0    2858
## 40651    5.0    1249
## 60591    3.5    2329
## 47921    3.0    1566
## 51578    4.0    1755
## 64481    5.0    2571
## 64433    1.0    2568
## 837      4.0       7
## 74640    2.0    3243
## 61934    3.5    2395
## 35900    4.5    1148
## 80996    4.0    3977
## 93216    2.0    6996
## 84856    3.0    4571
## 54471    3.0    1970
## 84939    2.0    4610
## 97350    4.5   33794
## 19592    5.0     480
## 83929    4.0    4326
## 11628    4.0     293
## 57386    3.0    2110
## 9705     3.0     240
## 33100    2.0    1037
## 6953     4.0     161
## 18271    5.0     452
## 76712    5.0    3469
## 66894    5.0    2706
## 16389    3.0     377
## 8617     5.0     208
## 33288    4.0    1049
## 60900    2.5    2348
## 53604    5.0    1948
## 15500    0.5     364
## 23807    2.5     592
## 30697    5.0     913
## 75258    0.5    3271
## 46867    3.0    1483
## 39690    4.0    1231
## 44387    3.0    1358
## 42155    4.0    1274
## 50143    1.0    1676
## 55838    3.0    2023
## 28204    4.0     783
## 49987    5.0    1673
## 85510    4.0    4734
## 78444    4.0    3671
## 62438    3.0    2407
## 20235    5.0     501
## 6177     4.0     150
## 92738    3.5    6873
## 79953    2.5    3827
## 33443    5.0    1060
## 19764    5.0     490
## 17653    3.0     434
## 78684    2.0    3699
## 30552    3.0     912
## 67482    2.5    2717
## 39171    3.0    1221
## 42063    5.0    1272
## 78435    3.0    3671
## 91333    2.5    6365
## 86093    4.5    4878
## 61149    4.0    2355
## 50613    3.0    1701
## 23433    4.0     590
## 47421    4.0    1527
## 58862    4.0    2194
## 81699    4.5    4014
## 52109    3.0    1816
## 78312    3.5    3639
## 57740    2.0    2124
## 34374    5.0    1089
## 36287    4.0    1184
## 36928    5.0    1197
## 46363    3.0    1427
## 34195    3.0    1088
## 85266    4.0    4681
## 9926     4.0     252
## 94690    2.0    7782
## 90829    1.0    6184
## 69246    3.0    2840
## 13769    4.0     339
## 70933    3.0    2952
## 40852    4.0    1252
## 11915    4.0     296
## 80899    3.5    3969
## 37623    5.0    1203
## 54872    2.5    2000
## 84303    5.0    4380
## 39710    4.0    1231
## 28287    3.0     784
## 74820    4.5    3252
## 55933    4.0    2028
## 16447    2.0     377
## 81820    3.5    4019
## 43742    3.0    1321
## 25159    5.0     608
## 39503    4.0    1225
## 13525    3.0     332
## 51465    3.0    1748
## 27611    1.0     762
## 90914    3.5    6218
## 27049    4.0     736
## 40801    5.0    1252
## 55509    1.0    2012
## 64606    4.0    2571
## 94271    4.0    7367
## 23815    3.0     592
## 60029    4.0    2302
## 99142    4.0   51255
## 67693    4.0    2724
## 57414    4.0    2112
## 22086    3.0     552
## 33586    5.0    1073
## 35725    4.0    1136
## 89501    4.0    5669
## 32254    4.0    1012
## 90841    4.0    6187
## 30521    4.0     912
## 42323    3.0    1278
## 64969    1.0    2598
## 29705    4.0     858
## 54954    4.5    2000
## 52892    3.0    1911
## 20115    3.5     500
## 2688     4.0      34
## 5406     4.0     111
## 5498     4.0     112
## 96497    2.0   27434
## 4977     3.0     104
## 96668    5.0   30707
## 12672    3.0     316
## 14812    2.0     355
## 6972     4.0     161
## 14766    4.0     353
## 89235    3.5    5541
## 60687    4.0    2335
## 18434    5.0     455
## 94114    3.5    7325
## 80361    4.0    3897
## 72961    3.5    3081
## 19782    4.0     491
## 58385    5.0    2161
## 56348    3.0    2054
## 81195    3.5    3993
## 14598    3.0     350
## 55542    1.5    2012
## 41062    4.0    1258
## 86141    4.0    4886
## 52232    4.0    1835
## 56614    5.0    2071
## 48458    4.0    1586
## 1152     3.0      11
## 25584    4.0     648
## 66842    3.0    2702
## 76908    3.0    3481
## 10258    5.0     260
## 47227    3.0    1515
## 38219    3.5    1210
## 92647    4.0    6863
## 96371    4.5   26131
## 45030    0.5    1376
## 36763    5.0    1196
## 1318     4.0      16
## 13812    3.0     339
## 22237    4.0     555
## 47612    5.0    1541
## 30719    2.0     914
## 24700    3.0     597
## 81308    4.0    3996
## 61106    3.5    2355
## 59007    4.0    2232
## 96179    2.0    8963
## 83622    4.0    4299
## 54541    2.0    1974
## 45570    1.0    1391
## 84643    3.0    4498
## 97553    3.5   34405
## 47825    3.0    1554
## 29739    3.0     861
## 49744    4.0    1649
## 13573    5.0     333
## 88917    2.5    5459
## 74473    4.0    3198
## 53284    4.0    1923
## 65889    4.0    2662
## 61728    1.0    2389
## 52160    2.0    1831
## 5051     5.0     107
## 80363    4.5    3897
## 64445    3.0    2571
## 22913    4.0     588
## 50808    3.0    1711
## 4133     3.0      65
## 78758    2.0    3702
## 3033     3.0      42
## 27336    5.0     745
## 70183    3.0    2915
## 36130    5.0    1178
## 69131    4.0    2826
## 67493    5.0    2717
## 84823    1.5    4563
## 56594    4.0    2069
## 11547    4.0     292
## 99914    3.5   59615
## 22670    4.5     587
## 21354    2.0     537
## 66013    3.5    2671
## 14979    5.0     356
## 96031    1.0    8949
## 25303    4.0     616
## 95937    3.0    8889
## 10659    4.0     265
## 71853    4.0    2997
## 91118    2.0    6305
## 55759    4.0    2021
## 72322    2.0    3033
## 39706    3.0    1231
## 25762    2.0     648
## 58821    1.0    2194
## 88826    3.5    5445
## 18755    4.0     457
## 45222    5.0    1380
## 76138    4.0    3408
## 86709    5.0    4973
## 78904    1.0    3712
## 12713    3.5     316
## 10272    3.5     260
## 79671    3.5    3793
## 53694    4.5    1952
## 45317    4.0    1385
## 66263    5.0    2683
## 43666    3.0    1320
## 47769    2.0    1552
## 24669    1.0     596
## 606      4.0       6
## 14052    4.0     344
## 64144    3.0    2540
## 12878    5.0     318
## 9627     3.0     236
## 2339     4.0      32
## 33114    3.0    1037
## 82168    5.0    4034
## 89439    5.0    5630
## 36397    3.0    1188
## 50468    4.0    1689
## 45895    2.0    1396
## 23615    4.5     590
## 58510    1.0    2170
## 7839     3.0     185
## 56876    2.0    2082
## 75742    5.0    3360
## 80577    5.0    3925
## 48942    3.0    1610
## 93444    4.5    7090
## 38090    5.0    1210
## 19830    4.0     492
## 26371    4.5     708
## 28874    4.0     805
## 22191    3.0     553
## 85788    3.5    4823
## 11169    3.0     281
## 51826    2.0    1784
## 38155    4.0    1210
## 11576    3.0     292
## 57111    5.0    2096
## 38665    4.5    1214
## 89483    5.0    5665
## 6257     4.0     150
## 45322    5.0    1385
## 49534    3.0    1641
## 96838    4.0   30848
## 99744    2.5   56782
## 26077    5.0     671
## 41135    3.0    1259
## 2587     1.0      34
## 25413    1.0     628
## 77362    2.0    3527
## 76907    4.0    3481
## 79560    4.0    3785
## 66404    3.0    2692
## 57449    3.0    2115
## 10965    5.0     273
## 90766    3.5    6155
## 16393    5.0     377
## 86578    4.0    4963
## 54122    5.0    1961
## 66764    1.0    2701
## 75500    4.0    3307
## 75974    1.0    3394
## 41432    4.0    1265
## 79814    3.5    3809
## 24509    4.0     595
## 20380    4.0     508
## 34878    4.0    1097
## 73620    3.0    3117
## 9817     4.0     247
## 56228    4.0    2048
## 75874    3.5    3364
## 84350    2.0    4396
## 43555    4.0    1307
## 23610    3.0     590
## 71615    3.0    2989
## 62239    1.0    2402
## 54118    4.0    1961
## 35603    3.0    1135
## 75288    4.0    3273
## 69790    2.0    2872
## 67157    3.5    2710
## 36604    5.0    1193
## 5846     4.0     141
## 12758    3.0     316
## 14873    3.0     356
## 87926    1.0    5266
## 25353    1.0     627
## 43392    3.0    1303
## 42958    4.5    1291
## 94251    3.5    7361
## 45646    3.0    1393
## 65525    4.0    2628
## 21803    4.0     543
## 94687    0.5    7781
## 15402    5.0     361
## 87760    4.0    5218
## 24934    4.5     608
## 23271    4.0     589
## 32034    4.0     986
## 40589    4.0    1247
## 15117    5.0     356
## 63306    3.0    2470
## 22611    3.5     586
## 47348    1.0    1517
## 30041    5.0     902
## 64023    4.0    2529
## 85565    1.0    4749
## 12927    5.0     318
## 92292    4.5    6711
## 78072    2.0    3617
## 17067    3.0     410
## 68663    2.0    2794
## 30090    5.0     903
## 26892    4.0     733
## 43465    4.0    1304
## 98641    4.5   46723
## 19676    3.0     485
## 85691    3.0    4799
## 41294    4.0    1262
## 57199    2.0    2100
## 74800    4.0    3252
## 19451    3.0     480
## 78365    4.5    3654
## 55535    2.0    2012
## 60709    3.0    2335
## 77421    2.5    3528
## 86895    3.5    4993
## 41500    4.5    1265
## 89660    4.0    5693
## 80784    2.0    3953
## 84486    3.0    4447
## 24425    3.0     595
## 23826    3.5     592
## 82839    3.0    4149
## 7194     4.0     165
## 7861     3.0     185
## 4222     1.0      70
## 67495    2.0    2718
## 34860    4.0    1097
## 38836    3.0    1219
## 96589    5.0   27803
## 84656    4.0    4499
## 23215    4.0     589
## 69474    3.0    2858
## 76648    4.0    3461
## 55928    5.0    2028
## 84443    3.0    4446
## 60865    2.0    2344
## 556      3.0       5
## 3214     5.0      47
## 96345    3.5   25927
## 88357    3.5    5377
## 81479    3.0    4005
## 76733    3.5    3471
## 8676     4.0     213
## 52758    0.5    1907
## 28777    4.0     802
## 64524    4.0    2571
## 72375    4.0    3037
## 47374    5.0    1518
## 89241    2.0    5541
## 75698    1.0    3355
## 84903    4.0    4579
## 81607    5.0    4011
## 38894    4.5    1219
## 9144     3.0     227
## 7990     3.0     186
## 20080    4.0     500
## 82210    4.0    4034
## 19805    1.0     491
## 5970     3.0     145
## 5720     5.0     135
## 84390    4.0    4422
## 69618    4.0    2859
## 88822    5.0    5445
## 72827    3.5    3072
## 67344    5.0    2716
## 68420    2.0    2770
## 2443     5.0      32
## 5777     1.0     141
## 46829    4.5    1479
## 93515    3.5    7121
## 70821    4.0    2948
## 95810    3.5    8810
## 28498    3.0     786
## 19698    2.0     485
## 5412     3.0     111
## 35867    5.0    1148
## 43976    4.0    1343
## 48638    3.0    1597
## 37503    4.0    1201
## 59173    4.0    2248
## 90623    1.5    6013
## 93337    4.0    7034
## 55679    5.0    2019
## 4647     3.0      95
## 89420    2.0    5621
## 77583    4.0    3550
## 36803    5.0    1196
## 30802    4.0     916
## 2944     1.0      39
## 25530    3.0     647
## 48012    4.0    1573
## 3411     5.0      47
## 30156    5.0     904
## 12836    3.0     317
## 49956    4.0    1670
## 52933    2.5    1912
## 13152    3.0     318
## 86463    2.5    4954
## 796      4.0       7
## 78320    3.5    3646
## 19590    5.0     480
## 75956    3.0    3389
## 65377    3.0    2622
## 76481    3.0    3441
## 81801    2.0    4018
## 45990    3.0    1399
## 63711    5.0    2502
## 20178    4.0     500
## 54474    2.0    1970
## 79303    5.0    3752
## 87479    3.5    5064
## 48738    4.0    1608
## 94255    3.5    7361
## 95436    2.0    8636
## 80031    3.0    3844
## 78378    3.0    3663
## 36098    4.5    1175
## 92596    4.0    6837
## 37327    3.5    1199
## 99783    2.0   57640
## 43428    5.0    1304
## 79313    3.5    3752
## 87101    2.5    4995
## 11834    3.0     296
## 90368    2.5    5956
## 56268    1.5    2053
## 87436    5.0    5060
## 63822    3.0    2506
## 20443    5.0     509
## 81889    5.0    4022
## 93657    4.0    7149
## 67944    3.0    2746
## 41342    4.0    1263
## 63216    1.0    2463
## 87726    2.0    5172
## 32015    4.0     973
## 46342    4.0    1422
## 66581    2.5    2699
## 38008    2.0    1208
## 51147    2.0    1725
## 47196    2.0    1513
## 52228    4.0    1835
## 31886    4.0     968
## 4718     2.0      95
## 84427    3.0    4446
## 98224    3.5   43936
## 71062    5.0    2959
## 51443    4.0    1747
## 31088    4.0     922
## 45095    3.0    1377
## 88648    4.0    5418
## 39834    5.0    1234
## 95779    3.5    8799
## 14901    4.5     356
## 11330    3.0     288
## 45056    4.0    1376
## 87769    3.5    5218
## 88381    4.0    5377
## 43656    3.0    1320
## 39871    4.0    1234
## 78913    5.0    3713
## 74577    4.0    3210
## 37078    5.0    1198
## 57899    5.0    2134
## 95052    3.0    8364
## 63525    5.0    2488
## 58190    2.0    2147
## 83435    1.0    4255
## 89551    4.0    5669
## 29701    5.0     858
## 62077    4.0    2396
## 61177    4.5    2355
## 65285    5.0    2617
## 5064     0.5     107
## 30186    4.5     904
## 68567    3.0    2791
## 20701    1.0     519
## 63600    2.0    2496
## 43067    4.5    1293
## 20497    3.0     509
## 97052    4.5   32587
## 45240    5.0    1380
## 92036    3.0    6564
## 54453    5.0    1968
## 33244    3.5    1047
## 24841    3.0     597
## 79719    5.0    3793
## 37317    5.0    1199
## 77799    3.5    3578
## 85078    2.5    4639
## 35344    1.0    1126
## 69857    2.5    2881
## 74881    3.0    3253
## 25890    3.0     653
## 50994    4.0    1721
## 73283    3.5    3102
## 85826    2.0    4845
## 82133    3.0    4029
## 58724    3.0    2188
## 35476    3.0    1129
## 12656    5.0     316
## 77958    2.0    3593
## 24018    5.0     593
## 40724    3.5    1250
## 83273    4.0    4235
## 54904    4.0    2000
## 60666    4.0    2334
## 94902    4.0    8201
## 30382    4.0     909
## 28716    4.0     800
## 40719    5.0    1250
## 33214    4.0    1043
## 80007    2.0    3837
## 42944    5.0    1291
## 57178    4.0    2100
## 28643    3.0     788
## 52838    2.5    1909
## 40580    3.0    1247
## 61712    1.0    2387
## 26047    5.0     668
## 58688    5.0    2186
## 49979    3.0    1672
## 43279    3.0    1300
## 56782    4.0    2080
## 16458    3.0     377
## 14626    4.0     350
## 31866    4.0     965
## 57116    4.0    2096
## 54490    1.0    1971
## 11698    5.0     293
## 34164    4.0    1086
## 25848    4.0     653
## 37931    4.0    1207
## 32282    4.0    1013
## 6018     5.0     147
## 36645    3.0    1196
## 37006    4.0    1197
## 20152    4.0     500
## 82851    4.0    4158
## 7638     3.0     173
## 24136    5.0     593
## 67238    2.0    2712
## 59764    3.5    2291
## 40406    5.0    1246
## 61226    4.0    2359
## 19084    4.0     474
## 51497    4.0    1748
## 81069    2.0    3981
## 49078    5.0    1617
## 79101    3.0    3740
## 50339    2.5    1682
## 1310     3.0      16
## 66590    3.0    2699
## 62994    4.0    2439
## 61388    4.0    2369
## 26672    3.5     724
## 85926    2.0    4865
## 1274     3.0      15
## 5003     3.0     105
## 87290    4.5    5025
## 39325    5.0    1223
## 53684    4.0    1952
## 99681    4.0   56174
## 77908    3.0    3578
## 30098    5.0     903
## 79846    5.0    3812
## 2926     2.0      39
## 22679    3.5     587
## 19249    3.0     477
## 65730    2.5    2642
## 63559    5.0    2490
## 18557    4.0     457
## 14687    1.0     353
## 91194    1.0    6333
## 47881    2.0    1562
## 13659    3.5     337
## 71234    2.5    2968
## 99333    3.5   53125
## 25001    3.5     608
## 26784    2.0     733
## 16478    3.0     377
## 80993    4.0    3977
## 14114    1.5     344
## 12572    5.0     316
## 50281    3.0    1682
## 56097    4.5    2028
## 59539    4.0    2278
## 79718    3.5    3793
## 55893    4.0    2025
## 33376    3.0    1059
## 48966    5.0    1611
## 41678    4.5    1267
## 95549    3.5    8644
## 38410    5.0    1213
## 49909    5.0    1663
## 22887    3.0     588
## 20768    2.0     520
## 43786    4.0    1327
## 6701     3.0     158
## 81812    4.0    4019
## 87764    1.0    5218
## 65005    3.0    2599
## 69378    4.0    2858
## 64346    4.0    2559
## 61748    4.0    2390
## 19037    1.0     471
## 66257    4.0    2683
## 34708    4.0    1095
## 75875    4.0    3364
## 26797    4.0     733
## 46423    4.0    1438
## 32625    3.0    1028
## 68975    2.0    2805
## 15922    3.0     368
## 33430    3.5    1060
## 63338    3.0    2470
## 82546    3.5    4085
## 44542    3.0    1367
## 93058    3.0    6947
## 97248    4.0   33493
## 89413    1.5    5621
## 71484    3.0    2987
## 12271    3.0     301
## 16167    3.0     374
## 62526    3.0    2410
## 10754    3.0     266
## 12046    3.0     296
## 12796    3.0     317
## 21241    4.0     531
## 15170    5.0     356
## 9179     3.0     230
## 53042    2.0    1917
## 66592    1.0    2699
## 54095    4.5    1961
## 55289    2.0    2009
## 70489    5.0    2918
## 10028    3.0     253
## 98787    4.0   48322
## 30751    4.0     915
## 89905    4.5    5825
## 12484    4.0     314
## 71272    4.0    2972
## 63735    3.5    2502
## 67229    3.0    2712
## 42817    3.0    1290
## 47540    3.5    1527
## 16904    3.5     383
## 36510    5.0    1193
## 7278     5.0     165
## 17782    4.0     435
## 23885    3.0     592
## 48943    4.0    1610
## 92928    4.0    6934
## 81208    5.0    3994
## 54964    4.0    2001
## 69318    4.0    2852
## 38742    5.0    1215
## 76807    4.0    3476
## 34052    4.0    1081
## 28012    4.0     780
## 87782    3.0    5218
## 97454    3.0   34150
## 74107    4.0    3174
## 93973    4.0    7254
## 30249    4.5     905
## 855      3.0       8
## 66391    4.0    2690
## 30130    5.0     903
## 64848    4.0    2581
## 53040    3.0    1917
## 18404    3.0     454
## 97928    4.0   40581
## 20473    5.0     509
## 15961    5.0     368
## 91216    3.5    6333
## 20654    3.5     516
## 94221    5.0    7361
## 22946    4.0     588
## 96735    4.5   30793
## 11105    4.0     279
## 41688    4.5    1267
## 91501    3.5    6377
## 84873    3.0    4571
## 15102    3.0     356
## 74652    4.0    3244
## 98153    2.5   42011
## 33148    5.0    1041
## 3351     3.0      47
## 70199    4.0    2915
## 4548     4.0      88
## 71869    3.0    2997
## 44682    1.0    1371
## 61558    4.0    2379
## 87156    4.0    5010
## 71695    3.0    2993
## 26477    1.0     711
## 98632    4.5   46578
## 46782    4.0    1476
## 7653     3.0     173
## 62500    4.0    2409
## 51835    3.0    1784
## 47826    4.0    1554
## 79946    3.0    3826
## 86611    4.5    4967
## 54700    2.5    1992
## 17360    4.0     423
## 99840    3.5   58622
## 10535    5.0     260
## 33624    4.0    1073
## 97150    3.5   33138
## 38930    4.0    1219
## 61417    4.0    2371
## 97983    4.0   40815
## 57425    2.0    2113
## 94127    4.0    7325
## 18102    1.0     442
## 40543    4.0    1247
## 79477    4.0    3763
## 2189     4.0      31
## 7539     1.0     172
## 31748    4.0     953
## 41384    5.0    1264
## 62740    3.0    2423
## 38738    4.5    1215
## 79858    4.5    3814
## 38137    4.0    1210
## 13549    3.5     333
## 79164    2.0    3745
## 96401    4.5   26350
## 98367    4.0   44665
## 14948    5.0     356
## 8797     1.0     218
## 23689    3.0     592
## 43789    4.0    1327
## 62044    3.0    2396
## 47439    3.0    1527
## 83372    3.0    4246
## 97236    4.5   33493
## 24471    3.0     595
## 77270    3.0    3519
## 43140    5.0    1296
## 49206    2.0    1617
## 69677    5.0    2863
## 78427    3.5    3671
## 30768    3.0     915
## 73923    3.0    3157
## 28505    3.0     786
## 29266    3.0     838
## 73567    5.0    3114
## 69233    3.0    2840
## 66791    3.0    2701
## 93359    4.0    7044
## 61008    3.0    2353
## 62035    1.0    2396
## 71343    3.0    2977
## 20798    3.0     521
## 3156     4.0      45
## 54998    4.0    2001
## 49951    2.0    1667
## 76370    4.0    3427
## 33460    3.0    1060
## 81997    3.5    4025
## 18800    4.0     459
## 22970    3.0     588
## 36437    3.0    1190
## 37319    3.0    1199
## 14476    4.0     349
## 90384    3.0    5960
## 71712    4.0    2993
## 64595    3.0    2571
## 44580    5.0    1370
## 5590     3.0     114
## 79136    3.0    3744
## 78220    3.0    3627
## 77742    4.0    3566
## 10362    4.0     260
## 29549    5.0     858
## 21337    2.0     535
## 54758    1.0    1996
## 73795    4.0    3147
## 53971    4.0    1958
## 69297    3.0    2846
## 83139    4.0    4226
## 80609    2.0    3937
## 81765    3.5    4017
## 39507    4.0    1225
## 21578    3.0     540
## 56126    4.0    2029
## 87030    3.5    4995
## 17802    3.0     435
## 58892    3.5    2203
## 22154    2.0     553
## 84074    4.0    4351
## 24947    4.0     608
## 3616     4.0      50
## 78241    4.0    3633
## 72998    2.0    3082
## 94852    3.0    8131
## 67940    2.0    2746
## 24246    3.5     593
## 37016    3.5    1197
## 16422    2.5     377
## 57521    3.0    2115
## 76050    4.0    3405
## 76315    4.0    3421
## 80647    5.0    3948
## 1186     3.0      12
## 25154    4.0     608
## 81047    4.0    3980
## 4322     3.0      73
## 30423    4.5     910
## 18900    3.0     466
## 56578    3.0    2067
## 49311    1.5    1625
## 60114    4.0    2312
## 14775    3.0     354
## 97587    3.5   34532
## 2598     3.0      34
## 36011    5.0    1172
## 35669    3.5    1136
## 34478    3.0    1090
## 53501    4.0    1944
## 89435    3.5    5630
## 86525    3.0    4963
## 71676    3.0    2991
## 12359    4.0     306
## 35776    4.5    1136
## 38064    4.0    1209
## 15949    5.0     368
## 80551    3.0    3917
## 6395     2.0     151
## 3353     3.5      47
## 80297    3.0    3895
## 74845    3.0    3253
## 43214    4.0    1299
## 37414    4.0    1200
## 97156    4.0   33154
## 66749    4.0    2700
## 1631     4.0      19
## 89       5.0       1
## 71040    5.0    2959
## 15609    3.0     364
## 26693    3.0     725
## 43607    5.0    1307
## 37762    3.5    1206
## 94311    2.5    7373
## 64785    3.0    2579
## 15558    4.5     364
## 8678     5.0     213
## 25120    5.0     608
## 71900    4.0    2997
## 55836    4.0    2023
## 65047    4.0    2599
## 14535    3.5     349
## 40600    5.0    1248
## 81636    4.0    4011
## 77650    3.5    3555
## 48011    3.0    1573
## 10594    2.0     261
## 79016    4.0    3729
## 93009    4.5    6942
## 98897    3.5   48738
## 61576    2.5    2379
## 37959    4.5    1208
## 62204    3.5    2401
## 20496    5.0     509
## 15970    5.0     368
## 19557    4.0     480
## 29575    3.0     858
## 8296     4.0     198
## 98985    5.0   49272
## 36626    4.0    1196
## 38971    3.5    1220
## 6329     3.0     151
## 82980    4.0    4211
## 16625    3.0     380
## 63404    3.5    2474
## 52704    3.0    1894
## 95122    4.0    8371
## 12823    3.5     317
## 21364    4.0     537
## 60498    4.0    2328
## 23877    4.5     592
## 73816    4.0    3148
## 94838    3.5    8044
## 4504     3.0      86
## 18120    4.0     442
## 18968    4.0     469
## 82801    3.0    4144
## 58275    3.0    2152
## 68666    4.0    2794
## 87921    3.0    5266
## 20253    5.0     503
## 70889    4.0    2950
## 2202     5.0      31
## 27723    4.0     766
## 88766    4.5    5445
## 38985    4.5    1220
## 79897    2.0    3825
## 54517    4.0    1973
## 61037    3.5    2353
## 30838    1.5     919
## 82212    3.5    4034
## 29816    4.0     879
## 52719    3.5    1895
## 52707    2.5    1895
## 2232     2.5      31
## 19841    4.0     493
## 77987    4.0    3598
## 65034    3.0    2599
## 47461    3.5    1527
## 63558    4.0    2490
## 24210    4.0     593
## 64832    5.0    2580
## 4218     3.0      70
## 62891    4.0    2429
## 74847    3.0    3253
## 75516    4.0    3316
## 95369    4.5    8610
## 98630    2.5   46578
## 39054    4.0    1220
## 47790    4.0    1552
## 74386    5.0    3186
## 64221    4.0    2542
## 31236    5.0     924
## 48859    4.0    1610
## 63914    3.0    2524
## 70857    3.5    2949
## 30072    4.0     903
## 25732    3.0     648
## 97699    4.0   37240
## 75844    3.0    3363
## 14245    5.0     345
## 79617    1.0    3793
## 50582    4.0    1694
## 82176    3.5    4034
## 92412    5.0    6772
## 4965     2.5     104
## 38870    3.5    1219
## 15815    4.0     367
## 83938    5.0    4326
## 68847    2.0    2799
## 15490    5.0     364
## 68013    5.0    2759
## 51381    4.0    1735
## 27672    2.0     762
## 66001    4.0    2671
## 40265    5.0    1243
## 42367    5.0    1278
## 16094    3.0     371
## 39828    4.5    1234
## 9327     3.0     231
## 71328    3.0    2976
## 19116    4.0     474
## 53979    5.0    1958
## 65705    3.0    2641
## 54093    5.0    1961
## 87814    2.5    5219
## 17704    3.0     434
## 90436    3.5    5989
## 25652    3.5     648
## 95       5.0       1
## 60776    4.0    2336
## 67374    4.0    2716
## 4508     4.0      86
## 27341    5.0     745
## 29107    3.0     832
## 94041    3.0    7293
## 598      4.0       5
## 30276    3.0     908
## 60135    4.0    2313
## 24762    4.5     597
## 4689     3.0      95
## 87438    4.0    5060
## 69385    4.0    2858
## 45629    1.0    1393
## 50329    4.0    1682
## 92625    4.5    6863
## 51649    1.0    1772
## 22173    4.0     553
## 79703    3.5    3793
## 12011    5.0     296
## 1934     4.0      24
## 84620    4.5    4489
## 89478    1.0    5657
## 29420    4.0     850
## 8125     3.0     193
## 51503    3.0    1748
## 98444    3.5   45447
## 93111    3.5    6954
## 18748    3.0     457
## 30532    3.5     912
## 81565    4.0    4011
## 11546    3.0     292
## 52510    4.0    1883
## 14701    2.5     353
## 53490    4.5    1944
## 10336    2.0     260
## 40647    4.0    1249
## 64805    3.0    2580
## 46615    4.0    1460
## 34493    1.5    1091
## 46259    4.0    1409
## 7607     3.5     173
## 98721    4.0   47518
## 91055    3.0    6287
## 38602    5.0    1214
## 36727    4.5    1196
## 48386    2.0    1584
## 89958    3.0    5872
## 60278    3.5    2321
## 67517    2.0    2718
## 52077    3.0    1806
## 5477     4.0     111
## 82208    4.0    4034
## 28396    3.0     785
## 39856    4.0    1234
## 53778    4.0    1954
## 44134    1.0    1349
## 93701    5.0    7153
## 36458    4.0    1191
## 72249    5.0    3030
## 45185    1.0    1379
## 47309    3.5    1517
## 99463    3.5   54272
## 77552    4.0    3545
## 95613    4.5    8665
## 86221    1.0    4886
## 39248    3.0    1222
## 87417    5.0    5060
## 60279    5.0    2321
## 32648    4.0    1028
## 34940    4.0    1097
## 72822    5.0    3071
## 68961    2.0    2804
## 91756    1.5    6503
## 47329    2.0    1517
## 18791    3.0     458
## 81971    4.0    4023
## 69198    3.0    2829
## 2371     3.0      32
## 2542     5.0      34
## 6191     4.0     150
## 16374    3.0     377
## 74747    2.0    3249
## 36628    0.5    1196
## 87791    3.0    5218
## 58337    3.0    2160
## 86610    4.0    4967
## 50805    0.5    1707
## 77162    4.0    3507
## 58515    4.0    2171
## 93261    3.5    7009
## 49059    4.0    1617
## 47571    3.0    1537
## 43707    3.0    1320
## 39640    1.5    1230
## 90797    3.0    6157
## 94304    2.5    7373
## 73634    5.0    3125
## 43166    3.5    1297
## 48672    3.0    1597
## 54181    3.0    1962
## 32944    3.0    1036
## 36413    5.0    1188
## 14341    3.0     348
## 30941    4.0     919
## 40638    3.0    1249
## 81840    3.0    4020
## 47695    1.5    1544
## 72202    3.0    3022
## 8447     4.0     207
## 907      3.0      10
## 71232    4.0    2968
## 94980    2.5    8360
## 16680    3.0     380
## 22402    4.0     574
## 38325    4.0    1210
## 40998    4.0    1258
## 61652    3.0    2384
## 94671    3.0    7753
## 32135    4.0     999
## 60379    4.5    2324
## 7177     4.0     165
## 93483    4.0    7099
## 55936    4.5    2028
## 94898    4.0    8191
## 48561    3.0    1590
## 83186    1.0    4226
## 20369    5.0     508
## 9026     2.0     224
## 90363    4.0    5956
## 31358    5.0     926
## 79024    4.0    3730
## 71140    3.5    2959
## 15727    3.0     367
## 66524    3.0    2694
## 30790    4.0     916
## 93891    3.5    7178
## 19396    3.0     480
## 51676    2.0    1777
## 74866    3.0    3253
## 3149     2.5      45
## 39628    5.0    1230
## 20696    3.0     519
## 9767     5.0     246
## 70339    5.0    2916
## 42913    5.0    1291
## 20881    5.0     527
## 5061     4.0     107
## 85959    0.5    4873
## 87529    3.0    5074
## 33298    3.0    1049
## 4338     5.0      74
## 49088    4.5    1617
## 21417    3.0     539
## 77387    4.0    3527
## 72578    4.0    3052
## 27417    4.0     748
## 96747    4.0   30793
## 94293    0.5    7372
## 66445    4.0    2692
## 35817    5.0    1147
## 53085    2.0    1917
## 54029    3.0    1960
## 95504    4.0    8638
## 29073    3.0     832
## 21720    3.0     541
## 86447    3.0    4942
## 61056    2.0    2354
## 34930    5.0    1097
## 68704    3.0    2795
## 9955     4.0     252
## 75850    5.0    3363
## 33979    4.0    1080
## 41136    4.0    1259
## 65924    4.0    2664
## 72161    3.0    3019
## 75987    5.0    3396
## 86331    4.0    4896
## 22643    4.0     586
## 11450    2.0     292
## 29672    5.0     858
## 12162    4.0     300
## 45674    4.0    1393
## 72315    3.0    3033
## 47024    1.0    1495
## 34300    4.0    1089
## 29948    4.0     899
## 57820    4.0    2130
## 62503    3.0    2409
## 15753    3.0     367
## 51492    3.5    1748
## 82075    4.0    4027
## 71523    4.0    2987
## 25814    3.0     648
## 52945    4.0    1912
## 13795    3.0     339
## 57519    5.0    2115
## 92181    5.0    6650
## 73585    3.0    3114
## 38573    4.0    1214
## 52117    3.0    1821
## 9416     3.0     232
## 46356    3.0    1425
## 49177    4.0    1617
## 34599    3.0    1093
## 56301    3.5    2054
## 44       5.0       1
## 82615    5.0    4102
## 11487    3.5     292
## 66754    5.0    2700
## 492      3.0       3
## 80882    3.5    3969
## 46954    2.0    1485
## 42618    2.0    1286
## 29544    5.0     858
## 85703    0.5    4807
## 71333    3.0    2976
## 68530    3.0    2791
## 36195    5.0    1183
## 68675    1.0    2794
## 61285    3.0    2364
## 30843    1.0     919
## 79095    3.0    3740
## 89206    3.0    5528
## 36230    1.0    1183
## 82108    4.0    4027
## 26765    4.0     733
## 30734    5.0     914
## 27823    4.0     778
## 13339    4.0     329
## 32294    4.0    1013
## 18887    3.0     466
## 37861    5.0    1207
## 53598    3.0    1947
## 39718    2.0    1231
## 43113    3.0    1296
## 18848    3.0     464
## 59027    4.0    2237
## 30396    4.0     909
## 89333    4.0    5613
## 64587    4.0    2571
## 80519    3.5    3916
## 27456    5.0     750
## 53076    3.0    1917
## 53373    1.0    1923
## 70270    3.5    2916
## 97820    3.5   38061
## 22918    2.0     588
## 62366    4.0    2406
## 13483    4.0     329
## 46253    1.0    1409
## 41398    5.0    1264
## 44483    5.0    1359
## 9596     4.0     236
## 2100     3.0      26
## 56948    4.0    2085
## 11029    1.0     277
## 8887     1.0     223
## 78301    4.0    3639
## 38988    3.0    1220
## 40793    5.0    1252
## 67366    3.5    2716
## 8381     3.0     204
## 43589    3.0    1307
## 69301    3.0    2846
## 83072    3.5    4225
## 27725    5.0     766
## 33276    3.0    1047
## 96587    4.0   27801
## 55395    3.0    2011
## 86165    5.0    4886
## 41877    5.0    1270
## 8414     3.0     204
## 29312    2.0     839
## 45977    3.5    1396
## 18306    5.0     454
## 2140     3.5      29
## 53283    3.5    1923
## 23578    3.0     590
## 24807    4.0     597
## 32419    5.0    1020
## 76034    3.0    3402
## 20985    4.0     527
## 11182    3.0     282
## 7544     2.0     172
## 2111     2.5      27
## 38278    3.0    1210
## 95476    4.0    8636
## 88488    5.0    5380
## 77509    5.0    3536
## 16233    3.0     376
## 69036    2.0    2808
## 53561    3.0    1947
## 98936    4.0   48780
## 30501    1.0     912
## 6298     3.0     150
## 38073    5.0    1210
## 2683     5.0      34
## 23970    4.0     593
## 73673    2.0    3141
## 41897    1.0    1270
## 8167     2.5     195
## 63359    1.0    2471
## 8456     5.0     207
## 89481    4.0    5664
## 18109    3.5     442
## 9790     3.0     246
## 76150    3.0    3408
## 75200    4.0    3267
## 7005     2.0     162
## 97622    4.0   35836
## 31224    4.5     924
## 48781    2.5    1608
## 89463    3.5    5643
## 39935    5.0    1235
## 54577    2.0    1978
## 76595    4.0    3451
## 75243    3.0    3270
## 95535    1.5    8641
## 43531    5.0    1307
## 85214    2.0    4673
## 73023    3.5    3083
## 73586    4.0    3114
## 57433    3.0    2114
## 66356    3.0    2688
## 5569     4.0     112
## 54659    1.0    1985
## 31602    5.0     944
## 81582    3.0    4011
## 1986     2.0      25
## 45123    2.0    1377
## 43845    3.0    1333
## 14995    4.5     356
## 3621     5.0      50
## 2237     4.0      32
## 59810    4.0    2291
## 4593     2.0      94
## 95577    3.0    8644
## 55965    5.0    2028
## 17528    2.0     432
## 88203    3.5    5332
## 57618    2.0    2118
## 7914     4.0     185
## 31141    4.0     923
## 31498    4.0     933
## 19007    5.0     471
## 80463    5.0    3911
## 58097    4.0    2144
## 39374    5.0    1224
## 65594    4.0    2640
## 94532    4.0    7458
## 50840    3.5    1713
## 43688    3.0    1320
## 30068    4.0     903
## 21663    4.0     541
## 15075    4.5     356
## 35627    5.0    1136
## 53761    3.0    1954
## 9898     4.0     251
## 34163    2.5    1086
## 36219    1.0    1183
## 74860    2.0    3253
## 55024    4.0    2001
## 72204    4.0    3022
## 85469    5.0    4725
## 45421    4.0    1387
## 25866    3.0     653
## 15002    5.0     356
## 36427    3.0    1189
## 67503    4.0    2718
## 97505    3.5   34319
## 34179    1.0    1087
## 82304    4.0    4040
## 13903    2.5     339
## 8533     3.0     208
## 40032    2.0    1240
## 66474    3.0    2692
## 51521    3.0    1748
## 99491    1.5   54286
## 58893    5.0    2203
## 18580    5.0     457
## 89179    3.0    5525
## 55731    3.5    2020
## 31479    4.0     933
## 96877    4.0   31225
## 31942    4.0     969
## 29386    3.0     849
## 77093    3.0    3501
## 55451    3.0    2012
## 55082    3.5    2003
## 72770    4.0    3068
## 18376    4.0     454
## 12203    4.0     300
## 97700    1.5   37380
## 99366    4.0   53578
## 58914    4.0    2208
## 76053    4.0    3405
## 82532    3.0    4085
## 34899    4.5    1097
## 16309    2.0     377
## 98932    4.5   48780
## 93005    4.5    6942
## 63000    3.5    2439
## 5245     5.0     110
## 78455    3.0    3672
## 16769    4.5     380
## 27428    1.0     748
## 15362    2.0     360
## 54960    3.5    2000
## 75770    4.0    3361
## 48090    4.0    1573
## 60303    4.0    2321
## 83098    3.5    4226
## 3024     4.0      42
## 42007    5.0    1271
## 33300    4.0    1049
## 25187    2.0     609
## 37993    3.0    1208
## 64076    2.5    2533
## 12718    3.0     316
## 27775    5.0     778
## 40768    5.0    1252
## 34668    5.0    1094
## 88569    4.0    5400
## 75906    3.0    3385
## 40357    5.0    1245
## 70707    3.0    2944
## 32634    3.0    1028
## 11549    4.0     292
## 63126    3.0    2455
## 67826    3.0    2735
## 56103    1.0    2028
## 30393    5.0     909
## 67634    1.0    2723
## 83845    2.5    4310
## 74865    3.0    3253
## 70484    4.5    2918
## 31812    4.0     954
## 6323     3.0     150
## 21084    4.5     527
## 87326    4.0    5034
## 78786    5.0    3703
## 3124     3.0      45
## 24876    3.0     599
## 7690     3.0     175
## 62451    4.0    2407
## 18762    4.5     457
## 338      5.0       2
## 88808    2.5    5445
## 93834    4.5    7160
## 35696    5.0    1136
## 43857    4.0    1333
## 84892    4.0    4577
## 97913    3.0   40278
## 34757    4.0    1097
## 28742    2.5     800
## 20484    1.0     509
## 43229    5.0    1299
## 13671    4.0     337
## 17985    3.0     440
## 26637    1.0     724
## 26030    5.0     665
## 51239    5.0    1730
## 78140    5.0    3623
## 52270    3.0    1841
## 88751    3.5    5444
## 87260    5.0    5015
## 44115    3.0    1347
## 39542    4.0    1228
## 99106    3.5   50912
## 98885    3.5   48598
## 37796    5.0    1206
## 71101    3.0    2959
## 2881     5.0      39
## 81986    4.0    4023
## 94736    4.0    7840
## 36924    4.0    1197
## 67237    4.0    2712
## 64535    4.5    2571
## 43045    2.5    1293
## 18281    5.0     454
## 78925    2.5    3717
## 13785    3.0     339
## 56524    4.0    2065
## 47556    5.0    1533
## 55669    4.0    2019
## 67166    2.0    2710
## 58291    2.0    2153
## 89411    2.0    5620
## 54869    4.0    2000
## 52611    3.0    1888
## 98597    3.5   46530
## 47888    4.0    1562
## 13014    5.0     318
## 43986    3.5    1343
## 31481    5.0     933
## 16577    3.0     380
## 88451    4.5    5378
## 28471    5.0     786
## 34691    2.0    1095
## 38117    2.5    1210
## 52420    1.0    1876
## 24694    3.0     597
## 97862    4.5   39234
## 9186     3.0     230
## 35907    4.0    1148
## 21401    4.0     538
## 97239    4.0   33493
## 57837    3.0    2132
## 3278     4.5      47
## 85317    5.0    4701
## 85135    5.0    4643
## 69367    5.0    2858
## 58186    3.0    2146
## 48368    4.0    1584
## 93113    2.5    6954
## 10542    4.0     260
## 69653    4.0    2861
## 20321    3.5     508
## 54330    3.0    1967
## 50299    3.5    1682
## 72171    4.5    3020
## 22729    2.0     587
## 65533    4.0    2628
## 38275    4.0    1210
## 98846    4.5   48516
## 19949    3.0     496
## 51050    3.5    1721
## 84106    3.0    4359
## 3598     4.0      50
## 60627    3.0    2333
## 4462     3.0      82
## 44705    5.0    1371
## 39923    3.0    1235
## 597      4.0       5
## 17813    2.0     435
## 20255    3.0     504
## 73302    4.0    3104
## 67507    4.0    2718
## 44555    2.5    1367
## 16013    2.0     370
## 31098    4.5     923
## 97235    4.0   33493
## 58749    4.0    2193
## 97528    3.0   34336
## 40529    4.5    1247
## 82162    5.0    4034
## 65651    3.0    2640
## 55767    2.0    2021
## 70050    2.0    2902
## 26136    3.0     673
## 84715    1.0    4526
## 38981    5.0    1220
## 94196    4.0    7361
## 429      3.0       3
## 72024    4.5    3006
## 70665    4.0    2943
## 52167    1.0    1831
## 93611    4.5    7147
## 86537    4.0    4963
## 76308    5.0    3421
## 69476    4.0    2858
## 34312    3.0    1089
## 57799    3.0    2126
## 64201    4.5    2542
## 82947    2.0    4205
## 62730    3.5    2423
## 37239    5.0    1198
## 44556    4.0    1367
## 56985    4.0    2087
## 42910    3.0    1291
## 52369    3.0    1871
## 56911    2.0    2083
## 32700    4.0    1029
## 86308    3.0    4896
## 95733    4.0    8784
## 7851     3.0     185
## 44724    0.5    1372
## 97035    4.0   32296
## 59200    4.0    2252
## 20585    4.0     515
## 41213    5.0    1260
## 42208    5.0    1275
## 67958    3.0    2747
## 55832    3.0    2023
## 86563    2.5    4963
## 95437    4.0    8636
## 25654    3.0     648
## 17826    3.0     435
## 57775    3.0    2125
## 27305    5.0     745
## 58460    3.0    2167
## 15158    4.0     356
## 63767    5.0    2502
## 19997    4.0     497
## 7818     3.0     185
## 15877    3.0     367
## 31505    5.0     934
## 84966    2.0    4618
## 21318    5.0     535
## 70488    3.5    2918
## 7907     5.0     185
## 72156    3.0    3019
## 71998    4.0    3005
## 36664    5.0    1196
## 45047    4.0    1376
## 88255    4.0    5349
## 14993    4.0     356
## 6978     4.0     162
## 36051    4.0    1173
## 35403    1.0    1127
## 18998    3.0     471
## 71008    5.0    2959
## 52201    3.0    1834
## 10651    5.0     265
## 11202    4.0     282
## 82945    2.0    4205
## 20608    4.0     515
## 12040    4.5     296
## 5770     3.0     140
## 52734    4.5    1900
## 32757    4.0    1032
## 94357    4.0    7395
## 83822    1.5    4308
## 16260    4.0     376
## 88411    4.0    5378
## 74147    3.0    3175
## 49697    4.0    1645
## 80449    3.5    3910
## 47843    2.0    1556
## 13860    4.0     339
## 67004    4.0    2707
## 38071    3.0    1210
## 86900    5.0    4993
## 77514    2.0    3536
## 50206    4.0    1678
## 43010    2.0    1292
## 57910    0.5    2135
## 98436    3.0   45221
## 73303    4.0    3104
## 89546    5.0    5669
## 90816    2.0    6166
## 67682    1.0    2724
## 29065    3.0     830
## 55518    4.0    2012
## 87403    4.5    5060
## 2676     3.0      34
## 41130    4.0    1259
## 18781    4.0     457
## 77619    2.5    3552
## 7344     3.0     168
## 91376    3.0    6370
## 40853    4.0    1252
## 83750    3.0    4306
## 19625    4.0     482
## 27020    4.0     736
## 73101    4.0    3089
## 73529    4.5    3114
## 76071    4.0    3408
## 79184    3.0    3745
## 14631    3.0     350
## 2102     3.0      26
## 82744    4.0    4128
## 91911    4.0    6539
## 8895     5.0     223
## 59730    4.0    2291
## 17383    3.0     426
## 55738    5.0    2020
## 30904    4.0     919
## 39880    4.0    1234
## 14223    3.0     345
## 34742    3.0    1096
## 19369    4.0     480
## 13457    3.0     329
## 32182    4.0    1005
## 92360    3.5    6743
## 18318    3.0     454
## 91300    3.5    6365
## 50561    4.0    1693
## 48225    5.0    1580
## 21488    4.0     539
## 63860    2.0    2515
## 7493     3.0     172
## 23213    4.0     589
## 70744    4.0    2947
## 28068    4.0     780
## 57339    5.0    2108
## 26195    3.0     688
## 59640    4.0    2288
## 88919    3.5    5459
## 34960    4.0    1099
## 21294    4.0     534
## 41862    4.0    1270
## 54036    4.0    1960
## 65613    3.5    2640
## 39601    3.0    1230
## 53660    2.0    1952
## 92851    4.5    6881
## 45445    3.0    1387
## 9049     3.0     224
## 25300    4.0     616
## 96068    3.0    8957
## 58766    4.0    2193
## 54197    4.0    1962
## 22261    4.5     555
## 41869    4.0    1270
## 37554    5.0    1201
## 67843    5.0    2736
## 72832    4.0    3072
## 22276    4.0     555
## 87964    4.0    5267
## 13640    3.0     337
## 56210    4.5    2046
## 22570    3.0     586
## 97837    4.0   39183
## 6175     5.0     150
## 58319    5.0    2159
## 20592    4.0     515
## 84763    1.0    4544
## 62504    4.0    2409
## 45402    3.0    1387
## 87884    5.0    5250
## 22272    4.0     555
## 29012    3.0     829
## 38575    5.0    1214
## 7028     1.0     163
## 93799    3.0    7154
## 35621    5.0    1136
## 69507    5.0    2858
## 36647    5.0    1196
## 42574    4.0    1285
## 79673    3.0    3793
## 97121    3.5   33004
## 79035    4.0    3730
## 6459     3.0     153
## 55321    3.0    2010
## 87039    5.0    4995
## 10958    3.0     273
## 52550    2.0    1884
## 90421    4.5    5989
## 19656    3.0     485
## 83755    3.0    4306
## 50945    3.0    1721
## 20361    3.0     508
## 19641    2.5     482
## 30844    4.0     919
## 76194    4.0    3418
## 96043    3.5    8949
## 51952    2.0    1792
## 81120    3.0    3986
## 83254    1.0    4234
## 40199    5.0    1242
## 65866    2.0    2657
## 74993    5.0    3256
## 28694    4.0     799
## 9182     4.0     230
## 38335    4.0    1210
## 98268    4.0   44191
## 31803    4.5     954
## 16146    4.0     373
## 78084    3.0    3618
## 15041    4.0     356
## 7755     4.0     180
## 34861    5.0    1097
## 84318    3.0    4386
## 67720    3.0    2726
## 37066    4.0    1197
## 59518    4.0    2278
## 56321    4.0    2054
## 51506    4.0    1748
## 1792     3.0      21
## 67965    1.0    2748
## 32498    4.0    1022
## 92958    3.0    6934
## 98676    2.5   46972
## 60659    4.0    2334
## 1330     4.0      16
## 85653    4.0    4776
## 30063    5.0     903
## 87189    5.0    5010
## 17865    4.0     437
## 91967    1.0    6541
## 31025    4.0     920
## 41149    3.5    1259
## 28704    4.0     800
## 54216    3.0    1962
## 33934    3.0    1080
## 84560    4.0    4467
## 1756     4.0      21
## 16143    4.0     373
## 51157    3.0    1727
## 22939    4.0     588
## 11643    5.0     293
## 25916    5.0     653
## 95330    5.0    8542
## 70002    4.5    2890
## 57221    3.0    2104
## 96433    4.0   26603
## 25954    3.0     661
## 67778    5.0    2731
## 47341    4.0    1517
## 86577    5.0    4963
## 69504    5.0    2858
## 6299     5.0     150
## 55583    3.0    2014
## 25351    4.0     627
## 28556    3.0     788
## 1151     3.0      11
## 90135    2.5    5942
## 25       4.0       1
## 54849    4.0    1999
## 47782    2.5    1552
## 39057    4.0    1220
## 71258    5.0    2971
## 26058    1.0     671
## 47757    2.5    1552
## 92442    4.5    6784
## 48459    2.5    1587
## 37689    4.0    1204
## 76631    5.0    3452
## 84753    2.0    4541
## 975      3.0      10
## 54941    3.0    2000
## 59159    4.0    2248
## 47406    4.0    1527
## 42125    4.0    1274
## 12388    4.0     307
## 83948    4.0    4327
## 95079    5.0    8368
## 38920    3.0    1219
## 63463    4.0    2478
## 46403    5.0    1431
## 5961     3.0     145
## 36515    4.5    1193
## 78250    5.0    3634
## 80778    2.0    3952
## 91691    3.0    6493
## 6988     4.0     162
## 97224    4.0   33493
## 33952    4.0    1080
## 28812    5.0     802
## 23350    3.0     589
## 52930    3.0    1912
## 58070    3.0    2142
## 15449    4.0     364
## 90750    0.5    6123
## 77567    3.0    3546
## 94330    3.0    7377
## 61335    3.0    2367
## 49899    3.0    1663
## 9498     3.0     235
## 56898    4.0    2082
## 68705    5.0    2795
## 35754    3.0    1136
## 21062    4.0     527
## 24297    0.5     594
## 59708    4.0    2291
## 3602     4.0      50
## 46599    3.0    1459
## 15514    5.0     364
## 24574    4.0     595
## 60219    4.5    2318
## 22760    5.0     587
## 32245    3.0    1011
## 61490    3.0    2375
## 20400    4.5     508
## 19206    3.0     475
## 92121    2.0    6614
## 17231    3.0     419
## 46313    3.0    1416
## 38020    4.0    1208
## 92079    3.5    6586
## 20742    4.0     520
## 48569    2.0    1591
## 45329    3.0    1385
## 1493     2.0      18
## 63979    2.0    2529
## 98865    4.5   48516
## 46721    3.0    1466
## 13       4.0       1
## 72963    3.0    3081
## 33504    3.5    1061
## 22607    3.0     586
## 91477    4.0    6377
## 76863    5.0    3479
## 28258    3.0     784
## 89654    3.5    5693
## 27898    3.0     780
## 81320    4.0    3996
## 5215     4.0     110
## 8714     5.0     216
## 88515    3.0    5388
## 25594    5.0     648
## 26656    2.0     724
## 28382    3.0     785
## 93938    4.0    7235
## 27607    3.0     761
## 19424    3.0     480
## 43129    5.0    1296
## 54647    1.0    1984
## 73110    4.0    3090
## 27590    3.0     761
## 4389     4.0      78
## 42058    5.0    1272
## 35412    2.0    1127
## 46513    5.0    1446
## 82306    3.0    4040
## 52983    3.0    1914
## 35637    4.0    1136
## 10493    5.0     260
## 66226    4.0    2683
## 14498    4.0     349
## 35517    2.5    1129
## 4484     4.0      85
## 68668    2.0    2794
## 7035     3.0     163
## 98534    3.5   45722
## 32361    4.0    1017
## 25153    1.0     608
## 51971    5.0    1797
## 21101    5.0     527
## 86982    4.0    4993
## 6618     4.0     155
## 8572     3.0     208
## 36308    5.0    1185
## 49886    4.0    1660
## 87196    4.0    5012
## 56423    4.0    2058
## 17754    5.0     434
## 92033    3.0    6564
## 65369    1.0    2622
## 43128    5.0    1296
## 96190    3.5    8966
## 21066    5.0     527
## 63033    3.0    2447
## 4624     3.0      95
## 98346    4.0   44555
## 45805    4.0    1394
## 74692    4.0    3247
## 25574    4.0     647
## 53443    4.0    1934
## 14291    3.0     347
## 65503    3.0    2628
## 59102    3.0    2245
## 85901    4.0    4855
## 51470    2.5    1748
## 16489    2.5     377
## 26138    2.0     673
## 73440    5.0    3108
## 49561    4.0    1641
## 60046    3.5    2302
## 12211    2.0     300
## 78233    3.0    3633
## 55029    4.0    2001
## 60110    4.0    2311
## 28588    3.0     788
## 7711     5.0     176
## 84963    2.0    4618
## 77442    2.5    3534
## 69284    4.0    2843
## 75075    3.0    3259
## 47273    4.0    1517
## 7618     1.0     173
## 62577    2.0    2413
## 46887    4.0    1485
## 63977    4.0    2529
## 71945    5.0    3000
## 90291    5.0    5952
## 93276    4.0    7013
## 98473    3.5   45499
## 38097    5.0    1210
## 57423    4.0    2112
## 24386    4.0     594
## 27834    5.0     778
## 50386    3.5    1682
## 73736    4.0    3147
## 42756    4.0    1288
## 35521    3.0    1129
## 12171    5.0     300
## 73965    4.5    3160
## 99986    2.5   62081
## 63875    1.0    2517
## 33367    3.0    1059
## 13894    4.0     339
## 44538    3.0    1367
## 69721    4.0    2871
## 40234    4.0    1242
## 43035    4.0    1293
## 60256    3.5    2321
## 45982    3.0    1397
## 59116    1.0    2247
## 43625    3.5    1307
## 23305    4.0     589
## 77899    4.0    3578
## 89869    4.5    5816
## 83857    4.0    4310
## 42533    5.0    1284
## 42364    5.0    1278
## 74886    3.0    3253
## 14201    3.0     344
## 16948    3.0     405
## 15891    4.0     368
## 96116    4.5    8961
## 37341    4.0    1199
## 75242    4.0    3270
## 84757    5.0    4543
## 9029     2.0     224
## 343      4.0       2
## 26198    3.0     688
## 29008    4.0     828
## 19377    3.0     480
## 35251    2.0    1120
## 39716    4.0    1231
## 349      4.0       2
## 57395    5.0    2111
## 41001    4.0    1258
## 52747    4.5    1907
## 70628    4.0    2940
## 70713    5.0    2944
## 57951    3.0    2137
## 87288    3.0    5025
## 50060    4.0    1674
## 18243    4.0     449
## 29572    5.0     858
## 60239    2.0    2318
## 14365    4.0     349
## 427      2.5       3
## 66544    2.0    2694
## 15037    4.0     356
## 55214    3.0    2006
## 69940    4.0    2890
## 96923    4.5   31658
## 19130    5.0     474
## 48935    4.0    1610
## 74224    3.5    3175
## 2006     4.0      25
## 56666    4.0    2076
## 32260    2.0    1012
## 41748    2.0    1269
## 53932    4.0    1957
## 45663    5.0    1393
## 36343    4.0    1186
## 68520    3.0    2789
## 3963     3.0      61
## 40118    4.0    1240
## 31077    5.0     922
## 26285    5.0     704
## 23925    4.0     593
## 21652    4.0     541
## 78063    4.0    3617
## 51253    2.0    1732
## 97724    3.5   37729
## 44738    3.0    1372
## 50367    4.0    1682
## 44607    4.0    1370
## 5663     3.0     125
## 88004    3.5    5291
## 49809    4.0    1653
## 98804    3.0   48385
## 69221    3.0    2836
## 67612    0.5    2723
## 53623    4.0    1950
## 65627    0.5    2640
## 59641    4.5    2288
## 62612    3.0    2414
## 34721    4.0    1095
## 28811    5.0     802
## 91625    3.0    6428
## 22774    3.0     587
## 93774    4.5    7153
## 89736    5.0    5785
## 41091    4.5    1258
## 116      3.0       1
## 41274    4.0    1262
## 56638    2.0    2072
## 82967    5.0    4210
## 88640    4.0    5418
## 89485    2.5    5666
## 7794     2.0     181
## 2928     3.0      39
## 92785    4.0    6874
## 48099    5.0    1580
## 62510    3.0    2409
## 96396    5.0   26285
## 64502    4.0    2571
## 55217    4.0    2006
## 92698    4.0    6868
## 39553    4.0    1228
## 22446    3.0     585
## 15963    3.5     368
## 56418    3.0    2058
## 36363    3.0    1186
## 45302    4.0    1385
## 8309     4.0     198
## 70095    3.0    2908
## 41278    5.0    1262
## 84630    1.0    4490
## 80625    3.0    3948
## 1494     4.0      18
## 94008    3.5    7278
## 68524    3.0    2789
## 35530    3.0    1129
## 47610    2.0    1541
## 44690    3.0    1371
## 64676    5.0    2571
## 33498    3.0    1061
## 95146    2.5    8376
## 69969    3.0    2890
## 93523    3.5    7132
## 90953    3.0    6239
## 75855    3.0    3363
## 49553    4.0    1641
## 77456    4.0    3534
## 64546    1.0    2571
## 18744    5.0     457
## 56679    4.0    2076
## 82684    3.0    4116
## 7301     4.0     165
## 96252    1.0    8977
## 19945    3.0     494
## 37185    4.0    1198
## 27814    3.0     778
## 91002    3.0    6281
## 38502    5.0    1213
## 91563    4.5    6380
## 60774    3.5    2336
## 25643    4.0     648
## 31739    4.5     953
## 81852    4.0    4020
## 34798    4.0    1097
## 26586    5.0     720
## 26744    4.5     733
## 99721    3.5   56607
## 94475    3.5    7445
## 26613    4.0     720
## 96214    3.5    8970
## 4833     5.0     101
## 90684    1.5    6050
## 60787    1.0    2338
## 95119    4.0    8371
## 56562    5.0    2067
## 66306    4.0    2686
## 98265    4.0   44191
## 72567    4.0    3052
## 68476    3.0    2779
## 92028    3.0    6558
## 9606     3.0     236
## 55273    3.0    2006
## 74809    3.0    3252
## 87743    4.0    5212
## 14712    5.0     353
## 79503    3.5    3769
## 22052    3.0     551
## 96524    4.5   27706
## 79380    5.0    3753
## 41133    4.0    1259
## 859      2.0       9
## 91031    4.5    6283
## 95833    2.0    8839
## 78283    1.0    3638
## 98838    3.0   48394
## 9093     3.0     225
## 70118    3.0    2908
## 58404    3.0    2161
## 40696    4.0    1250
## 20802    4.5     522
## 55635    4.0    2018
## 48421    3.0    1584
## 56725    5.0    2078
## 37360    4.0    1200
## 36723    5.0    1196
## 82224    4.0    4034
## 88417    4.0    5378
## 66982    2.5    2706
## 1229     3.0      14
## 95521    2.5    8640
## 32018    4.0     973
## 47292    5.0    1517
## 79076    4.0    3735
## 38815    0.5    1218
## 59319    4.0    2268
## 75928    5.0    3386
## 61069    4.0    2355
## 22263    4.0     555
## 24016    4.5     593
## 62100    5.0    2396
## 20334    4.0     508
## 11948    5.0     296
## 56880    4.0    2082
## 59436    4.0    2273
## 14334    5.0     348
## 2133     3.5      28
## 30421    2.0     910
## 98614    4.0   46578
## 80197    2.0    3869
## 55394    3.0    2011
## 96455    2.0   26698
## 28048    5.0     780
## 95370    3.5    8610
## 62545    3.0    2411
## 76831    4.5    3477
## 88489    4.0    5380
## 96511    5.0   27660
## 16279    4.0     377
## 24432    4.0     595
## 26494    5.0     714
## 64487    5.0    2571
## 11984    1.0     296
## 81353    4.0    3996
## 90299    5.0    5952
## 43422    4.0    1304
## 66414    4.0    2692
## 46225    4.0    1408
## 9125     3.0     225
## 28870    3.0     805
## 97444    4.5   34072
## 77688    3.0    3556
## 24328    3.0     594
## 68305    3.0    2763
## 9354     3.0     231
## 72137    3.5    3018
## 82670    4.0    4105
## 75507    4.0    3310
## 45280    1.0    1381
## 30336    4.5     908
## 28495    2.0     786
## 16258    3.0     376
## 83166    4.5    4226
## 59266    3.5    2262
## 23255    2.0     589
## 11566    3.0     292
## 95325    4.0    8533
## 68463    4.0    2774
## 14364    4.0     349
## 62275    4.0    2403
## 26683    3.0     724
## 26227    1.0     692
## 78693    4.0    3699
## 79123    4.0    3742
## 69854    4.0    2881
## 69514    4.0    2858
## 5359     4.0     111
## 40588    4.0    1247
## 79933    1.0    3826
## 33131    5.0    1041
## 77762    4.0    3576
## 74617    5.0    3232
## 19741    1.0     489
## 73190    3.0    3099
## 2486     4.0      32
## 46761    3.0    1476
## 90145    4.0    5944
## 96600    4.5   27816
## 64895    3.5    2586
## 80574    2.5    3925
## 67268    4.0    2713
## 14189    2.5     344
## 47339    3.0    1517
## 71700    5.0    2993
## 62539    4.0    2411
## 2231     3.5      31
## 93343    4.0    7034
## 61269    2.0    2363
## 36384    2.5    1188
## 71560    2.5    2987
## 44825    2.0    1374
## 86546    3.0    4963
## 58309    3.0    2155
## 72438    3.0    3040
## 16370    3.0     377
## 93184    3.5    6986
## 75290    2.5    3273
## 45972    3.0    1396
## 5670     5.0     125
## 96199    4.0    8969
## 21044    5.0     527
## 7666     1.0     174
## 81281    4.5    3996
## 81300    4.0    3996
## 37636    5.0    1203
## 64694    2.5    2572
## 36960    5.0    1197
## 66542    3.0    2694
## 94203    5.0    7361
## 31713    5.0     953
## 96251    3.5    8974
## 72102    3.0    3015
## 12869    5.0     318
## 28492    3.0     786
## 91391    3.0    6373
## 52811    4.0    1909
## 13656    3.0     337
## 28440    4.0     786
## 17922    2.0     440
## 6602     4.0     154
## 35818    5.0    1147
## 9639     3.0     236
## 85118    4.5    4641
## 79704    5.0    3793
## 78760    3.0    3703
## 76671    4.0    3466
## 79699    4.0    3793
## 34188    2.0    1088
## 33552    5.0    1073
## 79628    4.0    3793
## 18476    4.0     456
## 62312    2.0    2405
## 53953    3.0    1958
## 29679    4.0     858
## 24895    3.0     605
## 51527    3.0    1752
## 399      2.5       2
## 99684    2.5   56251
## 56354    3.0    2054
## 51535    2.0    1752
## 69370    5.0    2858
## 3423     4.0      47
## 77839    5.0    3578
## 80392    4.0    3897
## 12889    5.0     318
## 74813    4.5    3252
## 24295    3.0     594
## 13618    4.5     337
## 52914    2.0    1912
## 57409    2.0    2112
## 23804    4.0     592
## 68336    1.0    2763
## 30162    4.0     904
## 90242    3.5    5952
## 48666    3.0    1597
## 37624    3.5    1203
## 95786    2.5    8807
## 90674    3.5    6027
## 15604    5.0     364
## 32953    4.0    1036
## 56642    4.0    2075
## 77535    3.0    3543
## 1019     4.0      10
## 32299    5.0    1013
## 15168    4.5     356
## 47055    2.5    1499
## 64342    4.0    2558
## 46797    4.5    1479
## 88827    4.0    5445
## 74966    3.0    3255
## 49209    4.0    1619
## 10303    1.0     260
## 5415     3.0     111
## 54621    4.0    1982
## 24173    5.0     593
## 37960    5.0    1208
## 72452    2.0    3040
## 81212    5.0    3994
## 96977    3.5   31700
## 96554    4.0   27741
## 98741    5.0   47640
## 42922    5.0    1291
## 60650    3.0    2333
## 6956     4.0     161
## 50080    4.0    1674
## 57982    2.5    2139
## 24358    5.0     594
## 23480    4.0     590
## 83846    2.5    4310
## 9556     5.0     235
## 83101    4.0    4226
## 80891    5.0    3969
## 96295    2.5    8984
## 99175    3.5   51662
## 58840    2.5    2194
## 67771    4.0    2730
## 77292    3.0    3524
## 46753    1.0    1475
## 71702    4.0    2993
## 2522     1.0      34
## 51156    2.0    1727
## 82529    3.0    4085
## 64388    3.5    2565
## 32617    5.0    1028
## 8771     3.0     217
## 73417    3.0    3108
## 20179    3.0     500
## 16244    4.0     376
## 69928    4.0    2889
## 72569    2.0    3052
## 98085    4.0   41569
## 21244    3.0     532
## 93061    2.0    6947
## 95717    3.5    8784
## 60949    3.0    2352
## 94417    4.5    7438
## 25336    3.0     617
## 18204    4.0     446
## 6707     4.0     158
## 4014     5.0      62
## 64378    4.0    2563
## 57772    5.0    2125
## 32640    4.0    1028
## 98749    4.5   47950
## 93433    3.5    7090
## 6615     3.0     154
## 99544    5.0   55052
## 17156    1.0     414
## 54444    3.0    1968
## 11695    4.0     293
## 65865    4.0    2657
## 22552    5.0     586
## 72049    5.0    3006
## 7799     4.0     182
## 2787     5.0      36
## 31986    4.0     969
## 16390    3.5     377
## 61184    1.0    2356
## 51285    3.0    1732
## 92781    4.5    6874
## 23319    4.0     589
## 45979    4.0    1397
## 38649    4.0    1214
## 37493    4.0    1200
## 77910    4.0    3578
## 86394    4.0    4903
## 96464    3.0   26744
## 36923    5.0    1197
## 68126    4.0    2762
## 35039    3.0    1101
## 54794    1.0    1997
## 74452    5.0    3196
## 70393    5.0    2918
## 1159     4.0      11
## 10447    3.0     260
## 71537    4.0    2987
## 61860    4.0    2393
## 36581    3.5    1193
## 13762    4.0     339
## 46271    4.0    1411
## 32487    3.0    1022
## 76338    4.0    3424
## 48739    2.0    1608
## 97547    3.5   34405
## 30999    5.0     920
## 69290    4.5    2843
## 17618    3.0     434
## 40712    5.0    1250
## 76601    4.0    3451
## 44465    5.0    1358
## 34683    3.0    1095
## 61675    3.0    2384
## 20302    4.0     508
## 47973    2.0    1569
## 21539    3.0     539
## 50360    3.0    1682
## 472      2.5       3
## 2073     5.0      25
## 65926    1.5    2664
## 82111    5.0    4027
## 28821    5.0     802
## 97453    2.0   34150
## 69502    5.0    2858
## 66175    3.0    2683
## 59478    2.0    2273
## 25310    3.0     616
## 15387    2.0     361
## 35864    4.0    1148
## 69358    2.0    2858
## 93460    3.0    7090
## 52670    4.0    1892
## 85188    2.0    4658
## 23275    3.0     589
## 48924    4.0    1610
## 59867    4.0    2295
## 10856    1.0     270
## 62801    2.0    2424
## 64581    5.0    2571
## 13400    3.0     329
## 12467    4.0     314
## 16187    3.0     375
## 42015    3.0    1271
## 78480    5.0    3677
## 31722    3.5     953
## 67830    3.0    2735
## 65130    4.0    2605
## 70300    4.0    2916
## 82592    4.0    4095
## 291      2.0       2
## 81794    3.5    4018
## 95776    1.5    8798
## 3157     3.0      45
## 33576    2.0    1073
## 19506    3.0     480
## 94848    1.0    8125
## 34272    3.0    1089
## 42643    3.5    1287
## 17573    4.0     432
## 64702    3.0    2572
## 43017    3.5    1292
## 10605    2.0     261
## 13485    4.0     329
## 92470    5.0    6787
## 40903    5.0    1254
## 60989    2.0    2353
## 48401    5.0    1584
## 84601    4.0    4487
## 8762     3.5     216
## 23806    5.0     592
## 30260    4.0     906
## 86086    3.5    4878
## 90192    4.0    5952
## 580      3.0       5
## 79507    4.0    3770
## 50684    3.0    1704
## 3960     3.0      61
## 85177    5.0    4649
## 89545    4.5    5669
## 40212    5.0    1242
## 15113    4.0     356
## 6949     4.0     161
## 33680    3.0    1073
## 12553    3.0     315
## 46165    2.5    1407
## 85361    3.0    4713
## 83609    3.0    4297
## 3690     5.0      50
## 90863    4.0    6188
## 26794    4.0     733
## 66708    3.5    2700
## 62970    4.0    2434
## 6340     3.5     151
## 7622     2.0     173
## 98896    4.0   48738
## 85161    1.0    4643
## 89117    3.0    5502
## 62590    3.5    2413
## 94216    4.5    7361
## 82076    4.0    4027
## 79847    3.0    3812
## 65669    4.0    2640
## 42135    3.0    1274
## 39664    3.5    1230
## 20036    4.0     497
## 82849    4.0    4155
## 18527    5.0     457
## 13436    3.0     329
## 35634    4.0    1136
## 60441    4.0    2324
## 53197    1.0    1920
## 53712    5.0    1953
## 33825    4.0    1079
## 63169    1.5    2458
## 17903    4.0     440
## 77955    3.0    3593
## 58896    3.0    2203
## 32344    4.0    1016
## 3592     3.0      50
## 76246    4.0    3418
## 75156    4.5    3264
## 69685    3.0    2866
## 53693    4.0    1952
## 45775    4.0    1393
## 7559     3.5     173
## 82899    3.0    4167
## 49628    3.0    1644
## 76541    4.5    3448
## 79031    4.0    3730
## 31438    5.0     930
## 33660    4.0    1073
## 35437    3.0    1127
## 99185    5.0   51662
## 51231    4.0    1729
## 56265    1.0    2053
## 53475    4.0    1940
## 74591    4.5    3214
## 96047    4.0    8949
## 96870    3.5   31223
## 79611    4.0    3793
## 25663    3.0     648
## 94913    3.5    8207
## 31927    5.0     969
## 77334    2.0    3526
## 42788    5.0    1288
## 88579    4.0    5400
## 52578    5.0    1885
## 91287    3.5    6365
## 46484    2.0    1441
## 46091    4.0    1407
## 42688    5.0    1288
## 11878    4.0     296
## 8639     0.5     208
## 96669    3.0   30707
## 12086    4.0     296
## 5267     5.0     110
## 54742    4.0    1994
## 88510    3.0    5388
## 66828    3.5    2702
## 11418    4.0     290
## 2758     4.0      36
## 68739    5.0    2797
## 11371    1.0     288
## 81846    3.0    4020
## 94945    2.5    8291
## 51251    4.0    1732
## 7708     4.0     176
## 75125    2.0    3263
## 26203    1.0     688
## 10567    3.0     261
## 9502     4.0     235
## 68830    4.0    2797
## 78492    4.0    3681
## 46650    3.0    1464
## 34819    2.5    1097
## 38183    4.0    1210
## 901      3.0      10
## 71711    4.0    2993
## 53546    5.0    1945
## 13267    1.0     325
## 20998    2.0     527
## 76592    4.0    3450
## 93654    2.5    7149
## 41005    5.0    1258
## 91050    1.5    6287
## 10942    3.0     273
## 67978    4.0    2750
## 52029    5.0    1805
## 15003    3.0     356
## 45542    3.0    1391
## 55035    3.0    2001
## 66933    4.0    2706
## 63409    3.0    2474
## 11122    5.0     280
## 7392     1.0     168
## 49328    4.0    1625
## 10731    1.5     266
## 21656    4.5     541
## 16689    3.0     380
## 23160    4.0     589
## 66631    3.0    2699
## 58755    5.0    2193
## 2961     4.0      39
## 57329    4.0    2108
## 16133    1.0     372
## 91507    4.0    6378
## 22400    2.0     571
## 94737    3.0    7840
## 52169    2.0    1831
## 53158    3.0    1918
## 56534    5.0    2065
## 92317    4.0    6711
## 44156    2.0    1350
## 76427    2.5    3436
## 89186    3.5    5527
## 43162    3.0    1297
## 8001     3.5     186
## 49859    2.0    1655
## 44609    3.0    1370
## 5581     3.0     113
## 55225    3.0    2006
## 67613    3.0    2723
## 45529    3.0    1391
## 87359    3.5    5049
## 54773    4.0    1997
## 14500    4.0     349
## 79032    4.0    3730
## 76036    4.5    3404
## 23317    3.0     589
## 28177    1.0     782
## 22189    4.5     553
## 81274    3.0    3996
## 38       4.0       1
## 24759    3.0     597
## 62715    2.0    2422
## 50087    4.0    1674
## 38886    5.0    1219
## 41495    5.0    1265
## 72795    4.5    3070
## 67123    4.0    2710
## 59382    4.0    2268
## 24540    5.0     595
## 51215    3.0    1729
## 18089    2.5     442
## 30975    4.0     920
## 60144    4.5    2313
## 22053    1.0     551
## 46641    5.0    1464
## 56565    3.0    2067
## 26106    2.5     673
## 34481    5.0    1090
## 21746    5.0     541
## 26006    5.0     663
## 75336    5.0    3275
## 20582    5.0     515
## 62345    3.5    2406
## 58972    4.0    2231
## 5233     3.5     110
## 45198    5.0    1380
## 72498    3.0    3045
## 20436    3.0     509
## 56643    4.0    2075
## 90226    4.5    5952
## 70555    4.0    2923
## 28009    5.0     780
## 57542    3.0    2115
## 91877    3.0    6539
## 59558    3.0    2279
## 93439    3.5    7090
## 60187    1.0    2316
## 39308    4.5    1222
## 750      4.0       7
## 64663    4.0    2571
## 61659    3.0    2384
## 96785    4.5   30812
## 23763    5.0     592
## 49774    3.5    1653
## 21067    4.0     527
## 98776    5.0   48161
## 10160    3.0     256
## 38506    4.5    1213
## 34539    5.0    1092
## 23903    3.0     592
## 70676    3.0    2944
## 48502    3.0    1589
## 48357    5.0    1584
## 77893    2.5    3578
## 71692    4.0    2993
## 61991    5.0    2395
## 78586    2.0    3686
## 27991    3.0     780
## 82633    3.0    4103
## 28839    5.0     802
## 17261    3.0     420
## 1092     3.0      11
## 37015    4.0    1197
## 66109    2.5    2683
## 54984    4.0    2001
## 73092    2.0    3089
## 29932    4.0     898
## 37822    3.5    1206
## 71568    5.0    2987
## 71136    4.0    2959
## 35712    4.0    1136
## 25582    4.0     648
## 32114    3.0     998
## 49792    4.0    1653
## 36465    5.0    1192
## 18844    3.0     464
## 87869    3.5    5237
## 72312    4.0    3033
## 61072    4.0    2355
## 31198    4.0     923
## 25315    4.0     616
## 27835    4.0     778
## 18947    3.0     468
## 50182    3.0    1676
## 80354    4.0    3897
## 29820    3.0     879
## 71417    1.0    2985
## 68172    5.0    2762
## 78279    3.0    3638
## 78584    3.0    3686
## 14787    3.0     355
## 43264    5.0    1300
## 64518    5.0    2571
## 98376    4.0   44665
## 16122    3.0     372
## 77947    3.5    3591
## 9360     2.0     231
## 97762    4.0   37741
## 29531    5.0     858
## 82576    3.0    4090
## 9349     3.0     231
## 50487    4.0    1690
## 49414    5.0    1635
## 76268    4.0    3421
## 50513    5.0    1690
## 42906    4.0    1291
## 69989    5.0    2890
## 14234    2.0     345
## 27711    3.0     765
## 20392    5.0     508
## 46690    2.0    1466
## 32038    2.0     987
## 2343     4.0      32
## 59411    1.0    2269
## 96499    0.5   27523
## 10767    5.0     266
## 69145    4.0    2826
## 13481    4.0     329
## 72327    5.0    3033
## 273      5.0       1
## 18094    4.0     442
## 52705    3.0    1895
## 82662    4.0    4105
## 11068    4.0     277
## 24101    3.5     593
## 80178    4.0    3868
## 30322    3.5     908
## 99985    4.0   61350
## 35091    5.0    1101
## 5534     3.0     112
## 48890    4.0    1610
## 4842     2.0     102
## 72284    2.0    3033
## 26249    3.0     694
## 99927    1.0   60037
## 86707    4.0    4973
## 74646    2.0    3243
## 45762    5.0    1393
## 33779    4.0    1078
## 26376    3.0     708
## 89338    2.0    5617
## 38096    5.0    1210
## 67797    5.0    2732
## 78646    4.0    3698
## 27159    1.0     736
## 72420    4.0    3039
## 24129    5.0     593
## 10988    2.0     276
## 95040    1.5    8361
## 64115    3.5    2539
## 96231    4.0    8972
## 15137    4.0     356
## 36847    5.0    1196
## 57220    5.0    2102
## 75012    4.0    3256
## 82996    3.0    4214
## 87117    5.0    4995
## 23788    3.5     592
## 19972    5.0     497
## 71605    2.0    2987
## 66837    2.0    2702
## 5643     5.0     123
## 8965     5.0     223
## 97777    4.5   37830
## 61514    0.5    2376
## 31629    5.0     947
## 94211    4.0    7361
## 92842    3.0    6880
## 96679    3.5   30707
## 57934    1.0    2137
## 88678    3.0    5418
## 47802    1.5    1552
## 82239    4.0    4034
## 43173    4.0    1298
## 11481    1.0     292
## 48542    3.5    1590
## 468      5.0       3
## 16699    2.5     380
## 91907    3.5    6539
## 20075    3.0     500
## 90295    4.0    5952
## 87906    3.0    5265
## 16328    4.0     377
## 18586    5.0     457
## 64469    5.0    2571
## 2030     3.0      25
## 25013    4.0     608
## 85615    4.5    4776
## 59637    3.0    2288
## 13607    4.0     335
## 38057    3.0    1209
## 45862    4.0    1394
## 29578    4.5     858
## 24141    5.0     593
## 31912    5.0     968
## 32999    4.0    1036
## 26631    5.0     720
## 16823    5.0     381
## 43011    5.0    1292
## 49069    5.0    1617
## 59156    4.0    2248
## 65993    3.0    2671
## 39360    4.0    1223
## 11605    5.0     292
## 41578    3.5    1265
## 31532    3.0     936
## 34454    5.0    1090
## 62007    2.0    2396
## 22125    5.0     553
## 71650    2.0    2990
## 27761    5.0     778
## 57994    5.0    2140
## 17743    2.0     434
## 18377    4.0     454
## 37410    5.0    1200
## 82151    4.0    4033
## 29697    4.0     858
## 98035    2.0   40966
## 75524    5.0    3317
## 29793    2.5     870
## 53417    4.0    1927
## 95620    3.5    8665
## 8741     2.5     216
## 41980    5.0    1270
## 26411    3.0     708
## 20869    4.0     527
## 24248    5.0     593
## 68397    5.0    2770
## 27577    5.0     760
## 27363    5.0     745
## 59763    4.0    2291
## 9316     2.0     231
## 42478    4.0    1282
## 67031    4.0    2707
## 78651    3.0    3698
## 23702    4.5     592
## 13074    4.5     318
## 19165    3.5     474
## 9904     2.0     252
## 241      4.0       1
## 51074    3.0    1721
## 37352    5.0    1199
## 71795    3.0    2997
## 76220    4.0    3418
## 94711    4.0    7817
## 3321     3.5      47
## 56486    4.0    2064
## 78383    1.5    3668
## 88774    5.0    5445
## 29902    3.0     897
## 73954    4.0    3160
## 7470     3.0     172
## 97232    3.5   33493
## 61582    3.0    2380
## 76936    4.0    3481
## 35323    4.0    1125
## 81788    5.0    4018
## 88775    3.5    5445
## 6928     3.0     161
## 83033    3.0    4223
## 94130    3.5    7325
## 72618    3.0    3053
## 23042    5.0     588
## 13238    4.0     322
## 91463    4.5    6377
## 85175    4.5    4646
## 21742    4.0     541
## 63339    5.0    2470
## 39172    5.0    1221
## 44299    4.0    1356
## 33673    4.0    1073
## 84446    3.5    4446
## 10879    4.0     271
## 5968     4.0     145
## 11752    5.0     293
## 47726    3.0    1549
## 52291    3.0    1845
## 80714    4.5    3949
## 16036    3.5     370
## 37290    4.0    1198
## 87425    4.0    5060
## 69612    3.5    2858
## 60690    4.0    2335
## 27508    5.0     750
## 35455    3.0    1127
## 66010    3.0    2671
## 56328    1.0    2054
## 9890     4.0     249
## 83136    4.5    4226
## 17368    3.0     423
## 90423    4.0    5989
## 75037    2.5    3257
## 20597    4.0     515
## 96557    4.0   27772
## 16041    4.0     370
## 70381    4.0    2918
## 28973    2.0     810
## 73351    3.0    3105
## 4963     3.0     104
## 34057    4.0    1081
## 5379     4.0     111
## 4551     3.0      89
## 89689    3.5    5747
## 20474    1.0     509
## 12165    5.0     300
## 77808    4.0    3578
## 47761    3.0    1552
## 3016     3.0      41
## 53171    1.5    1918
## 38048    4.0    1208
## 175      5.0       1
## 16299    3.0     377
## 58263    3.0    2150
## 11743    3.5     293
## 30339    5.0     908
## 66309    5.0    2686
## 97855    4.0   39183
## 10766    3.0     266
## 26987    3.0     736
## 21413    1.5     539
## 5154     4.5     110
## 95294    4.0    8529
## 38376    4.0    1212
## 90353    2.0    5956
## 10817    2.0     266
## 21047    4.0     527
## 33932    3.5    1080
## 55265    3.0    2006
## 59509    2.5    2278
## 85917    1.5    4862
## 37286    5.0    1198
## 57931    4.0    2137
## 98845    4.5   48516
## 56002    3.5    2028
## 9233     3.0     231
## 20577    3.5     515
## 86020    4.5    4878
## 10520    5.0     260
## 35095    2.5    1101
## 14568    2.0     350
## 38660    5.0    1214
## 71394    3.0    2985
## 4553     3.0      89
## 57732    3.0    2124
## 67049    1.0    2709
## 62       3.5       1
## 69635    2.0    2860
## 25842    1.0     653
## 21158    4.0     529
## 28332    2.0     784
## 94696    5.0    7802
## 86637    5.0    4973
## 21874    1.0     546
## 44868    3.0    1374
## 12664    3.0     316
## 44938    3.0    1375
## 77299    3.0    3524
## 47788    4.0    1552
## 39685    4.0    1230
## 45303    3.0    1385
## 6487     3.0     153
## 22472    3.0     585
## 17891    4.0     440
## 16004    3.5     370
## 79395    1.0    3754
## 6670     3.0     158
## 76723    4.5    3471
## 18138    3.0     442
## 38741    4.0    1215
## 30087    3.0     903
## 82455    4.0    4077
## 50379    4.5    1682
## 88044    5.0    5294
## 16705    4.0     380
## 23098    5.0     589
## 1566     1.0      19
## 30947    4.0     919
## 39794    3.0    1233
## 3886     5.0      58
## 57875    3.5    2134
## 5365     5.0     111
## 29690    3.0     858
## 2077     3.0      25
## 24178    5.0     593
## 76707    3.5    3469
## 85490    4.0    4733
## 65550    5.0    2628
## 37215    4.5    1198
## 96259    3.0    8980
## 78637    3.0    3697
## 7421     1.0     169
## 83441    3.5    4261
## 95109    3.5    8368
## 46514    4.0    1446
## 27589    3.0     761
## 87442    4.0    5060
## 96568    4.5   27773
## 33570    3.0    1073
## 82810    5.0    4148
## 49726    4.0    1647
## 34129    3.5    1084
## 99348    4.5   53322
## 77957    1.0    3593
## 90760    2.5    6155
## 61669    2.0    2384
## 24511    4.0     595
## 37192    5.0    1198
## 57366    3.0    2109
## 24418    1.5     595
## 67244    4.0    2712
## 61314    2.0    2366
## 59134    5.0    2248
## 51861    4.0    1784
## 58622    2.5    2174
## 61283    3.0    2363
## 45668    4.0    1393
## 77702    4.0    3556
## 17082    2.5     410
## 23913    4.0     592
## 31711    3.0     952
## 67863    4.0    2739
## 81688    3.5    4014
## 27003    4.0     736
## 57652    2.0    2120
## 23835    3.0     592
## 31307    5.0     924
## 88214    4.0    5339
## 3401     5.0      47
## 60416    3.5    2324
## 8416     4.0     204
## 63337    3.0    2470
## 38026    3.5    1208
## 41255    3.5    1261
## 9252     1.0     231
## 81399    2.0    3998
## 60532    5.0    2329
## 8399     3.0     204
## 64229    5.0    2542
## 29659    3.5     858
## 90887    5.0    6215
## 83769    4.0    4306
## 6595     3.0     153
## 53157    4.0    1918
## 31404    5.0     928
## 16923    3.0     388
## 2195     5.0      31
## 67182    5.0    2712
## 98853    4.0   48516
## 37435    3.0    1200
## 3912     4.0      58
## 23155    3.0     589
## 76306    5.0    3421
## 55136    4.0    2004
## 94495    3.0    7451
## 56552    5.0    2067
## 67298    5.0    2716
## 33796    3.0    1079
## 84578    2.5    4474
## 72224    3.0    3024
## 18340    3.0     454
## 3049     3.0      43
## 26969    4.0     736
## 55350    5.0    2011
## 77883    5.0    3578
## 9800     2.0     246
## 25488    3.0     637
## 82578    4.0    4090
## 79220    3.0    3751
## 543      3.0       5
## 58671    4.0    2183
## 41312    4.0    1262
## 5103     3.0     110
## 97084    4.0   32587
## 95945    3.0    8905
## 54257    5.0    1965
## 91525    3.5    6378
## 90005    4.0    5881
## 22694    5.0     587
## 39148    5.0    1221
## 78248    3.5    3634
## 47663    2.5    1544
## 25445    2.0     631
## 23880    4.0     592
## 14136    3.0     344
## 28211    2.5     783
## 36072    5.0    1175
## 6748     3.0     160
## 46321    4.0    1417
## 48572    3.0    1591
## 19223    3.0     476
## 24931    5.0     608
## 73236    1.5    3101
## 20738    3.0     520
## 17745    2.0     434
## 14618    3.0     350
## 8876     4.0     223
## 3338     5.0      47
## 881      3.0       9
## 99501    2.5   54503
## 65639    3.0    2640
## 77005    2.0    3489
## 63323    4.5    2470
## 54043    3.5    1961
## 93806    3.0    7154
## 23823    3.0     592
## 60897    4.0    2348
## 97344    5.0   33794
## 10163    3.0     256
## 29866    4.0     886
## 29282    3.0     838
## 44502    2.0    1363
## 27138    3.0     736
## 27318    3.5     745
## 64689    4.0    2572
## 34780    3.5    1097
## 84709    3.5    4523
## 84752    3.5    4541
## 46899    3.0    1485
## 89349    5.0    5617
## 12284    2.0     303
## 25993    3.0     662
## 92593    2.0    6832
## 64272    4.5    2542
## 14851    5.0     356
## 66089    5.0    2677
## 32966    3.0    1036
## 43500    4.0    1305
## 13610    3.0     336
## 37505    4.0    1201
## 31298    4.0     924
## 28500    3.5     786
## 20978    4.5     527
## 85029    2.5    4630
## 42379    5.0    1278
## 48022    4.0    1573
## 92837    3.5    6879
## 90127    3.0    5940
## 55718    5.0    2020
## 39429    5.0    1225
## 71784    5.0    2997
## 56093    5.0    2028
## 14934    5.0     356
## 41924    3.0    1270
## 72781    3.0    3069
## 87272    3.5    5016
## 18251    5.0     450
## 95885    0.5    8874
## 52103    4.0    1810
## 23802    5.0     592
## 53138    2.0    1917
## 29336    3.0     839
## 63253    1.0    2468
## 53253    3.5    1921
## 60289    4.0    2321
## 61923    4.0    2395
## 42062    3.0    1272
## 13061    4.0     318
## 49937    3.5    1665
## 54519    3.5    1974
## 17752    4.0     434
## 97207    4.0   33437
## 98358    3.0   44613
## 40428    3.5    1246
## 47353    3.0    1517
## 5815     3.0     141
## 89873    1.0    5816
## 27763    4.5     778
## 59506    3.0    2278
## 85564    0.5    4749
## 80196    1.0    3869
## 17635    3.0     434
## 91164    5.0    6323
## 77845    5.0    3578
## 37370    5.0    1200
## 39104    3.5    1221
## 14968    5.0     356
## 18331    3.5     454
## 95805    0.5    8810
## 86868    3.5    4993
## 12149    5.0     300
## 52880    1.0    1911
## 35735    4.0    1136
## 72128    3.0    3018
## 33933    4.0    1080
## 7323     4.0     165
## 38778    1.0    1216
## 53460    4.0    1938
## 90303    4.5    5952
## 76773    4.0    3471
## 2259     5.0      32
## 44210    5.0    1356
## 98513    3.5   45720
## 21006    5.0     527
## 57808    2.0    2126
## 18323    3.0     454
## 68487    4.0    2781
## 94436    5.0    7438
## 47186    1.0    1513
## 93245    3.0    7004
## 1907     3.0      24
## 88687    3.5    5418
## 4848     2.0     102
## 70924    3.5    2951
## 30216    5.0     904
## 44232    4.0    1356
## 32750    3.0    1031
## 84732    1.5    4531
## 6630     3.0     156
## 49326    4.5    1625
## 19541    4.0     480
## 59067    2.0    2243
## 2823     4.0      36
## 26013    2.0     663
## 95898    5.0    8874
## 68122    4.0    2762
## 76890    4.0    3481
## 95849    3.0    8865
## 85463    4.0    4723
## 67611    3.0    2723
## 81879    4.0    4022
## 86072    3.5    4878
## 37645    5.0    1203
## 38081    5.0    1210
## 78804    3.0    3703
## 76052    5.0    3405
## 10095    2.0     253
## 76255    4.0    3418
## 12864    5.0     318
## 46121    2.5    1407
## 67869    1.0    2739
## 64400    2.0    2565
## 40864    4.0    1253
## 86791    0.5    4979
## 91406    4.0    6373
## 59064    5.0    2243
## 21406    4.0     538
## 2116     1.0      27
## 64184    5.0    2541
## 75206    2.0    3267
## 14961    4.0     356
## 31852    3.0     955
## 9095     2.0     225
## 35564    4.0    1131
## 82051    5.0    4027
## 14558    3.0     350
## 17651    2.0     434
## 13362    5.0     329
## 9865     4.0     249
## 2784     4.0      36
## 81348    4.0    3996
## 94153    2.0    7347
## 26209    3.0     688
## 40608    5.0    1248
## 64618    5.0    2571
## 71904    3.0    2999
## 40328    5.0    1244
## 58865    4.0    2195
## 1506     2.0      18
## 49373    3.0    1629
## 10596    4.0     261
## 43927    1.0    1339
## 40714    3.5    1250
## 7162     4.0     165
## 11893    3.0     296
## 85125    1.0    4642
## 42705    5.0    1288
## 98223    4.5   43936
## 14962    3.0     356
## 59921    3.0    2300
## 4505     3.0      86
## 77264    3.5    3516
## 18079    3.5     442
## 85773    4.0    4821
## 24287    4.0     593
## 4946     3.0     104
## 73905    3.0    3156
## 54250    4.0    1965
## 65740    3.0    2642
## 27791    4.5     778
## 23125    5.0     589
## 41873    2.0    1270
## 28982    2.0     818
## 74712    2.0    3247
## 33734    4.0    1077
## 23891    3.0     592
## 16739    5.0     380
## 98238    4.5   44191
## 17470    4.0     431
## 69763    3.0    2872
## 9572     4.0     236
## 20431    4.0     509
## 38191    5.0    1210
## 11470    3.0     292
## 15263    5.0     357
## 55869    5.0    2023
## 4984     3.0     105
## 86166    5.0    4886
## 52686    3.0    1894
## 87225    4.0    5013
## 63469    2.0    2478
## 63207    3.0    2463
## 10781    4.0     266
## 41096    5.0    1259
## 58654    3.0    2178
## 94266    3.0    7366
## 64368    2.0    2561
## 42753    2.5    1288
## 24486    3.0     595
## 65239    2.0    2616
## 44662    2.5    1371
## 59168    4.0    2248
## 64410    3.0    2567
## 80764    4.0    3950
## 83134    4.5    4226
## 46298    4.0    1414
## 84611    3.5    4488
## 52885    2.0    1911
## 9531     3.0     235
## 35979    3.5    1171
## 14890    3.0     356
## 96107    3.5    8961
## 89536    4.5    5669
## 3104     2.0      44
## 62097    3.0    2396
## 34487    1.5    1091
## 29694    4.5     858
## 3556     4.0      50
## 99345    3.0   53322
## 32834    5.0    1035
## 75473    2.5    3301
## 95450    4.0    8636
## 41012    4.0    1258
## 46673    3.5    1466
## 60670    3.0    2334
## 50048    4.0    1673
## 39446    5.0    1225
## 6073     5.0     150
## 10762    1.0     266
## 76252    4.0    3418
## 10045    4.0     253
## 14735    3.0     353
## 34393    3.5    1090
## 61041    4.0    2353
## 38731    2.5    1215
## 73543    4.0    3114
## 84075    3.0    4351
## 39152    4.0    1221
## 53213    3.0    1921
## 6923     4.0     161
## 98942    3.5   48780
## 24729    3.0     597
## 60172    3.0    2314
## 70052    3.0    2902
## 95111    3.5    8369
## 57089    3.0    2094
## 44372    5.0    1357
## 79931    3.0    3826
## 84130    5.0    4361
## 6964     4.0     161
## 41663    4.0    1266
## 90838    3.5    6187
## 38614    4.0    1214
## 76258    2.0    3418
## 72170    5.0    3020
## 76875    4.5    3481
## 46560    4.0    1454
## 85130    2.0    4643
## 45284    0.5    1381
## 43704    5.0    1320
## 21807    4.0     543
## 61272    4.0    2363
## 47760    3.0    1552
## 61131    3.5    2355
## 76578    4.0    3450
## 98359    4.0   44633
## 35425    2.0    1127
## 61240    4.0    2359
## 95194    5.0    8464
## 75057    4.0    3258
## 90034    4.5    5891
## 94747    5.0    7842
## 31913    1.0     968
## 57120    3.0    2096
## 7551     3.0     172
## 50399    3.5    1682
## 20089    3.0     500
## 82769    2.0    4132
## 69140    2.0    2826
## 82186    4.0    4034
## 58183    4.0    2146
## 27992    5.0     780
## 20462    4.0     509
## 77147    2.5    3505
## 48418    4.0    1584
## 53248    5.0    1921
## 70509    4.0    2919
## 99872    3.0   59141
## 77469    5.0    3535
## 79396    2.0    3754
## 34034    4.5    1080
## 54789    5.0    1997
## 99160    4.0   51540
## 47303    4.0    1517
## 83670    4.5    4306
## 81547    3.5    4010
## 71204    4.0    2968
## 2085     5.0      25
## 77528    4.0    3538
## 43352    3.0    1302
## 46109    3.5    1407
## 64757    3.0    2572
## 77245    1.5    3513
## 53774    3.0    1954
## 50720    2.0    1704
## 28506    4.0     786
## 6419     1.5     153
## 25280    4.0     613
## 3175     2.0      45
## 26225    2.0     691
## 40802    4.0    1252
## 29603    4.0     858
## 25015    4.0     608
## 48650    4.0    1597
## 67599    2.0    2722
## 53496    4.0    1944
## 7480     2.0     172
## 90844    3.0    6188
## 45009    4.0    1376
## 65743    3.0    2643
## 24802    3.0     597
## 84084    4.0    4351
## 87142    1.0    5009
## 60523    5.0    2329
## 13831    4.0     339
## 23546    3.0     590
## 37792    3.5    1206
## 39859    4.5    1234
## 65602    4.0    2640
## 13724    2.0     338
## 34155    1.0    1086
## 23485    4.0     590
## 63504    3.0    2485
## 18578    3.5     457
## 65652    4.0    2640
## 48744    3.0    1608
## 87228    2.5    5013
## 95754    3.0    8798
## 87397    4.0    5060
## 69282    4.0    2842
## 70867    3.0    2949
## 59183    4.5    2249
## 86908    4.5    4993
## 88245    3.0    5349
## 39234    5.0    1222
## 43790    0.5    1328
## 49136    4.0    1617
## 88726    4.0    5438
## 73728    4.5    3147
## 93790    4.5    7153
## 2807     3.0      36
## 56388    3.5    2058
## 74664    3.0    3246
## 20730    3.5     520
## 51460    4.0    1748
## 52350    4.0    1866
## 16945    1.0     405
## 2934     5.0      39
## 59812    3.0    2291
## 69126    3.0    2826
## 27797    4.0     778
## 29841    4.0     880
## 43805    5.0    1331
## 3734     4.0      50
## 27839    3.5     778
## 14269    4.0     345
## 1672     4.0      21
## 32132    3.0     999
## 78156    4.5    3623
## 59799    5.0    2291
## 4951     2.5     104
## 56480    4.0    2064
## 99752    4.0   56788
## 83959    5.0    4327
## 6924     5.0     161
## 99650    3.0   55872
## 47804    3.0    1552
## 63472    5.0    2478
## 29621    5.0     858
## 67082    3.0    2710
## 28152    3.0     780
## 79102    3.0    3740
## 47688    2.0    1544
## 14381    3.0     349
## 13269    0.5     325
## 79350    3.5    3753
## 6159     3.0     150
## 47054    3.0    1499
## 15523    5.0     364
## 5268     4.5     110
## 4723     3.0      95
## 52269    4.0    1841
## 90484    2.0    5991
## 40838    2.0    1252
## 15578    4.0     364
## 52895    5.0    1912
## 36779    5.0    1196
## 79542    1.5    3785
## 70457    4.0    2918
## 57807    2.0    2126
## 82083    3.0    4027
## 62146    3.0    2396
## 25646    3.0     648
## 61181    3.0    2355
## 27095    5.0     736
## 30275    4.0     908
## 78567    3.0    3686
## 94055    3.5    7305
## 40150    3.0    1240
## 56842    4.0    2081
## 93039    4.0    6946
## 57322    3.5    2108
## 18027    4.0     441
## 85422    4.0    4720
## 81046    3.5    3980
## 14704    4.0     353
## 71366    5.0    2985
## 99732    3.5   56775
## 16651    3.0     380
## 89643    5.0    5690
## 57971    4.0    2139
## 49910    1.0    1663
## 29157    4.0     832
## 34844    4.0    1097
## 3082     1.0      44
## 21981    4.0     551
## 31155    5.0     923
## 65150    4.0    2605
## 37479    4.5    1200
## 91488    4.5    6377
## 25113    4.0     608
## 51166    4.0    1727
## 82878    3.0    4161
## 80370    2.5    3897
## 57065    2.0    2093
## 63261    3.0    2468
## 97891    5.0   39419
## 48228    3.0    1580
## 13507    3.0     329
## 81024    3.0    3978
## 93952    2.5    7254
## 44917    4.5    1374
## 47426    4.0    1527
## 70032    3.0    2900
## 30129    5.0     903
## 20153    2.0     500
## 12358    5.0     306
## 86596    2.0    4966
## 80869    2.0    3968
## 50856    4.0    1717
## 67704    2.0    2725
## 9082     2.0     225
## 7106     3.0     164
## 25118    2.0     608
## 75034    3.0    3257
## 23613    3.0     590
## 10022    3.0     253
## 32194    2.0    1006
## 95540    4.0    8644
## 73337    4.5    3105
## 57336    4.0    2108
## 53958    3.0    1958
## 28458    3.0     786
## 85553    1.0    4744
## 55708    5.0    2020
## 68689    3.0    2795
## 35839    5.0    1148
## 89247    3.5    5548
## 20347    5.0     508
## 863      3.0       9
## 28236    1.5     783
## 46710    4.0    1466
## 39270    4.0    1222
## 10956    4.0     273
## 92098    3.5    6593
## 46885    4.0    1485
## 37465    3.0    1200
## 4784     2.5     100
## 52981    2.0    1914
## 83414    4.0    4249
## 66115    5.0    2683
## 90120    3.5    5930
## 84374    4.5    4407
## 66919    3.0    2706
## 84908    2.5    4586
## 55613    2.0    2017
## 19152    3.0     474
## 29541    5.0     858
## 52246    5.0    1836
## 26951    4.0     735
## 60208    4.0    2318
## 86803    4.0    4979
## 78622    2.0    3697
## 89795    3.5    5810
## 10945    2.0     273
## 41088    5.0    1258
## 39556    4.0    1228
## 35799    5.0    1136
## 22578    5.0     586
## 54333    3.0    1967
## 4498     3.0      86
## 89987    4.0    5878
## 76656    4.5    3462
## 70088    5.0    2908
## 20681    1.0     518
## 89165    0.5    5515
## 20808    4.0     523
## 77827    5.0    3578
## 34128    3.0    1084
## 60838    4.5    2340
## 60128    4.0    2312
## 68714    3.0    2796
## 12696    3.0     316
## 90273    4.0    5952
## 24013    5.0     593
## 59377    5.0    2268
## 40197    5.0    1242
## 75479    3.0    3301
## 97594    3.5   35836
## 96513    3.0   27674
## 97015    3.5   32029
## 51532    4.0    1752
## 18016    3.0     441
## 76043    5.0    3404
## 72924    3.0    3081
## 84758    2.0    4543
## 75643    4.0    3347
## 44333    4.0    1356
## 23557    4.0     590
## 64097    2.0    2539
## 11462    3.0     292
## 98382    4.5   44694
## 63002    4.0    2439
## 91451    3.5    6377
## 7781     3.0     180
## 99001    4.0   49272
## 28930    1.5     805
## 69134    3.0    2826
## 73571    5.0    3114
## 35923    2.0    1148
## 3450     3.0      48
## 9785     5.0     246
## 17468    3.0     431
## 19826    3.0     492
## 69095    5.0    2819
## 81401    3.0    3998
## 87099    4.0    4995
## 17370    3.0     423
## 44295    3.0    1356
## 9221     2.0     231
## 79247    4.0    3751
## 53705    4.0    1953
## 79450    2.5    3759
## 82447    4.0    4069
## 92378    4.0    6754
## 81667    4.0    4014
## 71036    5.0    2959
## 51644    3.0    1772
## 19604    2.0     481
## 85767    4.0    4816
## 92016    3.5    6552
## 11165    3.0     281
## 62216    4.0    2401
## 12244    4.0     300
## 592      5.0       5
## 3704     5.0      50
## 59920    2.5    2300
## 50862    3.0    1717
## 80472    3.5    3911
## 78449    4.0    3671
## 15410    3.0     362
## 96648    4.0   27904
## 74745    3.0    3249
## 95046    3.5    8361
## 80666    2.5    3948
## 41880    4.0    1270
## 80069    1.0    3857
## 77607    2.0    3552
## 75730    4.5    3359
## 39049    4.0    1220
## 51282    3.0    1732
## 66021    5.0    2671
## 94076    1.5    7318
## 71658    2.0    2990
## 34727    4.0    1096
## 46061    2.0    1405
## 81915    4.0    4022
## 13657    4.0     337
## 33856    3.0    1079
## 75515    1.0    3316
## 63963    1.0    2529
## 83747    5.0    4306
## 41146    4.0    1259
## 87677    4.5    5147
## 88825    4.0    5445
## 69572    5.0    2858
## 94362    2.5    7399
## 33514    4.0    1061
## 39143    4.5    1221
## 96015    2.0    8947
## 78918    4.0    3715
## 53150    3.0    1918
## 21894    3.0     547
## 63474    3.0    2478
## 83984    2.0    4333
## 76027    3.0    3399
## 48784    3.0    1608
## 85157    3.0    4643
## 54446    3.0    1968
## 79027    5.0    3730
## 37489    4.0    1200
## 43459    2.0    1304
## 37602    5.0    1203
## 48083    1.0    1573
## 56402    3.0    2058
## 96294    4.0    8984
## 33035    5.0    1036
## 59100    5.0    2245
## 7117     4.0     164
## 59010    3.0    2236
## 61489    2.0    2375
## 49995    4.0    1673
## 98745    4.0   47894
## 77793    4.0    3578
## 28117    4.0     780
## 72051    4.0    3006
## 2754     5.0      36
## 19811    2.0     491
## 27186    4.0     737
## 70985    4.0    2959
## 1008     4.0      10
## 46678    5.0    1466
## 1410     5.0      17
## 79700    5.0    3793
## 7321     4.0     165
## 57253    2.0    2105
## 17392    4.0     426
## 20248    2.0     502
## 76749    2.5    3471
## 15352    4.0     359
## 75827    3.0    3362
## 66670    4.5    2700
## 14597    4.0     350
## 55909    3.0    2026
## 89779    2.5    5803
## 73630    1.0    3120
## 20456    4.0     509
## 53903    5.0    1956
## 59850    4.0    2294
## 30201    5.0     904
## 74816    3.0    3252
## 47652    2.5    1544
## 59083    4.0    2243
## 79716    3.0    3793
## 55761    5.0    2021
## 31778    4.0     953
## 73458    4.0    3111
## 8082     4.0     191
## 83178    4.0    4226
## 54087    3.0    1961
## 86857    4.0    4992
## 5836     4.0     141
## 78664    3.0    3698
## 538      2.0       5
## 29599    5.0     858
## 43216    4.0    1299
## 76493    5.0    3442
## 43580    4.0    1307
## 35575    4.0    1132
## 87577    1.0    5106
## 81524    2.0    4008
## 66591    1.0    2699
## 89677    3.0    5731
## 68536    4.0    2791
## 29810    3.0     879
## 50502    2.5    1690
## 35408    3.0    1127
## 67214    4.0    2712
## 67419    4.0    2716
## 80837    4.5    3967
## 44378    5.0    1357
## 40680    4.0    1250
## 78723    3.0    3702
## 98066    4.0   41566
## 76549    4.0    3448
## 58690    4.0    2186
## 24760    4.0     597
## 75471    3.0    3301
## 16946    3.0     405
## 59202    4.0    2252
## 11529    4.0     292
## 35117    3.5    1101
## 79403    4.0    3755
## 63626    4.0    2500
## 60200    5.0    2318
## 27750    3.5     778
## 9490     5.0     235
## 49590    4.0    1641
## 43104    4.0    1295
## 34452    5.0    1090
## 73591    3.0    3114
## 20438    5.0     509
## 51992    4.0    1799
## 33775    3.0    1077
## 58382    5.0    2161
## 45424    3.0    1387
## 6153     3.0     150
## 27223    5.0     741
## 39709    5.0    1231
## 54863    2.5    2000
## 92455    5.0    6787
## 81117    2.0    3986
## 88845    3.0    5445
## 71410    3.0    2985
## 39643    4.0    1230
## 54397    3.0    1968
## 42676    2.0    1287
## 83497    1.0    4270
## 44362    4.0    1357
## 57947    4.5    2137
## 58113    4.0    2144
## 51790    5.0    1784
## 6834     5.0     161
## 90791    2.5    6157
## 86884    3.0    4993
## 27313    5.0     745
## 84340    2.0    4388
## 70087    3.0    2908
## 61286    3.0    2364
## 47096    4.0    1500
## 68947    4.0    2804
## 51001    4.0    1721
## 33672    3.0    1073
## 71226    0.5    2968
## 64861    4.0    2581
## 6751     3.0     160
## 11320    3.0     288
## 59636    4.0    2288
## 87809    2.0    5219
## 1094     2.5      11
## 18840    2.0     464
## 52725    3.0    1897
## 92742    3.5    6873
## 14395    4.0     349
## 14069    4.0     344
## 55562    1.0    2013
## 26490    3.0     714
## 12755    2.5     316
## 47277    2.5    1517
## 7904     3.0     185
## 80934    3.0    3977
## 50524    3.0    1690
## 4302     5.0      72
## 73648    2.0    3130
## 58551    5.0    2174
## 33810    4.0    1079
## 2086     3.0      25
## 67215    3.5    2712
## 93280    3.5    7017
## 73661    3.0    3134
## 3350     4.0      47
## 80334    3.5    3897
## 32446    4.0    1021
## 23981    5.0     593
## 64285    4.0    2546
## 87292    4.0    5025
## 77831    4.0    3578
## 20993    4.0     527
## 10658    5.0     265
## 23202    3.0     589
## 77919    3.5    3578
## 56692    4.0    2077
## 52016    3.0    1801
## 26194    3.0     688
## 79171    3.0    3745
## 88994    3.5    5470
## 74642    3.0    3243
## 13426    3.0     329
## 76946    4.0    3481
## 1051     5.0      10
## 84257    1.5    4370
## 74982    3.5    3256
## 10151    2.0     256
## 78581    2.5    3686
## 93406    5.0    7073
## 6789     3.0     160
## 13882    4.0     339
## 54235    2.0    1963
## 32815    4.0    1033
## 86890    5.0    4993
## 99264    5.0   52694
## 24208    4.0     593
## 60668    3.0    2334
## 46528    4.0    1449
## 10757    3.0     266
## 91713    2.0    6502
## 2130     4.0      28
## 6302     3.0     150
## 40125    5.0    1240
## 48173    4.0    1580
## 87635    4.0    5134
## 83708    4.5    4306
## 69757    3.5    2872
## 83006    2.0    4216
## 12247    4.0     300
## 71239    2.0    2968
## 64624    4.5    2571
## 61913    4.0    2395
## 11075    2.0     277
## 12945    5.0     318
## 52646    4.0    1892
## 67320    4.0    2716
## 96768    4.0   30810
## 91297    4.0    6365
## 38650    5.0    1214
## 36288    4.0    1184
## 58297    2.0    2154
## 1722     3.0      21
## 382      3.0       2
## 93684    5.0    7153
## 20439    3.0     509
## 24333    3.0     594
## 4852     5.0     103
## 68749    3.5    2797
## 65823    4.0    2657
## 31893    4.0     968
## 83742    4.5    4306
## 96486    4.0   27186
## 91527    4.0    6378
## 28645    3.0     788
## 88876    4.0    5446
## 73780    4.0    3147
## 54814    5.0    1997
## 79733    3.5    3793
## 18365    3.0     454
## 46865    1.0    1483
## 34929    5.0    1097
## 71380    3.0    2985
## 65808    3.0    2657
## 94122    1.0    7325
## 19054    1.0     473
## 22864    2.5     588
## 42185    4.0    1275
## 72553    4.0    3052
## 77447    2.5    3534
## 5992     4.0     145
## 55201    3.0    2006
## 67324    3.0    2716
## 80508    4.0    3915
## 93331    4.0    7030
## 87251    4.0    5015
## 20019    4.0     497
## 65006    4.5    2599
## 87759    2.5    5218
## 26930    4.0     733
## 44909    5.0    1374
## 61835    2.0    2393
## 76885    4.5    3481
## 41740    4.0    1269
## 93351    4.0    7040
## 30015    5.0     900
## 90957    2.0    6240
## 87689    3.5    5152
## 84252    3.0    4370
## 9776     5.0     246
## 14864    4.0     356
## 4838     3.0     102
## 48039    3.0    1573
## 6309     3.0     150
## 26381    4.0     708
## 19713    2.0     485
## 48959    3.0    1610
## 92312    4.5    6711
## 67098    4.0    2710
## 19114    3.0     474
## 95753    4.5    8798
## 24371    3.0     594
## 82722    2.0    4126
## 8690     3.0     215
## 43411    4.5    1304
## 95235    3.0    8493
## 23915    3.0     592
## 67311    4.0    2716
## 45439    4.0    1387
## 49319    4.0    1625
## 31658    5.0     950
## 46604    4.5    1459
## 29150    3.0     832
## 85592    2.0    4767
## 95290    4.0    8529
## 91569    2.5    6383
## 92552    2.5    6807
## 54727    4.0    1994
## 22285    4.0     555
## 15584    3.5     364
## 69596    4.0    2858
## 30052    4.0     902
## 99094    2.5   50872
## 24548    1.0     595
## 75784    5.0    3361
## 31782    5.0     953
## 16215    3.0     376
## 43905    2.5    1339
## 18466    3.0     455
## 80570    2.0    3920
## 47452    1.0    1527
## 66876    4.0    2706
## 84234    4.0    4370
## 10388    3.5     260
## 19984    2.0     497
## 43190    5.0    1298
## 34943    3.0    1097
## 43871    4.0    1333
## 14996    3.0     356
## 28064    4.0     780
## 45187    3.0    1379
## 14196    3.0     344
## 87969    2.0    5276
## 97469    4.0   34162
## 2121     3.0      27
## 96665    5.0   30707
## 31253    3.0     924
## 40593    5.0    1247
## 66623    4.0    2699
## 1735     5.0      21
## 44602    3.0    1370
## 16984    3.0     409
## 60449    4.5    2324
## 47743    3.0    1552
## 52486    3.5    1882
## 13411    3.0     329
## 45287    0.5    1381
## 55194    4.5    2005
## 13875    2.0     339
## 99043    4.0   49651
## 76994    4.0    3489
## 69550    3.5    2858
## 24563    5.0     595
## 80462    4.0    3911
## 52839    2.0    1909
## 85048    2.0    4638
## 14559    4.0     350
## 69903    3.0    2885
## 29583    5.0     858
## 63689    3.5    2502
## 13514    1.0     330
## 42630    5.0    1287
## 40077    3.0    1240
## 61201    4.0    2357
## 26673    3.0     724
## 98531    5.0   45722
## 45364    4.0    1387
## 46215    4.0    1408
## 65360    4.5    2618
## 28979    4.0     818
## 55481    4.5    2012
## 71593    5.0    2987
## 91857    4.5    6538
## 47170    2.0    1503
## 86778    4.0    4978
## 16394    5.0     377
## 78854    1.0    3705
## 54551    2.0    1975
## 71042    1.0    2959
## 3548     3.5      50
## 83413    3.5    4248
## 87076    5.0    4995
## 9508     4.0     235
## 21734    2.0     541
## 39405    4.0    1225
## 80079    4.0    3861
## 63896    3.5    2520
## 51566    5.0    1754
## 98774    3.5   48142
## 73970    2.0    3160
## 25537    4.0     647
## 9802     4.0     247
## 6296     5.0     150
## 44405    5.0    1358
## 62226    2.0    2402
## 10718    4.0     265
## 20648    1.0     516
## 23023    4.0     588
## 6421     3.0     153
## 70360    3.0    2917
## 86219    4.0    4886
## 10265    4.5     260
## 10124    2.0     255
## 31177    3.0     923
## 36674    5.0    1196
## 87034    4.5    4995
## 27516    3.5     750
## 66215    4.0    2683
## 85126    5.0    4642
## 63163    4.0    2457
## 46550    3.0    1449
## 98810    5.0   48385
## 52343    2.0    1863
## 22327    3.0     558
## 46255    3.0    1409
## 4127     2.0      64
## 1134     4.0      11
## 87690    3.0    5152
## 28663    5.0     798
## 50694    3.5    1704
## 89069    5.0    5502
## 40378    4.0    1246
## 82618    4.0    4102
## 98528    4.0   45722
## 99002    3.5   49272
## 54405    3.5    1968
## 75058    2.0    3258
## 62172    4.0    2398
## 63402    3.5    2474
## 43524    2.0    1307
## 38787    5.0    1217
## 91048    3.0    6287
## 76421    5.0    3435
## 66341    3.0    2688
## 16738    3.0     380
## 69443    5.0    2858
## 57162    2.0    2100
## 54375    3.5    1968
## 96049    3.0    8949
## 13360    3.0     329
## 88408    1.0    5378
## 53918    4.0    1957
## 23549    3.0     590
## 82396    4.0    4061
## 97136    4.5   33004
## 84794    4.0    4553
## 63885    5.0    2518
## 69063    4.0    2815
## 57556    3.5    2115
## 14844    3.0     356
## 62247    2.0    2402
## 74908    5.0    3254
## 88475    2.5    5378
## 54026    3.0    1960
## 1345     3.0      16
## 45743    4.0    1393
## 1638     1.0      20
## 66475    4.0    2692
## 25180    4.0     608
## 49635    3.0    1644
## 28698    3.0     799
## 25951    2.0     661
## 29079    4.5     832
## 64954    2.0    2598
## 63998    4.0    2529
## 26072    2.0     671
## 40773    4.0    1252
## 76482    4.0    3441
## 13182    5.0     318
## 33883    5.0    1079
## 98672    3.0   46972
## 98972    5.0   49272
## 87727    3.5    5177
## 39112    4.0    1221
## 69005    3.0    2806
## 91265    4.5    6350
## 41532    4.0    1265
## 59776    3.0    2291
## 1031     3.0      10
## 70959    2.0    2953
## 44160    4.0    1350
## 76901    3.5    3481
## 29853    2.0     882
## 46315    1.0    1416
## 54940    4.0    2000
## 73109    3.0    3090
## 277      4.5       1
## 76407    5.0    3435
## 48123    3.5    1580
## 53409    3.0    1925
## 94045    2.5    7294
## 7243     5.0     165
## 8281     5.0     198
## 17434    3.0     428
## 31883    5.0     965
## 14584    3.0     350
## 76614    3.5    3452
## 34435    4.0    1090
## 59406    2.5    2269
## 75345    3.5    3275
## 57247    2.0    2105
## 60846    4.5    2340
## 90718    2.0    6092
## 91530    4.0    6378
## 31622    4.0     946
## 41038    1.0    1258
## 74123    4.0    3174
## 58057    4.0    2141
## 10627    3.0     262
## 35728    4.0    1136
## 42638    3.0    1287
## 32275    4.0    1012
## 73335    4.0    3105
## 21065    5.0     527
## 12398    5.0     307
## 45001    3.0    1376
## 50812    2.0    1711
## 76449    2.0    3438
## 73116    5.0    3091
## 66799    2.0    2701
## 62056    3.0    2396
## 54213    4.0    1962
## 8329     3.0     199
## 91039    4.0    6286
## 52453    4.0    1876
## 89389    4.5    5618
## 75807    4.0    3362
## 53616    5.0    1949
## 51774    3.5    1783
## 58794    4.0    2194
## 11590    2.5     292
## 18629    4.0     457
## 87744    2.0    5213
## 93228    4.0    7000
## 40981    4.0    1257
## 38111    4.5    1210
## 83594    4.5    4292
## 78948    3.0    3717
## 33418    3.5    1060
## 82638    5.0    4103
## 12198    3.0     300
## 70288    4.0    2916
## 42975    4.0    1291
## 13706    4.0     337
## 16333    3.5     377
## 26152    2.0     674
## 71190    4.0    2966
## 50355    3.5    1682
## 35794    2.5    1136
## 69408    5.0    2858
## 941      4.0      10
## 68308    3.5    2763
## 58158    2.0    2145
## 96286    3.5    8984
## 49662    4.0    1645
## 56656    4.5    2076
## 91443    4.5    6377
## 60556    3.5    2329
## 94265    4.0    7364
## 15502    3.5     364
## 82609    4.0    4102
## 98106    3.5   41617
## 41151    5.0    1259
## 30372    5.0     908
## 31660    4.0     950
## 81108    4.0    3985
## 45578    3.0    1391
## 1746     3.0      21
## 86491    3.0    4958
## 53384    3.0    1923
## 89414    3.5    5621
## 68403    4.0    2770
## 83760    3.0    4306
## 21886    2.5     546
## 32009    3.5     971
## 92458    4.0    6787
## 26992    4.0     736
## 82621    2.0    4102
## 10716    4.0     265
## 22121    3.0     552
## 29360    4.0     842
## 25460    3.0     635
## 67935    2.0    2746
## 14589    3.0     350
## 81116    3.0    3986
## 47786    4.0    1552
## 16901    5.0     383
## 53722    5.0    1953
## 61732    5.0    2389
## 43016    4.0    1292
## 37701    4.0    1204
## 66205    5.0    2683
## 86744    4.0    4975
## 92897    3.5    6893
## 49056    4.0    1617
## 47562    5.0    1537
## 93518    4.5    7121
## 82326    3.0    4041
## 75911    4.0    3386
## 68849    3.0    2799
## 81186    4.0    3993
## 65342    4.0    2617
## 30103    4.0     903
## 68136    3.0    2762
## 12637    4.0     316
## 37230    4.0    1198
## 63791    3.0    2504
## 95714    5.0    8784
## 13342    2.0     329
## 18888    2.0     466
## 51467    5.0    1748
## 30992    3.5     920
## 36092    3.0    1175
## 4922     4.0     104
## 13106    4.0     318
## 95760    3.0    8798
## 63756    5.0    2502
## 64862    4.0    2581
## 8154     4.0     194
## 10607    4.0     261
## 22709    3.0     587
## 10233    3.0     259
## 50006    2.5    1673
## 97267    1.0   33615
## 35751    5.0    1136
## 95678    3.5    8781
## 54900    3.5    2000
## 54699    1.0    1992
## 25003    5.0     608
## 76819    4.5    3476
## 717      3.0       6
## 22652    2.0     586
## 7876     3.0     185
## 22941    4.0     588
## 2936     4.0      39
## 11326    4.0     288
## 9151     4.0     227
## 4046     3.5      62
## 8750     4.0     216
## 7166     4.0     165
## 11372    4.0     288
## 51754    3.0    1779
## 49994    5.0    1673
## 17519    3.0     432
## 87411    2.0    5060
## 70107    4.0    2908
## 67998    3.0    2752
## 58080    2.0    2143
## 58604    5.0    2174
## 8820     4.0     222
## 4695     4.0      95
## 71535    3.0    2987
## 45651    5.0    1393
## 57962    4.0    2138
## 83333    4.5    4245
## 58543    3.0    2174
## 3394     2.0      47
## 20823    3.0     524
## 61650    2.5    2383
## 8594     4.0     208
## 75341    4.0    3275
## 67854    4.5    2739
## 18114    3.0     442
## 61929    4.0    2395
## 45002    4.5    1376
## 16261    2.0     376
## 89178    4.0    5525
## 33628    3.0    1073
## 79676    1.0    3793
## 41585    4.0    1266
## 70575    3.0    2926
## 83757    4.0    4306
## 20201    5.0     500
## 75293    4.0    3273
## 78799    3.0    3703
## 78829    3.0    3704
## 85606    2.5    4774
## 50519    4.0    1690
## 24724    4.0     597
## 78271    3.5    3635
## 44715    4.0    1371
## 93931    2.0    7228
## 45143    4.0    1378
## 3131     3.0      45
## 54928    3.0    2000
## 15907    4.0     368
## 24148    4.0     593
## 66463    4.0    2692
## 71499    4.0    2987
## 22109    4.0     552
## 37369    4.0    1200
## 24075    4.0     593
## 11707    4.0     293
## 85047    2.0    4638
## 69812    2.0    2875
## 79458    3.0    3760
## 82080    5.0    4027
## 83034    4.5    4223
## 90531    4.0    5992
## 97061    4.5   32587
## 38094    4.0    1210
## 44652    3.0    1370
## 76064    4.0    3408
## 1485     3.0      18
## 13529    1.0     332
## 72478    3.0    3044
## 38788    3.0    1217
## 46546    4.0    1449
## 53764    4.0    1954
## 59175    5.0    2248
## 60970    3.5    2353
## 69848    4.0    2881
## 83896    2.0    4321
## 57427    1.0    2113
## 66462    5.0    2692
## 61903    1.0    2395
## 827      4.0       7
## 77440    2.0    3534
## 54234    2.0    1963
## 90003    2.0    5881
## 97107    4.5   32596
## 40778    4.5    1252
## 83319    3.0    4239
## 25502    3.0     640
## 13367    4.0     329
## 65326    3.0    2617
## 579      2.5       5
## 57643    2.0    2119
## 4236     3.0      70
## 257      4.0       1
## 31834    5.0     955
## 28775    2.0     802
## 51893    3.5    1784
## 46367    4.0    1427
## 4316     3.0      73
## 80111    3.5    3863
## 87084    4.0    4995
## 19979    4.0     497
## 73590    1.0    3114
## 56840    3.0    2081
## 16847    5.0     381
## 61710    4.0    2387
## 62678    3.0    2420
## 40289    4.0    1244
## 27868    3.0     780
## 34730    2.0    1096
## 79478    2.0    3763
## 60394    5.0    2324
## 61591    1.0    2380
## 75155    5.0    3264
## 74882    5.0    3253
## 47124    5.0    1500
## 62075    3.5    2396
## 17488    5.0     431
## 1100     5.0      11
## 64093    3.0    2539
## 96454    3.5   26695
## 36412    5.0    1188
## 38532    4.0    1213
## 70547    3.0    2922
## 2479     4.0      32
## 95500    4.0    8636
## 75549    3.0    3317
## 1239     1.0      14
## 46709    4.5    1466
## 31115    5.0     923
## 1245     4.0      14
## 29427    3.0     852
## 87532    4.0    5077
## 91830    4.0    6537
## 40214    5.0    1242
## 34900    4.0    1097
## 93480    4.0    7099
## 79941    3.5    3826
## 55498    4.0    2012
## 75794    3.0    3362
## 61714    1.0    2387
## 98711    4.0   47200
## 87587    0.5    5108
## 31798    4.0     954
## 47959    2.0    1569
## 13259    4.0     322
## 53330    3.0    1923
## 10283    5.0     260
## 50198    4.0    1676
## 58785    4.0    2194
## 39541    3.0    1228
## 19471    3.0     480
## 95711    4.0    8784
## 78660    3.0    3698
## 87656    3.0    5136
## 57691    4.0    2123
## 22756    3.0     587
## 83039    3.5    4223
## 6612     3.0     154
## 35951    3.0    1164
## 84721    1.5    4526
## 47437    3.0    1527
## 2128     3.0      28
## 65068    4.0    2599
## 80494    5.0    3911
## 79580    2.0    3786
## 27077    2.0     736
## 31763    0.5     953
## 74443    4.0    3196
## 13461    4.0     329
## 18902    2.0     466
## 66889    5.0    2706
## 92365    4.0    6753
## 90292    4.0    5952
## 20067    5.0     500
## 52756    5.0    1907
## 51681    4.0    1777
## 73716    4.5    3147
## 92994    3.5    6942
## 51107    3.0    1722
## 80825    2.0    3966
## 47937    3.0    1569
## 40222    4.0    1242
## 98302    2.5   44195
## 65456    2.0    2628
## 47322    2.0    1517
## 5926     4.0     144
## 88902    0.5    5452
## 18635    2.0     457
## 61980    5.0    2395
## 65250    2.5    2616
## 51129    1.5    1722
## 49086    4.0    1617
## 19553    3.0     480
## 29778    4.0     866
## 92926    4.0    6934
## 11536    2.5     292
## 91113    3.5    6305
## 43809    3.0    1332
## 56484    5.0    2064
## 19944    4.0     494
## 42745    5.0    1288
## 10257    4.0     260
## 95234    3.0    8493
## 95118    3.5    8371
## 67307    3.0    2716
## 76837    3.0    3477
## 36899    3.0    1197
## 33471    3.0    1061
## 36211    4.0    1183
## 60342    2.0    2322
## 33545    4.0    1068
## 86681    3.5    4973
## 71336    3.0    2976
## 35612    3.0    1135
## 17955    3.5     440
## 94179    3.5    7360
## 65786    5.0    2648
## 81044    3.5    3980
## 10723    4.0     265
## 38917    5.0    1219
## 60689    1.0    2335
## 53442    5.0    1934
## 69447    5.0    2858
## 13758    3.0     339
## 81269    3.0    3996
## 96270    3.5    8981
## 87492    2.0    5064
## 49634    1.0    1644
## 26787    2.0     733
## 24706    3.0     597
## 34110    2.5    1084
## 99421    4.0   54001
## 23587    5.0     590
## 34502    4.0    1091
## 38143    5.0    1210
## 77980    3.0    3597
## 16596    2.0     380
## 92667    2.5    6863
## 6145     5.0     150
## 27062    1.0     736
## 43585    5.0    1307
## 26319    1.5     707
## 13096    5.0     318
## 32262    4.0    1012
## 18269    3.0     452
## 69811    4.0    2875
## 52947    3.5    1912
## 18194    1.0     445
## 88021    3.0    5292
## 51993    5.0    1799
## 88508    4.0    5388
## 44576    3.5    1370
## 61292    1.0    2365
## 61521    3.0    2378
## 28387    4.0     785
## 56949    4.0    2085
## 83704    4.5    4306
## 53179    3.0    1918
## 81492    4.0    4006
## 78363    4.0    3654
## 2512     4.5      34
## 68066    5.0    2762
## 73941    4.0    3159
## 85255    2.5    4679
## 30239    4.0     905
## 76141    1.5    3408
## 1528     3.0      19
## 48984    2.0    1611
## 79860    4.0    3816
## 20181    4.0     500
## 63309    4.0    2470
## 84819    2.0    4561
## 62834    4.0    2427
## 80176    5.0    3868
## 25525    3.0     647
## 81677    5.0    4014
## 93920    4.0    7215
## 88187    3.0    5324
## 79257    5.0    3751
## 41031    3.5    1258
## 63812    3.0    2505
## 19225    4.0     477
## 60848    4.0    2341
## 23137    5.0     589
## 19955    5.0     497
## 60497    2.0    2328
## 66118    2.0    2683
## 90171    4.5    5945
## 10285    5.0     260
## 68121    4.0    2762
## 36610    5.0    1193
## 59555    2.5    2279
## 43630    4.0    1307
## 70651    4.0    2942
## 66126    4.0    2683
## 6838     4.0     161
## 14919    4.0     356
## 92353    3.5    6731
## 69670    2.0    2863
## 91783    3.5    6534
## 75332    4.5    3275
## 20760    4.5     520
## 5725     3.0     135
## 19345    4.0     480
## 89335    4.5    5617
## 70266    2.0    2916
## 23459    3.0     590
## 18069    3.0     442
## 70946    4.0    2953
## 14501    5.0     349
## 58524    3.0    2173
## 45366    4.0    1387
## 20087    3.0     500
## 202      5.0       1
## 41949    3.5    1270
## 94677    4.0    7766
## 21259    4.0     532
## 66359    4.0    2688
## 33254    4.0    1047
## 18006    5.0     441
## 3253     5.0      47
## 45572    2.0    1391
## 1559     3.0      19
## 69304    4.0    2846
## 80431    1.0    3908
## 22777    3.0     587
## 11935    5.0     296
## 66804    3.0    2701
## 17617    3.0     434
## 88929    2.0    5459
## 24741    4.0     597
## 99368    4.0   53894
## 36420    5.0    1189
## 27123    3.0     736
## 84652    2.5    4499
## 95861    3.0    8870
## 59268    3.0    2262
## 35604    3.0    1135
## 38851    4.0    1219
## 37350    3.5    1199
## 43215    3.0    1299
## 24242    4.0     593
## 65216    4.0    2613
## 23466    5.0     590
## 28595    1.5     788
## 24164    5.0     593
## 40582    3.0    1247
## 37045    5.0    1197
## 8463     4.0     207
## 65700    2.5    2641
## 1276     4.0      16
## 33090    4.0    1037
## 32296    3.5    1013
## 31923    4.0     968
## 24533    5.0     595
## 2831     4.0      36
## 78666    2.0    3698
## 17029    4.0     410
## 17260    1.0     420
## 37299    4.0    1199
## 69899    4.0    2885
## 29587    4.0     858
## 24721    4.0     597
## 48564    2.0    1590
## 26314    2.0     707
## 47741    3.0    1552
## 91148    3.5    6323
## 50707    3.0    1704
## 80081    3.0    3861
## 41289    4.0    1262
## 9809     5.0     247
## 38324    4.5    1210
## 71597    3.5    2987
## 60890    2.0    2348
## 4148     2.0      65
## 58026    3.0    2140
## 24682    3.0     597
## 37971    4.0    1208
## 13155    5.0     318
## 81460    4.0    4002
## 99232    3.5   52281
## 92235    3.5    6678
## 91778    4.0    6534
## 86384    3.0    4902
## 31161    3.0     923
## 80946    1.5    3977
## 60190    3.0    2316
## 32491    5.0    1022
## 14987    3.5     356
## 36313    5.0    1185
## 32339    2.0    1016
## 13346    3.0     329
## 26394    4.0     708
## 57101    3.0    2094
## 72038    4.0    3006
## 70004    3.0    2891
## 54182    4.0    1962
## 31284    3.0     924
## 1488     2.0      18
## 88339    3.0    5364
## 57755    5.0    2125
## 44059    4.0    1345
## 62235    4.0    2402
## 53782    4.5    1954
## 73165    4.5    3097
## 98806    5.0   48385
## 35625    4.0    1136
## 14629    3.0     350
## 9525     4.0     235
## 69583    5.0    2858
## 68924    4.0    2804
## 82170    4.5    4034
## 52726    3.0    1897
## 71574    4.0    2987
## 3465     3.0      48
## 58353    4.0    2160
## 64095    2.0    2539
## 39853    2.0    1234
## 90897    2.5    6218
## 11016    3.0     276
## 89189    3.5    5528
## 33690    3.0    1073
## 78354    4.0    3654
## 74909    3.0    3254
## 62851    3.0    2427
## 43365    2.0    1302
## 7608     4.0     173
## 84944    3.5    4612
## 70405    4.0    2918
## 26790    2.5     733
## 30696    5.0     913
## 47446    5.0    1527
## 24523    3.0     595
## 29305    4.0     838
## 1686     3.0      21
## 77513    3.0    3536
## 83836    3.0    4310
## 78579    2.0    3686
## 19316    3.0     480
## 73033    3.0    3083
## 51038    3.0    1721
## 32889    5.0    1035
## 75897    4.0    3379
## 66818    1.0    2701
## 45053    4.0    1376
## 40952    3.0    1256
## 38033    3.5    1208
## 8975     5.0     223
## 48006    2.0    1573
## 63351    5.0    2470
## 15722    5.0     367
## 35079    1.0    1101
## 24170    4.0     593
## 65846    3.0    2657
## 92883    5.0    6890
## 43565    4.0    1307
## 62073    5.0    2396
## 13835    4.0     339
## 46330    3.0    1422
## 27646    3.0     762
## 26719    2.0     728
## 85921    4.0    4865
## 72136    5.0    3018
## 27429    5.0     750
## 46022    5.0    1405
## 76757    3.5    3471
## 9008     4.0     223
## 1621     1.0      19
## 97117    3.5   33004
## 77067    2.0    3499
## 27790    4.0     778
## 14555    5.0     350
## 21081    4.0     527
## 18025    5.0     441
## 16179    1.0     374
## 15707    3.0     367
## 46996    1.0    1488
## 19382    4.0     480
## 71603    3.0    2987
## 55911    4.0    2027
## 12650    3.0     316
## 81160    4.0    3988
## 96560    5.0   27773
## 6862     3.0     161
## 42204    2.0    1275
## 62292    3.5    2404
## 87353    3.5    5049
## 90819    3.0    6173
## 82386    3.0    4055
## 85946    3.0    4867
## 63599    1.0    2496
## 38689    5.0    1214
## 89111    4.0    5502
## 84285    3.0    4372
## 19218    4.0     475
## 92223    3.0    6668
## 55074    2.0    2002
## 45465    4.0    1387
## 14262    3.0     345
## 41666    4.5    1267
## 52900    4.0    1912
## 58620    3.0    2174
## 66003    4.0    2671
## 66663    3.0    2700
## 68683    3.5    2795
## 736      4.0       6
## 40849    4.0    1252
## 43512    5.0    1306
## 11924    4.0     296
## 78448    3.0    3671
## 29069    2.0     830
## 36912    2.0    1197
## 98888    4.0   48696
## 34355    4.0    1089
## 77608    3.5    3552
## 63755    5.0    2502
## 42712    5.0    1288
## 73739    5.0    3147
## 86720    5.0    4973
## 81821    4.0    4019
## 39881    5.0    1234
## 8435     3.0     205
## 43120    4.0    1296
## 39267    5.0    1222
## 95175    3.0    8451
## 69428    3.5    2858
## 91452    0.5    6377
## 5907     2.0     141
## 32244    4.0    1010
## 58399    3.0    2161
## 89056    3.5    5496
## 33142    3.5    1041
## 93074    1.0    6951
## 71542    4.0    2987
## 7020     2.5     163
## 98086    1.0   41569
## 37934    5.0    1208
## 62702    1.0    2421
## 56099    5.0    2028
## 6902     5.0     161
## 22588    3.0     586
## 24618    4.0     596
## 69880    2.5    2882
## 35714    5.0    1136
## 26622    4.5     720
## 27266    3.0     743
  • Order the ratings by the time at which they were reviewed.
arrange(movies, Timestamp)
##       MovieID
## 1         273
## 2          23
## 3         595
## 4         150
## 5         161
## 6         553
## 7          35
## 8           1
## 9         281
## 10        349
## 11        316
## 12        329
## 13        208
## 14        185
## 15        339
## 16        292
## 17        193
## 18        231
## 19         62
## 20        235
## 21        380
## 22        410
## 23         10
## 24         39
## 25        337
## 26         16
## 27        276
## 28        246
## 29        590
## 30        316
## 31        225
## 32        349
## 33        316
## 34        318
## 35        339
## 36         62
## 37        223
## 38        592
## 39        296
## 40        161
## 41        110
## 42        551
## 43        272
## 44        514
## 45        592
## 46        593
## 47        366
## 48        150
## 49        454
## 50        317
## 51        141
## 52        471
## 53        161
## 54        426
## 55        330
## 56        164
## 57        158
## 58         22
## 59         23
## 60        440
## 61        442
## 62        665
## 63        666
## 64        153
## 65        588
## 66         10
## 67        592
## 68        344
## 69        208
## 70        292
## 71        590
## 72        185
## 73        317
## 74         47
## 75         19
## 76        236
## 77        590
## 78        595
## 79        339
## 80         45
## 81        477
## 82        222
## 83        259
## 84        204
## 85         25
## 86         31
## 87        145
## 88        452
## 89        278
## 90        528
## 91        182
## 92        150
## 93        329
## 94        231
## 95        161
## 96        300
## 97        253
## 98         34
## 99        266
## 100       237
## 101       350
## 102       515
## 103       585
## 104       592
## 105       592
## 106       344
## 107       349
## 108       292
## 109       256
## 110        48
## 111       435
## 112       204
## 113       552
## 114        31
## 115       468
## 116       218
## 117       381
## 118       353
## 119        24
## 120       541
## 121       296
## 122       590
## 123       344
## 124       410
## 125       110
## 126       457
## 127        34
## 128       288
## 129       720
## 130       353
## 131         2
## 132       172
## 133       551
## 134       377
## 135       588
## 136       231
## 137       318
## 138       595
## 139       616
## 140       161
## 141       185
## 142       355
## 143       258
## 144        19
## 145       653
## 146       380
## 147       231
## 148       551
## 149       348
## 150       539
## 151       588
## 152       434
## 153       252
## 154       596
## 155       314
## 156       616
## 157       300
## 158       350
## 159       376
## 160       289
## 161       595
## 162       318
## 163       161
## 164       339
## 165       593
## 166       158
## 167       344
## 168       329
## 169       161
## 170       218
## 171       474
## 172       431
## 173       208
## 174         5
## 175       485
## 176       475
## 177       378
## 178       292
## 179       608
## 180        39
## 181       648
## 182       150
## 183       300
## 184       380
## 185       150
## 186       329
## 187       593
## 188       593
## 189        47
## 190       337
## 191       186
## 192       589
## 193       442
## 194       500
## 195       165
## 196       329
## 197        10
## 198       161
## 199       593
## 200       316
## 201       185
## 202       150
## 203       590
## 204       434
## 205       318
## 206       236
## 207       253
## 208       168
## 209       515
## 210       364
## 211       368
## 212       265
## 213        11
## 214       466
## 215       377
## 216       440
## 217       256
## 218       150
## 219       246
## 220        16
## 221       145
## 222       318
## 223       595
## 224       207
## 225       431
## 226       597
## 227       508
## 228       169
## 229       306
## 230       491
## 231       539
## 232       376
## 233       290
## 234       529
## 235       434
## 236       288
## 237       481
## 238       111
## 239       153
## 240       231
## 241       329
## 242       272
## 243       276
## 244       327
## 245       112
## 246       464
## 247       714
## 248       590
## 249       501
## 250        50
## 251       377
## 252       164
## 253       322
## 254       515
## 255       306
## 256       314
## 257       375
## 258       354
## 259       595
## 260       509
## 261       203
## 262       616
## 263       345
## 264       469
## 265       365
## 266       450
## 267       295
## 268       349
## 269       380
## 270       510
## 271       356
## 272       442
## 273       527
## 274       350
## 275       589
## 276       349
## 277       588
## 278       339
## 279       172
## 280       350
## 281        25
## 282       497
## 283       316
## 284       292
## 285       160
## 286       185
## 287       364
## 288       107
## 289       165
## 290       153
## 291       434
## 292       519
## 293       440
## 294       235
## 295       595
## 296       185
## 297       276
## 298       237
## 299        60
## 300       466
## 301       590
## 302       454
## 303       153
## 304       316
## 305       292
## 306       531
## 307       253
## 308         1
## 309       356
## 310       235
## 311         9
## 312       350
## 313       589
## 314        44
## 315        31
## 316       193
## 317       588
## 318       595
## 319       185
## 320       457
## 321       356
## 322       434
## 323       185
## 324       593
## 325       150
## 326       590
## 327        25
## 328       154
## 329       508
## 330       509
## 331       377
## 332        85
## 333       229
## 334        26
## 335       412
## 336       736
## 337       249
## 338       185
## 339       225
## 340       420
## 341       111
## 342       435
## 343       364
## 344       778
## 345       592
## 346       296
## 347       316
## 348       595
## 349       356
## 350       648
## 351       367
## 352       454
## 353       150
## 354        17
## 355       232
## 356         9
## 357       597
## 358        16
## 359       280
## 360        45
## 361       327
## 362       491
## 363         7
## 364       191
## 365       135
## 366        38
## 367       182
## 368       405
## 369       450
## 370       433
## 371       428
## 372       377
## 373       780
## 374       431
## 375       262
## 376       653
## 377       743
## 378       428
## 379        12
## 380        73
## 381       125
## 382       359
## 383       496
## 384       233
## 385       247
## 386       458
## 387       283
## 388       336
## 389       802
## 390        10
## 391       288
## 392       540
## 393       780
## 394       521
## 395       434
## 396       292
## 397       377
## 398       485
## 399       380
## 400       344
## 401       100
## 402        26
## 403       288
## 404       353
## 405       784
## 406       349
## 407       316
## 408       593
## 409       253
## 410       349
## 411       329
## 412       110
## 413       339
## 414       410
## 415       539
## 416       316
## 417       434
## 418       318
## 419        10
## 420       410
## 421       420
## 422        32
## 423       587
## 424       551
## 425       586
## 426        44
## 427       543
## 428       475
## 429       597
## 430       153
## 431       434
## 432       288
## 433       208
## 434       356
## 435       592
## 436       364
## 437       593
## 438       339
## 439       253
## 440       315
## 441       350
## 442       173
## 443       150
## 444       344
## 445       353
## 446       196
## 447       337
## 448       372
## 449       317
## 450       337
## 451       203
## 452       426
## 453        24
## 454       653
## 455       497
## 456       332
## 457       329
## 458       231
## 459       480
## 460       380
## 461       457
## 462       454
## 463       236
## 464       337
## 465       141
## 466       413
## 467       216
## 468       165
## 469        10
## 470       339
## 471       292
## 472       204
## 473       592
## 474       736
## 475       344
## 476       356
## 477       377
## 478       163
## 479       338
## 480       367
## 481       160
## 482       592
## 483       349
## 484       597
## 485       236
## 486       508
## 487       218
## 488       595
## 489       415
## 490       588
## 491       482
## 492       296
## 493       592
## 494       648
## 495         6
## 496       786
## 497       160
## 498       273
## 499       165
## 500       339
## 501       480
## 502       288
## 503       494
## 504         9
## 505       748
## 506       778
## 507       593
## 508       292
## 509       595
## 510       367
## 511       434
## 512       587
## 513       350
## 514        36
## 515       329
## 516       305
## 517         9
## 518       786
## 519       597
## 520       330
## 521       442
## 522       842
## 523       150
## 524       592
## 525       586
## 526       509
## 527       151
## 528       344
## 529       593
## 530       185
## 531       356
## 532       586
## 533       364
## 534        11
## 535       442
## 536        44
## 537       276
## 538       594
## 539        10
## 540       208
## 541       380
## 542       292
## 543       356
## 544       480
## 545       292
## 546       316
## 547       432
## 548       170
## 549       420
## 550       162
## 551        36
## 552       527
## 553        61
## 554        50
## 555       594
## 556        21
## 557       464
## 558        95
## 559       647
## 560       514
## 561       281
## 562       230
## 563       282
## 564       569
## 565       375
## 566        44
## 567         9
## 568        85
## 569       223
## 570       235
## 571       543
## 572       185
## 573        18
## 574      1087
## 575       509
## 576       180
## 577      1035
## 578         2
## 579       778
## 580       110
## 581       454
## 582       266
## 583       141
## 584       265
## 585       224
## 586       780
## 587       273
## 588       145
## 589       150
## 590       181
## 591       455
## 592       371
## 593       413
## 594       381
## 595       267
## 596       262
## 597       164
## 598       490
## 599       314
## 600       289
## 601       188
## 602       312
## 603       270
## 604       452
## 605       358
## 606       428
## 607       336
## 608      1033
## 609       296
## 610       150
## 611       253
## 612       589
## 613        39
## 614       150
## 615       349
## 616       356
## 617       364
## 618       153
## 619       329
## 620       316
## 621       253
## 622       292
## 623        47
## 624       597
## 625        36
## 626       435
## 627       442
## 628       508
## 629        45
## 630        52
## 631       224
## 632       471
## 633       261
## 634       585
## 635       370
## 636       355
## 637       616
## 638       318
## 639        47
## 640       586
## 641        39
## 642       592
## 643       150
## 644       153
## 645       349
## 646       161
## 647       587
## 648       153
## 649       608
## 650       592
## 651       783
## 652       586
## 653       474
## 654       317
## 655       527
## 656       480
## 657       736
## 658       589
## 659       597
## 660       839
## 661       586
## 662       165
## 663       595
## 664       265
## 665       296
## 666       367
## 667       457
## 668       110
## 669       350
## 670        10
## 671       367
## 672       597
## 673       339
## 674       500
## 675       786
## 676       480
## 677       509
## 678       141
## 679        17
## 680       256
## 681       265
## 682       158
## 683       172
## 684       296
## 685       475
## 686       329
## 687       230
## 688       318
## 689       480
## 690       589
## 691        58
## 692       371
## 693       318
## 694       364
## 695       169
## 696        19
## 697       432
## 698        11
## 699       160
## 700      1047
## 701       350
## 702       895
## 703      1004
## 704       204
## 705      1022
## 706       172
## 707       368
## 708       266
## 709       277
## 710       736
## 711      1004
## 712       595
## 713       231
## 714       161
## 715       350
## 716       300
## 717       349
## 718       337
## 719       480
## 720        32
## 721        39
## 722       435
## 723       158
## 724        44
## 725       277
## 726       145
## 727       163
## 728       227
## 729         5
## 730       122
## 731       546
## 732       169
## 733       434
## 734       454
## 735       500
## 736       255
## 737        21
## 738       780
## 739        89
## 740        42
## 741       191
## 742      1017
## 743      1016
## 744      1086
## 745       329
## 746       897
## 747       500
## 748      1136
## 749       586
## 750       420
## 751      1096
## 752      1073
## 753       224
## 754       588
## 755         3
## 756      1079
## 757      1036
## 758      1013
## 759        27
## 760       339
## 761       317
## 762       350
## 763       442
## 764       593
## 765       186
## 766       349
## 767       318
## 768       434
## 769       339
## 770       593
## 771       344
## 772       296
## 773       500
## 774       300
## 775       586
## 776       539
## 777       185
## 778        11
## 779       410
## 780       293
## 781        21
## 782        95
## 783       508
## 784       539
## 785       168
## 786       527
## 787       236
## 788      1036
## 789       158
## 790       261
## 791       780
## 792        22
## 793       380
## 794       434
## 795       356
## 796       616
## 797       374
## 798      1037
## 799      1080
## 800       338
## 801       440
## 802       548
## 803       173
## 804      1032
## 805       442
## 806       196
## 807       204
## 808       688
## 809       594
## 810       494
## 811       132
## 812       165
## 813       593
## 814       360
## 815       161
## 816        11
## 817       589
## 818        21
## 819       474
## 820       442
## 821       553
## 822       173
## 823       553
## 824       509
## 825       261
## 826       485
## 827       224
## 828       454
## 829       480
## 830         2
## 831        15
## 832       593
## 833       150
## 834       588
## 835       349
## 836       457
## 837       316
## 838       208
## 839       454
## 840       454
## 841       589
## 842       586
## 843       553
## 844       508
## 845       181
## 846       455
## 847       216
## 848       282
## 849       653
## 850      1022
## 851      1007
## 852      1008
## 853       156
## 854      1099
## 855       155
## 856       704
## 857       405
## 858       762
## 859      1019
## 860       502
## 861       231
## 862       110
## 863       480
## 864       185
## 865       288
## 866       364
## 867       329
## 868       225
## 869       208
## 870       350
## 871       173
## 872       553
## 873       204
## 874       353
## 875        44
## 876       370
## 877       227
## 878       377
## 879       257
## 880       225
## 881       494
## 882       457
## 883       356
## 884       450
## 885       454
## 886        47
## 887       445
## 888        20
## 889       587
## 890       586
## 891       590
## 892       153
## 893       593
## 894        11
## 895       231
## 896       236
## 897       186
## 898       480
## 899       339
## 900       648
## 901       405
## 902      1090
## 903      1021
## 904      1088
## 905       135
## 906         8
## 907        25
## 908       105
## 909       784
## 910       292
## 911       586
## 912        19
## 913       527
## 914       736
## 915       301
## 916       266
## 917       474
## 918       186
## 919       708
## 920      1097
## 921       541
## 922      1198
## 923      1265
## 924      1356
## 925       471
## 926       259
## 927      1357
## 928        94
## 929       694
## 930       104
## 931       737
## 932        47
## 933       527
## 934       648
## 935        36
## 936      1073
## 937      1356
## 938      1005
## 939       648
## 940        82
## 941        86
## 942       364
## 943         2
## 944       356
## 945       590
## 946       491
## 947       261
## 948       316
## 949       377
## 950       339
## 951       208
## 952      1017
## 953       173
## 954       780
## 955       778
## 956        14
## 957       515
## 958       596
## 959       551
## 960       300
## 961       153
## 962       648
## 963        25
## 964       708
## 965         7
## 966        14
## 967        25
## 968        79
## 969       637
## 970       140
## 971      1367
## 972       648
## 973       494
## 974      1047
## 975       708
## 976       608
## 977       337
## 978        52
## 979       333
## 980       661
## 981       594
## 982        76
## 983       748
## 984         1
## 985         9
## 986       135
## 987       788
## 988        66
## 989       667
## 990      1047
## 991      1049
## 992       140
## 993       838
## 994        47
## 995       198
## 996      1249
## 997       376
## 998       593
## 999        21
## 1000      551
## 1001      344
## 1002     1343
## 1003      160
## 1004     1214
## 1005     1080
## 1006      648
## 1007      252
## 1008      172
## 1009      348
## 1010      193
## 1011     1249
## 1012      593
## 1013     1269
## 1014     1127
## 1015      259
## 1016     1275
## 1017     1092
## 1018      594
## 1019     1101
## 1020     1376
## 1021     1240
## 1022      468
## 1023      497
## 1024     1188
## 1025     1200
## 1026      207
## 1027      236
## 1028      378
## 1029       95
## 1030      733
## 1031       88
## 1032      589
## 1033      345
## 1034      207
## 1035      587
## 1036      154
## 1037       35
## 1038      648
## 1039      608
## 1040      593
## 1041      585
## 1042      550
## 1043      514
## 1044       32
## 1045       25
## 1046      653
## 1047      748
## 1048      788
## 1049      357
## 1050     1304
## 1051     1259
## 1052      904
## 1053      905
## 1054     1263
## 1055      898
## 1056      914
## 1057     1271
## 1058      861
## 1059      524
## 1060     1378
## 1061     1031
## 1062      273
## 1063      315
## 1064      240
## 1065      597
## 1066       50
## 1067      454
## 1068      748
## 1069      916
## 1070      919
## 1071     1385
## 1072     1208
## 1073      805
## 1074     1210
## 1075     1291
## 1076     1033
## 1077     1088
## 1078      879
## 1079       94
## 1080     1272
## 1081      281
## 1082     1097
## 1083     1089
## 1084     1278
## 1085     1222
## 1086      587
## 1087      491
## 1088      832
## 1089     1219
## 1090      357
## 1091      527
## 1092      350
## 1093     1307
## 1094     1036
## 1095     1234
## 1096      969
## 1097     1278
## 1098     1375
## 1099     1303
## 1100     1288
## 1101     1199
## 1102      588
## 1103     1438
## 1104     1073
## 1105      708
## 1106     1393
## 1107      376
## 1108      260
## 1109      736
## 1110      761
## 1111      745
## 1112      780
## 1113      648
## 1114       36
## 1115        6
## 1116     1042
## 1117      852
## 1118     1073
## 1119       79
## 1120      494
## 1121      345
## 1122      608
## 1123      708
## 1124      198
## 1125      223
## 1126      743
## 1127       94
## 1128     1136
## 1129       88
## 1130      849
## 1131     1059
## 1132       47
## 1133       25
## 1134        6
## 1135      733
## 1136      852
## 1137       18
## 1138       95
## 1139      104
## 1140      778
## 1141       74
## 1142      748
## 1143       86
## 1144        6
## 1145      260
## 1146       65
## 1147      694
## 1148      736
## 1149      784
## 1150       76
## 1151     1367
## 1152      839
## 1153      647
## 1154      765
## 1155     1391
## 1156      608
## 1157      818
## 1158      778
## 1159      785
## 1160     1409
## 1161      829
## 1162      376
## 1163      260
## 1164      605
## 1165     1438
## 1166     1397
## 1167     1427
## 1168     1417
## 1169      494
## 1170     1409
## 1171      354
## 1172      266
## 1173     1231
## 1174      597
## 1175     1036
## 1176      102
## 1177      648
## 1178      780
## 1179        9
## 1180      647
## 1181        1
## 1182      837
## 1183      798
## 1184      809
## 1185      805
## 1186      802
## 1187        9
## 1188       11
## 1189     1101
## 1190       95
## 1191      494
## 1192      719
## 1193        6
## 1194      786
## 1195       18
## 1196      527
## 1197       47
## 1198      800
## 1199      538
## 1200       62
## 1201      648
## 1202      608
## 1203       95
## 1204      736
## 1205        7
## 1206      761
## 1207      736
## 1208        3
## 1209      260
## 1210      673
## 1211      377
## 1212      410
## 1213      736
## 1214       36
## 1215     1356
## 1216       62
## 1217      788
## 1218      653
## 1219      648
## 1220      150
## 1221      474
## 1222      912
## 1223     1210
## 1224      590
## 1225      788
## 1226      832
## 1227       61
## 1228      662
## 1229      435
## 1230       62
## 1231        7
## 1232      551
## 1233      141
## 1234     1391
## 1235      296
## 1236      280
## 1237     1079
## 1238     1225
## 1239      537
## 1240     1208
## 1241      204
## 1242      354
## 1243     1375
## 1244      316
## 1245      445
## 1246        1
## 1247     1126
## 1248       95
## 1249        1
## 1250      653
## 1251      780
## 1252      260
## 1253      805
## 1254      123
## 1255      780
## 1256      376
## 1257     1488
## 1258      671
## 1259       58
## 1260       36
## 1261     1047
## 1262      663
## 1263     1223
## 1264     1278
## 1265      838
## 1266      924
## 1267     1285
## 1268     1321
## 1269     1297
## 1270     1129
## 1271      628
## 1272     1147
## 1273        3
## 1274     1061
## 1275       88
## 1276      833
## 1277        1
## 1278     1258
## 1279     1222
## 1280      423
## 1281      186
## 1282      273
## 1283     1554
## 1284        1
## 1285     1210
## 1286      141
## 1287       26
## 1288      786
## 1289      724
## 1290      839
## 1291       58
## 1292      761
## 1293     1198
## 1294     1409
## 1295      534
## 1296     1292
## 1297     1556
## 1298      500
## 1299      543
## 1300     1396
## 1301       39
## 1302      256
## 1303      356
## 1304     1191
## 1305      593
## 1306      490
## 1307      540
## 1308      141
## 1309      858
## 1310     1233
## 1311       82
## 1312     1417
## 1313      736
## 1314      784
## 1315      102
## 1316      838
## 1317      728
## 1318      766
## 1319      999
## 1320      781
## 1321      848
## 1322     1073
## 1323       14
## 1324      852
## 1325       25
## 1326      733
## 1327       58
## 1328       47
## 1329      653
## 1330     1198
## 1331      353
## 1332      836
## 1333      145
## 1334      736
## 1335        7
## 1336      587
## 1337      110
## 1338       95
## 1339      588
## 1340      628
## 1341      837
## 1342     1409
## 1343      634
## 1344      719
## 1345      828
## 1346     1073
## 1347      104
## 1348        7
## 1349      858
## 1350       62
## 1351      786
## 1352        6
## 1353      720
## 1354      111
## 1355      318
## 1356      281
## 1357     1206
## 1358        5
## 1359        3
## 1360     1367
## 1361      671
## 1362      609
## 1363      102
## 1364      810
## 1365       64
## 1366       62
## 1367       95
## 1368       85
## 1369      593
## 1370     1183
## 1371      376
## 1372       79
## 1373      778
## 1374      724
## 1375      640
## 1376      663
## 1377      662
## 1378     1562
## 1379      135
## 1380      647
## 1381       25
## 1382       32
## 1383      786
## 1384      778
## 1385     1391
## 1386       18
## 1387      996
## 1388      648
## 1389     1356
## 1390      838
## 1391      708
## 1392      783
## 1393     1367
## 1394      631
## 1395      780
## 1396       62
## 1397      140
## 1398      830
## 1399      707
## 1400     1061
## 1401     1391
## 1402       32
## 1403        5
## 1404      786
## 1405        7
## 1406      788
## 1407      724
## 1408      785
## 1409       86
## 1410       81
## 1411     1527
## 1412     1466
## 1413      882
## 1414     1483
## 1415      736
## 1416      141
## 1417     1073
## 1418      802
## 1419       74
## 1420     1061
## 1421        3
## 1422      266
## 1423     1084
## 1424     1495
## 1425      736
## 1426      725
## 1427     1438
## 1428     1527
## 1429      356
## 1430      318
## 1431      161
## 1432      474
## 1433     1291
## 1434     1214
## 1435     1220
## 1436        5
## 1437      260
## 1438     1208
## 1439     1125
## 1440      905
## 1441      464
## 1442      928
## 1443     1073
## 1444     1210
## 1445     1500
## 1446      318
## 1447      223
## 1448      175
## 1449     1196
## 1450     1136
## 1451      373
## 1452     1197
## 1453     1193
## 1454     1240
## 1455      780
## 1456     1073
## 1457      719
## 1458      818
## 1459      562
## 1460     1233
## 1461       32
## 1462      141
## 1463      786
## 1464      778
## 1465       25
## 1466      376
## 1467      736
## 1468      647
## 1469     1393
## 1470     1405
## 1471        1
## 1472       86
## 1473      704
## 1474     1438
## 1475      653
## 1476     1391
## 1477     1225
## 1478      471
## 1479      508
## 1480      593
## 1481      339
## 1482      910
## 1483     1132
## 1484      440
## 1485      691
## 1486     1333
## 1487     1064
## 1488     1220
## 1489      861
## 1490     1036
## 1491      273
## 1492      858
## 1493      608
## 1494      633
## 1495      152
## 1496      994
## 1497      110
## 1498     1213
## 1499     1253
## 1500     1261
## 1501      356
## 1502      161
## 1503      898
## 1504     1307
## 1505     2067
## 1506      224
## 1507      339
## 1508     2335
## 1509     2302
## 1510     2302
## 1511        6
## 1512      671
## 1513      104
## 1514      590
## 1515     1396
## 1516     1569
## 1517     1541
## 1518      377
## 1519     1479
## 1520     1372
## 1521      107
## 1522     1377
## 1523     2043
## 1524     2078
## 1525      720
## 1526     2018
## 1527     1029
## 1528      357
## 1529      260
## 1530      541
## 1531     2067
## 1532     1372
## 1533     1356
## 1534     1302
## 1535     1288
## 1536     1962
## 1537     1300
## 1538     2075
## 1539     2262
## 1540     2147
## 1541     1193
## 1542     2278
## 1543     2389
## 1544     1978
## 1545      968
## 1546      330
## 1547      611
## 1548      397
## 1549     1240
## 1550     1748
## 1551     1909
## 1552        2
## 1553      442
## 1554     1037
## 1555      435
## 1556      160
## 1557      256
## 1558      733
## 1559      592
## 1560     1722
## 1561      786
## 1562        9
## 1563      107
## 1564      466
## 1565     1488
## 1566      704
## 1567     1562
## 1568     1967
## 1569       34
## 1570     1732
## 1571     1641
## 1572      587
## 1573      516
## 1574      487
## 1575      725
## 1576      216
## 1577      234
## 1578       19
## 1579      374
## 1580      518
## 1581      840
## 1582      903
## 1583     1625
## 1584     1956
## 1585     1097
## 1586     1784
## 1587      235
## 1588     1485
## 1589      551
## 1590      500
## 1591      762
## 1592      460
## 1593     2302
## 1594     1704
## 1595      147
## 1596      339
## 1597      491
## 1598      337
## 1599       94
## 1600     2318
## 1601     2353
## 1602     1265
## 1603     2108
## 1604        1
## 1605      527
## 1606     2064
## 1607      492
## 1608     2268
## 1609      356
## 1610       50
## 1611      910
## 1612     1892
## 1613     1674
## 1614      590
## 1615      948
## 1616        1
## 1617      924
## 1618      185
## 1619      780
## 1620       39
## 1621     2252
## 1622      691
## 1623     2404
## 1624      953
## 1625     1282
## 1626     1994
## 1627      735
## 1628     2081
## 1629       47
## 1630      733
## 1631      293
## 1632     1552
## 1633     1459
## 1634     1752
## 1635     1393
## 1636     1265
## 1637      380
## 1638      802
## 1639     1228
## 1640     1012
## 1641     2380
## 1642     1060
## 1643     1485
## 1644     2160
## 1645       70
## 1646     2355
## 1647     1196
## 1648     1210
## 1649        2
## 1650     1371
## 1651     2243
## 1652     2193
## 1653     2006
## 1654     1233
## 1655      150
## 1656     1221
## 1657     1287
## 1658       95
## 1659     1206
## 1660     1876
## 1661     1215
## 1662      589
## 1663     1917
## 1664      780
## 1665     1320
## 1666     1690
## 1667     2384
## 1668     2386
## 1669     2315
## 1670     2335
## 1671     1997
## 1672     1258
## 1673      368
## 1674     1690
## 1675     1992
## 1676     2377
## 1677      968
## 1678     1971
## 1679     1349
## 1680      220
## 1681     1976
## 1682     2113
## 1683      842
## 1684      332
## 1685     2384
## 1686      671
## 1687      185
## 1688     2053
## 1689     1127
## 1690     1373
## 1691     2001
## 1692     2289
## 1693        1
## 1694     1265
## 1695      440
## 1696     1500
## 1697     2252
## 1698      150
## 1699     2006
## 1700     1385
## 1701      288
## 1702     1717
## 1703     1552
## 1704     2387
## 1705     2338
## 1706     1224
## 1707      919
## 1708      944
## 1709     2268
## 1710     1287
## 1711     1963
## 1712     2247
## 1713     1923
## 1714     1940
## 1715     2116
## 1716     2050
## 1717      922
## 1718      903
## 1719     1085
## 1720     1234
## 1721     2133
## 1722     1958
## 1723     1308
## 1724     2111
## 1725     2363
## 1726      345
## 1727      141
## 1728     1086
## 1729     2273
## 1730     2078
## 1731      500
## 1732     2272
## 1733     2389
## 1734     2341
## 1735     2353
## 1736     1663
## 1737      586
## 1738     1968
## 1739      952
## 1740     5060
## 1741      348
## 1742     1259
## 1743     1077
## 1744      513
## 1745     2082
## 1746      327
## 1747     1517
## 1748     2405
## 1749     2009
## 1750     1196
## 1751     1127
## 1752     1097
## 1753      608
## 1754     2268
## 1755       50
## 1756      627
## 1757     1589
## 1758     1291
## 1759      150
## 1760     1090
## 1761     1252
## 1762     1356
## 1763       10
## 1764     2006
## 1765      861
## 1766     1958
## 1767     1265
## 1768      457
## 1769     1099
## 1770     1961
## 1771     2001
## 1772     1597
## 1773       21
## 1774     1393
## 1775     2311
## 1776      339
## 1777        2
## 1778      924
## 1779     2144
## 1780      648
## 1781     2012
## 1782      837
## 1783     1888
## 1784     1641
## 1785     1672
## 1786     1089
## 1787      173
## 1788      288
## 1789      480
## 1790     1379
## 1791       14
## 1792     1673
## 1793      477
## 1794     1279
## 1795      223
## 1796     2125
## 1797     1721
## 1798     1438
## 1799      113
## 1800     1690
## 1801     2093
## 1802     1196
## 1803      150
## 1804     1608
## 1805      858
## 1806      103
## 1807     1096
## 1808      733
## 1809     1220
## 1810     2110
## 1811     1784
## 1812     2447
## 1813     2313
## 1814     2571
## 1815     2058
## 1816     1212
## 1817     1256
## 1818     2710
## 1819     2497
## 1820     2475
## 1821     2750
## 1822     2734
## 1823     1971
## 1824     2067
## 1825       20
## 1826     2599
## 1827     2858
## 1828     2908
## 1829     2836
## 1830     2978
## 1831     2858
## 1832     2860
## 1833     2977
## 1834      593
## 1835     1213
## 1836     2805
## 1837     2829
## 1838     2774
## 1839     2884
## 1840     2716
## 1841     1307
## 1842     2762
## 1843      555
## 1844     1370
## 1845      349
## 1846      648
## 1847     2427
## 1848     2126
## 1849     2858
## 1850     1721
## 1851     2908
## 1852      257
## 1853     2875
## 1854     2832
## 1855     2999
## 1856     2723
## 1857     2657
## 1858     1374
## 1859     1356
## 1860     1635
## 1861     1028
## 1862      357
## 1863     2112
## 1864      805
## 1865     2166
## 1866      608
## 1867      356
## 1868      480
## 1869     1962
## 1870      144
## 1871      318
## 1872     1952
## 1873       36
## 1874      377
## 1875       58
## 1876      953
## 1877      923
## 1878       82
## 1879     1172
## 1880     2291
## 1881      293
## 1882      232
## 1883     1805
## 1884      353
## 1885      493
## 1886      300
## 1887     2291
## 1888      902
## 1889       10
## 1890     2138
## 1891      253
## 1892      912
## 1893      296
## 1894     1090
## 1895      356
## 1896     1131
## 1897     2881
## 1898     2858
## 1899     1197
## 1900     1220
## 1901     2571
## 1902     1089
## 1903     1358
## 1904     1641
## 1905      356
## 1906     1682
## 1907      150
## 1908      551
## 1909     1611
## 1910     1673
## 1911     2336
## 1912     2605
## 1913       86
## 1914     2328
## 1915     2723
## 1916     1513
## 1917      327
## 1918      419
## 1919     1633
## 1920     2987
## 1921     2671
## 1922     2500
## 1923     1682
## 1924     2313
## 1925     1196
## 1926     1291
## 1927     2081
## 1928     2987
## 1929     1079
## 1930     2000
## 1931     1258
## 1932     2144
## 1933     1273
## 1934     1127
## 1935      508
## 1936     2075
## 1937     3068
## 1938     1919
## 1939     1972
## 1940     2872
## 1941      805
## 1942     1747
## 1943     2858
## 1944      750
## 1945     2333
## 1946     1179
## 1947     1219
## 1948      527
## 1949      912
## 1950     1221
## 1951      969
## 1952     1283
## 1953     2613
## 1954     1012
## 1955     1019
## 1956      949
## 1957     1225
## 1958       50
## 1959     1247
## 1960      920
## 1961     1189
## 1962      858
## 1963     1380
## 1964     3040
## 1965     3024
## 1966     1965
## 1967     2529
## 1968     1200
## 1969     1210
## 1970     1077
## 1971     2640
## 1972      541
## 1973     1127
## 1974     1290
## 1975     1376
## 1976     1779
## 1977     2421
## 1978     2468
## 1979      780
## 1980     1346
## 1981     2517
## 1982     1965
## 1983     2378
## 1984     3033
## 1985     2423
## 1986     2902
## 1987     2066
## 1988     1252
## 1989     2940
## 1990      247
## 1991      492
## 1992     1625
## 1993      648
## 1994     1285
## 1995     1256
## 1996     2470
## 1997     2396
## 1998     1291
## 1999     1357
## 2000      902
## 2001      356
## 2002     2571
## 2003      150
## 2004     1358
## 2005     1537
## 2006     2692
## 2007      110
## 2008      296
## 2009     2291
## 2010     1921
## 2011     1248
## 2012       47
## 2013      307
## 2014      903
## 2015     1249
## 2016     2770
## 2017     1682
## 2018     2724
## 2019      589
## 2020     1249
## 2021      244
## 2022     1476
## 2023     1727
## 2024     1392
## 2025     3060
## 2026     1064
## 2027     1925
## 2028      194
## 2029      454
## 2030     1265
## 2031      671
## 2032     1485
## 2033      469
## 2034     1476
## 2035      724
## 2036      880
## 2037     1425
## 2038     2916
## 2039     1320
## 2040      553
## 2041      909
## 2042     2374
## 2043     1256
## 2044     2100
## 2045     2248
## 2046     2245
## 2047     2470
## 2048     2463
## 2049     2171
## 2050     2011
## 2051     2078
## 2052        3
## 2053      186
## 2054      784
## 2055      449
## 2056      437
## 2057       65
## 2058      267
## 2059     2380
## 2060     2746
## 2061     2529
## 2062     1199
## 2063     1374
## 2064     1274
## 2065     2094
## 2066      849
## 2067      442
## 2068      945
## 2069     1597
## 2070     1100
## 2071     1208
## 2072     1732
## 2073       25
## 2074     1449
## 2075     1358
## 2076     2291
## 2077      356
## 2078      235
## 2079     2268
## 2080     1784
## 2081      342
## 2082      613
## 2083     1225
## 2084     1230
## 2085     1394
## 2086     1250
## 2087     2312
## 2088      571
## 2089      678
## 2090     2146
## 2091     1956
## 2092     1247
## 2093     2071
## 2094      866
## 2095     1299
## 2096     2067
## 2097     1183
## 2098     1944
## 2099     1236
## 2100     2890
## 2101     1938
## 2102     2025
## 2103     2069
## 2104       11
## 2105     1287
## 2106       43
## 2107     1199
## 2108     1727
## 2109     1598
## 2110      356
## 2111     2396
## 2112     2474
## 2113       11
## 2114      539
## 2115     1611
## 2116      357
## 2117     1227
## 2118      766
## 2119     1513
## 2120      350
## 2121     1663
## 2122      454
## 2123      923
## 2124     2420
## 2125     2539
## 2126     1041
## 2127     1299
## 2128     1285
## 2129     1131
## 2130     1956
## 2131     1185
## 2132     2858
## 2133     1339
## 2134     2294
## 2135     1191
## 2136     1288
## 2137       58
## 2138       50
## 2139     2324
## 2140     1221
## 2141     2395
## 2142     2716
## 2143      909
## 2144     1304
## 2145     1923
## 2146     2081
## 2147     1358
## 2148      928
## 2149     1962
## 2150     2858
## 2151     1148
## 2152      205
## 2153     1797
## 2154     1732
## 2155     2987
## 2156     1307
## 2157     1235
## 2158      953
## 2159      593
## 2160     1267
## 2161     1617
## 2162     1198
## 2163      150
## 2164     1945
## 2165     2797
## 2166     1256
## 2167      968
## 2168     2455
## 2169     3019
## 2170     2952
## 2171     2616
## 2172     1562
## 2173      762
## 2174     1274
## 2175     1215
## 2176     2699
## 2177     1374
## 2178     1584
## 2179     1676
## 2180     1090
## 2181     2115
## 2182     2517
## 2183     2794
## 2184     2402
## 2185        1
## 2186     2269
## 2187     1094
## 2188     2516
## 2189     1591
## 2190     2316
## 2191     1973
## 2192      519
## 2193     1371
## 2194     1011
## 2195     1079
## 2196     2470
## 2197     2244
## 2198     2243
## 2199     1036
## 2200     2370
## 2201     2398
## 2202       21
## 2203      556
## 2204     1945
## 2205     1258
## 2206     1234
## 2207     1573
## 2208      944
## 2209      926
## 2210       39
## 2211     2628
## 2212     2001
## 2213     2064
## 2214      900
## 2215     1518
## 2216     2076
## 2217      802
## 2218      551
## 2219     2085
## 2220      230
## 2221     1962
## 2222     3037
## 2223      780
## 2224     1387
## 2225      509
## 2226      999
## 2227     2420
## 2228      373
## 2229     2716
## 2230     1210
## 2231     1234
## 2232     1693
## 2233     2433
## 2234      538
## 2235       35
## 2236     1834
## 2237      369
## 2238     1393
## 2239     1810
## 2240       21
## 2241      527
## 2242      778
## 2243     2951
## 2244     1954
## 2245     1242
## 2246     1036
## 2247     2409
## 2248      913
## 2249     1234
## 2250     2312
## 2251     5060
## 2252     2361
## 2253     2137
## 2254     2858
## 2255     1356
## 2256      380
## 2257     1091
## 2258      435
## 2259      253
## 2260      745
## 2261       39
## 2262     2797
## 2263     2329
## 2264     1246
## 2265     1060
## 2266     1693
## 2267     1288
## 2268      593
## 2269     1060
## 2270      866
## 2271      293
## 2272      249
## 2273     1617
## 2274        6
## 2275     1034
## 2276     2396
## 2277     2174
## 2278     1909
## 2279     2324
## 2280     1907
## 2281     1408
## 2282     1196
## 2283     2146
## 2284     2145
## 2285     1381
## 2286     2928
## 2287     2929
## 2288     2664
## 2289     1897
## 2290      597
## 2291     1183
## 2292     1204
## 2293     2322
## 2294     1356
## 2295     1975
## 2296     1258
## 2297     1332
## 2298      293
## 2299     1213
## 2300      532
## 2301     1068
## 2302      933
## 2303      955
## 2304     1292
## 2305     1081
## 2306     1203
## 2307     1836
## 2308      973
## 2309     2739
## 2310     2866
## 2311      535
## 2312     1961
## 2313      509
## 2314     1295
## 2315     1228
## 2316      523
## 2317      497
## 2318      940
## 2319      590
## 2320     1249
## 2321     2058
## 2322      265
## 2323       85
## 2324     2997
## 2325     2916
## 2326     1527
## 2327     2690
## 2328     2501
## 2329     2617
## 2330     2724
## 2331     3082
## 2332     2540
## 2333     1649
## 2334      902
## 2335     2019
## 2336     3087
## 2337      922
## 2338     1136
## 2339     1198
## 2340     1203
## 2341     2028
## 2342     1265
## 2343     1288
## 2344     2872
## 2345     1374
## 2346     1220
## 2347     1953
## 2348     1938
## 2349     1911
## 2350     2581
## 2351     2081
## 2352     2889
## 2353      337
## 2354     2581
## 2355     3117
## 2356     2890
## 2357     3156
## 2358     1252
## 2359     1272
## 2360      361
## 2361     1422
## 2362     3082
## 2363     1748
## 2364      316
## 2365     3017
## 2366     2683
## 2367     2288
## 2368     1958
## 2369     1334
## 2370      329
## 2371      442
## 2372      316
## 2373     1320
## 2374     2948
## 2375     2993
## 2376     3005
## 2377     1610
## 2378     3104
## 2379     2640
## 2380     2529
## 2381     2006
## 2382     1265
## 2383     2406
## 2384     2633
## 2385      593
## 2386      587
## 2387     2804
## 2388     2143
## 2389     1835
## 2390     2104
## 2391     1252
## 2392      904
## 2393      168
## 2394      858
## 2395       17
## 2396      908
## 2397     2791
## 2398     1235
## 2399     1259
## 2400      162
## 2401     2935
## 2402     1252
## 2403      858
## 2404     2692
## 2405     1212
## 2406     1635
## 2407     1275
## 2408     1196
## 2409      380
## 2410      527
## 2411      246
## 2412     1719
## 2413       44
## 2414      916
## 2415     1359
## 2416     2203
## 2417      688
## 2418     1296
## 2419      936
## 2420     2212
## 2421     1387
## 2422     1032
## 2423     2137
## 2424     2359
## 2425     2559
## 2426     2123
## 2427     1345
## 2428     1407
## 2429     1332
## 2430     1327
## 2431     2789
## 2432     2456
## 2433     2100
## 2434     2710
## 2435      908
## 2436     1270
## 2437      912
## 2438     1078
## 2439     1090
## 2440     2794
## 2441     2463
## 2442     1135
## 2443     1729
## 2444     2241
## 2445     2796
## 2446     1466
## 2447     1080
## 2448     2762
## 2449     2779
## 2450     1307
## 2451     1409
## 2452     1911
## 2453     1623
## 2454     1210
## 2455     2367
## 2456     1371
## 2457      788
## 2458      356
## 2459     2013
## 2460     1293
## 2461     1442
## 2462     2739
## 2463     1252
## 2464     2613
## 2465     1287
## 2466     3111
## 2467     1483
## 2468     1732
## 2469      760
## 2470      750
## 2471     1208
## 2472       50
## 2473     3072
## 2474     1283
## 2475     1272
## 2476     1944
## 2477     2918
## 2478     1571
## 2479     2020
## 2480     2359
## 2481     2324
## 2482     2599
## 2483     2857
## 2484     2671
## 2485     2571
## 2486      497
## 2487      594
## 2488     2013
## 2489     2701
## 2490     3114
## 2491     2243
## 2492     1617
## 2493      592
## 2494     1280
## 2495     2396
## 2496     2117
## 2497     2248
## 2498     1081
## 2499       36
## 2500     2018
## 2501     1231
## 2502     2570
## 2503     1260
## 2504     1343
## 2505     2048
## 2506      596
## 2507     1333
## 2508      551
## 2509     1393
## 2510      421
## 2511      586
## 2512     1201
## 2513     1221
## 2514      750
## 2515      293
## 2516      903
## 2517      260
## 2518     2059
## 2519     1210
## 2520     1254
## 2521     3100
## 2522     2863
## 2523     1283
## 2524     2041
## 2525     2541
## 2526     2605
## 2527     1292
## 2528     1449
## 2529     2568
## 2530     2240
## 2531     2145
## 2532     1485
## 2533     1399
## 2534     1894
## 2535      296
## 2536     1215
## 2537     1375
## 2538      759
## 2539     1228
## 2540      529
## 2541     1371
## 2542     1013
## 2543     1086
## 2544     1271
## 2545     2041
## 2546     1944
## 2547     1127
## 2548      594
## 2549     1957
## 2550     1125
## 2551     2529
## 2552     2100
## 2553     2029
## 2554     1385
## 2555     1422
## 2556     2947
## 2557     2018
## 2558     2526
## 2559     2993
## 2560       62
## 2561       73
## 2562     2640
## 2563     1350
## 2564     2365
## 2565     2283
## 2566     2000
## 2567     2990
## 2568     1968
## 2569     1573
## 2570      494
## 2571     1356
## 2572     1527
## 2573     2006
## 2574      223
## 2575     1875
## 2576     1784
## 2577     1895
## 2578      434
## 2579     1777
## 2580     2028
## 2581     1981
## 2582      481
## 2583      597
## 2584     2359
## 2585       11
## 2586      784
## 2587      858
## 2588     1299
## 2589     3101
## 2590     1193
## 2591      236
## 2592      500
## 2593     1210
## 2594     1617
## 2595     2571
## 2596     1148
## 2597     1197
## 2598     1240
## 2599     1653
## 2600     2985
## 2601      541
## 2602     1200
## 2603     2664
## 2604     2288
## 2605      500
## 2606     1921
## 2607     2648
## 2608     1971
## 2609      671
## 2610      198
## 2611      480
## 2612     1201
## 2613     1037
## 2614      233
## 2615     2533
## 2616     1590
## 2617     1591
## 2618     2377
## 2619     2622
## 2620       41
## 2621     1207
## 2622     1084
## 2623     2028
## 2624     1047
## 2625     2502
## 2626     3108
## 2627     1304
## 2628     2355
## 2629      903
## 2630      150
## 2631      235
## 2632     1234
## 2633     1269
## 2634      162
## 2635      517
## 2636     1729
## 2637      998
## 2638      350
## 2639     1601
## 2640     1968
## 2641     2000
## 2642     1073
## 2643      170
## 2644      901
## 2645     1304
## 2646      257
## 2647     1552
## 2648     1438
## 2649      464
## 2650      588
## 2651      368
## 2652     2922
## 2653       39
## 2654     2080
## 2655     1035
## 2656     2429
## 2657      802
## 2658      673
## 2659      761
## 2660      216
## 2661      363
## 2662     2470
## 2663      333
## 2664      769
## 2665     2699
## 2666     2001
## 2667     2054
## 2668     1466
## 2669     1953
## 2670     3033
## 2671     1251
## 2672     1284
## 2673     2335
## 2674     1204
## 2675     2717
## 2676      231
## 2677     2799
## 2678     2793
## 2679       19
## 2680      267
## 2681      432
## 2682     2953
## 2683     1221
## 2684     1222
## 2685     3006
## 2686     1211
## 2687      235
## 2688     2289
## 2689     1292
## 2690     1235
## 2691      476
## 2692      441
## 2693     2496
## 2694     2174
## 2695     2295
## 2696     2407
## 2697      608
## 2698     2858
## 2699     1617
## 2700     1573
## 2701     2427
## 2702     1934
## 2703       28
## 2704     1393
## 2705      593
## 2706     1124
## 2707     1211
## 2708      804
## 2709     2875
## 2710     1080
## 2711     2485
## 2712      368
## 2713     2478
## 2714     1378
## 2715      595
## 2716     2081
## 2717     2348
## 2718      199
## 2719       97
## 2720     1639
## 2721       45
## 2722     1051
## 2723     1307
## 2724     2395
## 2725     1968
## 2726      934
## 2727      357
## 2728      304
## 2729      333
## 2730      597
## 2731     2567
## 2732     1042
## 2733      236
## 2734      747
## 2735      317
## 2736     2699
## 2737     1526
## 2738       93
## 2739      765
## 2740      520
## 2741      360
## 2742       12
## 2743     1126
## 2744      325
## 2745      255
## 2746     2380
## 2747     2167
## 2748     2457
## 2749     1587
## 2750     1752
## 2751      733
## 2752      886
## 2753     1552
## 2754     1792
## 2755     2334
## 2756     2815
## 2757      809
## 2758     2126
## 2759      172
## 2760     2414
## 2761     2140
## 2762      296
## 2763     1084
## 2764      999
## 2765     2120
## 2766     1892
## 2767      160
## 2768     2915
## 2769      919
## 2770     2496
## 2771     1307
## 2772     1391
## 2773     1263
## 2774      858
## 2775     1079
## 2776      628
## 2777     1407
## 2778     1717
## 2779     2115
## 2780      527
## 2781      745
## 2782       36
## 2783     1223
## 2784     2134
## 2785     2561
## 2786     1914
## 2787     3071
## 2788     2474
## 2789      574
## 2790     2245
## 2791      455
## 2792     2917
## 2793     2384
## 2794      586
## 2795      367
## 2796     1191
## 2797      903
## 2798      506
## 2799       95
## 2800     2471
## 2801     1260
## 2802      247
## 2803      588
## 2804     1858
## 2805     2671
## 2806     2436
## 2807     3111
## 2808     3154
## 2809     3011
## 2810      457
## 2811      326
## 2812     2943
## 2813     3052
## 2814     2759
## 2815     2718
## 2816      541
## 2817     1517
## 2818      180
## 2819     1258
## 2820     2997
## 2821      176
## 2822       72
## 2823     2318
## 2824     1175
## 2825      236
## 2826      187
## 2827     1663
## 2828     1517
## 2829     1016
## 2830     2375
## 2831       70
## 2832     3045
## 2833     2072
## 2834     2088
## 2835     3130
## 2836     1028
## 2837      594
## 2838     2161
## 2839     1092
## 2840     3081
## 2841     1301
## 2842     1054
## 2843     1840
## 2844     1947
## 2845     3160
## 2846     2947
## 2847     1405
## 2848     3265
## 2849     2699
## 2850      832
## 2851     1120
## 2852      500
## 2853     2485
## 2854     2424
## 2855     1544
## 2856     1779
## 2857     1856
## 2858     2335
## 2859     2356
## 2860     2431
## 2861     2707
## 2862     3090
## 2863     2352
## 2864     1466
## 2865       62
## 2866     1442
## 2867     1726
## 2868     2348
## 2869      379
## 2870     2359
## 2871     2858
## 2872     1210
## 2873     1213
## 2874     2104
## 2875     1207
## 2876     3250
## 2877     2028
## 2878      950
## 2879     2206
## 2880      260
## 2881      318
## 2882     1732
## 2883     1610
## 2884     1299
## 2885     1952
## 2886     2628
## 2887      593
## 2888     1207
## 2889      908
## 2890       17
## 2891     1213
## 2892     3253
## 2893     1629
## 2894      441
## 2895     3114
## 2896      247
## 2897     1270
## 2898     2918
## 2899     2488
## 2900     1242
## 2901     1276
## 2902     1968
## 2903     1923
## 2904      593
## 2905       20
## 2906     2797
## 2907      595
## 2908     2987
## 2909      588
## 2910      741
## 2911      610
## 2912     4006
## 2913     1198
## 2914     1262
## 2915      349
## 2916     3168
## 2917      940
## 2918      688
## 2919     2094
## 2920      434
## 2921     1214
## 2922     1321
## 2923     1690
## 2924     1973
## 2925     2004
## 2926     1330
## 2927     2717
## 2928     1342
## 2929     2734
## 2930      912
## 2931     2726
## 2932     1207
## 2933      527
## 2934     1225
## 2935     5060
## 2936     1270
## 2937      293
## 2938      457
## 2939     2313
## 2940     1610
## 2941     1247
## 2942     2915
## 2943      440
## 2944     2268
## 2945     2353
## 2946     1193
## 2947      356
## 2948      524
## 2949     1120
## 2950      271
## 2951     2739
## 2952     2694
## 2953     2357
## 2954     1955
## 2955     1517
## 2956     2490
## 2957     1940
## 2958       50
## 2959     1208
## 2960     2087
## 2961     2114
## 2962     2700
## 2963     3020
## 2964     2272
## 2965      697
## 2966     2671
## 2967     3099
## 2968     2012
## 2969      339
## 2970     2997
## 2971     3114
## 2972     1207
## 2973     2418
## 2974     1093
## 2975      577
## 2976     1258
## 2977     1090
## 2978     1240
## 2979      377
## 2980     2863
## 2981     1089
## 2982      247
## 2983     1299
## 2984      300
## 2985     1188
## 2986      529
## 2987      608
## 2988      350
## 2989     2352
## 2990     2735
## 2991     2947
## 2992      733
## 2993      380
## 2994      112
## 2995     1608
## 2996      617
## 2997      249
## 2998     1010
## 2999     3258
## 3000     3022
## 3001     2357
## 3002      296
## 3003     1095
## 3004      318
## 3005       39
## 3006     1721
## 3007     1408
## 3008      733
## 3009       10
## 3010     1196
## 3011     1584
## 3012        1
## 3013     2364
## 3014     3156
## 3015     2137
## 3016     2046
## 3017     2140
## 3018      239
## 3019     2846
## 3020     1911
## 3021     2716
## 3022     2428
## 3023     2706
## 3024     2622
## 3025     2395
## 3026     2485
## 3027     2701
## 3028      969
## 3029      838
## 3030     1942
## 3031      904
## 3032      590
## 3033      534
## 3034     1127
## 3035     2333
## 3036     2384
## 3037      941
## 3038     2001
## 3039     2243
## 3040     1375
## 3041      426
## 3042     2657
## 3043     2363
## 3044        2
## 3045     1920
## 3046     2194
## 3047     2433
## 3048     2172
## 3049      850
## 3050     1221
## 3051      903
## 3052     1250
## 3053      260
## 3054     3060
## 3055     1272
## 3056     3089
## 3057     1446
## 3058      473
## 3059      503
## 3060     1185
## 3061     2944
## 3062     1095
## 3063     1264
## 3064      497
## 3065     1259
## 3066     1387
## 3067      724
## 3068     2338
## 3069      969
## 3070     1554
## 3071     2802
## 3072      252
## 3073     2013
## 3074     2273
## 3075     1270
## 3076     3006
## 3077     3114
## 3078     2355
## 3079     2310
## 3080      902
## 3081      832
## 3082     2671
## 3083     2683
## 3084     2622
## 3085     1288
## 3086     1136
## 3087      356
## 3088     2028
## 3089      446
## 3090      922
## 3091      260
## 3092     2390
## 3093     1017
## 3094     1665
## 3095     1393
## 3096     1252
## 3097     2622
## 3098     1414
## 3099     2710
## 3100     1958
## 3101     2917
## 3102      671
## 3103     1476
## 3104     3254
## 3105      322
## 3106     3185
## 3107     1365
## 3108     1288
## 3109      342
## 3110      217
## 3111     2067
## 3112     1333
## 3113     2762
## 3114     2396
## 3115     2774
## 3116     1200
## 3117      161
## 3118     1610
## 3119     2571
## 3120     1686
## 3121     1590
## 3122      338
## 3123      608
## 3124     1228
## 3125      388
## 3126     1230
## 3127      924
## 3128      260
## 3129     1699
## 3130      514
## 3131     1910
## 3132      589
## 3133     1225
## 3134     1095
## 3135     2087
## 3136     3178
## 3137     2599
## 3138      125
## 3139     1911
## 3140     1584
## 3141     1192
## 3142     1186
## 3143      314
## 3144     2150
## 3145     2194
## 3146     1296
## 3147     2692
## 3148     1916
## 3149     3210
## 3150      616
## 3151     2082
## 3152        1
## 3153      866
## 3154     1183
## 3155     1457
## 3156     2942
## 3157     1284
## 3158      246
## 3159      971
## 3160     3239
## 3161     2826
## 3162     2496
## 3163     1573
## 3164       16
## 3165      111
## 3166     1221
## 3167      858
## 3168      541
## 3169     1617
## 3170     1845
## 3171     2248
## 3172     1259
## 3173     3263
## 3174     2044
## 3175     1240
## 3176     3044
## 3177      377
## 3178     1841
## 3179     3252
## 3180     1201
## 3181     1347
## 3182      253
## 3183     2710
## 3184     1388
## 3185     2119
## 3186     1984
## 3187      471
## 3188     1801
## 3189      266
## 3190      780
## 3191     1266
## 3192     1222
## 3193     2402
## 3194     2268
## 3195      592
## 3196     1589
## 3197      434
## 3198     1952
## 3199     3246
## 3200     1961
## 3201     1389
## 3202     1380
## 3203     5060
## 3204     1276
## 3205      933
## 3206     1914
## 3207     3270
## 3208      223
## 3209     2599
## 3210     2712
## 3211     2333
## 3212     2580
## 3213     2710
## 3214     3270
## 3215     3253
## 3216      282
## 3217     2291
## 3218     3267
## 3219     3267
## 3220     2858
## 3221     2677
## 3222      300
## 3223     2439
## 3224     2916
## 3225      454
## 3226     2987
## 3227     1220
## 3228     2565
## 3229     2985
## 3230     2542
## 3231      555
## 3232     1459
## 3233     2858
## 3234      232
## 3235     1916
## 3236      414
## 3237      922
## 3238     1240
## 3239      832
## 3240      736
## 3241     1533
## 3242     2324
## 3243      356
## 3244     1883
## 3245     1184
## 3246     2718
## 3247      431
## 3248     3317
## 3249     1252
## 3250     1276
## 3251     1278
## 3252     2791
## 3253     2985
## 3254     2970
## 3255      952
## 3256      107
## 3257     2000
## 3258     1348
## 3259     1333
## 3260     2781
## 3261      588
## 3262     1288
## 3263     1298
## 3264     2919
## 3265     1209
## 3266     3093
## 3267     1008
## 3268     1217
## 3269     1272
## 3270     2402
## 3271     3265
## 3272     1200
## 3273      380
## 3274      292
## 3275      610
## 3276      552
## 3277     1391
## 3278     2094
## 3279     3439
## 3280     1431
## 3281     3273
## 3282     3452
## 3283     2966
## 3284     2613
## 3285     2005
## 3286       70
## 3287      165
## 3288     2971
## 3289      467
## 3290     1407
## 3291     3273
## 3292     3441
## 3293       48
## 3294     3545
## 3295     2671
## 3296     3418
## 3297     3405
## 3298     3550
## 3299     3471
## 3300     3361
## 3301      986
## 3302     1203
## 3303      909
## 3304      235
## 3305     2593
## 3306     1917
## 3307     2885
## 3308     3148
## 3309     3006
## 3310     3354
## 3311     1173
## 3312     2094
## 3313     3006
## 3314     1127
## 3315     3476
## 3316      412
## 3317     3252
## 3318     1401
## 3319     1190
## 3320     3243
## 3321       78
## 3322     3361
## 3323     3360
## 3324     3505
## 3325     3196
## 3326     2805
## 3327     3544
## 3328     3408
## 3329     1252
## 3330     1188
## 3331      858
## 3332     3424
## 3333     1196
## 3334      919
## 3335     3052
## 3336     1250
## 3337      969
## 3338     3210
## 3339     2067
## 3340      428
## 3341      908
## 3342     3479
## 3343     3543
## 3344     1994
## 3345      229
## 3346       62
## 3347      515
## 3348     3246
## 3349      141
## 3350     1747
## 3351     2353
## 3352      223
## 3353     2605
## 3354     2428
## 3355     2763
## 3356     1147
## 3357     1954
## 3358     2278
## 3359     3404
## 3360     1370
## 3361     2985
## 3362     1917
## 3363     1667
## 3364       47
## 3365     3504
## 3366     2318
## 3367     2690
## 3368     3671
## 3369     1784
## 3370     3735
## 3371     1952
## 3372     1293
## 3373     1208
## 3374     2852
## 3375     1183
## 3376      922
## 3377     1080
## 3378      914
## 3379     1641
## 3380      953
## 3381     3703
## 3382     1127
## 3383     1129
## 3384     2021
## 3385     1584
## 3386     2105
## 3387     2641
## 3388     2701
## 3389     1264
## 3390      373
## 3391     1263
## 3392     2694
## 3393     2997
## 3394     2718
## 3395     2396
## 3396     3176
## 3397     2763
## 3398     3114
## 3399      785
## 3400     1912
## 3401     2529
## 3402      377
## 3403     2363
## 3404     2353
## 3405      555
## 3406     1408
## 3407     1429
## 3408     1275
## 3409      748
## 3410     2628
## 3411     1876
## 3412      329
## 3413      466
## 3414     1918
## 3415     1378
## 3416     1597
## 3417      736
## 3418     2808
## 3419     2409
## 3420     2968
## 3421     2402
## 3422     1379
## 3423      423
## 3424     1089
## 3425      511
## 3426      168
## 3427     1831
## 3428      750
## 3429      839
## 3430     2421
## 3431     2253
## 3432      692
## 3433      405
## 3434     3268
## 3435     1259
## 3436     2580
## 3437      952
## 3438     2871
## 3439      367
## 3440     1015
## 3441     2598
## 3442     2054
## 3443        2
## 3444     1031
## 3445     3698
## 3446      674
## 3447     2642
## 3448     3489
## 3449      608
## 3450      720
## 3451     1025
## 3452     2890
## 3453      709
## 3454      919
## 3455     3535
## 3456     1012
## 3457     2140
## 3458     2846
## 3459     3593
## 3460     2083
## 3461     1127
## 3462     2709
## 3463      246
## 3464     2542
## 3465     1213
## 3466      589
## 3467     2563
## 3468     2355
## 3469     2321
## 3470     1748
## 3471      720
## 3472     1411
## 3473      527
## 3474       94
## 3475      529
## 3476     2571
## 3477     2125
## 3478      780
## 3479      151
## 3480     1517
## 3481      198
## 3482     2291
## 3483     1429
## 3484     1682
## 3485     3476
## 3486     1641
## 3487     3361
## 3488      553
## 3489     1059
## 3490     2064
## 3491     2318
## 3492      708
## 3493     1265
## 3494     1049
## 3495     3249
## 3496     1385
## 3497     1516
## 3498      440
## 3499     1690
## 3500     2694
## 3501     3608
## 3502      329
## 3503     1735
## 3504     1676
## 3505     1888
## 3506     2657
## 3507     2589
## 3508     1586
## 3509     3261
## 3510     1772
## 3511     2505
## 3512       74
## 3513     1821
## 3514      441
## 3515     2567
## 3516     2558
## 3517     3663
## 3518      172
## 3519      516
## 3520     1816
## 3521      520
## 3522      663
## 3523      542
## 3524     2796
## 3525     3385
## 3526     1863
## 3527      626
## 3528     1191
## 3529     1952
## 3530      800
## 3531     1960
## 3532     2020
## 3533     2348
## 3534     1185
## 3535     2076
## 3536     1120
## 3537     1897
## 3538     2125
## 3539     1721
## 3540     3451
## 3541     1183
## 3542      261
## 3543     1401
## 3544     1286
## 3545     2112
## 3546     1416
## 3547     2017
## 3548      541
## 3549     2118
## 3550     1994
## 3551     1974
## 3552     1985
## 3553     1996
## 3554     1980
## 3555     3358
## 3556     1301
## 3557     3249
## 3558     3742
## 3559     1721
## 3560     1959
## 3561      919
## 3562     1193
## 3563      858
## 3564     1246
## 3565     1012
## 3566     1196
## 3567     2422
## 3568      339
## 3569      587
## 3570      986
## 3571     3673
## 3572     1806
## 3573     2077
## 3574     2081
## 3575      837
## 3576     2089
## 3577     3399
## 3578      661
## 3579     3418
## 3580     3671
## 3581     3713
## 3582      608
## 3583     2542
## 3584     2329
## 3585      293
## 3586     2058
## 3587      303
## 3588     2959
## 3589     2028
## 3590     1573
## 3591     1427
## 3592     3623
## 3593      165
## 3594     2571
## 3595      480
## 3596     3256
## 3597     1580
## 3598     1370
## 3599     2427
## 3600       95
## 3601      204
## 3602      688
## 3603     2541
## 3604     2581
## 3605     2598
## 3606     2961
## 3607     2505
## 3608      409
## 3609     3203
## 3610     2396
## 3611     3494
## 3612     1374
## 3613     3406
## 3614     2115
## 3615     2161
## 3616     1923
## 3617      898
## 3618     1136
## 3619     3469
## 3620     3362
## 3621     3108
## 3622     2791
## 3623     3037
## 3624     3723
## 3625     1049
## 3626     2770
## 3627     3108
## 3628     1909
## 3629     2641
## 3630     2672
## 3631     1917
## 3632     2278
## 3633     2112
## 3634     2231
## 3635      383
## 3636      170
## 3637      153
## 3638     2094
## 3639     2429
## 3640     1894
## 3641     2137
## 3642      318
## 3643      593
## 3644     3097
## 3645      947
## 3646     3471
## 3647     1247
## 3648     1270
## 3649     5060
## 3650      235
## 3651      589
## 3652     1097
## 3653      915
## 3654     1028
## 3655     2390
## 3656      588
## 3657     1271
## 3658     3076
## 3659     1517
## 3660     1835
## 3661     2150
## 3662      838
## 3663     1721
## 3664     3296
## 3665     3253
## 3666     3386
## 3667     3682
## 3668     3676
## 3669     3684
## 3670     3706
## 3671     1016
## 3672     2751
## 3673     3040
## 3674     2794
## 3675      456
## 3676     2121
## 3677     1973
## 3678      489
## 3679     3578
## 3680     3512
## 3681     2916
## 3682     1372
## 3683     2019
## 3684      457
## 3685     2949
## 3686     2366
## 3687     1201
## 3688     1374
## 3689     1127
## 3690     2993
## 3691     2427
## 3692      748
## 3693     2628
## 3694     2344
## 3695     2376
## 3696     2699
## 3697     2540
## 3698     3113
## 3699     1073
## 3700     1275
## 3701      707
## 3702     2712
## 3703     3468
## 3704     1094
## 3705      497
## 3706     1704
## 3707      308
## 3708     1357
## 3709      357
## 3710      261
## 3711     2434
## 3712     1725
## 3713      372
## 3714     1172
## 3715     1259
## 3716       34
## 3717     1958
## 3718     1948
## 3719     2671
## 3720     1231
## 3721     1962
## 3722     3098
## 3723     3402
## 3724     2290
## 3725     2710
## 3726     2683
## 3727     2712
## 3728     2762
## 3729     2712
## 3730        5
## 3731     1611
## 3732      306
## 3733     3671
## 3734     3000
## 3735      474
## 3736      759
## 3737      349
## 3738     1127
## 3739      198
## 3740     1370
## 3741     1372
## 3742      648
## 3743     1378
## 3744     2617
## 3745      292
## 3746     1917
## 3747     1037
## 3748     1379
## 3749      168
## 3750     1831
## 3751       34
## 3752     1960
## 3753     2701
## 3754     3418
## 3755     1096
## 3756     2289
## 3757     1270
## 3758       82
## 3759     3361
## 3760     2542
## 3761     1265
## 3762     2759
## 3763     1817
## 3764      441
## 3765     2302
## 3766     1701
## 3767     3712
## 3768     2081
## 3769     2124
## 3770     3255
## 3771     1454
## 3772      252
## 3773      539
## 3774     2506
## 3775     2245
## 3776     3450
## 3777     1541
## 3778     2134
## 3779     1894
## 3780     1918
## 3781      924
## 3782     1957
## 3783     1393
## 3784     1959
## 3785     1136
## 3786     2973
## 3787     2797
## 3788     3076
## 3789     3404
## 3790      260
## 3791     2917
## 3792     2291
## 3793     6918
## 3794     2009
## 3795     1727
## 3796      161
## 3797      356
## 3798      745
## 3799     3095
## 3800     1178
## 3801      608
## 3802     1247
## 3803     2132
## 3804      150
## 3805     2288
## 3806     2747
## 3807      111
## 3808     2395
## 3809      340
## 3810     3623
## 3811     3408
## 3812     3052
## 3813     2997
## 3814     2433
## 3815     3745
## 3816      509
## 3817      235
## 3818     3100
## 3819     3712
## 3820     3249
## 3821     1475
## 3822     2912
## 3823     3101
## 3824     1198
## 3825     2972
## 3826     2791
## 3827      307
## 3828     3418
## 3829     2348
## 3830     1962
## 3831     1305
## 3832      497
## 3833     3422
## 3834     1997
## 3835     3552
## 3836     2991
## 3837      141
## 3838     1101
## 3839     2529
## 3840     1974
## 3841      174
## 3842     3793
## 3843     2706
## 3844     2683
## 3845     2694
## 3846     3615
## 3847     3578
## 3848     2606
## 3849     2502
## 3850     3623
## 3851     3755
## 3852     3729
## 3853     3097
## 3854     2599
## 3855     3760
## 3856     1799
## 3857       42
## 3858     3844
## 3859      246
## 3860     2997
## 3861     2699
## 3862     2976
## 3863     1127
## 3864     1093
## 3865     2713
## 3866     2395
## 3867     2907
## 3868     2504
## 3869     2706
## 3870      950
## 3871     3334
## 3872     3272
## 3873      246
## 3874     3794
## 3875     3022
## 3876     3307
## 3877     2278
## 3878     1217
## 3879      908
## 3880      599
## 3881     2565
## 3882     2797
## 3883     2439
## 3884     3911
## 3885     1230
## 3886     3857
## 3887      589
## 3888     1597
## 3889     1912
## 3890     2993
## 3891     3793
## 3892     2716
## 3893     2581
## 3894      704
## 3895       50
## 3896        2
## 3897     2723
## 3898     2153
## 3899     1299
## 3900     2987
## 3901     2243
## 3902     1096
## 3903     3148
## 3904     3510
## 3905     3481
## 3906     1682
## 3907     1210
## 3908     1580
## 3909     3450
## 3910     1805
## 3911     3069
## 3912     1203
## 3913       21
## 3914     2152
## 3915     2470
## 3916     1135
## 3917     3179
## 3918     1270
## 3919     2407
## 3920     2533
## 3921      608
## 3922      924
## 3923     1676
## 3924     2791
## 3925      858
## 3926     1291
## 3927     2947
## 3928     1947
## 3929     1438
## 3930      912
## 3931      908
## 3932     2759
## 3933      377
## 3934     2997
## 3935     1185
## 3936     2943
## 3937     1569
## 3938     1597
## 3939      635
## 3940     2997
## 3941     3477
## 3942     1517
## 3943      471
## 3944     2770
## 3945     2976
## 3946     3148
## 3947     2311
## 3948     2716
## 3949     2028
## 3950     1387
## 3951     1693
## 3952     1327
## 3953      785
## 3954     1395
## 3955     2090
## 3956     2291
## 3957     3925
## 3958     1954
## 3959     1965
## 3960     3174
## 3961     2686
## 3962     2395
## 3963      380
## 3964     3521
## 3965     2273
## 3966     1305
## 3967     1301
## 3968     3591
## 3969     1597
## 3970     1210
## 3971     1586
## 3972      924
## 3973     3926
## 3974     1214
## 3975     2826
## 3976       34
## 3977      316
## 3978     1610
## 3979     2028
## 3980      541
## 3981     2692
## 3982     1918
## 3983     2021
## 3984     2054
## 3985     1408
## 3986      377
## 3987     1373
## 3988     2364
## 3989      780
## 3990     1617
## 3991       32
## 3992      292
## 3993      480
## 3994       76
## 3995      165
## 3996     1049
## 3997     1307
## 3998     2393
## 3999     1320
## 4000      332
## 4001     2808
## 4002     1917
## 4003     1385
## 4004      527
## 4005     2053
## 4006      260
## 4007      527
## 4008     3030
## 4009     2915
## 4010      923
## 4011     3826
## 4012     2746
## 4013     3686
## 4014     1953
## 4015     2524
## 4016     2028
## 4017     1242
## 4018     1961
## 4019     3104
## 4020     2923
## 4021      500
## 4022     1196
## 4023     1387
## 4024     1210
## 4025     1713
## 4026     2000
## 4027     3793
## 4028     2468
## 4029      329
## 4030       21
## 4031      474
## 4032     2054
## 4033     1049
## 4034      587
## 4035      172
## 4036      349
## 4037      173
## 4038     2986
## 4039      546
## 4040      434
## 4041      251
## 4042      315
## 4043     1626
## 4044     3316
## 4045     2098
## 4046     1013
## 4047     2953
## 4048     1262
## 4049     2470
## 4050     2300
## 4051     3812
## 4052     3501
## 4053     2518
## 4054     3190
## 4055     3715
## 4056     3467
## 4057      235
## 4058      708
## 4059     3471
## 4060      500
## 4061      537
## 4062     3146
## 4063     2027
## 4064     2195
## 4065     3427
## 4066     1213
## 4067      608
## 4068      296
## 4069     1589
## 4070     1061
## 4071     1645
## 4072     1647
## 4073     1799
## 4074     2398
## 4075     3194
## 4076     1272
## 4077     1962
## 4078     1834
## 4079     3006
## 4080     3147
## 4081      265
## 4082      647
## 4083     1271
## 4084       57
## 4085      350
## 4086     1027
## 4087     1483
## 4088      292
## 4089     3969
## 4090      608
## 4091     1028
## 4092      590
## 4093     2478
## 4094     1271
## 4095     1370
## 4096     3578
## 4097     1617
## 4098     1089
## 4099      800
## 4100     2716
## 4101     2455
## 4102     1584
## 4103     1376
## 4104     3699
## 4105     2640
## 4106     1242
## 4107     1287
## 4108     1953
## 4109     1370
## 4110      377
## 4111     3816
## 4112     2352
## 4113     3006
## 4114     2966
## 4115      508
## 4116     3071
## 4117      919
## 4118     3471
## 4119     1206
## 4120     2968
## 4121     1262
## 4122     1673
## 4123     2671
## 4124     2580
## 4125     1396
## 4126     2781
## 4127     2121
## 4128     3932
## 4129     1339
## 4130      879
## 4131      903
## 4132     3386
## 4133     1422
## 4134     2065
## 4135     3634
## 4136     3362
## 4137      260
## 4138     2797
## 4139     2005
## 4140      788
## 4141     1242
## 4142     1200
## 4143      161
## 4144      356
## 4145     3977
## 4146     3728
## 4147     1885
## 4148     2391
## 4149     1358
## 4150     2193
## 4151     1370
## 4152     3107
## 4153     1586
## 4154     2990
## 4155     3441
## 4156     2253
## 4157     2411
## 4158      172
## 4159      839
## 4160     3081
## 4161      253
## 4162      273
## 4163     2077
## 4164     3994
## 4165     2539
## 4166     3175
## 4167     1047
## 4168       10
## 4169      474
## 4170     1552
## 4171     3948
## 4172     3090
## 4173     2470
## 4174      111
## 4175     1954
## 4176     3015
## 4177     3546
## 4178      912
## 4179      428
## 4180     1404
## 4181      379
## 4182     2463
## 4183     3481
## 4184     3897
## 4185     2396
## 4186     1722
## 4187     1196
## 4188      318
## 4189     2858
## 4190     1573
## 4191     3793
## 4192     4005
## 4193     2355
## 4194     2987
## 4195     2334
## 4196     2718
## 4197     1363
## 4198      728
## 4199     4022
## 4200     3972
## 4201     1210
## 4202     1376
## 4203      171
## 4204     4022
## 4205     3409
## 4206     3618
## 4207     2918
## 4208     1129
## 4209      858
## 4210     1223
## 4211     2333
## 4212     1358
## 4213     3868
## 4214      247
## 4215     1245
## 4216     3536
## 4217     2137
## 4218     1721
## 4219     3916
## 4220     3719
## 4221     3618
## 4222     4014
## 4223     4054
## 4224     3593
## 4225      541
## 4226     3825
## 4227     4062
## 4228     4095
## 4229     2194
## 4230      111
## 4231      608
## 4232     3424
## 4233      898
## 4234     1947
## 4235      899
## 4236     3046
## 4237     1944
## 4238     3967
## 4239     1393
## 4240     3259
## 4241     2393
## 4242     4041
## 4243     4027
## 4244     3719
## 4245     1953
## 4246     1219
## 4247      497
## 4248       21
## 4249     3908
## 4250     3703
## 4251     3730
## 4252     4041
## 4253     1225
## 4254     1217
## 4255     1238
## 4256     1259
## 4257     2917
## 4258     2065
## 4259     3699
## 4260     1289
## 4261     3524
## 4262     1135
## 4263        1
## 4264     3175
## 4265      480
## 4266     2174
## 4267     1288
## 4268       34
## 4269     3526
## 4270      587
## 4271     2028
## 4272     4148
## 4273     1441
## 4274      356
## 4275     4113
## 4276      736
## 4277     2558
## 4278     1361
## 4279      877
## 4280     3022
## 4281     3730
## 4282     3134
## 4283      608
## 4284     1189
## 4285     4970
## 4286     2859
## 4287      235
## 4288     2395
## 4289     1244
## 4290     1188
## 4291      915
## 4292     3751
## 4293     1871
## 4294     2318
## 4295      101
## 4296     4027
## 4297     2926
## 4298     3089
## 4299      318
## 4300     1231
## 4301     3421
## 4302     1258
## 4303     4104
## 4304     3004
## 4305     3786
## 4306     3751
## 4307     2959
## 4308      785
## 4309     2713
## 4310     1513
## 4311     3617
## 4312     2702
## 4313       36
## 4314       47
## 4315     3253
## 4316      300
## 4317     2125
## 4318      480
## 4319       11
## 4320     3466
## 4321     3256
## 4322      266
## 4323     3263
## 4324      329
## 4325      252
## 4326     2334
## 4327     1603
## 4328      788
## 4329      786
## 4330      837
## 4331     1399
## 4332     1752
## 4333     2082
## 4334     3507
## 4335     2799
## 4336     4015
## 4337     4027
## 4338      480
## 4339     3863
## 4340     2993
## 4341     2023
## 4342     1378
## 4343     3082
## 4344     3020
## 4345     2987
## 4346     1097
## 4347     1961
## 4348     1287
## 4349     1967
## 4350     2161
## 4351      592
## 4352     2640
## 4353     1375
## 4354      208
## 4355     2324
## 4356     1175
## 4357      587
## 4358      450
## 4359     2416
## 4360     3744
## 4361     2908
## 4362      111
## 4363     3107
## 4364     1104
## 4365      260
## 4366      593
## 4367      858
## 4368     4085
## 4369     1912
## 4370     3504
## 4371     1247
## 4372     1231
## 4373     1213
## 4374      247
## 4375     2248
## 4376     3735
## 4377     1096
## 4378     3267
## 4379     2023
## 4380     1372
## 4381     2640
## 4382       89
## 4383     1552
## 4384     3986
## 4385     3430
## 4386     1371
## 4387     1262
## 4388     3699
## 4389     2987
## 4390     3755
## 4391     2470
## 4392      653
## 4393     1307
## 4394     3481
## 4395      838
## 4396     2144
## 4397     3556
## 4398     1304
## 4399     1278
## 4400     1958
## 4401     1307
## 4402      235
## 4403     3812
## 4404      260
## 4405      919
## 4406      858
## 4407     3405
## 4408     2571
## 4409     1287
## 4410     1277
## 4411     1376
## 4412     2406
## 4413      780
## 4414     2409
## 4415     1552
## 4416     2422
## 4417     2968
## 4418     2455
## 4419     2396
## 4420     2599
## 4421      947
## 4422     1244
## 4423     1172
## 4424     3481
## 4425     2243
## 4426      348
## 4427     2321
## 4428     2108
## 4429     3253
## 4430     2842
## 4431      968
## 4432      923
## 4433     1250
## 4434      154
## 4435     1203
## 4436      778
## 4437     2732
## 4438     2398
## 4439      431
## 4440      535
## 4441       97
## 4442     3534
## 4443     4018
## 4444     2997
## 4445     3743
## 4446      318
## 4447     4061
## 4448     1197
## 4449     1259
## 4450     3418
## 4451     3083
## 4452     1285
## 4453     1234
## 4454     1111
## 4455     3793
## 4456     1635
## 4457     2912
## 4458     1732
## 4459     2712
## 4460     2006
## 4461      114
## 4462     3578
## 4463     1721
## 4464     1290
## 4465     1184
## 4466     1221
## 4467     1219
## 4468     1213
## 4469     5060
## 4470     1950
## 4471     1446
## 4472     1136
## 4473     1912
## 4474     1960
## 4475     3181
## 4476      919
## 4477     1466
## 4478     1961
## 4479     1387
## 4480     2194
## 4481     2890
## 4482     1258
## 4483     1220
## 4484     2000
## 4485      910
## 4486     2993
## 4487      235
## 4488     3977
## 4489     1617
## 4490     1645
## 4491     1304
## 4492     3360
## 4493     3421
## 4494     2918
## 4495     1231
## 4496     2916
## 4497     1357
## 4498     2139
## 4499     1186
## 4500     3578
## 4501       39
## 4502     1694
## 4503      965
## 4504     2173
## 4505      555
## 4506     1639
## 4507     2987
## 4508     1897
## 4509     1343
## 4510     2108
## 4511     1594
## 4512       14
## 4513     3979
## 4514     3751
## 4515     3578
## 4516     4040
## 4517     3861
## 4518      240
## 4519      595
## 4520     2354
## 4521     1394
## 4522     3424
## 4523     4116
## 4524     2739
## 4525     4135
## 4526     3740
## 4527     3917
## 4528     3499
## 4529     2279
## 4530      879
## 4531     2606
## 4532     2026
## 4533     2338
## 4534     3956
## 4535     2455
## 4536     3837
## 4537     2787
## 4538     1970
## 4539     1977
## 4540     3005
## 4541      454
## 4542     2505
## 4543     2446
## 4544     1968
## 4545     2858
## 4546     2710
## 4547      223
## 4548      105
## 4549     2236
## 4550     1660
## 4551     2700
## 4552     2987
## 4553     4103
## 4554     4095
## 4555     2154
## 4556      858
## 4557      923
## 4558      544
## 4559      160
## 4560     1513
## 4561     2770
## 4562     3263
## 4563     3247
## 4564     3556
## 4565      123
## 4566     2324
## 4567      608
## 4568      111
## 4569     1196
## 4570     4103
## 4571     2997
## 4572      223
## 4573     3019
## 4574     1225
## 4575     1834
## 4576     4080
## 4577     2966
## 4578     2762
## 4579     2291
## 4580      176
## 4581     1392
## 4582      347
## 4583     1729
## 4584       45
## 4585     1676
## 4586     2112
## 4587     1625
## 4588      233
## 4589     1356
## 4590      358
## 4591     2160
## 4592     1985
## 4593     1982
## 4594     2113
## 4595     1999
## 4596        2
## 4597      449
## 4598       23
## 4599     1079
## 4600      909
## 4601     2725
## 4602     3608
## 4603     2640
## 4604     2628
## 4605     1573
## 4606     1810
## 4607     2528
## 4608      968
## 4609     2706
## 4610     2231
## 4611      164
## 4612     1701
## 4613     2539
## 4614     2433
## 4615      861
## 4616     3770
## 4617     2141
## 4618      515
## 4619      750
## 4620      923
## 4621     2111
## 4622     1370
## 4623     2912
## 4624     2314
## 4625     1689
## 4626      597
## 4627     3988
## 4628     1717
## 4629     2891
## 4630     1031
## 4631     2405
## 4632     2416
## 4633     1320
## 4634     2387
## 4635     1342
## 4636     1380
## 4637     1011
## 4638     2789
## 4639     3438
## 4640     2900
## 4641     1037
## 4642     2815
## 4643     3826
## 4644     2169
## 4645     3773
## 4646     3697
## 4647      673
## 4648     2322
## 4649     2162
## 4650      880
## 4651     1977
## 4652     2461
## 4653     2953
## 4654     2153
## 4655     3435
## 4656     1248
## 4657     1653
## 4658     2485
## 4659     1961
## 4660     1213
## 4661     2333
## 4662     3044
## 4663      555
## 4664     1196
## 4665     1387
## 4666     2395
## 4667     3751
## 4668     1187
## 4669     4132
## 4670     4066
## 4671     4047
## 4672     1610
## 4673     1391
## 4674     3034
## 4675     2139
## 4676     2096
## 4677     1566
## 4678     2142
## 4679     2048
## 4680     3759
## 4681     2348
## 4682      164
## 4683      230
## 4684     3355
## 4685      225
## 4686     2713
## 4687     1644
## 4688       79
## 4689     1556
## 4690     1310
## 4691     1307
## 4692     2078
## 4693     3477
## 4694     1441
## 4695      222
## 4696     3253
## 4697     3526
## 4698     1270
## 4699     1912
## 4700     1304
## 4701     1262
## 4702     2882
## 4703     2789
## 4704     2263
## 4705     1283
## 4706      151
## 4707     1754
## 4708      548
## 4709     1918
## 4710     2367
## 4711     2688
## 4712     3895
## 4713     2902
## 4714     1247
## 4715     1784
## 4716     4215
## 4717     4205
## 4718     4036
## 4719     3893
## 4720     3354
## 4721     3968
## 4722     1441
## 4723     4210
## 4724     4223
## 4725      282
## 4726     3581
## 4727     4239
## 4728     3271
## 4729     2262
## 4730     3953
## 4731     3966
## 4732     4265
## 4733     4297
## 4734     1586
## 4735      509
## 4736     2627
## 4737     3948
## 4738     4034
## 4739     3993
## 4740     3598
## 4741     3981
## 4742     4249
## 4743     2826
## 4744     2683
## 4745     2959
## 4746     1513
## 4747     4351
## 4748     4306
## 4749     4234
## 4750     1266
## 4751     2858
## 4752     2699
## 4753     2908
## 4754     2605
## 4755     2761
## 4756     2701
## 4757     4090
## 4758      783
## 4759     2141
## 4760     1920
## 4761     1270
## 4762     3852
## 4763     1963
## 4764      380
## 4765     3639
## 4766     1200
## 4767     2993
## 4768     1220
## 4769     1370
## 4770     2193
## 4771     2528
## 4772     2334
## 4773     1608
## 4774     1918
## 4775      434
## 4776     2410
## 4777     2411
## 4778        9
## 4779     2642
## 4780     1206
## 4781     1921
## 4782     2657
## 4783     1603
## 4784       24
## 4785     1391
## 4786     3421
## 4787     3785
## 4788     1991
## 4789     1644
## 4790      891
## 4791     1981
## 4792      508
## 4793      608
## 4794     4205
## 4795     2918
## 4796     1079
## 4797     3396
## 4798     1276
## 4799      799
## 4800     2779
## 4801     3317
## 4802     3114
## 4803     4308
## 4804     4022
## 4805     3363
## 4806     3521
## 4807     1273
## 4808     2312
## 4809        1
## 4810     4618
## 4811     4571
## 4812     4543
## 4813     4370
## 4814     1393
## 4815     4011
## 4816     4386
## 4817     4369
## 4818     3108
## 4819     1500
## 4820     3827
## 4821     3983
## 4822     1952
## 4823     4446
## 4824     3968
## 4825     4658
## 4826     3247
## 4827     3852
## 4828     2329
## 4829     2912
## 4830      947
## 4831     2640
## 4832      425
## 4833      350
## 4834     1610
## 4835     1620
## 4836     4126
## 4837     4214
## 4838     2288
## 4839     1081
## 4840     4020
## 4841     4643
## 4842     4055
## 4843     3702
## 4844     1748
## 4845      589
## 4846     4544
## 4847      903
## 4848     2366
## 4849     2944
## 4850     2872
## 4851     1101
## 4852     3176
## 4853     2885
## 4854     1655
## 4855     1397
## 4856     4359
## 4857     2289
## 4858     1912
## 4859     1673
## 4860     2885
## 4861     1171
## 4862       39
## 4863     2100
## 4864      514
## 4865      357
## 4866     4447
## 4867     3253
## 4868     2116
## 4869     3998
## 4870     3790
## 4871     4361
## 4872      318
## 4873     2686
## 4874      235
## 4875      866
## 4876     1991
## 4877      337
## 4878     3421
## 4879     2924
## 4880     1136
## 4881     1197
## 4882     1704
## 4883      296
## 4884     3916
## 4885     3911
## 4886     1821
## 4887     4446
## 4888     1196
## 4889     1214
## 4890     1129
## 4891      480
## 4892     1876
## 4893      442
## 4894      435
## 4895     2693
## 4896      164
## 4897     1597
## 4898     1927
## 4899     2858
## 4900     4190
## 4901     2959
## 4902      597
## 4903     1073
## 4904     2028
## 4905     4292
## 4906     1327
## 4907     3301
## 4908     3998
## 4909      105
## 4910      457
## 4911     2826
## 4912     2858
## 4913     2694
## 4914     2976
## 4915     3409
## 4916     3507
## 4917     1293
## 4918     3633
## 4919       19
## 4920     1393
## 4921     2959
## 4922     3826
## 4923     2805
## 4924     3527
## 4925      924
## 4926     2015
## 4927     2054
## 4928      987
## 4929     1036
## 4930     1291
## 4931     1408
## 4932      592
## 4933      590
## 4934     1303
## 4935      316
## 4936      461
## 4937      668
## 4938      588
## 4939      110
## 4940      858
## 4941     1221
## 4942     1136
## 4943     2028
## 4944     2791
## 4945     3578
## 4946     1089
## 4947     3753
## 4948     3643
## 4949     3053
## 4950      473
## 4951     4008
## 4952     1445
## 4953     1127
## 4954     2707
## 4955     2434
## 4956     3617
## 4957     2700
## 4958     3176
## 4959      527
## 4960      356
## 4961     1215
## 4962     1197
## 4963      474
## 4964      480
## 4965     4725
## 4966     4744
## 4967     3018
## 4968     2159
## 4969      637
## 4970      314
## 4971       65
## 4972     4446
## 4973     4448
## 4974     4643
## 4975      231
## 4976      165
## 4977     1334
## 4978        1
## 4979     2394
## 4980      364
## 4981     2687
## 4982     2102
## 4983     1405
## 4984     3030
## 4985      714
## 4986     2401
## 4987     2478
## 4988     3196
## 4989     1178
## 4990     3091
## 4991     4033
## 4992     1206
## 4993     1285
## 4994     2916
## 4995     2664
## 4996     1994
## 4997      735
## 4998      671
## 4999     3576
## 5000     4713
## 5001     2968
## 5002     2600
## 5003     3704
## 5004      426
## 5005     1917
## 5006     3698
## 5007     1306
## 5008     1970
## 5009     2722
## 5010     3638
## 5011     3937
## 5012     1983
## 5013      899
## 5014      915
## 5015      930
## 5016     3108
## 5017      440
## 5018     3426
## 5019     2801
## 5020     2065
## 5021     2100
## 5022      497
## 5023     3996
## 5024     2497
## 5025     3684
## 5026      224
## 5027     1216
## 5028      260
## 5029     4602
## 5030        3
## 5031     4129
## 5032     3394
## 5033     2405
## 5034     1556
## 5035     3476
## 5036       50
## 5037      296
## 5038      608
## 5039     3362
## 5040     4326
## 5041     2726
## 5042     1500
## 5043     2000
## 5044     3763
## 5045     3000
## 5046     1269
## 5047     2010
## 5048     2561
## 5049     4608
## 5050     2413
## 5051      335
## 5052     1459
## 5053     4610
## 5054     1644
## 5055     2571
## 5056     3481
## 5057      592
## 5058     1097
## 5059     2502
## 5060     2746
## 5061     1997
## 5062     4561
## 5063      328
## 5064     3837
## 5065     4633
## 5066     4541
## 5067     4270
## 5068      516
## 5069     3920
## 5070     3504
## 5071     3421
## 5072     1292
## 5073     3363
## 5074     3424
## 5075     4181
## 5076     4002
## 5077       45
## 5078     4066
## 5079     3552
## 5080     2683
## 5081     4767
## 5082     1425
## 5083     3070
## 5084     4102
## 5085      218
## 5086     1884
## 5087     3120
## 5088     4040
## 5089     2170
## 5090     4613
## 5091     4490
## 5092     3243
## 5093      593
## 5094      344
## 5095      919
## 5096      208
## 5097      454
## 5098     1918
## 5099      457
## 5100      733
## 5101     3527
## 5102     2985
## 5103     3753
## 5104     4701
## 5105      784
## 5106     4128
## 5107     2194
## 5108     2699
## 5109     2396
## 5110     3751
## 5111     3255
## 5112     2313
## 5113      150
## 5114      282
## 5115     1884
## 5116     4487
## 5117     2338
## 5118     1206
## 5119      260
## 5120     2067
## 5121     1947
## 5122      914
## 5123      915
## 5124     1307
## 5125     1296
## 5126      223
## 5127      913
## 5128     4247
## 5129     4799
## 5130     2731
## 5131      778
## 5132     4211
## 5133     2866
## 5134      307
## 5135     1295
## 5136     4537
## 5137     3260
## 5138     1120
## 5139     2237
## 5140      627
## 5141     2712
## 5142     4557
## 5143      279
## 5144     4749
## 5145       19
## 5146     2124
## 5147     1325
## 5148     2320
## 5149      343
## 5150     2967
## 5151     2328
## 5152     3141
## 5153     3695
## 5154     4333
## 5155     2819
## 5156     3534
## 5157     6184
## 5158     3863
## 5159      589
## 5160     1527
## 5161     3745
## 5162      611
## 5163      173
## 5164      405
## 5165     3593
## 5166      163
## 5167     2353
## 5168     1866
## 5169     1385
## 5170      547
## 5171     1687
## 5172      459
## 5173     1772
## 5174     1049
## 5175     1569
## 5176     3452
## 5177      539
## 5178     1549
## 5179     1541
## 5180     4027
## 5181     1500
## 5182     1711
## 5183     2105
## 5184     3317
## 5185      616
## 5186     4499
## 5187     3791
## 5188       48
## 5189     4846
## 5190     3745
## 5191     4029
## 5192     4246
## 5193     2806
## 5194     3893
## 5195     4167
## 5196     3755
## 5197     3861
## 5198     3534
## 5199      258
## 5200     4226
## 5201      163
## 5202     2006
## 5203     4922
## 5204     4896
## 5205     4238
## 5206     4823
## 5207     2720
## 5208      593
## 5209     2621
## 5210      924
## 5211     2393
## 5212     1356
## 5213     4886
## 5214     3424
## 5215     1197
## 5216     3911
## 5217     2174
## 5218     1663
## 5219     2736
## 5220     3264
## 5221     4102
## 5222     1541
## 5223     4911
## 5224     4571
## 5225     4642
## 5226     2020
## 5227     4993
## 5228      931
## 5229     2724
## 5230     5060
## 5231     4446
## 5232     1243
## 5233     4995
## 5234     4246
## 5235     3988
## 5236     5077
## 5237     5027
## 5238     3911
## 5239     1196
## 5240     1221
## 5241     4031
## 5242     2115
## 5243     2021
## 5244     4903
## 5245     3996
## 5246     3915
## 5247     5276
## 5248     4034
## 5249     3556
## 5250     4743
## 5251      296
## 5252     1059
## 5253     2248
## 5254      417
## 5255     5346
## 5256     4867
## 5257     4902
## 5258     1210
## 5259     4465
## 5260      477
## 5261      480
## 5262     4848
## 5263     3724
## 5264     3101
## 5265      780
## 5266      103
## 5267     1300
## 5268     2518
## 5269     3627
## 5270     1219
## 5271     1136
## 5272       57
## 5273     2396
## 5274        1
## 5275      223
## 5276     2369
## 5277      318
## 5278     1270
## 5279     2628
## 5280     1091
## 5281      745
## 5282      318
## 5283     1592
## 5284     3300
## 5285     3730
## 5286     3160
## 5287     1357
## 5288     2146
## 5289     4034
## 5290      759
## 5291     1350
## 5292     3270
## 5293      919
## 5294     1090
## 5295     4558
## 5296      213
## 5297      457
## 5298     4531
## 5299     4216
## 5300     2762
## 5301     2334
## 5302     4226
## 5303     3083
## 5304     4034
## 5305     1036
## 5306     1446
## 5307     1197
## 5308     5438
## 5309     3996
## 5310     4306
## 5311     3980
## 5312      318
## 5313     3301
## 5314     2858
## 5315     3977
## 5316     4226
## 5317     1617
## 5318     1804
## 5319     3117
## 5320      356
## 5321     3256
## 5322     1722
## 5323     3686
## 5324     2617
## 5325     2167
## 5326      163
## 5327      494
## 5328      648
## 5329      736
## 5330     1676
## 5331      296
## 5332     2159
## 5333     1358
## 5334       34
## 5335     2890
## 5336     3105
## 5337      151
## 5338     1060
## 5339     4047
## 5340     1408
## 5341     4995
## 5342     2701
## 5343     3087
## 5344     1270
## 5345      924
## 5346     4639
## 5347     2683
## 5348     2710
## 5349     3564
## 5350     3453
## 5351     3826
## 5352     4638
## 5353     2724
## 5354     2700
## 5355     3745
## 5356     4958
## 5357     2188
## 5358     2706
## 5359     4011
## 5360     2288
## 5361     2553
## 5362     2916
## 5363     4673
## 5364        6
## 5365     1673
## 5366     1711
## 5367      356
## 5368      932
## 5369     4161
## 5370      858
## 5371      383
## 5372      627
## 5373     1617
## 5374     2858
## 5375        1
## 5376      161
## 5377     2355
## 5378     2716
## 5379      441
## 5380     2108
## 5381     1670
## 5382     1197
## 5383     2396
## 5384     1394
## 5385     1259
## 5386     4027
## 5387      441
## 5388     2918
## 5389     2710
## 5390     2580
## 5391     3176
## 5392     2702
## 5393     2763
## 5394     1343
## 5395     1834
## 5396     2918
## 5397     1270
## 5398      141
## 5399     4105
## 5400     3948
## 5401     2371
## 5402      110
## 5403     4855
## 5404     1200
## 5405     4262
## 5406     2001
## 5407     1674
## 5408     3104
## 5409      785
## 5410      858
## 5411     2947
## 5412      110
## 5413     1194
## 5414     4728
## 5415      903
## 5416     1092
## 5417     4821
## 5418      527
## 5419     2804
## 5420     1231
## 5421     1617
## 5422     1200
## 5423     1276
## 5424      448
## 5425     2987
## 5426     3198
## 5427     1077
## 5428       32
## 5429     1198
## 5430     1199
## 5431     3986
## 5432     2706
## 5433     2683
## 5434     4643
## 5435     3457
## 5436     3996
## 5437     4232
## 5438     3827
## 5439     5009
## 5440      185
## 5441     1296
## 5442     1259
## 5443     1080
## 5444       32
## 5445     3418
## 5446     4020
## 5447     4128
## 5448     1091
## 5449     4040
## 5450     2028
## 5451      589
## 5452     4755
## 5453     3590
## 5454     2379
## 5455      588
## 5456     2628
## 5457      527
## 5458     4977
## 5459     2369
## 5460     4034
## 5461     3897
## 5462      920
## 5463     5060
## 5464     1077
## 5465     1136
## 5466     3104
## 5467     1958
## 5468     2130
## 5469     3098
## 5470     4579
## 5471     1994
## 5472     4041
## 5473     3980
## 5474      858
## 5475      223
## 5476     1277
## 5477     1274
## 5478     2729
## 5479     3566
## 5480     1480
## 5481      832
## 5482     2278
## 5483       43
## 5484     1841
## 5485     3254
## 5486       22
## 5487     2881
## 5488      423
## 5489     1862
## 5490     2023
## 5491     2716
## 5492     4776
## 5493     2428
## 5494     2599
## 5495     2395
## 5496     4876
## 5497       36
## 5498     1129
## 5499     4618
## 5500     1097
## 5501     2115
## 5502     2944
## 5503      474
## 5504     1515
## 5505     4848
## 5506     4963
## 5507     2916
## 5508     4723
## 5509     3198
## 5510     2402
## 5511     1043
## 5512     2404
## 5513      185
## 5514     4543
## 5515      678
## 5516     4673
## 5517      904
## 5518      953
## 5519      909
## 5520     3471
## 5521     1228
## 5522     1028
## 5523     2208
## 5524     1278
## 5525     3072
## 5526      259
## 5527     3141
## 5528     2387
## 5529     2096
## 5530     1136
## 5531     1438
## 5532     4447
## 5533     2515
## 5534     5013
## 5535     5294
## 5536     5349
## 5537     5388
## 5538     4975
## 5539     4978
## 5540     2108
## 5541     3253
## 5542     1569
## 5543     3450
## 5544      708
## 5545     3157
## 5546     1457
## 5547      333
## 5548        5
## 5549     3669
## 5550     5010
## 5551     2020
## 5552     4896
## 5553     3068
## 5554     5428
## 5555      589
## 5556     1015
## 5557      837
## 5558     1460
## 5559      558
## 5560     2804
## 5561     1022
## 5562     2899
## 5563      968
## 5564     3917
## 5565     2717
## 5566      919
## 5567     2628
## 5568     3698
## 5569     5377
## 5570     3527
## 5571     1393
## 5572     2009
## 5573     2795
## 5574     4963
## 5575     2997
## 5576     4816
## 5577     5212
## 5578     4019
## 5579     5015
## 5580     2403
## 5581     5010
## 5582     5459
## 5583     5445
## 5584      709
## 5585     2011
## 5586     2012
## 5587     3175
## 5588     5267
## 5589     4306
## 5590     4992
## 5591     3296
## 5592     2671
## 5593     3252
## 5594      736
## 5595     2764
## 5596     1735
## 5597     4995
## 5598      195
## 5599     3408
## 5600     4765
## 5601     2861
## 5602     5267
## 5603     4821
## 5604     2826
## 5605     4447
## 5606     4149
## 5607     1639
## 5608     4310
## 5609     4310
## 5610     5574
## 5611     5665
## 5612      218
## 5613     2505
## 5614     1704
## 5615     2297
## 5616      481
## 5617     5266
## 5618     5378
## 5619     3799
## 5620     5884
## 5621     4958
## 5622     4232
## 5623     4265
## 5624     4020
## 5625     3826
## 5626     5881
## 5627     5152
## 5628     4890
## 5629     3785
## 5630     4326
## 5631      538
## 5632     3593
## 5633     4224
## 5634     2561
## 5635     3895
## 5636     5960
## 5637     2108
## 5638     4226
## 5639     4680
## 5640     4865
## 5641     4978
## 5642     4814
## 5643     4034
## 5644     3513
## 5645      162
## 5646     5785
## 5647     5952
## 5648     1214
## 5649     1321
## 5650     1407
## 5651     2871
## 5652     1358
## 5653     1249
## 5654     1077
## 5655      213
## 5656     4218
## 5657     4855
## 5658     4963
## 5659     2571
## 5660     3408
## 5661     1958
## 5662     6092
## 5663     6166
## 5664     5015
## 5665     1095
## 5666     3442
## 5667     2194
## 5668     3405
## 5669     2409
## 5670     4958
## 5671     1518
## 5672     5952
## 5673     3389
## 5674     2918
## 5675     2915
## 5676     5250
## 5677      180
## 5678      372
## 5679     3477
## 5680     4214
## 5681     3524
## 5682     4681
## 5683     2792
## 5684     5657
## 5685     1503
## 5686     3174
## 5687     4732
## 5688     5810
## 5689     1220
## 5690     1171
## 5691     1172
## 5692      908
## 5693     5962
## 5694     4807
## 5695     1983
## 5696     2376
## 5697     5853
## 5698     2989
## 5699     2336
## 5700     2779
## 5701     3102
## 5702     3528
## 5703      100
## 5704     3513
## 5705     2787
## 5706     5749
## 5707     6240
## 5708     3730
## 5709     3481
## 5710     5418
## 5711     4280
## 5712     6232
## 5713      265
## 5714      532
## 5715     5008
## 5716      541
## 5717     1302
## 5718      493
## 5719     1610
## 5720      223
## 5721      246
## 5722      858
## 5723     1221
## 5724     1136
## 5725      123
## 5726     1210
## 5727     4034
## 5728     1690
## 5729       47
## 5730     5055
## 5731     1464
## 5732      344
## 5733      527
## 5734      858
## 5735     1193
## 5736       70
## 5737     2987
## 5738      111
## 5739     1036
## 5740     3703
## 5741        6
## 5742      480
## 5743     3177
## 5744      223
## 5745     5992
## 5746     3408
## 5747     4642
## 5748     3317
## 5749     4023
## 5750      608
## 5751      474
## 5752     5103
## 5753      356
## 5754     1380
## 5755     2762
## 5756     3996
## 5757     1198
## 5758     1387
## 5759     4100
## 5760     1193
## 5761     1468
## 5762     3174
## 5763      477
## 5764     2058
## 5765     2194
## 5766      172
## 5767     2028
## 5768     1214
## 5769      589
## 5770     5620
## 5771      344
## 5772     4022
## 5773     4388
## 5774      590
## 5775       25
## 5776     1230
## 5777     3578
## 5778     2762
## 5779      953
## 5780     4054
## 5781     1952
## 5782     5664
## 5783     3825
## 5784     3175
## 5785     2117
## 5786     4306
## 5787     5013
## 5788     1619
## 5789     4452
## 5790      318
## 5791     1041
## 5792      337
## 5793     1730
## 5794     2134
## 5795     2253
## 5796     1438
## 5797     1331
## 5798     5136
## 5799      543
## 5800     4067
## 5801     2840
## 5802      434
## 5803     2369
## 5804      491
## 5805     1210
## 5806     1955
## 5807     2023
## 5808     1270
## 5809     5613
## 5810     2010
## 5811     5943
## 5812     1537
## 5813     4973
## 5814     5135
## 5815       39
## 5816     1393
## 5817     5673
## 5818      838
## 5819     4062
## 5820     1262
## 5821     1219
## 5822     4236
## 5823     1537
## 5824     1280
## 5825     1252
## 5826     5878
## 5827     1234
## 5828     2692
## 5829     2959
## 5830     2692
## 5831     4380
## 5832     4876
## 5833     1726
## 5834     2083
## 5835     2858
## 5836     3285
## 5837     2355
## 5838     2712
## 5839     3826
## 5840     3752
## 5841     2723
## 5842     2490
## 5843     3273
## 5844     2841
## 5845     3798
## 5846     3793
## 5847     4223
## 5848     5339
## 5849     1307
## 5850     3481
## 5851     1288
## 5852     1923
## 5853     3253
## 5854     4280
## 5855     1777
## 5856      663
## 5857      592
## 5858      904
## 5859     5380
## 5860      480
## 5861      527
## 5862     4037
## 5863     1207
## 5864     4338
## 5865     1252
## 5866     3435
## 5867     1214
## 5868      954
## 5869     1258
## 5870      608
## 5871     2018
## 5872     3232
## 5873      745
## 5874     1247
## 5875     3363
## 5876     1250
## 5877     1721
## 5878     1196
## 5879     2987
## 5880     1962
## 5881     5135
## 5882     1199
## 5883     1210
## 5884     1197
## 5885      736
## 5886     5617
## 5887     6173
## 5888      899
## 5889     3296
## 5890     5007
## 5891     2944
## 5892     2739
## 5893     1262
## 5894      110
## 5895     2119
## 5896     1213
## 5897     4649
## 5898     3026
## 5899     2489
## 5900     3111
## 5901     1409
## 5902     3754
## 5903     3298
## 5904     2716
## 5905     4340
## 5906      365
## 5907     2607
## 5908     1164
## 5909     3307
## 5910      515
## 5911     1077
## 5912     1412
## 5913     2908
## 5914     3068
## 5915      247
## 5916     3783
## 5917     3252
## 5918     1958
## 5919     2571
## 5920     3952
## 5921     2302
## 5922     1527
## 5923     1641
## 5924     5445
## 5925     4077
## 5926     2272
## 5927     2294
## 5928     2171
## 5929     2093
## 5930     1676
## 5931      504
## 5932      172
## 5933      849
## 5934      440
## 5935     2572
## 5936      838
## 5937      548
## 5938      361
## 5939      550
## 5940      605
## 5941     2143
## 5942     3257
## 5943     4603
## 5944     5679
## 5945     1345
## 5946     1967
## 5947     5621
## 5948     3697
## 5949     2805
## 5950     3399
## 5951     1207
## 5952     1449
## 5953     1748
## 5954     4023
## 5955     1499
## 5956      112
## 5957     5690
## 5958     1006
## 5959     2387
## 5960     1717
## 5961     1653
## 5962     1580
## 5963     1208
## 5964     2846
## 5965      999
## 5966     1225
## 5967     1884
## 5968     4343
## 5969     1210
## 5970     2155
## 5971     6333
## 5972     6333
## 5973     1907
## 5974      745
## 5975      596
## 5976     3483
## 5977      673
## 5978     3471
## 5979     4321
## 5980     5617
## 5981      934
## 5982     5377
## 5983     1257
## 5984     2918
## 5985     1500
## 5986     4963
## 5987     2762
## 5988     1090
## 5989     2174
## 5990      364
## 5991     1625
## 5992     6378
## 5993     5446
## 5994     5527
## 5995     6534
## 5996     5528
## 5997     5010
## 5998     5816
## 5999     5617
## 6000     1214
## 6001     2167
## 6002     3634
## 6003      973
## 6004     3328
## 6005     6538
## 6006     5135
## 6007     4022
## 6008     5902
## 6009     5218
## 6010     6059
## 6011     4995
## 6012      714
## 6013     4881
## 6014     5025
## 6015     6873
## 6016     5225
## 6017     4641
## 6018     3424
## 6019     2076
## 6020     6947
## 6021     6934
## 6022     5731
## 6023     5380
## 6024      539
## 6025     2115
## 6026     6711
## 6027     1734
## 6028     6612
## 6029     5525
## 6030      515
## 6031     4902
## 6032     2269
## 6033     5266
## 6034     6946
## 6035     1136
## 6036      349
## 6037     2474
## 6038     2683
## 6039     6936
## 6040     7073
## 6041     7063
## 6042     1219
## 6043     6669
## 6044      913
## 6045      903
## 6046     1260
## 6047     2186
## 6048     7228
## 6049     3751
## 6050     1394
## 6051     6493
## 6052     6545
## 6053     5952
## 6054     6002
## 6055     7305
## 6056      296
## 6057      356
## 6058      454
## 6059      586
## 6060      355
## 6061     1479
## 6062     2723
## 6063     2539
## 6064     3105
## 6065     3264
## 6066     3261
## 6067     1285
## 6068     5890
## 6069     1033
## 6070     1275
## 6071     2058
## 6072     1296
## 6073     1755
## 6074     1307
## 6075     3005
## 6076     2739
## 6077     5049
## 6078     1665
## 6079     1208
## 6080     1343
## 6081     4014
## 6082     1882
## 6083     6308
## 6084     1974
## 6085     4692
## 6086     1321
## 6087     3481
## 6088     5989
## 6089     1587
## 6090     1296
## 6091     2458
## 6092     2033
## 6093     1171
## 6094     1614
## 6095     4063
## 6096     1809
## 6097      515
## 6098      110
## 6099     2455
## 6100     1370
## 6101     3686
## 6102     5693
## 6103     1346
## 6104      350
## 6105     2586
## 6106     1041
## 6107     4680
## 6108     5418
## 6109     4577
## 6110     3730
## 6111     1950
## 6112     4992
## 6113     3104
## 6114     5618
## 6115     1801
## 6116     5377
## 6117     5930
## 6118     6558
## 6119     7178
## 6120     2542
## 6121     6807
## 6122     3072
## 6123     5048
## 6124     3253
## 6125     2881
## 6126     3709
## 6127      104
## 6128     4639
## 6129     2616
## 6130     1351
## 6131      725
## 6132     5265
## 6133     6003
## 6134     5364
## 6135     7313
## 6136      800
## 6137     7017
## 6138     3545
## 6139     2413
## 6140     1226
## 6141     4973
## 6142     5618
## 6143     6380
## 6144     1228
## 6145     7147
## 6146     6384
## 6147      529
## 6148     3481
## 6149     5445
## 6150     3254
## 6151     7361
## 6152     1204
## 6153     2001
## 6154     3977
## 6155     6934
## 6156     7153
## 6157     5952
## 6158     1580
## 6159     2321
## 6160     3081
## 6161     2840
## 6162     1175
## 6163     2959
## 6164     2692
## 6165     5377
## 6166     7022
## 6167     2396
## 6168      541
## 6169      370
## 6170     1201
## 6171     5378
## 6172     6541
## 6173      260
## 6174      527
## 6175       50
## 6176       34
## 6177       47
## 6178     2028
## 6179     2916
## 6180     1304
## 6181     1210
## 6182      593
## 6183        1
## 6184     1704
## 6185     1387
## 6186     6711
## 6187     1242
## 6188     1348
## 6189     1291
## 6190      719
## 6191      919
## 6192     2571
## 6193     1136
## 6194     1293
## 6195        5
## 6196     1288
## 6197     2300
## 6198     2795
## 6199     2423
## 6200     2087
## 6201     1517
## 6202     4571
## 6203     1073
## 6204     1500
## 6205     6708
## 6206      333
## 6207     1380
## 6208     7154
## 6209     1371
## 6210     1569
## 6211     3114
## 6212      671
## 6213     2094
## 6214     4370
## 6215     3247
## 6216      778
## 6217     3052
## 6218     1834
## 6219     3438
## 6220     1688
## 6221     8235
## 6222     6188
## 6223     4306
## 6224     2617
## 6225     4571
## 6226     4025
## 6227     2701
## 6228     3740
## 6229     5902
## 6230     1093
## 6231     1646
## 6232     3243
## 6233     4306
## 6234     3160
## 6235     2719
## 6236     1831
## 6237      870
## 6238     4845
## 6239     5803
## 6240     5064
## 6241     1968
## 6242     6863
## 6243     3354
## 6244     1883
## 6245     2406
## 6246     2985
## 6247     2353
## 6248     1517
## 6249     6794
## 6250     2381
## 6251     4335
## 6252     7019
## 6253     4630
## 6254     2667
## 6255     2718
## 6256      780
## 6257      485
## 6258     4321
## 6259     2716
## 6260     8131
## 6261      780
## 6262       50
## 6263      474
## 6264     1265
## 6265     2716
## 6266     1262
## 6267     1220
## 6268     6711
## 6269     1912
## 6270     4397
## 6271     2353
## 6272      318
## 6273     2916
## 6274      356
## 6275     7153
## 6276     3098
## 6277     2890
## 6278     2411
## 6279     3784
## 6280     3686
## 6281       45
## 6282      593
## 6283     4487
## 6284     5941
## 6285     2028
## 6286     2686
## 6287     1957
## 6288      141
## 6289     2702
## 6290     3967
## 6291     3897
## 6292     4993
## 6293     5952
## 6294     4862
## 6295     7367
## 6296     7386
## 6297     7154
## 6298     2987
## 6299     3511
## 6300     4531
## 6301      595
## 6302     4526
## 6303     5009
## 6304     5108
## 6305      429
## 6306     4545
## 6307     3668
## 6308     2726
## 6309      252
## 6310      648
## 6311     5349
## 6312     3948
## 6313     7395
## 6314     1954
## 6315     5380
## 6316      902
## 6317     3969
## 6318      452
## 6319     5400
## 6320      207
## 6321     1307
## 6322      265
## 6323     3751
## 6324      858
## 6325     3698
## 6326     4993
## 6327      172
## 6328     1084
## 6329     1215
## 6330     6503
## 6331     7438
## 6332      377
## 6333     2455
## 6334     1721
## 6335     1610
## 6336     1374
## 6337     3793
## 6338      466
## 6339     2470
## 6340     2232
## 6341     1220
## 6342     2021
## 6343     2011
## 6344     7842
## 6345     6934
## 6346     3703
## 6347     2226
## 6348     4993
## 6349     7347
## 6350     1373
## 6351     5944
## 6352      802
## 6353     3105
## 6354     3742
## 6355     4226
## 6356     1215
## 6357      356
## 6358     1263
## 6359     3704
## 6360     6104
## 6361     3471
## 6362      356
## 6363     4226
## 6364     8207
## 6365     2174
## 6366     2278
## 6367     3160
## 6368     1573
## 6369       70
## 6370      924
## 6371     2916
## 6372     1061
## 6373      204
## 6374     4370
## 6375     3386
## 6376     4446
## 6377     6863
## 6378      110
## 6379     1199
## 6380      349
## 6381      648
## 6382     1690
## 6383     1544
## 6384     1136
## 6385     6333
## 6386        2
## 6387     4019
## 6388     1704
## 6389     1209
## 6390      593
## 6391     3996
## 6392      527
## 6393      172
## 6394     3452
## 6395     5669
## 6396      318
## 6397     4720
## 6398      589
## 6399     5952
## 6400     4993
## 6401     1218
## 6402     7925
## 6403     1266
## 6404      733
## 6405     2571
## 6406     1307
## 6407      356
## 6408     2692
## 6409      592
## 6410      434
## 6411     6378
## 6412     2687
## 6413     2396
## 6414     6534
## 6415      316
## 6416     5152
## 6417     2141
## 6418     2193
## 6419      337
## 6420      380
## 6421     1225
## 6422      592
## 6423     2762
## 6424     7034
## 6425     1265
## 6426     1090
## 6427      586
## 6428      912
## 6429     4720
## 6430     4090
## 6431     2683
## 6432     1258
## 6433      196
## 6434     1090
## 6435     1199
## 6436      260
## 6437     1240
## 6438     2529
## 6439     1210
## 6440     1148
## 6441     1356
## 6442     1220
## 6443     1250
## 6444     5445
## 6445     4734
## 6446       70
## 6447     2916
## 6448     7044
## 6449     4014
## 6450     3471
## 6451      349
## 6452      377
## 6453      165
## 6454      858
## 6455     1214
## 6456     1097
## 6457      919
## 6458      260
## 6459       32
## 6460     1721
## 6461      329
## 6462     2858
## 6463      778
## 6464     1089
## 6465       19
## 6466      353
## 6467      196
## 6468      236
## 6469     3296
## 6470      173
## 6471     6893
## 6472     5952
## 6473     2329
## 6474     7160
## 6475     1197
## 6476     1206
## 6477     5459
## 6478     3897
## 6479     2401
## 6480     2278
## 6481     2082
## 6482     5956
## 6483      344
## 6484     4105
## 6485     1291
## 6486      924
## 6487     1089
## 6488     1208
## 6489     1573
## 6490     2843
## 6491     6874
## 6492     3527
## 6493     7004
## 6494     4422
## 6495     4226
## 6496     6539
## 6497     5952
## 6498      442
## 6499      368
## 6500     6365
## 6501      653
## 6502     2572
## 6503     1214
## 6504     3481
## 6505      543
## 6506      223
## 6507      783
## 6508     1036
## 6509     1213
## 6510     1584
## 6511     2572
## 6512     3534
## 6513     1265
## 6514     1073
## 6515     4446
## 6516     3254
## 6517     2722
## 6518     2688
## 6519      292
## 6520     1608
## 6521     7361
## 6522     1090
## 6523     6934
## 6524     5219
## 6525     3418
## 6526     1527
## 6527      858
## 6528     2379
## 6529     6986
## 6530      296
## 6531      590
## 6532     5452
## 6533     4776
## 6534     3980
## 6535      733
## 6536      292
## 6537     2028
## 6538     3897
## 6539      552
## 6540     2053
## 6541     2985
## 6542       27
## 6543     4027
## 6544      608
## 6545      595
## 6546     1517
## 6547     1682
## 6548     4025
## 6549     1090
## 6550      173
## 6551      440
## 6552     2701
## 6553     4995
## 6554     3809
## 6555     1584
## 6556     5222
## 6557     1885
## 6558     2058
## 6559     6863
## 6560     1270
## 6561      316
## 6562     2502
## 6563     3273
## 6564     2454
## 6565     2529
## 6566     3639
## 6567     3869
## 6568     6881
## 6569     1371
## 6570     4388
## 6571     4141
## 6572     2012
## 6573     2110
## 6574     3654
## 6575     2890
## 6576     2404
## 6577     5621
## 6578      914
## 6579     2369
## 6580     2701
## 6581     1049
## 6582      316
## 6583     2533
## 6584      780
## 6585     1544
## 6586     1608
## 6587      105
## 6588      733
## 6589      367
## 6590     3978
## 6591      165
## 6592     1466
## 6593        1
## 6594      588
## 6595     1196
## 6596     2700
## 6597      597
## 6598      356
## 6599     3257
## 6600     1036
## 6601     3949
## 6602     4649
## 6603     5669
## 6604     5218
## 6605       15
## 6606      589
## 6607     1210
## 6608     3578
## 6609     2406
## 6610     2501
## 6611      736
## 6612     1393
## 6613       34
## 6614     3114
## 6615     4033
## 6616     1784
## 6617      454
## 6618      216
## 6619     3639
## 6620      315
## 6621      485
## 6622     1073
## 6623     1240
## 6624     2002
## 6625     2716
## 6626     1918
## 6627     2021
## 6628     4321
## 6629     3256
## 6630     1831
## 6631      379
## 6632      497
## 6633        5
## 6634      653
## 6635     1091
## 6636     2126
## 6637      832
## 6638     1258
## 6639     2402
## 6640     3793
## 6641      996
## 6642     2161
## 6643     2599
## 6644     4148
## 6645     4321
## 6646     4029
## 6647     3702
## 6648     3534
## 6649     3301
## 6650     1997
## 6651     1717
## 6652     1381
## 6653      215
## 6654       92
## 6655     6155
## 6656     5463
## 6657     3481
## 6658       45
## 6659     3101
## 6660     2916
## 6661     2657
## 6662     6999
## 6663     2762
## 6664     3159
## 6665     6377
## 6666      364
## 6667     2908
## 6668       19
## 6669      588
## 6670     4310
## 6671      316
## 6672     1544
## 6673      543
## 6674       70
## 6675     1276
## 6676     1059
## 6677     1921
## 6678     2716
## 6679     1387
## 6680     1391
## 6681     2763
## 6682     1376
## 6683      720
## 6684     2174
## 6685     2968
## 6686     1270
## 6687       95
## 6688      111
## 6689      442
## 6690     1206
## 6691     1258
## 6692     7090
## 6693     4848
## 6694     2571
## 6695     5816
## 6696     4018
## 6697     6503
## 6698     5872
## 6699     5152
## 6700     1707
## 6701      546
## 6702     1499
## 6703      867
## 6704     2279
## 6705      594
## 6706     2078
## 6707     1994
## 6708     2005
## 6709      288
## 6710     1240
## 6711      368
## 6712      370
## 6713     2640
## 6714      953
## 6715     2054
## 6716     2657
## 6717      724
## 6718     2393
## 6719     2109
## 6720     1968
## 6721       19
## 6722     2706
## 6723     2959
## 6724     3255
## 6725     5013
## 6726     1057
## 6727      688
## 6728     4161
## 6729     6711
## 6730     4865
## 6731     3203
## 6732     2985
## 6733     1466
## 6734     3910
## 6735     3156
## 6736     3897
## 6737     4851
## 6738     5026
## 6739     5528
## 6740     5299
## 6741     3617
## 6742     6067
## 6743     3717
## 6744     1270
## 6745      231
## 6746       39
## 6747     2657
## 6748     4878
## 6749     2804
## 6750     2529
## 6751     1391
## 6752      919
## 6753      594
## 6754     4025
## 6755     2890
## 6756     2794
## 6757     2478
## 6758     2359
## 6759     1513
## 6760     1381
## 6761     1020
## 6762     6003
## 6763     3987
## 6764     1381
## 6765     1372
## 6766     1907
## 6767     4351
## 6768     4248
## 6769      832
## 6770     1917
## 6771     1097
## 6772     2341
## 6773     2355
## 6774     3740
## 6775     3247
## 6776      383
## 6777     2500
## 6778     7101
## 6779     6558
## 6780     4085
## 6781     3950
## 6782     3148
## 6783      368
## 6784     1527
## 6785      778
## 6786     2700
## 6787     2115
## 6788     4246
## 6789     2688
## 6790     4025
## 6791     3967
## 6792     1480
## 6793     4161
## 6794     2174
## 6795      516
## 6796     1221
## 6797      589
## 6798     3147
## 6799     6565
## 6800     2268
## 6801     1270
## 6802     4995
## 6803     6743
## 6804     2096
## 6805      592
## 6806     2959
## 6807     2058
## 6808      508
## 6809      293
## 6810     4733
## 6811     3499
## 6812     3264
## 6813     2748
## 6814     2752
## 6815     1282
## 6816     6296
## 6817     6807
## 6818     3911
## 6819      750
## 6820     2000
## 6821     5445
## 6822     1374
## 6823      432
## 6824     2987
## 6825      457
## 6826     1610
## 6827     2763
## 6828     2989
## 6829     3705
## 6830     2115
## 6831      223
## 6832     3552
## 6833     7149
## 6834     1020
## 6835       11
## 6836     1088
## 6837      229
## 6838     1653
## 6839     1918
## 6840     2001
## 6841     1617
## 6842     4407
## 6843     2922
## 6844     7791
## 6845     1610
## 6846     2012
## 6847     4085
## 6848     2694
## 6849     5646
## 6850     5989
## 6851     7355
## 6852     3270
## 6853      158
## 6854     2628
## 6855      260
## 6856     1210
## 6857      377
## 6858      595
## 6859     2571
## 6860     2396
## 6861     5293
## 6862      480
## 6863     1552
## 6864     4270
## 6865     5219
## 6866      141
## 6867     1371
## 6868      673
## 6869     1527
## 6870     5989
## 6871     6754
## 6872     1584
## 6873      741
## 6874     3033
## 6875     3269
## 6876     5459
## 6877     6539
## 6878     6157
## 6879     1093
## 6880      276
## 6881      608
## 6882      329
## 6883      524
## 6884     2717
## 6885     1965
## 6886     1997
## 6887      597
## 6888     1968
## 6889     5444
## 6890     2846
## 6891     5538
## 6892     1707
## 6893     8371
## 6894     8361
## 6895     6323
## 6896     1895
## 6897     2006
## 6898       10
## 6899     2527
## 6900       23
## 6901     4553
## 6902     3980
## 6903      920
## 6904     2649
## 6905     5177
## 6906     3759
## 6907     6784
## 6908     5292
## 6909     6954
## 6910     2585
## 6911     1784
## 6912     1407
## 6913       21
## 6914     6947
## 6915     3524
## 6916     3681
## 6917     6595
## 6918     5146
## 6919     2686
## 6920     7347
## 6921     6365
## 6922     6502
## 6923     7438
## 6924     5617
## 6925     5991
## 6926     7360
## 6927     4135
## 6928     1994
## 6929     5816
## 6930     8640
## 6931      818
## 6932     3964
## 6933     1489
## 6934      150
## 6935     3751
## 6936     1214
## 6937       58
## 6938     1682
## 6939     1234
## 6940     1358
## 6941      246
## 6942     1292
## 6943      898
## 6944     4014
## 6945      412
## 6946     1693
## 6947     2609
## 6948     1900
## 6949      587
## 6950     1678
## 6951     6867
## 6952     8665
## 6953     7373
## 6954     8376
## 6955     6265
## 6956     1333
## 6957      830
## 6958      319
## 6959     6624
## 6960     8201
## 6961     1940
## 6962     8622
## 6963     8823
## 6964     3275
## 6965     4881
## 6966     6668
## 6967     7458
## 6968     3826
## 6969     8644
## 6970     6552
## 6971     6378
## 6972     7439
## 6973      597
## 6974      924
## 6975     6586
## 6976     2882
## 6977      555
## 6978     2571
## 6979     3364
## 6980     8665
## 6981     7325
## 6982     5959
## 6983     1259
## 6984     1148
## 6985      293
## 6986     1682
## 6987     2502
## 6988     8961
## 6989     2951
## 6990     2186
## 6991     2617
## 6992      541
## 6993      225
## 6994      923
## 6995     2712
## 6996     1199
## 6997     3101
## 6998     3948
## 6999     1748
## 7000     1303
## 7001     6286
## 7002     7040
## 7003     3364
## 7004     4349
## 7005     2727
## 7006      915
## 7007      931
## 7008     2178
## 7009     6832
## 7010     7149
## 7011     5332
## 7012     4306
## 7013      900
## 7014     8984
## 7015      441
## 7016      920
## 7017     6890
## 7018     6215
## 7019      150
## 7020        1
## 7021     4963
## 7022     3033
## 7023     5324
## 7024     1206
## 7025    26744
## 7026     2761
## 7027     6783
## 7028      953
## 7029     3576
## 7030     7451
## 7031    27706
## 7032     8958
## 7033     8865
## 7034     7458
## 7035       47
## 7036      593
## 7037     3996
## 7038     2313
## 7039     2134
## 7040     2730
## 7041     6541
## 7042     2915
## 7043     8784
## 7044    30707
## 7045     8870
## 7046     8360
## 7047     8985
## 7048     4000
## 7049     1633
## 7050     6954
## 7051     2396
## 7052     4963
## 7053     8636
## 7054     8865
## 7055     6765
## 7056      707
## 7057     6188
## 7058     7318
## 7059     7151
## 7060     8464
## 7061     6951
## 7062     8970
## 7063     2700
## 7064      198
## 7065       45
## 7066     1674
## 7067     8207
## 7068      432
## 7069      370
## 7070     2700
## 7071      520
## 7072     1208
## 7073     2997
## 7074      266
## 7075      539
## 7076     2987
## 7077      345
## 7078     3623
## 7079     1777
## 7080     1674
## 7081     2657
## 7082     1258
## 7083     5445
## 7084     1722
## 7085     2001
## 7086     1876
## 7087     4995
## 7088     3623
## 7089     3967
## 7090     2329
## 7091     2985
## 7092     4361
## 7093     2692
## 7094     1784
## 7095     1544
## 7096     2959
## 7097     2987
## 7098     1917
## 7099      733
## 7100     6874
## 7101      303
## 7102     1682
## 7103      370
## 7104      342
## 7105     1527
## 7106       19
## 7107     5952
## 7108     4226
## 7109     5956
## 7110     5464
## 7111     7323
## 7112     1089
## 7113      543
## 7114     4638
## 7115       16
## 7116     3617
## 7117     1270
## 7118     1200
## 7119      364
## 7120      832
## 7121     2959
## 7122      587
## 7123     2355
## 7124     6187
## 7125       16
## 7126     4718
## 7127     3006
## 7128      303
## 7129     3916
## 7130      454
## 7131     2986
## 7132     1298
## 7133     2336
## 7134     5151
## 7135     3006
## 7136      509
## 7137     4474
## 7138     3127
## 7139     2427
## 7140     3275
## 7141     5669
## 7142     3477
## 7143     2194
## 7144     3861
## 7145      345
## 7146     1407
## 7147     7445
## 7148     3552
## 7149     2231
## 7150     7254
## 7151     1259
## 7152      293
## 7153     1527
## 7154     5942
## 7155     1036
## 7156      293
## 7157     7153
## 7158      648
## 7159       34
## 7160       10
## 7161     3252
## 7162      454
## 7163      357
## 7164      185
## 7165     1188
## 7166        1
## 7167     7451
## 7168      527
## 7169      647
## 7170       47
## 7171     1198
## 7172      858
## 7173      231
## 7174      500
## 7175     1466
## 7176     4489
## 7177     5349
## 7178      520
## 7179     7143
## 7180     3527
## 7181     6874
## 7182     4993
## 7183     8958
## 7184     6461
## 7185       39
## 7186     1527
## 7187      546
## 7188     1584
## 7189     2959
## 7190      497
## 7191     4967
## 7192      370
## 7193     2797
## 7194      296
## 7195     2533
## 7196     1196
## 7197      733
## 7198    30749
## 7199     4973
## 7200     8360
## 7201     3526
## 7202     4226
## 7203      908
## 7204     2959
## 7205     7153
## 7206     6333
## 7207     1748
## 7208     1704
## 7209     3252
## 7210     4621
## 7211     4815
## 7212     3950
## 7213     4020
## 7214      173
## 7215     1690
## 7216     3977
## 7217     3996
## 7218     1377
## 7219     5400
## 7220     4979
## 7221     4002
## 7222     3999
## 7223     2375
## 7224     1409
## 7225      362
## 7226     2542
## 7227     4814
## 7228      552
## 7229     4886
## 7230      588
## 7231     3793
## 7232     1653
## 7233     1527
## 7234     1721
## 7235     1288
## 7236     1080
## 7237      953
## 7238      708
## 7239     3536
## 7240      196
## 7241     6934
## 7242     4979
## 7243     4643
## 7244     6880
## 7245     4878
## 7246     7438
## 7247     1275
## 7248      509
## 7249     3978
## 7250     3686
## 7251     2942
## 7252     3033
## 7253     3597
## 7254     1479
## 7255       28
## 7256     4954
## 7257      778
## 7258     2683
## 7259     2692
## 7260     1639
## 7261      805
## 7262     1259
## 7263     3793
## 7264     4993
## 7265      158
## 7266     1320
## 7267     2640
## 7268     1682
## 7269      596
## 7270     4993
## 7271     3421
## 7272     5445
## 7273     5445
## 7274     4446
## 7275     2699
## 7276     2683
## 7277      104
## 7278     2174
## 7279     2000
## 7280     3175
## 7281      370
## 7282      380
## 7283     1580
## 7284        1
## 7285     2000
## 7286      434
## 7287      231
## 7288      104
## 7289      750
## 7290      585
## 7291     7438
## 7292     4896
## 7293     3271
## 7294     4489
## 7295     3536
## 7296     2137
## 7297     3301
## 7298     3633
## 7299     8961
## 7300     4011
## 7301     4643
## 7302     7325
## 7303     2858
## 7304    30812
## 7305     3578
## 7306     3868
## 7307     1968
## 7308     5110
## 7309     8874
## 7310     1590
## 7311     3996
## 7312     2135
## 7313      441
## 7314     6218
## 7315     1276
## 7316     8361
## 7317     8874
## 7318     5541
## 7319     5401
## 7320      368
## 7321     3114
## 7322     4679
## 7323     7254
## 7324     6305
## 7325      589
## 7326     3946
## 7327     2529
## 7328     4966
## 7329     1703
## 7330     3334
## 7331       16
## 7332     3471
## 7333     6193
## 7334      260
## 7335     2109
## 7336     3793
## 7337     4085
## 7338     2081
## 7339     2000
## 7340     2890
## 7341     1356
## 7342      410
## 7343     6218
## 7344     1240
## 7345     6863
## 7346      293
## 7347      745
## 7348     4967
## 7349     3499
## 7350     1407
## 7351      799
## 7352     2455
## 7353     1784
## 7354      442
## 7355     4499
## 7356      587
## 7357     8787
## 7358      104
## 7359      838
## 7360     3740
## 7361      329
## 7362     1917
## 7363        6
## 7364     2012
## 7365     3996
## 7366      457
## 7367      260
## 7368      380
## 7369     2858
## 7370      231
## 7371      367
## 7372     1969
## 7373     1097
## 7374     4823
## 7375     1036
## 7376      608
## 7377      904
## 7378     1206
## 7379      508
## 7380     2115
## 7381     7020
## 7382     6377
## 7383     4306
## 7384      553
## 7385     4310
## 7386     3461
## 7387     4776
## 7388     1080
## 7389      832
## 7390     1148
## 7391     3967
## 7392     3986
## 7393     3717
## 7394     3677
## 7395      838
## 7396      147
## 7397     3142
## 7398     2918
## 7399     1270
## 7400     2003
## 7401     1441
## 7402     2355
## 7403     4855
## 7404      720
## 7405     1246
## 7406     2137
## 7407     6378
## 7408       21
## 7409     3869
## 7410     4369
## 7411     5630
## 7412     1213
## 7413      474
## 7414     2950
## 7415     1378
## 7416     3526
## 7417     3005
## 7418     3263
## 7419     2947
## 7420      383
## 7421     1431
## 7422     1371
## 7423     1587
## 7424     1091
## 7425     6238
## 7426     3394
## 7427     4396
## 7428     4679
## 7429     4255
## 7430     4526
## 7431     1393
## 7432       19
## 7433     3793
## 7434     3868
## 7435      785
## 7436      595
## 7437     2379
## 7438       95
## 7439     8360
## 7440     6218
## 7441     6365
## 7442     4776
## 7443     4310
## 7444     4084
## 7445     3702
## 7446     3263
## 7447     5060
## 7448      163
## 7449     2502
## 7450      609
## 7451      711
## 7452     2478
## 7453     5308
## 7454     2796
## 7455     1610
## 7456     7438
## 7457     2001
## 7458     1722
## 7459     4369
## 7460     4016
## 7461     3186
## 7462     2082
## 7463     2028
## 7464      208
## 7465     1259
## 7466     2987
## 7467     3793
## 7468     1573
## 7469      173
## 7470     5630
## 7471     4102
## 7472      216
## 7473     2353
## 7474     4734
## 7475     5349
## 7476     5679
## 7477     3578
## 7478     2762
## 7479     3793
## 7480     8368
## 7481     7318
## 7482     6377
## 7483     2692
## 7484     6974
## 7485     3362
## 7486     8042
## 7487      104
## 7488     2858
## 7489     1527
## 7490      380
## 7491      588
## 7492      377
## 7493      597
## 7494      367
## 7495       25
## 7496      802
## 7497      163
## 7498      168
## 7499     3081
## 7500     2539
## 7501     3717
## 7502     2826
## 7503     3785
## 7504     5010
## 7505     1020
## 7506     3826
## 7507     4310
## 7508      589
## 7509     4270
## 7510     3950
## 7511     6879
## 7512     2683
## 7513     2806
## 7514     1997
## 7515      196
## 7516     1732
## 7517     3654
## 7518     8451
## 7519     2327
## 7520     8972
## 7521      733
## 7522     3536
## 7523     6377
## 7524     1680
## 7525     8644
## 7526     3300
## 7527     5881
## 7528     2700
## 7529     5747
## 7530     3147
## 7531     6942
## 7532      595
## 7533     2321
## 7534     4703
## 7535     1136
## 7536    32296
## 7537     2599
## 7538     1653
## 7539     1387
## 7540     1259
## 7541     7278
## 7542      318
## 7543     2628
## 7544     2959
## 7545     8610
## 7546     7817
## 7547     8865
## 7548     5515
## 7549      595
## 7550     5459
## 7551     7361
## 7552     3489
## 7553     6753
## 7554     8798
## 7555     7293
## 7556     8528
## 7557     5957
## 7558     6539
## 7559      778
## 7560     5617
## 7561      608
## 7562     1147
## 7563    32031
## 7564     2401
## 7565     6808
## 7566      480
## 7567     5666
## 7568     8798
## 7569    32596
## 7570     3516
## 7571     6942
## 7572       21
## 7573      141
## 7574     2094
## 7575    32627
## 7576     3160
## 7577     1193
## 7578     1222
## 7579     2000
## 7580      300
## 7581     6868
## 7582    32298
## 7583     7457
## 7584     1090
## 7585     3993
## 7586     7836
## 7587     6380
## 7588     1059
## 7589     8905
## 7590    33493
## 7591      745
## 7592      500
## 7593     3591
## 7594     2340
## 7595     6155
## 7596     2520
## 7597      724
## 7598     6281
## 7599     4214
## 7600     8961
## 7601      920
## 7602     3507
## 7603      969
## 7604      933
## 7605     8533
## 7606     1093
## 7607     7361
## 7608     2160
## 7609      733
## 7610      442
## 7611      435
## 7612     5669
## 7613     4639
## 7614     4344
## 7615     2712
## 7616     2318
## 7617     1552
## 7618     1645
## 7619      519
## 7620      227
## 7621      196
## 7622     8493
## 7623     5400
## 7624     4563
## 7625     1992
## 7626      522
## 7627     7009
## 7628     6013
## 7629     1328
## 7630      356
## 7631     7781
## 7632     7372
## 7633     3020
## 7634     1183
## 7635     6390
## 7636     8372
## 7637     8961
## 7638     6377
## 7639     7325
## 7640     8974
## 7641      282
## 7642     7566
## 7643     3499
## 7644     6385
## 7645     2384
## 7646    31694
## 7647     1748
## 7648    32300
## 7649     1193
## 7650     8784
## 7651     6614
## 7652    30848
## 7653      356
## 7654     7235
## 7655      971
## 7656     3686
## 7657     8784
## 7658     8981
## 7659    34162
## 7660     8966
## 7661     7773
## 7662     8291
## 7663     5016
## 7664     6772
## 7665     4523
## 7666     4041
## 7667     4621
## 7668    34048
## 7669    34319
## 7670     1003
## 7671    33615
## 7672    33004
## 7673     7364
## 7674     6863
## 7675    34150
## 7676    30707
## 7677     8983
## 7678     2428
## 7679     8947
## 7680    34072
## 7681     8773
## 7682     5784
## 7683     8974
## 7684     8337
## 7685    31700
## 7686     2203
## 7687     8799
## 7688      906
## 7689     3250
## 7690     4103
## 7691     3198
## 7692     4878
## 7693     8949
## 7694    30810
## 7695     4963
## 7696     8622
## 7697     1713
## 7698     1333
## 7699     4975
## 7700    26695
## 7701     8949
## 7702       22
## 7703     5218
## 7704    27790
## 7705     5106
## 7706     2474
## 7707     8949
## 7708     6867
## 7709     6377
## 7710     2003
## 7711     1288
## 7712      858
## 7713     2375
## 7714     2124
## 7715     1295
## 7716     1077
## 7717      492
## 7718     8984
## 7719     5105
## 7720        1
## 7721      377
## 7722      165
## 7723     1198
## 7724     2396
## 7725     4306
## 7726     2406
## 7727      151
## 7728      260
## 7729     1198
## 7730     7153
## 7731      333
## 7732     3969
## 7733     4023
## 7734     1573
## 7735     1370
## 7736      380
## 7737     3555
## 7738      266
## 7739      648
## 7740     1047
## 7741     6378
## 7742     5400
## 7743       27
## 7744      592
## 7745      595
## 7746     1527
## 7747        2
## 7748     4306
## 7749     3793
## 7750     2011
## 7751     3751
## 7752     3408
## 7753     1028
## 7754     5349
## 7755     4963
## 7756     3033
## 7757       31
## 7758     2572
## 7759     5816
## 7760     1367
## 7761      362
## 7762     1148
## 7763     1250
## 7764     2006
## 7765      858
## 7766     2987
## 7767     2139
## 7768     1517
## 7769     2174
## 7770     3578
## 7771     5956
## 7772     2997
## 7773     5602
## 7774     1090
## 7775     1777
## 7776     2694
## 7777      527
## 7778     4034
## 7779     1376
## 7780     1377
## 7781     6537
## 7782     8493
## 7783     2420
## 7784     4874
## 7785     2011
## 7786     3555
## 7787     3519
## 7788     1234
## 7789     1214
## 7790     2571
## 7791     1220
## 7792     2664
## 7793     4262
## 7794     6333
## 7795     1721
## 7796     7254
## 7797     6934
## 7798     2010
## 7799     3686
## 7800     6305
## 7801      292
## 7802     1265
## 7803     1036
## 7804     3578
## 7805     1704
## 7806     1387
## 7807     7569
## 7808     2662
## 7809     7842
## 7810     1732
## 7811     2406
## 7812     4034
## 7813     1036
## 7814      153
## 7815     3354
## 7816     3793
## 7817       14
## 7818        3
## 7819      923
## 7820      858
## 7821     2858
## 7822     2542
## 7823      954
## 7824     3196
## 7825      593
## 7826     6377
## 7827     3468
## 7828     3671
## 7829     2194
## 7830     7361
## 7831     1200
## 7832      110
## 7833     5952
## 7834     1101
## 7835     2011
## 7836     3897
## 7837     3147
## 7838     1097
## 7839     3503
## 7840     1285
## 7841      474
## 7842     1097
## 7843     3911
## 7844     5445
## 7845     2021
## 7846     2046
## 7847     4370
## 7848     7121
## 7849     1210
## 7850     8371
## 7851     4993
## 7852     6218
## 7853     6942
## 7854      923
## 7855     4306
## 7856     5049
## 7857      595
## 7858     6724
## 7859     1084
## 7860     1944
## 7861     8610
## 7862     5445
## 7863    30793
## 7864     4835
## 7865     3148
## 7866     6239
## 7867     6979
## 7868     3386
## 7869     2020
## 7870      973
## 7871      440
## 7872     3135
## 7873     6996
## 7874      908
## 7875     2640
## 7876     1278
## 7877     1396
## 7878     1297
## 7879     3114
## 7880     5237
## 7881     1097
## 7882     2174
## 7883     2944
## 7884     1952
## 7885     5445
## 7886     7318
## 7887     2671
## 7888     5459
## 7889     5064
## 7890     4351
## 7891     4027
## 7892     1242
## 7893     6050
## 7894     2402
## 7895     1261
## 7896     2144
## 7897     3740
## 7898     3379
## 7899    31225
## 7900     4148
## 7901     6378
## 7902       43
## 7903     2108
## 7904     6796
## 7905      377
## 7906     3244
## 7907     7458
## 7908     1608
## 7909     4823
## 7910     4372
## 7911    31255
## 7912     1267
## 7913     3528
## 7914     1573
## 7915     4498
## 7916     4005
## 7917     3418
## 7918     2802
## 7919     2546
## 7920     2316
## 7921      457
## 7922     1307
## 7923     3505
## 7924     1246
## 7925     5872
## 7926     5445
## 7927     4025
## 7928     5010
## 7929     4616
## 7930     5816
## 7931      788
## 7932     1388
## 7933     2642
## 7934     3039
## 7935     3873
## 7936     7399
## 7937     2268
## 7938     1617
## 7939     7826
## 7940     1333
## 7941     3147
## 7942     3052
## 7943     8950
## 7944     1217
## 7945     2571
## 7946     2761
## 7947     6350
## 7948     5971
## 7949     1222
## 7950     8950
## 7951      203
## 7952    37733
## 7953     8532
## 7954     5685
## 7955      527
## 7956     2393
## 7957     1917
## 7958      805
## 7959     1552
## 7960     2006
## 7961     2804
## 7962     4886
## 7963        1
## 7964     2248
## 7965     6942
## 7966     1923
## 7967      858
## 7968      590
## 7969     4327
## 7970     1073
## 7971     3654
## 7972      208
## 7973     7143
## 7974     1961
## 7975     1407
## 7976     1247
## 7977     2302
## 7978     3052
## 7979    30793
## 7980     8575
## 7981     5283
## 7982     5106
## 7983    33794
## 7984    34532
## 7985     4069
## 7986    33493
## 7987     8874
## 7988     5989
## 7989     4995
## 7990     6874
## 7991     3556
## 7992      920
## 7993      186
## 7994      410
## 7995     8464
## 7996     2186
## 7997     1269
## 7998      372
## 7999     5693
## 8000     7009
## 8001     6678
## 8002     2590
## 8003      463
## 8004     1416
## 8005     1569
## 8006      162
## 8007     7753
## 8008     5012
## 8009      232
## 8010     6377
## 8011     4226
## 8012     2804
## 8013     1950
## 8014      293
## 8015     1411
## 8016     1617
## 8017     6016
## 8018     2987
## 8019     2747
## 8020     6238
## 8021     4010
## 8022     4207
## 8023     2902
## 8024     1721
## 8025     2746
## 8026     2375
## 8027     3147
## 8028     3418
## 8029     1653
## 8030     1090
## 8031     1722
## 8032       48
## 8033     1272
## 8034      150
## 8035     8961
## 8036     1784
## 8037     1213
## 8038     1923
## 8039     3996
## 8040      786
## 8041      342
## 8042      266
## 8043     1090
## 8044     4034
## 8045     1101
## 8046      337
## 8047     3435
## 8048     2186
## 8049     1260
## 8050     5891
## 8051      541
## 8052     5062
## 8053       16
## 8054     1230
## 8055     4973
## 8056     5291
## 8057     6669
## 8058     5669
## 8059      954
## 8060      500
## 8061     1721
## 8062     1291
## 8063     4995
## 8064     1278
## 8065       48
## 8066     1148
## 8067     1197
## 8068     2571
## 8069      594
## 8070      594
## 8071     2919
## 8072      337
## 8073      104
## 8074     7294
## 8075     8364
## 8076     7030
## 8077    41569
## 8078    33794
## 8079      745
## 8080     2054
## 8081     1909
## 8082     6365
## 8083       50
## 8084     2858
## 8085     1089
## 8086    26285
## 8087    26734
## 8088    27434
## 8089     9005
## 8090     8902
## 8091     8889
## 8092     8839
## 8093      368
## 8094     8770
## 8095     2797
## 8096      104
## 8097      595
## 8098     7155
## 8099     1291
## 8100     2194
## 8101     1197
## 8102    30707
## 8103     3578
## 8104     8360
## 8105     3448
## 8106     1148
## 8107     5470
## 8108     1784
## 8109      368
## 8110      594
## 8111      410
## 8112     1213
## 8113     4886
## 8114     2804
## 8115     4022
## 8116     1288
## 8117     2948
## 8118     1270
## 8119     5060
## 8120      475
## 8121       50
## 8122     2028
## 8123     3006
## 8124     8958
## 8125     7090
## 8126     5445
## 8127     1210
## 8128     2470
## 8129     1674
## 8130     1552
## 8131     6863
## 8132     2094
## 8133     2080
## 8134     1210
## 8135    33493
## 8136     6032
## 8137     1041
## 8138      341
## 8139     4014
## 8140     1136
## 8141     2997
## 8142      337
## 8143     4292
## 8144      186
## 8145     2194
## 8146       11
## 8147      750
## 8148     5378
## 8149        3
## 8150     3310
## 8151     2291
## 8152     1214
## 8153     1136
## 8154     3578
## 8155     1704
## 8156       32
## 8157      376
## 8158     4015
## 8159     3316
## 8160    32587
## 8161     8636
## 8162     3751
## 8163       25
## 8164     1393
## 8165     2115
## 8166     1391
## 8167    34405
## 8168     7802
## 8169     4886
## 8170     1259
## 8171     8636
## 8172     4973
## 8173     7090
## 8174    27741
## 8175     2174
## 8176     2115
## 8177     1252
## 8178     4027
## 8179     2395
## 8180     8957
## 8181     6863
## 8182     6807
## 8183     2640
## 8184     8644
## 8185     3635
## 8186     3436
## 8187     2355
## 8188     2000
## 8189     1393
## 8190      339
## 8191     7012
## 8192     5452
## 8193     4936
## 8194     3125
## 8195     2502
## 8196      508
## 8197     1393
## 8198       94
## 8199      306
## 8200     1059
## 8201      587
## 8202      317
## 8203     3258
## 8204     2735
## 8205     2527
## 8206     3672
## 8207     2174
## 8208     1917
## 8209       11
## 8210     6650
## 8211     7013
## 8212     1013
## 8213     5957
## 8214     3538
## 8215     3977
## 8216      101
## 8217     1258
## 8218    30898
## 8219    41566
## 8220     3469
## 8221      381
## 8222     1219
## 8223     4586
## 8224     8966
## 8225     4225
## 8226       47
## 8227     1212
## 8228     2001
## 8229     8644
## 8230    26870
## 8231     3501
## 8232     5927
## 8233     5213
## 8234     8884
## 8235     6231
## 8236     6593
## 8237     2014
## 8238     3979
## 8239     2916
## 8240     1876
## 8241     8369
## 8242    34150
## 8243     5025
## 8244     6187
## 8245     1680
## 8246     4019
## 8247    34319
## 8248     8362
## 8249     6564
## 8250    27706
## 8251      788
## 8252     7366
## 8253       48
## 8254     8507
## 8255     6787
## 8256     1222
## 8257    35836
## 8258     5952
## 8259     8019
## 8260     1214
## 8261      589
## 8262     1097
## 8263      376
## 8264    26603
## 8265     2085
## 8266     8781
## 8267     7036
## 8268     3270
## 8269    27772
## 8270     8132
## 8271     7162
## 8272     8870
## 8273     8360
## 8274    39292
## 8275      590
## 8276      380
## 8277     5956
## 8278     2949
## 8279     3638
## 8280     2921
## 8281     2990
## 8282    30825
## 8283    36519
## 8284     2348
## 8285     3763
## 8286     6027
## 8287     8451
## 8288     6552
## 8289     3359
## 8290     1249
## 8291     7206
## 8292     8907
## 8293     1207
## 8294     2688
## 8295     2485
## 8296     2391
## 8297      195
## 8298     8984
## 8299     8641
## 8300    40278
## 8301     2424
## 8302     7782
## 8303     8798
## 8304      377
## 8305      224
## 8306       10
## 8307     4865
## 8308     6157
## 8309      346
## 8310     1304
## 8311     2577
## 8312     1645
## 8313      500
## 8314      783
## 8315     3969
## 8316     2203
## 8317    34150
## 8318    33004
## 8319    27816
## 8320     6690
## 8321      788
## 8322     2841
## 8323     6890
## 8324    30883
## 8325      778
## 8326      923
## 8327     6281
## 8328    32029
## 8329    34129
## 8330    39419
## 8331     3408
## 8332     4741
## 8333    36517
## 8334     1214
## 8335     2470
## 8336     4369
## 8337     2471
## 8338      482
## 8339     7254
## 8340     8833
## 8341     8636
## 8342    42011
## 8343     4873
## 8344    27821
## 8345     7151
## 8346    40581
## 8347    45447
## 8348     1755
## 8349      491
## 8350     1953
## 8351      150
## 8352     7143
## 8353     3801
## 8354     3683
## 8355     1084
## 8356    26776
## 8357    25927
## 8358     8042
## 8359     3095
## 8360     4246
## 8361     1476
## 8362     4466
## 8363     5172
## 8364      805
## 8365      353
## 8366     3911
## 8367      347
## 8368      955
## 8369     4144
## 8370     8980
## 8371     3081
## 8372     5074
## 8373      471
## 8374     3740
## 8375     4488
## 8376     6731
## 8377     5395
## 8378     5541
## 8379     7445
## 8380     5496
## 8381     2427
## 8382     3083
## 8383     7235
## 8384    30707
## 8385     3769
## 8386     8644
## 8387     1307
## 8388     7000
## 8389     5528
## 8390     5388
## 8391     8800
## 8392     1783
## 8393     3703
## 8394     2105
## 8395     3709
## 8396    39292
## 8397    39234
## 8398    37855
## 8399       41
## 8400     2096
## 8401      899
## 8402     4623
## 8403     6564
## 8404    40583
## 8405    44191
## 8406    45722
## 8407    37733
## 8408     4217
## 8409     5341
## 8410    45722
## 8411    46970
## 8412    34336
## 8413     4245
## 8414     4103
## 8415     3978
## 8416    47640
## 8417    46970
## 8418    43917
## 8419    45175
## 8420    44613
## 8421    44665
## 8422    47950
## 8423    45210
## 8424    40614
## 8425    39446
## 8426     6868
## 8427     8520
## 8428      420
## 8429     2985
## 8430     3977
## 8431     7361
## 8432     7034
## 8433      597
## 8434     2640
## 8435      520
## 8436     1721
## 8437     2683
## 8438     4034
## 8439       47
## 8440     7438
## 8441     5060
## 8442       70
## 8443     5650
## 8444     3070
## 8445      780
## 8446      293
## 8447     2858
## 8448      593
## 8449      318
## 8450    46976
## 8451     2054
## 8452     4995
## 8453     1293
## 8454     1086
## 8455      457
## 8456      420
## 8457      318
## 8458      520
## 8459      315
## 8460       70
## 8461     2012
## 8462     1246
## 8463     1197
## 8464     4993
## 8465     1223
## 8466     2959
## 8467      104
## 8468     1219
## 8469      480
## 8470     4995
## 8471     8636
## 8472     4886
## 8473      590
## 8474      377
## 8475      260
## 8476      260
## 8477      165
## 8478     3996
## 8479     8368
## 8480      648
## 8481     4963
## 8482     4896
## 8483     1240
## 8484     2959
## 8485     1784
## 8486    32587
## 8487     3793
## 8488     4022
## 8489     6934
## 8490     7153
## 8491      329
## 8492     1917
## 8493     2640
## 8494    30707
## 8495     2700
## 8496    48780
## 8497     3578
## 8498     1653
## 8499      750
## 8500    48385
## 8501     7075
## 8502     5377
## 8503    32666
## 8504     1610
## 8505     1393
## 8506     3535
## 8507     8972
## 8508     8972
## 8509    33493
## 8510     2502
## 8511    44195
## 8512     1213
## 8513     3265
## 8514     6947
## 8515      260
## 8516     4993
## 8517     2683
## 8518     1210
## 8519      480
## 8520     7438
## 8521     4963
## 8522    34162
## 8523     6287
## 8524     1721
## 8525    33493
## 8526     3646
## 8527     6373
## 8528     5991
## 8529     8622
## 8530     1036
## 8531     8464
## 8532     1911
## 8533     4019
## 8534    40815
## 8535    41617
## 8536     5218
## 8537    33615
## 8538     4158
## 8539      500
## 8540     2249
## 8541     6188
## 8542    34405
## 8543     3624
## 8544    41566
## 8545      364
## 8546     4993
## 8547    44191
## 8548     5445
## 8549     2710
## 8550      231
## 8551     2858
## 8552    34162
## 8553      919
## 8554     6863
## 8555     4878
## 8556      595
## 8557     3253
## 8558     2617
## 8559     4718
## 8560     1020
## 8561     2416
## 8562     2918
## 8563     1196
## 8564     1682
## 8565     1136
## 8566     2186
## 8567     1676
## 8568     8798
## 8569     1552
## 8570     5445
## 8571     2700
## 8572     4995
## 8573      529
## 8574     1136
## 8575    48516
## 8576     7361
## 8577     1208
## 8578     1262
## 8579      527
## 8580      950
## 8581     1263
## 8582        7
## 8583     1653
## 8584     1320
## 8585     5378
## 8586     8360
## 8587     4973
## 8588     4014
## 8589     1148
## 8590     6881
## 8591     3507
## 8592     2321
## 8593     6441
## 8594     3897
## 8595     3006
## 8596     6787
## 8597     7132
## 8598      356
## 8599    26148
## 8600      946
## 8601     7840
## 8602     6428
## 8603     3097
## 8604     7215
## 8605      936
## 8606     1086
## 8607     1934
## 8608     1269
## 8609      899
## 8610     3311
## 8611      919
## 8612    48780
## 8613     7361
## 8614      648
## 8615      344
## 8616     7153
## 8617     1407
## 8618      173
## 8619     1485
## 8620     4973
## 8621     3421
## 8622     2571
## 8623     4963
## 8624     1252
## 8625     1358
## 8626     1214
## 8627     1199
## 8628     3702
## 8629     1580
## 8630     2918
## 8631     1230
## 8632      778
## 8633     1485
## 8634     4011
## 8635     2502
## 8636     1961
## 8637      265
## 8638     1101
## 8639     4886
## 8640     2406
## 8641      356
## 8642     1197
## 8643      364
## 8644     1136
## 8645     5377
## 8646     2012
## 8647    27790
## 8648     3052
## 8649     2396
## 8650     2949
## 8651     2804
## 8652     2858
## 8653     1376
## 8654       47
## 8655     5378
## 8656     7361
## 8657     5010
## 8658     8665
## 8659     2355
## 8660     1210
## 8661      480
## 8662     8665
## 8663    35836
## 8664     1917
## 8665     2617
## 8666     2858
## 8667     8360
## 8668     5989
## 8669      588
## 8670     8368
## 8671      500
## 8672     4370
## 8673    37240
## 8674      592
## 8675     3793
## 8676     1610
## 8677      368
## 8678      589
## 8679      356
## 8680     6377
## 8681      231
## 8682     1653
## 8683      908
## 8684     4034
## 8685     2321
## 8686      953
## 8687     1148
## 8688      356
## 8689     1907
## 8690     3578
## 8691     4886
## 8692     1580
## 8693     2324
## 8694      325
## 8695     6936
## 8696        1
## 8697    48322
## 8698     1035
## 8699      903
## 8700     1997
## 8701     3101
## 8702     1584
## 8703      442
## 8704     6541
## 8705      832
## 8706     1380
## 8707      466
## 8708      110
## 8709     4886
## 8710     1580
## 8711     5349
## 8712      588
## 8713     2699
## 8714     1208
## 8715      953
## 8716      904
## 8717     2959
## 8718     1221
## 8719      913
## 8720     1259
## 8721      593
## 8722      356
## 8723     3578
## 8724     1276
## 8725     1961
## 8726      223
## 8727     3996
## 8728     2183
## 8729     1196
## 8730     5464
## 8731     4963
## 8732     6365
## 8733     2716
## 8734      527
## 8735     8961
## 8736     3114
## 8737     1393
## 8738     5669
## 8739     1136
## 8740     1060
## 8741     2710
## 8742    37741
## 8743     3481
## 8744    45722
## 8745     8949
## 8746      161
## 8747     8798
## 8748     6669
## 8749     6620
## 8750     2618
## 8751     4235
## 8752     1921
## 8753      307
## 8754      306
## 8755     2174
## 8756     6281
## 8757     2683
## 8758    33154
## 8759       47
## 8760     1258
## 8761      780
## 8762      357
## 8763     2987
## 8764     2054
## 8765      180
## 8766     4018
## 8767     2707
## 8768      592
## 8769     4874
## 8770      351
## 8771     2141
## 8772     5502
## 8773     4084
## 8774     2702
## 8775       28
## 8776     5810
## 8777     1961
## 8778     5502
## 8779      597
## 8780     6287
## 8781     1573
## 8782     2846
## 8783     2036
## 8784     1310
## 8785      353
## 8786     2167
## 8787     6157
## 8788    37857
## 8789     4467
## 8790     6056
## 8791    27523
## 8792     6123
## 8793     1218
## 8794     3471
## 8795     3196
## 8796       62
## 8797      329
## 8798     1580
## 8799     2716
## 8800    37729
## 8801    47518
## 8802      163
## 8803     3147
## 8804    45672
## 8805     6331
## 8806     6711
## 8807     1291
## 8808     7325
## 8809    31223
## 8810     4299
## 8811     3000
## 8812     1228
## 8813     4886
## 8814     1198
## 8815      165
## 8816    40815
## 8817       32
## 8818     3744
## 8819    37729
## 8820     6157
## 8821     8957
## 8822     1678
## 8823     4701
## 8824    40819
## 8825    48142
## 8826     2729
## 8827     7445
## 8828     3948
## 8829     1203
## 8830     8044
## 8831     1204
## 8832     8191
## 8833     1242
## 8834    37830
## 8835     5679
## 8836     4308
## 8837     5218
## 8838     1485
## 8839     4896
## 8840     4963
## 8841     1136
## 8842     4027
## 8843     4541
## 8844    45928
## 8845     2355
## 8846     1097
## 8847     3977
## 8848    45499
## 8849      364
## 8850     1089
## 8851     5502
## 8852     3897
## 8853     3253
## 8854     2000
## 8855     1246
## 8856        2
## 8857     7090
## 8858     2324
## 8859      778
## 8860     1676
## 8861     1552
## 8862     1080
## 8863     6953
## 8864     4638
## 8865      466
## 8866     4367
## 8867     1617
## 8868     5528
## 8869    44191
## 8870      180
## 8871    48516
## 8872      553
## 8873     3022
## 8874     2019
## 8875     2140
## 8876      260
## 8877     1644
## 8878     1517
## 8879      353
## 8880      802
## 8881     3994
## 8882     6333
## 8883     2150
## 8884     4018
## 8885      538
## 8886     6873
## 8887     2134
## 8888     2485
## 8889     3536
## 8890     2735
## 8891      537
## 8892      493
## 8893     2565
## 8894     1895
## 8895     1457
## 8896     3248
## 8897     8865
## 8898     5025
## 8899    46578
## 8900      926
## 8901    44193
## 8902     1287
## 8903     2889
## 8904     3827
## 8905     2478
## 8906      374
## 8907       31
## 8908     2539
## 8909     2338
## 8910     6593
## 8911     5548
## 8912      377
## 8913    39183
## 8914     1214
## 8915     1464
## 8916     5872
## 8917    48385
## 8918      778
## 8919     7438
## 8920     4886
## 8921     3481
## 8922     1234
## 8923     2231
## 8924     2278
## 8925     5025
## 8926     4489
## 8927      908
## 8928     8154
## 8929     1200
## 8930    42007
## 8931    45221
## 8932    34072
## 8933     5525
## 8934    38061
## 8935    43836
## 8936     3952
## 8937     3505
## 8938    40278
## 8939     7017
## 8940    26729
## 8941      586
## 8942     5445
## 8943     5010
## 8944     1527
## 8945     2916
## 8946     1682
## 8947     6385
## 8948      782
## 8949     8977
## 8950    39183
## 8951    48516
## 8952    45186
## 8953     1060
## 8954    46723
## 8955     8784
## 8956    48516
## 8957    48780
## 8958    45720
## 8959    26686
## 8960       60
## 8961     6863
## 8962     2454
## 8963     2728
## 8964    44665
## 8965    48516
## 8966    47200
## 8967    49272
## 8968    48394
## 8969    44555
## 8970    48738
## 8971     1270
## 8972    26350
## 8973    27700
## 8974     5378
## 8975     1923
## 8976     4446
## 8977      743
## 8978     3173
## 8979     6373
## 8980     6316
## 8981      553
## 8982    53125
## 8983      168
## 8984    37380
## 8985    51255
## 8986     5219
## 8987    47518
## 8988      741
## 8989     1210
## 8990      858
## 8991    48696
## 8992     1148
## 8993      720
## 8994     6188
## 8995     8638
## 8996     4993
## 8997     3408
## 8998     2918
## 8999     3753
## 9000     3052
## 9001     2000
## 9002     1968
## 9003     4102
## 9004     7173
## 9005    42736
## 9006     6952
## 9007    54272
## 9008     3451
## 9009    54001
## 9010    53894
## 9011     2858
## 9012     2027
## 9013     5064
## 9014    51662
## 9015    35836
## 9016    48516
## 9017    52694
## 9018       50
## 9019     5378
## 9020    45722
## 9021     5989
## 9022     1097
## 9023      367
## 9024      586
## 9025     2916
## 9026    51540
## 9027     7013
## 9028     2012
## 9029     5502
## 9030     1356
## 9031     1136
## 9032       25
## 9033     1259
## 9034        2
## 9035    50153
## 9036     8644
## 9037      509
## 9038     2395
## 9039     7458
## 9040     5060
## 9041     6565
## 9042     1394
## 9043    40583
## 9044      832
## 9045     6537
## 9046     7373
## 9047     2671
## 9048     3256
## 9049    39292
## 9050      172
## 9051     5218
## 9052      529
## 9053     1201
## 9054     2641
## 9055     1293
## 9056     3698
## 9057    31696
## 9058       45
## 9059    45720
## 9060     2707
## 9061     6383
## 9062       19
## 9063     1032
## 9064     4041
## 9065    45722
## 9066     3623
## 9067    45186
## 9068     8641
## 9069     4774
## 9070     1552
## 9071     8957
## 9072     1196
## 9073      364
## 9074      231
## 9075     1073
## 9076      288
## 9077      111
## 9078      293
## 9079     1517
## 9080     3114
## 9081     5995
## 9082     1274
## 9083     4262
## 9084     1682
## 9085    50804
## 9086     6711
## 9087     2291
## 9088       18
## 9089     3018
## 9090     2459
## 9091      151
## 9092     1673
## 9093        2
## 9094     1777
## 9095     3081
## 9096     4370
## 9097     4017
## 9098     2858
## 9099     1732
## 9100     4799
## 9101     3033
## 9102    48385
## 9103     1307
## 9104      318
## 9105     2918
## 9106     1517
## 9107     2985
## 9108     2533
## 9109     2291
## 9110    43936
## 9111     6534
## 9112    45722
## 9113     2028
## 9114     2085
## 9115    51662
## 9116     1304
## 9117     2788
## 9118       32
## 9119     3911
## 9120     3070
## 9121     4993
## 9122    37720
## 9123     6787
## 9124      541
## 9125     1387
## 9126     1220
## 9127      953
## 9128     4826
## 9129      493
## 9130     1954
## 9131     2797
## 9132     8596
## 9133     2423
## 9134     2490
## 9135        1
## 9136     1270
## 9137      500
## 9138      367
## 9139     1968
## 9140     1234
## 9141     2125
## 9142     1974
## 9143    51662
## 9144    54286
## 9145     8169
## 9146    27674
## 9147    43936
## 9148     6502
## 9149     2262
## 9150     1459
## 9151     4310
## 9152     4155
## 9153      780
## 9154     2329
## 9155     4239
## 9156    47200
## 9157     5379
## 9158     8169
## 9159     1203
## 9160     5945
## 9161        1
## 9162     2571
## 9163     3996
## 9164     7153
## 9165       32
## 9166     2396
## 9167     6016
## 9168     7293
## 9169      965
## 9170      344
## 9171     3754
## 9172      932
## 9173     8977
## 9174     1320
## 9175     2971
## 9176     8610
## 9177       11
## 9178       18
## 9179     3524
## 9180     6539
## 9181       34
## 9182     1894
## 9183     6888
## 9184      370
## 9185     1091
## 9186     2717
## 9187     3785
## 9188      520
## 9189     1333
## 9190     4008
## 9191     5418
## 9192     1968
## 9193     8969
## 9194     6797
## 9195     2336
## 9196     4159
## 9197     5810
## 9198     4370
## 9199     4465
## 9200     1608
## 9201     1690
## 9202     3214
## 9203     4039
## 9204     1954
## 9205    34405
## 9206     7173
## 9207     1610
## 9208     2502
## 9209     1387
## 9210     1198
## 9211       62
## 9212      588
## 9213       95
## 9214     7438
## 9215     1682
## 9216     1527
## 9217     2406
## 9218     1653
## 9219     1136
## 9220      344
## 9221     4034
## 9222    40815
## 9223      838
## 9224     2858
## 9225     2683
## 9226     2144
## 9227     4914
## 9228    27186
## 9229     7099
## 9230     5618
## 9231       50
## 9232     1148
## 9233     5418
## 9234     1221
## 9235     7153
## 9236     5991
## 9237     3948
## 9238     1690
## 9239     8638
## 9240     4571
## 9241     4351
## 9242    48394
## 9243    49272
## 9244     3534
## 9245     5618
## 9246     3468
## 9247    31658
## 9248     1267
## 9249     6016
## 9250     1961
## 9251     1183
## 9252      527
## 9253     4223
## 9254    48780
## 9255      480
## 9256     1097
## 9257     5989
## 9258     4034
## 9259     2916
## 9260       47
## 9261     4011
## 9262    53322
## 9263     7458
## 9264       32
## 9265       29
## 9266     2000
## 9267    30812
## 9268     3755
## 9269     6874
## 9270     1653
## 9271     5049
## 9272     2439
## 9273      457
## 9274       32
## 9275     1213
## 9276    48738
## 9277     1214
## 9278     1219
## 9279     1252
## 9280     2367
## 9281      858
## 9282    32587
## 9283     8961
## 9284     6934
## 9285     6807
## 9286      858
## 9287      364
## 9288      208
## 9289      551
## 9290     5036
## 9291     4963
## 9292       10
## 9293       32
## 9294     1527
## 9295     1784
## 9296     1080
## 9297     5418
## 9298     3275
## 9299    33794
## 9300    34405
## 9301     7090
## 9302     6874
## 9303      432
## 9304     5459
## 9305     4720
## 9306     3826
## 9307     5621
## 9308     1094
## 9309      590
## 9310     1246
## 9311     1263
## 9312     3985
## 9313     8125
## 9314    51575
## 9315     5940
## 9316     2291
## 9317     2989
## 9318     5791
## 9319     1641
## 9320     1380
## 9321     7840
## 9322    54001
## 9323     2193
## 9324     5266
## 9325     4226
## 9326    33794
## 9327     2571
## 9328     7099
## 9329     1748
## 9330     2968
## 9331     4896
## 9332    41566
## 9333    30793
## 9334     2987
## 9335    42738
## 9336     1617
## 9337    48780
## 9338    49272
## 9339     2804
## 9340     1961
## 9341     2288
## 9342     5833
## 9343     6323
## 9344     4612
## 9345     1299
## 9346     2366
## 9347    48394
## 9348      110
## 9349     3037
## 9350     6837
## 9351     4223
## 9352     1240
## 9353     5445
## 9354     1376
## 9355     8371
## 9356     6934
## 9357     4942
## 9358      611
## 9359     2300
## 9360      954
## 9361     1643
## 9362     2762
## 9363      165
## 9364     1617
## 9365     3114
## 9366     3504
## 9367     3347
## 9368     4292
## 9369     2671
## 9370     3507
## 9371     1012
## 9372     2997
## 9373     1197
## 9374     2431
## 9375      508
## 9376     4002
## 9377     4664
## 9378      377
## 9379    46578
## 9380     3408
## 9381     1625
## 9382    34405
## 9383     1210
## 9384      329
## 9385     1036
## 9386    43333
## 9387    40819
## 9388      903
## 9389     8963
## 9390     1375
## 9391     1234
## 9392     2069
## 9393     5034
## 9394     6101
## 9395      714
## 9396     2278
## 9397      933
## 9398     1203
## 9399     4881
## 9400    46972
## 9401     1831
## 9402     4327
## 9403      866
## 9404     2502
## 9405    46578
## 9406     3471
## 9407     1407
## 9408     6377
## 9409     6378
## 9410     2640
## 9411     2081
## 9412     3253
## 9413     2542
## 9414     8798
## 9415     1222
## 9416     1625
## 9417      292
## 9418      592
## 9419     4571
## 9420     4718
## 9421     4447
## 9422     3255
## 9423     1060
## 9424     1221
## 9425    52281
## 9426       50
## 9427     3408
## 9428      215
## 9429     4878
## 9430     8970
## 9431     6874
## 9432      235
## 9433     3671
## 9434     7371
## 9435     7361
## 9436      608
## 9437      736
## 9438      357
## 9439      141
## 9440     3578
## 9441     1517
## 9442     2710
## 9443     1219
## 9444      317
## 9445      235
## 9446     1407
## 9447     1552
## 9448     2763
## 9449     6711
## 9450     8636
## 9451     4979
## 9452     1569
## 9453      724
## 9454    44665
## 9455    51931
## 9456     2770
## 9457    53464
## 9458    25850
## 9459     2657
## 9460     1244
## 9461     4262
## 9462     1215
## 9463     2115
## 9464     1953
## 9465    45722
## 9466     3476
## 9467     2140
## 9468     1214
## 9469     7361
## 9470    49272
## 9471     8949
## 9472     4011
## 9473     4226
## 9474     1230
## 9475     1136
## 9476     2788
## 9477     1235
## 9478     1080
## 9479     7307
## 9480     1464
## 9481     3925
## 9482     3275
## 9483    33493
## 9484    48516
## 9485    56174
## 9486    48394
## 9487    44191
## 9488    50872
## 9489    45062
## 9490    27773
## 9491    44555
## 9492     4235
## 9493     3147
## 9494     3703
## 9495     1274
## 9496     4369
## 9497     1267
## 9498    49530
## 9499    26698
## 9500    45722
## 9501    53125
## 9502    56801
## 9503     6539
## 9504     1095
## 9505    52328
## 9506     4261
## 9507      904
## 9508     3949
## 9509    47894
## 9510    56367
## 9511     4749
## 9512    37386
## 9513     1690
## 9514     1200
## 9515    31424
## 9516     7438
## 9517     2571
## 9518     2959
## 9519       62
## 9520     1961
## 9521     1089
## 9522     1584
## 9523     1206
## 9524     4775
## 9525    48516
## 9526     4878
## 9527    51255
## 9528    41566
## 9529     3481
## 9530     5669
## 9531     1458
## 9532    53578
## 9533     2985
## 9534     1304
## 9535     7360
## 9536     3175
## 9537     4246
## 9538     1552
## 9539     5418
## 9540     2006
## 9541     3911
## 9542      553
## 9543     2712
## 9544    56607
## 9545    57368
## 9546    39292
## 9547    48598
## 9548     4646
## 9549     8966
## 9550    50160
## 9551     4720
## 9552     5147
## 9553      942
## 9554      936
## 9555     3000
## 9556     1284
## 9557      903
## 9558      608
## 9559     2762
## 9560      367
## 9561     1617
## 9562    55872
## 9563     6370
## 9564     2502
## 9565    46578
## 9566    47644
## 9567    55052
## 9568    48161
## 9569     2707
## 9570     2699
## 9571    59615
## 9572    54736
## 9573     2579
## 9574    58047
## 9575      349
## 9576     1527
## 9577     1784
## 9578     3481
## 9579     5944
## 9580     2712
## 9581     8784
## 9582     1246
## 9583     2193
## 9584      661
## 9585        5
## 9586     1247
## 9587     3018
## 9588      926
## 9589     2311
## 9590    31420
## 9591     1244
## 9592     7934
## 9593     6104
## 9594     6711
## 9595    56782
## 9596     2717
## 9597      356
## 9598     4993
## 9599      593
## 9600    54286
## 9601       47
## 9602      292
## 9603     1682
## 9604    54503
## 9605    41569
## 9606    54272
## 9607     2959
## 9608     2502
## 9609     1673
## 9610     8361
## 9611     4901
## 9612      802
## 9613     1129
## 9614     2944
## 9615     8810
## 9616    50912
## 9617     1206
## 9618    33138
## 9619     1068
## 9620     7482
## 9621    56782
## 9622    56788
## 9623    48696
## 9624    40819
## 9625    49286
## 9626      273
## 9627    45720
## 9628     6709
## 9629     7451
## 9630    33004
## 9631     2643
## 9632     4254
## 9633     7254
## 9634     2746
## 9635     1947
## 9636     1198
## 9637     1892
## 9638     8529
## 9639    45722
## 9640     8970
## 9641     4914
## 9642     2843
## 9643      665
## 9644     6538
## 9645     2731
## 9646     8949
## 9647     1464
## 9648      923
## 9649    33592
## 9650     2959
## 9651     2571
## 9652     4027
## 9653     3646
## 9654     8529
## 9655     5134
## 9656     1022
## 9657     2968
## 9658      562
## 9659       12
## 9660     1644
## 9661     1411
## 9662     3404
## 9663     2858
## 9664      616
## 9665     3005
## 9666    50872
## 9667      364
## 9668     3978
## 9669     8807
## 9670     2541
## 9671     3994
## 9672     6874
## 9673     8376
## 9674     6218
## 9675     1682
## 9676     1485
## 9677     5378
## 9678     4023
## 9679      589
## 9680     2762
## 9681     1721
## 9682     3793
## 9683     2858
## 9684     8784
## 9685     4878
## 9686     2872
## 9687    57640
## 9688     4235
## 9689     4995
## 9690     7438
## 9691     6377
## 9692     3793
## 9693    27801
## 9694     8972
## 9695      592
## 9696      163
## 9697     2628
## 9698     1097
## 9699      910
## 9700      364
## 9701     1517
## 9702      589
## 9703     7147
## 9704     6377
## 9705      380
## 9706     3578
## 9707     5952
## 9708     1580
## 9709     2959
## 9710     6539
## 9711    45722
## 9712      588
## 9713    46578
## 9714     2355
## 9715     1682
## 9716     3408
## 9717      924
## 9718     2968
## 9719     2076
## 9720     3863
## 9721     2944
## 9722     2359
## 9723     4306
## 9724     5952
## 9725     7153
## 9726      589
## 9727     2571
## 9728     7367
## 9729      165
## 9730      736
## 9731     2628
## 9732     2716
## 9733     2683
## 9734     3793
## 9735      924
## 9736     1393
## 9737     1517
## 9738      266
## 9739     1485
## 9740     3147
## 9741     3814
## 9742     2750
## 9743     2302
## 9744      555
## 9745       70
## 9746     1203
## 9747    27773
## 9748    44633
## 9749    31658
## 9750    46850
## 9751    46578
## 9752     2542
## 9753      916
## 9754    48774
## 9755     1949
## 9756     8970
## 9757     1466
## 9758     8784
## 9759     3451
## 9760     1233
## 9761     2890
## 9762      661
## 9763      910
## 9764     7766
## 9765      908
## 9766     7121
## 9767     5825
## 9768     3801
## 9769     1252
## 9770     8207
## 9771     3462
## 9772    25763
## 9773     4298
## 9774     1203
## 9775     6254
## 9776     8542
## 9777    49200
## 9778     6650
## 9779     1267
## 9780      926
## 9781     1617
## 9782     8042
## 9783     4226
## 9784     3735
## 9785      905
## 9786     1909
## 9787     4327
## 9788      780
## 9789        1
## 9790      110
## 9791      318
## 9792     2795
## 9793      765
## 9794     1892
## 9795     3527
## 9796     5459
## 9797      356
## 9798    41285
## 9799      830
## 9800     2571
## 9801     1221
## 9802     4005
## 9803     5418
## 9804     4720
## 9805    27803
## 9806     7377
## 9807     3448
## 9808     1125
## 9809     6305
## 9810     6371
## 9811     2383
## 9812     1389
## 9813     2642
## 9814     1270
## 9815      736
## 9816      597
## 9817      587
## 9818     1036
## 9819     2716
## 9820      541
## 9821      223
## 9822     1517
## 9823     2174
## 9824     1544
## 9825     2407
## 9826     2770
## 9827     1343
## 9828    58105
## 9829     8810
## 9830     1200
## 9831     1210
## 9832     4022
## 9833     2706
## 9834     2046
## 9835     2762
## 9836     1291
## 9837    55765
## 9838     2324
## 9839     1707
## 9840     3275
## 9841     5903
## 9842     2795
## 9843     2918
## 9844     1265
## 9845     2710
## 9846      107
## 9847     1409
## 9848    40819
## 9849    47099
## 9850     1101
## 9851     7438
## 9852     1220
## 9853     1955
## 9854     1246
## 9855     1777
## 9856     6787
## 9857     4720
## 9858    35836
## 9859     2470
## 9860     2826
## 9861     3267
## 9862     8644
## 9863     8636
## 9864     3624
## 9865    27660
## 9866      377
## 9867     6365
## 9868     3863
## 9869    33437
## 9870     1259
## 9871     7773
## 9872    27904
## 9873     2872
## 9874     1089
## 9875      593
## 9876      589
## 9877      500
## 9878     1240
## 9879    56775
## 9880     1687
## 9881     1653
## 9882      733
## 9883     6283
## 9884    46530
## 9885     1587
## 9886     6534
## 9887    52281
## 9888     2643
## 9889    44195
## 9890      741
## 9891     5643
## 9892      253
## 9893     1748
## 9894     1080
## 9895     4306
## 9896    48394
## 9897     1732
## 9898     1240
## 9899     4246
## 9900     4370
## 9901     1287
## 9902     2723
## 9903    26131
## 9904       19
## 9905     5218
## 9906     5388
## 9907     8981
## 9908     8984
## 9909    53322
## 9910     3552
## 9911     2694
## 9912    53519
## 9913     3826
## 9914     4223
## 9915     7293
## 9916     8641
## 9917     1921
## 9918     7325
## 9919     6287
## 9920      585
## 9921     3450
## 9922    55995
## 9923    46972
## 9924     1590
## 9925    33162
## 9926    56003
## 9927      277
## 9928    51935
## 9929    59141
## 9930     1200
## 9931     1222
## 9932    56367
## 9933     1556
## 9934     1729
## 9935    56251
## 9936     1339
## 9937    40966
## 9938      356
## 9939     2023
## 9940     1690
## 9941     5219
## 9942    54999
## 9943     2340
## 9944     4052
## 9945     6880
## 9946     4255
## 9947    59615
## 9948     2231
## 9949     1552
## 9950    59336
## 9951    42094
## 9952    57640
## 9953     2396
## 9954     2115
## 9955     6502
## 9956     2488
## 9957      592
## 9958      780
## 9959     6060
## 9960    58622
## 9961     1954
## 9962    49651
## 9963    59105
## 9964    48385
## 9965    52952
## 9966    36529
## 9967      912
## 9968    44694
## 9969     1175
## 9970      541
## 9971    59018
## 9972     2795
## 9973      912
## 9974    56788
## 9975    61132
## 9976    55247
## 9977     5617
## 9978     4359
## 9979     1912
## 9980     6979
## 9981      357
## 9982    53000
## 9983    54881
## 9984     2353
## 9985     1208
## 9986    58559
## 9987    63876
## 9988    58559
## 9989    61350
## 9990    62081
## 9991    60074
## 9992     6636
## 9993     1526
## 9994     4010
## 9995     3980
## 9996    60037
## 9997     2804
## 9998     4886
## 9999     3039
## 10000    3752
##                                                                                                       Title
## 1                                                          Frankenstein (Mary Shelleys Frankenstein) (1994)
## 2                                                                                          Assassins (1995)
## 3                                                                               Beauty and the Beast (1991)
## 4                                                                                          Apollo 13 (1995)
## 5                                                                                       Crimson Tide (1995)
## 6                                                                                          Tombstone (1993)
## 7                                                                                         Carrington (1995)
## 8                                                                                          Toy Story (1995)
## 9                                                                                       Nobodys Fool (1994)
## 10                                                                          Clear and Present Danger (1994)
## 11                                                                                          Stargate (1994)
## 12                                                                            Star Trek: Generations (1994)
## 13                                                                                        Waterworld (1995)
## 14                                                                                          Net, The (1995)
## 15                                                                           While You Were Sleeping (1995)
## 16                                                                                          Outbreak (1995)
## 17                                                                                         Showgirls (1995)
## 18                                                                                     Dumb & Dumber (1994)
## 19                                                                                 Mr. Hollands Opus (1995)
## 20                                                                                           Ed Wood (1994)
## 21                                                                                         True Lies (1994)
## 22                                                                              Addams Family Values (1993)
## 23                                                                                         GoldenEye (1995)
## 24                                                                                          Clueless (1995)
## 25                                                                        Whats Eating Gilbert Grape (1993)
## 26                                                                                            Casino (1995)
## 27                                                                                        Milk Money (1994)
## 28                                                                                       Hoop Dreams (1994)
## 29                                                                                Dances with Wolves (1990)
## 30                                                                                          Stargate (1994)
## 31                                                                                        Disclosure (1994)
## 32                                                                          Clear and Present Danger (1994)
## 33                                                                                          Stargate (1994)
## 34                                                                         Shawshank Redemption, The (1994)
## 35                                                                           While You Were Sleeping (1995)
## 36                                                                                 Mr. Hollands Opus (1995)
## 37                                                                                            Clerks (1994)
## 38                                                                                            Batman (1989)
## 39                                                                                      Pulp Fiction (1994)
## 40                                                                                      Crimson Tide (1995)
## 41                                                                                        Braveheart (1995)
## 42                                                                   Nightmare Before Christmas, The (1993)
## 43                                                                       Madness of King George, The (1994)
## 44                                                                                          Ref, The (1994)
## 45                                                                                            Batman (1989)
## 46                                                                         Silence of the Lambs, The (1991)
## 47                                                                         Wes Cravens New Nightmare (1994)
## 48                                                                                         Apollo 13 (1995)
## 49                                                                                         Firm, The (1993)
## 50                                                                                 Santa Clause, The (1994)
## 51                                                                                     Birdcage, The (1996)
## 52                                                                              Hudsucker Proxy, The (1994)
## 53                                                                                      Crimson Tide (1995)
## 54                                                                                    Body Snatchers (1993)
## 55                                                                               Tales from the Hood (1995)
## 56                                                                             Devil in a Blue Dress (1995)
## 57                                                                                            Casper (1995)
## 58                                                                                           Copycat (1995)
## 59                                                                                         Assassins (1995)
## 60                                                                                              Dave (1993)
## 61                                                                                    Demolition Man (1993)
## 62                                                                                       Underground (1995)
## 63                                                           All Things Fair (Lust och fägring stor) (1995)
## 64                                                                                    Batman Forever (1995)
## 65                                                                                           Aladdin (1992)
## 66                                                                                         GoldenEye (1995)
## 67                                                                                            Batman (1989)
## 68                                                                        Ace Ventura: Pet Detective (1994)
## 69                                                                                        Waterworld (1995)
## 70                                                                                          Outbreak (1995)
## 71                                                                                Dances with Wolves (1990)
## 72                                                                                          Net, The (1995)
## 73                                                                                 Santa Clause, The (1994)
## 74                                                                              Seven (a.k.a. Se7en) (1995)
## 75                                                                    Ace Ventura: When Nature Calls (1995)
## 76                                                                                       French Kiss (1995)
## 77                                                                                Dances with Wolves (1990)
## 78                                                                              Beauty and the Beast (1991)
## 79                                                                           While You Were Sleeping (1995)
## 80                                                                                        To Die For (1995)
## 81                                                                     Whats Love Got to Do with It? (1993)
## 82                                                                                 Circle of Friends (1995)
## 83                                                                                     Kiss of Death (1995)
## 84                                                                     Under Siege 2: Dark Territory (1995)
## 85                                                                                 Leaving Las Vegas (1995)
## 86                                                                                   Dangerous Minds (1995)
## 87                                                                                          Bad Boys (1995)
## 88                                                                                       Widows Peak (1994)
## 89                                                                                    Miami Rhapsody (1995)
## 90                                                                                        Scout, The (1994)
## 91                                                                           Moonlight and Valentino (1995)
## 92                                                                                         Apollo 13 (1995)
## 93                                                                            Star Trek: Generations (1994)
## 94                                                                                     Dumb & Dumber (1994)
## 95                                                                                      Crimson Tide (1995)
## 96                                                                                         Quiz Show (1994)
## 97                                                Interview with the Vampire: The Vampire Chronicles (1994)
## 98                                                                                              Babe (1995)
## 99                                                                               Legends of the Fall (1994)
## 100                                                                                     Forget Paris (1995)
## 101                                                                                      Client, The (1994)
## 102                                                                          Remains of the Day, The (1993)
## 103                                                                           Brady Bunch Movie, The (1995)
## 104                                                                                           Batman (1989)
## 105                                                                                           Batman (1989)
## 106                                                                       Ace Ventura: Pet Detective (1994)
## 107                                                                         Clear and Present Danger (1994)
## 108                                                                                         Outbreak (1995)
## 109                                                                                           Junior (1994)
## 110                                                                                       Pocahontas (1995)
## 111                                                                                        Coneheads (1993)
## 112                                                                    Under Siege 2: Dark Territory (1995)
## 113                                                                            Three Musketeers, The (1993)
## 114                                                                                  Dangerous Minds (1995)
## 115                                      Englishman Who Went Up a Hill But Came Down a Mountain, The (1995)
## 116                                                                                 Boys on the Side (1995)
## 117                                                                         When a Man Loves a Woman (1994)
## 118                                                                                        Crow, The (1994)
## 119                                                                                           Powder (1995)
## 120                                                                                     Blade Runner (1982)
## 121                                                                                     Pulp Fiction (1994)
## 122                                                                               Dances with Wolves (1990)
## 123                                                                       Ace Ventura: Pet Detective (1994)
## 124                                                                             Addams Family Values (1993)
## 125                                                                                       Braveheart (1995)
## 126                                                                                    Fugitive, The (1993)
## 127                                                                                             Babe (1995)
## 128                                                                             Natural Born Killers (1994)
## 129                                                  Wallace & Gromit: The Best of Aardman Animation (1996)
## 130                                                                                        Crow, The (1994)
## 131                                                                                          Jumanji (1995)
## 132                                                                                  Johnny Mnemonic (1995)
## 133                                                                  Nightmare Before Christmas, The (1993)
## 134                                                                                            Speed (1994)
## 135                                                                                          Aladdin (1992)
## 136                                                                                    Dumb & Dumber (1994)
## 137                                                                        Shawshank Redemption, The (1994)
## 138                                                                             Beauty and the Beast (1991)
## 139                                                                                  Aristocats, The (1970)
## 140                                                                                     Crimson Tide (1995)
## 141                                                                                         Net, The (1995)
## 142                                                                                 Flintstones, The (1994)
## 143                                                                     Kid in King Arthurs Court, A (1995)
## 144                                                                   Ace Ventura: When Nature Calls (1995)
## 145                                                                                      Dragonheart (1996)
## 146                                                                                        True Lies (1994)
## 147                                                                                    Dumb & Dumber (1994)
## 148                                                                  Nightmare Before Christmas, The (1993)
## 149                                                                            Bullets Over Broadway (1994)
## 150                                                                             Sleepless in Seattle (1993)
## 151                                                                                          Aladdin (1992)
## 152                                                                                      Cliffhanger (1993)
## 153                                                                                             I.Q. (1994)
## 154                                                                                        Pinocchio (1940)
## 155                                                                        Secret of Roan Inish, The (1994)
## 156                                                                                  Aristocats, The (1970)
## 157                                                                                        Quiz Show (1994)
## 158                                                                                      Client, The (1994)
## 159                                                                                  River Wild, The (1994)
## 160                                                                                         Only You (1994)
## 161                                                                             Beauty and the Beast (1991)
## 162                                                                        Shawshank Redemption, The (1994)
## 163                                                                                     Crimson Tide (1995)
## 164                                                                          While You Were Sleeping (1995)
## 165                                                                        Silence of the Lambs, The (1991)
## 166                                                                                           Casper (1995)
## 167                                                                       Ace Ventura: Pet Detective (1994)
## 168                                                                           Star Trek: Generations (1994)
## 169                                                                                     Crimson Tide (1995)
## 170                                                                                 Boys on the Side (1995)
## 171                                                                              In the Line of Fire (1993)
## 172                                                                                     Carlitos Way (1993)
## 173                                                                                       Waterworld (1995)
## 174                                                                      Father of the Bride Part II (1995)
## 175                                                                                 Last Action Hero (1993)
## 176                                                                        In the Name of the Father (1993)
## 177                                                                                       Speechless (1994)
## 178                                                                                         Outbreak (1995)
## 179                                                                                            Fargo (1996)
## 180                                                                                         Clueless (1995)
## 181                                                                              Mission: Impossible (1996)
## 182                                                                                        Apollo 13 (1995)
## 183                                                                                        Quiz Show (1994)
## 184                                                                                        True Lies (1994)
## 185                                                                                        Apollo 13 (1995)
## 186                                                                           Star Trek: Generations (1994)
## 187                                                                        Silence of the Lambs, The (1991)
## 188                                                                        Silence of the Lambs, The (1991)
## 189                                                                             Seven (a.k.a. Se7en) (1995)
## 190                                                                       Whats Eating Gilbert Grape (1993)
## 191                                                                                      Nine Months (1995)
## 192                                                                       Terminator 2: Judgment Day (1991)
## 193                                                                                   Demolition Man (1993)
## 194                                                                                   Mrs. Doubtfire (1993)
## 195                                                                       Die Hard: With a Vengeance (1995)
## 196                                                                           Star Trek: Generations (1994)
## 197                                                                                        GoldenEye (1995)
## 198                                                                                     Crimson Tide (1995)
## 199                                                                        Silence of the Lambs, The (1991)
## 200                                                                                         Stargate (1994)
## 201                                                                                         Net, The (1995)
## 202                                                                                        Apollo 13 (1995)
## 203                                                                               Dances with Wolves (1990)
## 204                                                                                      Cliffhanger (1993)
## 205                                                                        Shawshank Redemption, The (1994)
## 206                                                                                      French Kiss (1995)
## 207                                               Interview with the Vampire: The Vampire Chronicles (1994)
## 208                                                                                     First Knight (1995)
## 209                                                                          Remains of the Day, The (1993)
## 210                                                                                   Lion King, The (1994)
## 211                                                                                         Maverick (1994)
## 212                                              Like Water for Chocolate (Como agua para chocolate) (1992)
## 213                                                                          American President, The (1995)
## 214                                                                             Hot Shots! Part Deux (1993)
## 215                                                                                            Speed (1994)
## 216                                                                                             Dave (1993)
## 217                                                                                           Junior (1994)
## 218                                                                                        Apollo 13 (1995)
## 219                                                                                      Hoop Dreams (1994)
## 220                                                                                           Casino (1995)
## 221                                                                                         Bad Boys (1995)
## 222                                                                        Shawshank Redemption, The (1994)
## 223                                                                             Beauty and the Beast (1991)
## 224                                                                            Walk in the Clouds, A (1995)
## 225                                                                                     Carlitos Way (1993)
## 226                                                                                     Pretty Woman (1990)
## 227                                                                                     Philadelphia (1993)
## 228                                                                 Free Willy 2: The Adventure Home (1995)
## 229                                                        Three Colors: Red (Trois couleurs: Rouge) (1994)
## 230                                                                          Man Without a Face, The (1993)
## 231                                                                             Sleepless in Seattle (1993)
## 232                                                                                  River Wild, The (1994)
## 233                                                                               Once Were Warriors (1994)
## 234                                                                      Searching for Bobby Fischer (1993)
## 235                                                                                      Cliffhanger (1993)
## 236                                                                             Natural Born Killers (1994)
## 237                                                                                       Kalifornia (1993)
## 238                                                                                      Taxi Driver (1976)
## 239                                                                                   Batman Forever (1995)
## 240                                                                                    Dumb & Dumber (1994)
## 241                                                                           Star Trek: Generations (1994)
## 242                                                                      Madness of King George, The (1994)
## 243                                                                                       Milk Money (1994)
## 244                                                                                        Tank Girl (1995)
## 245                                                              Rumble in the Bronx (Hont faan kui) (1995)
## 246                                                                                      Hard Target (1993)
## 247                                                                                         Dead Man (1995)
## 248                                                                               Dances with Wolves (1990)
## 249                                                                                            Naked (1993)
## 250                                                                              Usual Suspects, The (1995)
## 251                                                                                            Speed (1994)
## 252                                                                            Devil in a Blue Dress (1995)
## 253                                                                             Swimming with Sharks (1995)
## 254                                                                          Remains of the Day, The (1993)
## 255                                                        Three Colors: Red (Trois couleurs: Rouge) (1994)
## 256                                                                        Secret of Roan Inish, The (1994)
## 257                                                                                     Safe Passage (1994)
## 258                                                                                             Cobb (1994)
## 259                                                                             Beauty and the Beast (1991)
## 260                                                                                       Piano, The (1993)
## 261                                                 To Wong Foo, Thanks for Everything! Julie Newmar (1995)
## 262                                                                                  Aristocats, The (1970)
## 263                                                Adventures of Priscilla, Queen of the Desert, The (1994)
## 264                                                                        House of the Spirits, The (1993)
## 265                                                                                    Little Buddha (1993)
## 266                                                                                      With Honors (1994)
## 267                                                                        Pyromaniacs Love Story, A (1995)
## 268                                                                         Clear and Present Danger (1994)
## 269                                                                                        True Lies (1994)
## 270                                                                                   Poetic Justice (1993)
## 271                                                                                     Forrest Gump (1994)
## 272                                                                                   Demolition Man (1993)
## 273                                                                                  Schindlers List (1993)
## 274                                                                                      Client, The (1994)
## 275                                                                       Terminator 2: Judgment Day (1991)
## 276                                                                         Clear and Present Danger (1994)
## 277                                                                                          Aladdin (1992)
## 278                                                                          While You Were Sleeping (1995)
## 279                                                                                  Johnny Mnemonic (1995)
## 280                                                                                      Client, The (1994)
## 281                                                                                Leaving Las Vegas (1995)
## 282                                                                           Much Ado About Nothing (1993)
## 283                                                                                         Stargate (1994)
## 284                                                                                         Outbreak (1995)
## 285                                                                                            Congo (1995)
## 286                                                                                         Net, The (1995)
## 287                                                                                   Lion King, The (1994)
## 288                                                                           Muppet Treasure Island (1996)
## 289                                                                       Die Hard: With a Vengeance (1995)
## 290                                                                                   Batman Forever (1995)
## 291                                                                                      Cliffhanger (1993)
## 292                                                                                        RoboCop 3 (1993)
## 293                                                                                             Dave (1993)
## 294                                                                                          Ed Wood (1994)
## 295                                                                             Beauty and the Beast (1991)
## 296                                                                                         Net, The (1995)
## 297                                                                                       Milk Money (1994)
## 298                                                                                     Forget Paris (1995)
## 299                                                                      Indian in the Cupboard, The (1995)
## 300                                                                             Hot Shots! Part Deux (1993)
## 301                                                                               Dances with Wolves (1990)
## 302                                                                                        Firm, The (1993)
## 303                                                                                   Batman Forever (1995)
## 304                                                                                         Stargate (1994)
## 305                                                                                         Outbreak (1995)
## 306                                                                               Secret Garden, The (1993)
## 307                                               Interview with the Vampire: The Vampire Chronicles (1994)
## 308                                                                                        Toy Story (1995)
## 309                                                                                     Forrest Gump (1994)
## 310                                                                                          Ed Wood (1994)
## 311                                                                                     Sudden Death (1995)
## 312                                                                                      Client, The (1994)
## 313                                                                       Terminator 2: Judgment Day (1991)
## 314                                                                                    Mortal Kombat (1995)
## 315                                                                                  Dangerous Minds (1995)
## 316                                                                                        Showgirls (1995)
## 317                                                                                          Aladdin (1992)
## 318                                                                             Beauty and the Beast (1991)
## 319                                                                                         Net, The (1995)
## 320                                                                                    Fugitive, The (1993)
## 321                                                                                     Forrest Gump (1994)
## 322                                                                                      Cliffhanger (1993)
## 323                                                                                         Net, The (1995)
## 324                                                                        Silence of the Lambs, The (1991)
## 325                                                                                        Apollo 13 (1995)
## 326                                                                               Dances with Wolves (1990)
## 327                                                                                Leaving Las Vegas (1995)
## 328                                                                                    Belle de jour (1967)
## 329                                                                                     Philadelphia (1993)
## 330                                                                                       Piano, The (1993)
## 331                                                                                            Speed (1994)
## 332                                                                               Angels and Insects (1995)
## 333                                                                             Death and the Maiden (1994)
## 334                                                                                          Othello (1995)
## 335                                                                            Age of Innocence, The (1993)
## 336                                                                                          Twister (1996)
## 337                                                                                 Immortal Beloved (1994)
## 338                                                                                         Net, The (1995)
## 339                                                                                       Disclosure (1994)
## 340                                                                            Beverly Hills Cop III (1994)
## 341                                                                                      Taxi Driver (1976)
## 342                                                                                        Coneheads (1993)
## 343                                                                                   Lion King, The (1994)
## 344                                                                                    Trainspotting (1996)
## 345                                                                                           Batman (1989)
## 346                                                                                     Pulp Fiction (1994)
## 347                                                                                         Stargate (1994)
## 348                                                                             Beauty and the Beast (1991)
## 349                                                                                     Forrest Gump (1994)
## 350                                                                              Mission: Impossible (1996)
## 351                                                                                        Mask, The (1994)
## 352                                                                                        Firm, The (1993)
## 353                                                                                        Apollo 13 (1995)
## 354                                                                            Sense and Sensibility (1995)
## 355                                                             Eat Drink Man Woman (Yin shi nan nu) (1994)
## 356                                                                                     Sudden Death (1995)
## 357                                                                                     Pretty Woman (1990)
## 358                                                                                           Casino (1995)
## 359                                                                              Murder in the First (1995)
## 360                                                                                       To Die For (1995)
## 361                                                                                        Tank Girl (1995)
## 362                                                                          Man Without a Face, The (1993)
## 363                                                                                          Sabrina (1995)
## 364                                                                              Scarlet Letter, The (1995)
## 365                                                                                   Down Periscope (1996)
## 366                                                                                     It Takes Two (1995)
## 367                                                                          Moonlight and Valentino (1995)
## 368                            Highlander III: The Sorcerer (a.k.a. Highlander: The Final Dimension) (1994)
## 369                                                                                      With Honors (1994)
## 370                                                                                      Clean Slate (1994)
## 371                                                                                    Bronx Tale, A (1993)
## 372                                                                                            Speed (1994)
## 373                                                                    Independence Day (a.k.a. ID4) (1996)
## 374                                                                                     Carlitos Way (1993)
## 375                                                                               Little Princess, A (1995)
## 376                                                                                      Dragonheart (1996)
## 377                                                                                         Spy Hard (1996)
## 378                                                                                    Bronx Tale, A (1993)
## 379                                                                      Dracula: Dead and Loving It (1995)
## 380                                                                                  Misérables, Les (1995)
## 381                                                                           Flirting With Disaster (1996)
## 382                                                                              I Like It Like That (1994)
## 383                                                                             What Happened Was... (1994)
## 384                                                                                          Exotica (1994)
## 385                                                                               Heavenly Creatures (1994)
## 386                                                                     Geronimo: An American Legend (1993)
## 387                                                                                 New Jersey Drive (1995)
## 388                                                                                Walking Dead, The (1995)
## 389                                                                                       Phenomenon (1996)
## 390                                                                                        GoldenEye (1995)
## 391                                                                             Natural Born Killers (1994)
## 392                                                                                           Sliver (1993)
## 393                                                                    Independence Day (a.k.a. ID4) (1996)
## 394                                                                                Romeo Is Bleeding (1993)
## 395                                                                                      Cliffhanger (1993)
## 396                                                                                         Outbreak (1995)
## 397                                                                                            Speed (1994)
## 398                                                                                 Last Action Hero (1993)
## 399                                                                                        True Lies (1994)
## 400                                                                       Ace Ventura: Pet Detective (1994)
## 401                                                                                        City Hall (1996)
## 402                                                                                          Othello (1995)
## 403                                                                             Natural Born Killers (1994)
## 404                                                                                        Crow, The (1994)
## 405                                                                                   Cable Guy, The (1996)
## 406                                                                         Clear and Present Danger (1994)
## 407                                                                                         Stargate (1994)
## 408                                                                        Silence of the Lambs, The (1991)
## 409                                               Interview with the Vampire: The Vampire Chronicles (1994)
## 410                                                                         Clear and Present Danger (1994)
## 411                                                                           Star Trek: Generations (1994)
## 412                                                                                       Braveheart (1995)
## 413                                                                          While You Were Sleeping (1995)
## 414                                                                             Addams Family Values (1993)
## 415                                                                             Sleepless in Seattle (1993)
## 416                                                                                         Stargate (1994)
## 417                                                                                      Cliffhanger (1993)
## 418                                                                        Shawshank Redemption, The (1994)
## 419                                                                                        GoldenEye (1995)
## 420                                                                             Addams Family Values (1993)
## 421                                                                            Beverly Hills Cop III (1994)
## 422                                                                      12 Monkeys (Twelve Monkeys) (1995)
## 423                                                                                            Ghost (1990)
## 424                                                                  Nightmare Before Christmas, The (1993)
## 425                                                                                       Home Alone (1990)
## 426                                                                                    Mortal Kombat (1995)
## 427                                                                     So I Married an Axe Murderer (1993)
## 428                                                                        In the Name of the Father (1993)
## 429                                                                                     Pretty Woman (1990)
## 430                                                                                   Batman Forever (1995)
## 431                                                                                      Cliffhanger (1993)
## 432                                                                             Natural Born Killers (1994)
## 433                                                                                       Waterworld (1995)
## 434                                                                                     Forrest Gump (1994)
## 435                                                                                           Batman (1989)
## 436                                                                                   Lion King, The (1994)
## 437                                                                        Silence of the Lambs, The (1991)
## 438                                                                          While You Were Sleeping (1995)
## 439                                               Interview with the Vampire: The Vampire Chronicles (1994)
## 440                                                                                  Specialist, The (1994)
## 441                                                                                      Client, The (1994)
## 442                                                                                      Judge Dredd (1995)
## 443                                                                                        Apollo 13 (1995)
## 444                                                                       Ace Ventura: Pet Detective (1994)
## 445                                                                                        Crow, The (1994)
## 446                                                                                          Species (1995)
## 447                                                                       Whats Eating Gilbert Grape (1993)
## 448                                                                                    Reality Bites (1994)
## 449                                                                                Santa Clause, The (1994)
## 450                                                                       Whats Eating Gilbert Grape (1993)
## 451                                                 To Wong Foo, Thanks for Everything! Julie Newmar (1995)
## 452                                                                                   Body Snatchers (1993)
## 453                                                                                           Powder (1995)
## 454                                                                                      Dragonheart (1996)
## 455                                                                           Much Ado About Nothing (1993)
## 456                                                                            Village of the Damned (1995)
## 457                                                                           Star Trek: Generations (1994)
## 458                                                                                    Dumb & Dumber (1994)
## 459                                                                                    Jurassic Park (1993)
## 460                                                                                        True Lies (1994)
## 461                                                                                    Fugitive, The (1993)
## 462                                                                                        Firm, The (1993)
## 463                                                                                      French Kiss (1995)
## 464                                                                       Whats Eating Gilbert Grape (1993)
## 465                                                                                    Birdcage, The (1996)
## 466                                                                                         Airheads (1994)
## 467                                                                                    Billy Madison (1995)
## 468                                                                       Die Hard: With a Vengeance (1995)
## 469                                                                                        GoldenEye (1995)
## 470                                                                          While You Were Sleeping (1995)
## 471                                                                                         Outbreak (1995)
## 472                                                                    Under Siege 2: Dark Territory (1995)
## 473                                                                                           Batman (1989)
## 474                                                                                          Twister (1996)
## 475                                                                       Ace Ventura: Pet Detective (1994)
## 476                                                                                     Forrest Gump (1994)
## 477                                                                                            Speed (1994)
## 478                                                                                        Desperado (1995)
## 479                                                                                       Virtuosity (1995)
## 480                                                                                        Mask, The (1994)
## 481                                                                                            Congo (1995)
## 482                                                                                           Batman (1989)
## 483                                                                         Clear and Present Danger (1994)
## 484                                                                                     Pretty Woman (1990)
## 485                                                                                      French Kiss (1995)
## 486                                                                                     Philadelphia (1993)
## 487                                                                                 Boys on the Side (1995)
## 488                                                                             Beauty and the Beast (1991)
## 489                                                                                 Another Stakeout (1993)
## 490                                                                                          Aladdin (1992)
## 491                                                                                      Killing Zoe (1994)
## 492                                                                                     Pulp Fiction (1994)
## 493                                                                                           Batman (1989)
## 494                                                                              Mission: Impossible (1996)
## 495                                                                                             Heat (1995)
## 496                                                                                           Eraser (1996)
## 497                                                                                            Congo (1995)
## 498                                                        Frankenstein (Mary Shelleys Frankenstein) (1994)
## 499                                                                       Die Hard: With a Vengeance (1995)
## 500                                                                          While You Were Sleeping (1995)
## 501                                                                                    Jurassic Park (1993)
## 502                                                                             Natural Born Killers (1994)
## 503                                                                               Executive Decision (1996)
## 504                                                                                     Sudden Death (1995)
## 505                                                                                     Arrival, The (1996)
## 506                                                                                    Trainspotting (1996)
## 507                                                                        Silence of the Lambs, The (1991)
## 508                                                                                         Outbreak (1995)
## 509                                                                             Beauty and the Beast (1991)
## 510                                                                                        Mask, The (1994)
## 511                                                                                      Cliffhanger (1993)
## 512                                                                                            Ghost (1990)
## 513                                                                                      Client, The (1994)
## 514                                                                                 Dead Man Walking (1995)
## 515                                                                           Star Trek: Generations (1994)
## 516                                                                    Ready to Wear (Pret-A-Porter) (1994)
## 517                                                                                     Sudden Death (1995)
## 518                                                                                           Eraser (1996)
## 519                                                                                     Pretty Woman (1990)
## 520                                                                              Tales from the Hood (1995)
## 521                                                                                   Demolition Man (1993)
## 522                                                                                Bordello of Blood (1996)
## 523                                                                                        Apollo 13 (1995)
## 524                                                                                           Batman (1989)
## 525                                                                                       Home Alone (1990)
## 526                                                                                       Piano, The (1993)
## 527                                                                                          Rob Roy (1995)
## 528                                                                       Ace Ventura: Pet Detective (1994)
## 529                                                                        Silence of the Lambs, The (1991)
## 530                                                                                         Net, The (1995)
## 531                                                                                     Forrest Gump (1994)
## 532                                                                                       Home Alone (1990)
## 533                                                                                   Lion King, The (1994)
## 534                                                                          American President, The (1995)
## 535                                                                                   Demolition Man (1993)
## 536                                                                                    Mortal Kombat (1995)
## 537                                                                                       Milk Money (1994)
## 538                                                                  Snow White and the Seven Dwarfs (1937)
## 539                                                                                        GoldenEye (1995)
## 540                                                                                       Waterworld (1995)
## 541                                                                                        True Lies (1994)
## 542                                                                                         Outbreak (1995)
## 543                                                                                     Forrest Gump (1994)
## 544                                                                                    Jurassic Park (1993)
## 545                                                                                         Outbreak (1995)
## 546                                                                                         Stargate (1994)
## 547                                                      City Slickers II: The Legend of Curlys Gold (1994)
## 548                                                                                          Hackers (1995)
## 549                                                                            Beverly Hills Cop III (1994)
## 550                                                                                            Crumb (1994)
## 551                                                                                 Dead Man Walking (1995)
## 552                                                                                  Schindlers List (1993)
## 553                                                                                   Eye for an Eye (1996)
## 554                                                                              Usual Suspects, The (1995)
## 555                                                                  Snow White and the Seven Dwarfs (1937)
## 556                                                                                       Get Shorty (1995)
## 557                                                                                      Hard Target (1993)
## 558                                                                                     Broken Arrow (1996)
## 559                                                                               Courage Under Fire (1996)
## 560                                                                                         Ref, The (1994)
## 561                                                                                     Nobodys Fool (1994)
## 562                                                                                Dolores Claiborne (1995)
## 563                                                                                             Nell (1994)
## 564                                                                                Little Big League (1994)
## 565                                                                                     Safe Passage (1994)
## 566                                                                                    Mortal Kombat (1995)
## 567                                                                                     Sudden Death (1995)
## 568                                                                               Angels and Insects (1995)
## 569                                                                                           Clerks (1994)
## 570                                                                                          Ed Wood (1994)
## 571                                                                     So I Married an Axe Murderer (1993)
## 572                                                                                         Net, The (1995)
## 573                                                                                       Four Rooms (1995)
## 574                                                                                 Madame Butterfly (1995)
## 575                                                                                       Piano, The (1993)
## 576                                                                                         Mallrats (1995)
## 577                                                                              Sound of Music, The (1965)
## 578                                                                                          Jumanji (1995)
## 579                                                                                    Trainspotting (1996)
## 580                                                                                       Braveheart (1995)
## 581                                                                                        Firm, The (1993)
## 582                                                                              Legends of the Fall (1994)
## 583                                                                                    Birdcage, The (1996)
## 584                                              Like Water for Chocolate (Como agua para chocolate) (1992)
## 585                                                                                 Don Juan DeMarco (1995)
## 586                                                                    Independence Day (a.k.a. ID4) (1996)
## 587                                                        Frankenstein (Mary Shelleys Frankenstein) (1994)
## 588                                                                                         Bad Boys (1995)
## 589                                                                                        Apollo 13 (1995)
## 590                                                          Mighty Morphin Power Rangers: The Movie (1995)
## 591                                                                                       Free Willy (1993)
## 592                                                                                       Paper, The (1994)
## 593                                                                                         Airheads (1994)
## 594                                                                         When a Man Loves a Woman (1994)
## 595                                                                                      Major Payne (1995)
## 596                                                                               Little Princess, A (1995)
## 597                                                                            Devil in a Blue Dress (1995)
## 598                                                                                           Malice (1993)
## 599                                                                        Secret of Roan Inish, The (1994)
## 600                                                                                         Only You (1994)
## 601                                                                                    Prophecy, The (1995)
## 602                                                                          Stuart Saves His Family (1995)
## 603                                                                                      Love Affair (1994)
## 604                                                                                      Widows Peak (1994)
## 605                                                                                  Higher Learning (1995)
## 606                                                                                    Bronx Tale, A (1993)
## 607                                                                                Walking Dead, The (1995)
## 608                                                                           Fox and the Hound, The (1981)
## 609                                                                                     Pulp Fiction (1994)
## 610                                                                                        Apollo 13 (1995)
## 611                                               Interview with the Vampire: The Vampire Chronicles (1994)
## 612                                                                       Terminator 2: Judgment Day (1991)
## 613                                                                                         Clueless (1995)
## 614                                                                                        Apollo 13 (1995)
## 615                                                                         Clear and Present Danger (1994)
## 616                                                                                     Forrest Gump (1994)
## 617                                                                                   Lion King, The (1994)
## 618                                                                                   Batman Forever (1995)
## 619                                                                           Star Trek: Generations (1994)
## 620                                                                                         Stargate (1994)
## 621                                               Interview with the Vampire: The Vampire Chronicles (1994)
## 622                                                                                         Outbreak (1995)
## 623                                                                             Seven (a.k.a. Se7en) (1995)
## 624                                                                                     Pretty Woman (1990)
## 625                                                                                 Dead Man Walking (1995)
## 626                                                                                        Coneheads (1993)
## 627                                                                                   Demolition Man (1993)
## 628                                                                                     Philadelphia (1993)
## 629                                                                                       To Die For (1995)
## 630                                                                                 Mighty Aphrodite (1995)
## 631                                                                                 Don Juan DeMarco (1995)
## 632                                                                             Hudsucker Proxy, The (1994)
## 633                                                                                     Little Women (1994)
## 634                                                                           Brady Bunch Movie, The (1995)
## 635                                                               Naked Gun 33 1/3: The Final Insult (1994)
## 636                                                                                 Flintstones, The (1994)
## 637                                                                                  Aristocats, The (1970)
## 638                                                                        Shawshank Redemption, The (1994)
## 639                                                                             Seven (a.k.a. Se7en) (1995)
## 640                                                                                       Home Alone (1990)
## 641                                                                                         Clueless (1995)
## 642                                                                                           Batman (1989)
## 643                                                                                        Apollo 13 (1995)
## 644                                                                                   Batman Forever (1995)
## 645                                                                         Clear and Present Danger (1994)
## 646                                                                                     Crimson Tide (1995)
## 647                                                                                            Ghost (1990)
## 648                                                                                   Batman Forever (1995)
## 649                                                                                            Fargo (1996)
## 650                                                                                           Batman (1989)
## 651                                                                     Hunchback of Notre Dame, The (1996)
## 652                                                                                       Home Alone (1990)
## 653                                                                              In the Line of Fire (1993)
## 654                                                                                Santa Clause, The (1994)
## 655                                                                                  Schindlers List (1993)
## 656                                                                                    Jurassic Park (1993)
## 657                                                                                          Twister (1996)
## 658                                                                       Terminator 2: Judgment Day (1991)
## 659                                                                                     Pretty Woman (1990)
## 660                                                                        Crow: City of Angels, The (1996)
## 661                                                                                       Home Alone (1990)
## 662                                                                       Die Hard: With a Vengeance (1995)
## 663                                                                             Beauty and the Beast (1991)
## 664                                              Like Water for Chocolate (Como agua para chocolate) (1992)
## 665                                                                                     Pulp Fiction (1994)
## 666                                                                                        Mask, The (1994)
## 667                                                                                    Fugitive, The (1993)
## 668                                                                                       Braveheart (1995)
## 669                                                                                      Client, The (1994)
## 670                                                                                        GoldenEye (1995)
## 671                                                                                        Mask, The (1994)
## 672                                                                                     Pretty Woman (1990)
## 673                                                                          While You Were Sleeping (1995)
## 674                                                                                   Mrs. Doubtfire (1993)
## 675                                                                                           Eraser (1996)
## 676                                                                                    Jurassic Park (1993)
## 677                                                                                       Piano, The (1993)
## 678                                                                                    Birdcage, The (1996)
## 679                                                                            Sense and Sensibility (1995)
## 680                                                                                           Junior (1994)
## 681                                              Like Water for Chocolate (Como agua para chocolate) (1992)
## 682                                                                                           Casper (1995)
## 683                                                                                  Johnny Mnemonic (1995)
## 684                                                                                     Pulp Fiction (1994)
## 685                                                                        In the Name of the Father (1993)
## 686                                                                           Star Trek: Generations (1994)
## 687                                                                                Dolores Claiborne (1995)
## 688                                                                        Shawshank Redemption, The (1994)
## 689                                                                                    Jurassic Park (1993)
## 690                                                                       Terminator 2: Judgment Day (1991)
## 691                                                                       Postman, The (Postino, Il) (1994)
## 692                                                                                       Paper, The (1994)
## 693                                                                        Shawshank Redemption, The (1994)
## 694                                                                                   Lion King, The (1994)
## 695                                                                 Free Willy 2: The Adventure Home (1995)
## 696                                                                   Ace Ventura: When Nature Calls (1995)
## 697                                                      City Slickers II: The Legend of Curlys Gold (1994)
## 698                                                                          American President, The (1995)
## 699                                                                                            Congo (1995)
## 700                                                                         Long Kiss Goodnight, The (1996)
## 701                                                                                      Client, The (1994)
## 702                                                                                    Venice/Venice (1992)
## 703                                                                                 Glimmer Man, The (1996)
## 704                                                                    Under Siege 2: Dark Territory (1995)
## 705                                                                                       Cinderella (1950)
## 706                                                                                  Johnny Mnemonic (1995)
## 707                                                                                         Maverick (1994)
## 708                                                                              Legends of the Fall (1994)
## 709                                                                           Miracle on 34th Street (1994)
## 710                                                                                          Twister (1996)
## 711                                                                                 Glimmer Man, The (1996)
## 712                                                                             Beauty and the Beast (1991)
## 713                                                                                    Dumb & Dumber (1994)
## 714                                                                                     Crimson Tide (1995)
## 715                                                                                      Client, The (1994)
## 716                                                                                        Quiz Show (1994)
## 717                                                                         Clear and Present Danger (1994)
## 718                                                                       Whats Eating Gilbert Grape (1993)
## 719                                                                                    Jurassic Park (1993)
## 720                                                                      12 Monkeys (Twelve Monkeys) (1995)
## 721                                                                                         Clueless (1995)
## 722                                                                                        Coneheads (1993)
## 723                                                                                           Casper (1995)
## 724                                                                                    Mortal Kombat (1995)
## 725                                                                           Miracle on 34th Street (1994)
## 726                                                                                         Bad Boys (1995)
## 727                                                                                        Desperado (1995)
## 728                                                                                        Drop Zone (1994)
## 729                                                                      Father of the Bride Part II (1995)
## 730                                                                                        Boomerang (1992)
## 731                                                                                Super Mario Bros. (1993)
## 732                                                                 Free Willy 2: The Adventure Home (1995)
## 733                                                                                      Cliffhanger (1993)
## 734                                                                                        Firm, The (1993)
## 735                                                                                   Mrs. Doubtfire (1993)
## 736                                                                                  Jerky Boys, The (1994)
## 737                                                                                       Get Shorty (1995)
## 738                                                                    Independence Day (a.k.a. ID4) (1996)
## 739                                                                                     Nick of Time (1995)
## 740                                                                                  Dead Presidents (1995)
## 741                                                                              Scarlet Letter, The (1995)
## 742                                                                            Swiss Family Robinson (1960)
## 743                                                                                  Shaggy Dog, The (1959)
## 744                                                                                Dial M for Murder (1954)
## 745                                                                           Star Trek: Generations (1994)
## 746                                                                          For Whom the Bell Tolls (1943)
## 747                                                                                   Mrs. Doubtfire (1993)
## 748                                                                  Monty Python and the Holy Grail (1975)
## 749                                                                                       Home Alone (1990)
## 750                                                                            Beverly Hills Cop III (1994)
## 751                                                                                   Sophies Choice (1982)
## 752                                                              Willy Wonka & the Chocolate Factory (1971)
## 753                                                                                 Don Juan DeMarco (1995)
## 754                                                                                          Aladdin (1992)
## 755                                                                                 Grumpier Old Men (1995)
## 756                                                                             Fish Called Wanda, A (1988)
## 757                                                                                         Die Hard (1988)
## 758                                                                                 Parent Trap, The (1961)
## 759                                                                                     Now and Then (1995)
## 760                                                                          While You Were Sleeping (1995)
## 761                                                                                Santa Clause, The (1994)
## 762                                                                                      Client, The (1994)
## 763                                                                                   Demolition Man (1993)
## 764                                                                        Silence of the Lambs, The (1991)
## 765                                                                                      Nine Months (1995)
## 766                                                                         Clear and Present Danger (1994)
## 767                                                                        Shawshank Redemption, The (1994)
## 768                                                                                      Cliffhanger (1993)
## 769                                                                          While You Were Sleeping (1995)
## 770                                                                        Silence of the Lambs, The (1991)
## 771                                                                       Ace Ventura: Pet Detective (1994)
## 772                                                                                     Pulp Fiction (1994)
## 773                                                                                   Mrs. Doubtfire (1993)
## 774                                                                                        Quiz Show (1994)
## 775                                                                                       Home Alone (1990)
## 776                                                                             Sleepless in Seattle (1993)
## 777                                                                                         Net, The (1995)
## 778                                                                          American President, The (1995)
## 779                                                                             Addams Family Values (1993)
## 780                                                Léon: The Professional (Léon) (Professional, The) (1994)
## 781                                                                                       Get Shorty (1995)
## 782                                                                                     Broken Arrow (1996)
## 783                                                                                     Philadelphia (1993)
## 784                                                                             Sleepless in Seattle (1993)
## 785                                                                                     First Knight (1995)
## 786                                                                                  Schindlers List (1993)
## 787                                                                                      French Kiss (1995)
## 788                                                                                         Die Hard (1988)
## 789                                                                                           Casper (1995)
## 790                                                                                     Little Women (1994)
## 791                                                                    Independence Day (a.k.a. ID4) (1996)
## 792                                                                                          Copycat (1995)
## 793                                                                                        True Lies (1994)
## 794                                                                                      Cliffhanger (1993)
## 795                                                                                     Forrest Gump (1994)
## 796                                                                                  Aristocats, The (1970)
## 797                                                                                      Richie Rich (1994)
## 798                                                                               Lawnmower Man, The (1992)
## 799                                                                      Monty Pythons Life of Brian (1979)
## 800                                                                                       Virtuosity (1995)
## 801                                                                                             Dave (1993)
## 802                                                                                Terminal Velocity (1994)
## 803                                                                                      Judge Dredd (1995)
## 804                                                                              Alice in Wonderland (1951)
## 805                                                                                   Demolition Man (1993)
## 806                                                                                          Species (1995)
## 807                                                                    Under Siege 2: Dark Territory (1995)
## 808                                                                             Operation Dumbo Drop (1995)
## 809                                                                  Snow White and the Seven Dwarfs (1937)
## 810                                                                               Executive Decision (1996)
## 811                                                                                             Jade (1995)
## 812                                                                       Die Hard: With a Vengeance (1995)
## 813                                                                        Silence of the Lambs, The (1991)
## 814                                                                                   I Love Trouble (1994)
## 815                                                                                     Crimson Tide (1995)
## 816                                                                          American President, The (1995)
## 817                                                                       Terminator 2: Judgment Day (1991)
## 818                                                                                       Get Shorty (1995)
## 819                                                                              In the Line of Fire (1993)
## 820                                                                                   Demolition Man (1993)
## 821                                                                                        Tombstone (1993)
## 822                                                                                      Judge Dredd (1995)
## 823                                                                                        Tombstone (1993)
## 824                                                                                       Piano, The (1993)
## 825                                                                                     Little Women (1994)
## 826                                                                                 Last Action Hero (1993)
## 827                                                                                 Don Juan DeMarco (1995)
## 828                                                                                        Firm, The (1993)
## 829                                                                                    Jurassic Park (1993)
## 830                                                                                          Jumanji (1995)
## 831                                                                                 Cutthroat Island (1995)
## 832                                                                        Silence of the Lambs, The (1991)
## 833                                                                                        Apollo 13 (1995)
## 834                                                                                          Aladdin (1992)
## 835                                                                         Clear and Present Danger (1994)
## 836                                                                                    Fugitive, The (1993)
## 837                                                                                         Stargate (1994)
## 838                                                                                       Waterworld (1995)
## 839                                                                                        Firm, The (1993)
## 840                                                                                        Firm, The (1993)
## 841                                                                       Terminator 2: Judgment Day (1991)
## 842                                                                                       Home Alone (1990)
## 843                                                                                        Tombstone (1993)
## 844                                                                                     Philadelphia (1993)
## 845                                                          Mighty Morphin Power Rangers: The Movie (1995)
## 846                                                                                       Free Willy (1993)
## 847                                                                                    Billy Madison (1995)
## 848                                                                                             Nell (1994)
## 849                                                                                      Dragonheart (1996)
## 850                                                                                       Cinderella (1950)
## 851                                                                         Apple Dumpling Gang, The (1975)
## 852                                                         Davy Crockett, King of the Wild Frontier (1955)
## 853                                                                                 Blue in the Face (1995)
## 854                                                                               Christmas Carol, A (1938)
## 855                                                                                   Beyond Rangoon (1995)
## 856                                                                                       Quest, The (1996)
## 857                            Highlander III: The Sorcerer (a.k.a. Highlander: The Final Dimension) (1994)
## 858                                                                                       Striptease (1996)
## 859                                                                     20,000 Leagues Under the Sea (1954)
## 860                                                                             Next Karate Kid, The (1994)
## 861                                                                                    Dumb & Dumber (1994)
## 862                                                                                       Braveheart (1995)
## 863                                                                                    Jurassic Park (1993)
## 864                                                                                         Net, The (1995)
## 865                                                                             Natural Born Killers (1994)
## 866                                                                                   Lion King, The (1994)
## 867                                                                           Star Trek: Generations (1994)
## 868                                                                                       Disclosure (1994)
## 869                                                                                       Waterworld (1995)
## 870                                                                                      Client, The (1994)
## 871                                                                                      Judge Dredd (1995)
## 872                                                                                        Tombstone (1993)
## 873                                                                    Under Siege 2: Dark Territory (1995)
## 874                                                                                        Crow, The (1994)
## 875                                                                                    Mortal Kombat (1995)
## 876                                                               Naked Gun 33 1/3: The Final Insult (1994)
## 877                                                                                        Drop Zone (1994)
## 878                                                                                            Speed (1994)
## 879                                                                                       Just Cause (1995)
## 880                                                                                       Disclosure (1994)
## 881                                                                               Executive Decision (1996)
## 882                                                                                    Fugitive, The (1993)
## 883                                                                                     Forrest Gump (1994)
## 884                                                                                      With Honors (1994)
## 885                                                                                        Firm, The (1993)
## 886                                                                             Seven (a.k.a. Se7en) (1995)
## 887                                                                                   Fatal Instinct (1993)
## 888                                                                                      Money Train (1995)
## 889                                                                                            Ghost (1990)
## 890                                                                                       Home Alone (1990)
## 891                                                                               Dances with Wolves (1990)
## 892                                                                                   Batman Forever (1995)
## 893                                                                        Silence of the Lambs, The (1991)
## 894                                                                          American President, The (1995)
## 895                                                                                    Dumb & Dumber (1994)
## 896                                                                                      French Kiss (1995)
## 897                                                                                      Nine Months (1995)
## 898                                                                                    Jurassic Park (1993)
## 899                                                                          While You Were Sleeping (1995)
## 900                                                                              Mission: Impossible (1996)
## 901                            Highlander III: The Sorcerer (a.k.a. Highlander: The Final Dimension) (1994)
## 902                                                                                          Platoon (1986)
## 903                                                                           Angels in the Outfield (1994)
## 904                                                                                    Dirty Dancing (1987)
## 905                                                                                   Down Periscope (1996)
## 906                                                                                     Tom and Huck (1995)
## 907                                                                                Leaving Las Vegas (1995)
## 908                                                                   Bridges of Madison County, The (1995)
## 909                                                                                   Cable Guy, The (1996)
## 910                                                                                         Outbreak (1995)
## 911                                                                                       Home Alone (1990)
## 912                                                                   Ace Ventura: When Nature Calls (1995)
## 913                                                                                  Schindlers List (1993)
## 914                                                                                          Twister (1996)
## 915                                                                       Picture Bride (Bijo photo) (1994)
## 916                                                                              Legends of the Fall (1994)
## 917                                                                              In the Line of Fire (1993)
## 918                                                                                      Nine Months (1995)
## 919                                                                     Truth About Cats & Dogs, The (1996)
## 920                                                                       E.T. the Extra-Terrestrial (1982)
## 921                                                                                     Blade Runner (1982)
## 922                          Raiders of the Lost Ark (Indiana Jones and the Raiders of the Lost Ark) (1981)
## 923                                                                                    Groundhog Day (1993)
## 924                                                                         Star Trek: First Contact (1996)
## 925                                                                             Hudsucker Proxy, The (1994)
## 926                                                                                    Kiss of Death (1995)
## 927                                                                                            Shine (1996)
## 928                                                                                  Beautiful Girls (1996)
## 929                                                                                  Substitute, The (1996)
## 930                                                                                    Happy Gilmore (1996)
## 931                                                                                        Barb Wire (1996)
## 932                                                                             Seven (a.k.a. Se7en) (1995)
## 933                                                                                  Schindlers List (1993)
## 934                                                                              Mission: Impossible (1996)
## 935                                                                                 Dead Man Walking (1995)
## 936                                                              Willy Wonka & the Chocolate Factory (1971)
## 937                                                                         Star Trek: First Contact (1996)
## 938                                                                             D3: The Mighty Ducks (1996)
## 939                                                                              Mission: Impossible (1996)
## 940                                                                          Antonias Line (Antonia) (1995)
## 941                                                                                     White Squall (1996)
## 942                                                                                   Lion King, The (1994)
## 943                                                                                          Jumanji (1995)
## 944                                                                                     Forrest Gump (1994)
## 945                                                                               Dances with Wolves (1990)
## 946                                                                          Man Without a Face, The (1993)
## 947                                                                                     Little Women (1994)
## 948                                                                                         Stargate (1994)
## 949                                                                                            Speed (1994)
## 950                                                                          While You Were Sleeping (1995)
## 951                                                                                       Waterworld (1995)
## 952                                                                            Swiss Family Robinson (1960)
## 953                                                                                      Judge Dredd (1995)
## 954                                                                    Independence Day (a.k.a. ID4) (1996)
## 955                                                                                    Trainspotting (1996)
## 956                                                                                            Nixon (1995)
## 957                                                                          Remains of the Day, The (1993)
## 958                                                                                        Pinocchio (1940)
## 959                                                                  Nightmare Before Christmas, The (1993)
## 960                                                                                        Quiz Show (1994)
## 961                                                                                   Batman Forever (1995)
## 962                                                                              Mission: Impossible (1996)
## 963                                                                                Leaving Las Vegas (1995)
## 964                                                                     Truth About Cats & Dogs, The (1996)
## 965                                                                                          Sabrina (1995)
## 966                                                                                            Nixon (1995)
## 967                                                                                Leaving Las Vegas (1995)
## 968                                                                                       Juror, The (1996)
## 969                                                                                       Sgt. Bilko (1996)
## 970                                                                            Up Close and Personal (1996)
## 971                                                                                   101 Dalmatians (1996)
## 972                                                                              Mission: Impossible (1996)
## 973                                                                               Executive Decision (1996)
## 974                                                                         Long Kiss Goodnight, The (1996)
## 975                                                                     Truth About Cats & Dogs, The (1996)
## 976                                                                                            Fargo (1996)
## 977                                                                       Whats Eating Gilbert Grape (1993)
## 978                                                                                 Mighty Aphrodite (1995)
## 979                                                                                        Tommy Boy (1995)
## 980                                                                        James and the Giant Peach (1996)
## 981                                                                  Snow White and the Seven Dwarfs (1937)
## 982                                                                                        Screamers (1995)
## 983                                                                                     Arrival, The (1996)
## 984                                                                                        Toy Story (1995)
## 985                                                                                     Sudden Death (1995)
## 986                                                                                   Down Periscope (1996)
## 987                                                                             Nutty Professor, The (1996)
## 988                                                               Lawnmower Man 2: Beyond Cyberspace (1996)
## 989                                             Bloodsport 2 (a.k.a. Bloodsport II: The Next Kumite) (1996)
## 990                                                                         Long Kiss Goodnight, The (1996)
## 991                                                                      Ghost and the Darkness, The (1996)
## 992                                                                            Up Close and Personal (1996)
## 993                                                                                             Emma (1996)
## 994                                                                             Seven (a.k.a. Se7en) (1995)
## 995                                                                                     Strange Days (1995)
## 996                                                                        Femme Nikita, La (Nikita) (1990)
## 997                                                                                  River Wild, The (1994)
## 998                                                                        Silence of the Lambs, The (1991)
## 999                                                                                       Get Shorty (1995)
## 1000                                                                 Nightmare Before Christmas, The (1993)
## 1001                                                                      Ace Ventura: Pet Detective (1994)
## 1002                                                                                       Cape Fear (1991)
## 1003                                                                                           Congo (1995)
## 1004                                                                                           Alien (1979)
## 1005                                                                     Monty Pythons Life of Brian (1979)
## 1006                                                                             Mission: Impossible (1996)
## 1007                                                                                            I.Q. (1994)
## 1008                                                                                 Johnny Mnemonic (1995)
## 1009                                                                           Bullets Over Broadway (1994)
## 1010                                                                                       Showgirls (1995)
## 1011                                                                       Femme Nikita, La (Nikita) (1990)
## 1012                                                                       Silence of the Lambs, The (1991)
## 1013                                                                            Arsenic and Old Lace (1944)
## 1014                                                                                      Abyss, The (1989)
## 1015                                                                                   Kiss of Death (1995)
## 1016                                                                                      Highlander (1986)
## 1017                                                                                  Basic Instinct (1992)
## 1018                                                                 Snow White and the Seven Dwarfs (1937)
## 1019                                                                                         Top Gun (1986)
## 1020                                                                   Star Trek IV: The Voyage Home (1986)
## 1021                                                                                 Terminator, The (1984)
## 1022                                     Englishman Who Went Up a Hill But Came Down a Mountain, The (1995)
## 1023                                                                          Much Ado About Nothing (1993)
## 1024                                                                               Strictly Ballroom (1992)
## 1025                                                                                          Aliens (1986)
## 1026                                                                           Walk in the Clouds, A (1995)
## 1027                                                                                     French Kiss (1995)
## 1028                                                                                      Speechless (1994)
## 1029                                                                                    Broken Arrow (1996)
## 1030                                                                                       Rock, The (1996)
## 1031                                                                                     Black Sheep (1996)
## 1032                                                                      Terminator 2: Judgment Day (1991)
## 1033                                               Adventures of Priscilla, Queen of the Desert, The (1994)
## 1034                                                                           Walk in the Clouds, A (1995)
## 1035                                                                                           Ghost (1990)
## 1036                                                                                   Belle de jour (1967)
## 1037                                                                                      Carrington (1995)
## 1038                                                                             Mission: Impossible (1996)
## 1039                                                                                           Fargo (1996)
## 1040                                                                       Silence of the Lambs, The (1991)
## 1041                                                                          Brady Bunch Movie, The (1995)
## 1042                                                                                       Threesome (1994)
## 1043                                                                                        Ref, The (1994)
## 1044                                                                     12 Monkeys (Twelve Monkeys) (1995)
## 1045                                                                               Leaving Las Vegas (1995)
## 1046                                                                                     Dragonheart (1996)
## 1047                                                                                    Arrival, The (1996)
## 1048                                                                            Nutty Professor, The (1996)
## 1049                                                                     Four Weddings and a Funeral (1994)
## 1050                                                              Butch Cassidy and the Sundance Kid (1969)
## 1051                                                                                     Stand by Me (1986)
## 1052                                                                                     Rear Window (1954)
## 1053                                                                           It Happened One Night (1934)
## 1054                                                                                Deer Hunter, The (1978)
## 1055                                                                         Philadelphia Story, The (1940)
## 1056                                                                                    My Fair Lady (1964)
## 1057                                                                            Fried Green Tomatoes (1991)
## 1058                     Supercop (Police Story 3: Supercop) (Jing cha gu shi III: Chao ji jing cha) (1992)
## 1059                                                                                            Rudy (1993)
## 1060                                                                                      Young Guns (1988)
## 1061                                                                        Bedknobs and Broomsticks (1971)
## 1062                                                       Frankenstein (Mary Shelleys Frankenstein) (1994)
## 1063                                                                                 Specialist, The (1994)
## 1064                                                                                        Hideaway (1995)
## 1065                                                                                    Pretty Woman (1990)
## 1066                                                                             Usual Suspects, The (1995)
## 1067                                                                                       Firm, The (1993)
## 1068                                                                                    Arrival, The (1996)
## 1069                                                                                   Roman Holiday (1953)
## 1070                                                                               Wizard of Oz, The (1939)
## 1071                                                                                     Under Siege (1992)
## 1072                                                                                  Apocalypse Now (1979)
## 1073                                                                                 Time to Kill, A (1996)
## 1074                                                      Star Wars: Episode VI - Return of the Jedi (1983)
## 1075                                                              Indiana Jones and the Last Crusade (1989)
## 1076                                                                          Fox and the Hound, The (1981)
## 1077                                                                                   Dirty Dancing (1987)
## 1078                                                                                      Relic, The (1997)
## 1079                                                                                 Beautiful Girls (1996)
## 1080                                                                                          Patton (1970)
## 1081                                                                                    Nobodys Fool (1994)
## 1082                                                                      E.T. the Extra-Terrestrial (1982)
## 1083                                                                                  Reservoir Dogs (1992)
## 1084                                                                              Young Frankenstein (1974)
## 1085                                                                               Full Metal Jacket (1987)
## 1086                                                                                           Ghost (1990)
## 1087                                                                         Man Without a Face, The (1993)
## 1088                                                                                          Ransom (1996)
## 1089                                                                                          Psycho (1960)
## 1090                                                                     Four Weddings and a Funeral (1994)
## 1091                                                                                 Schindlers List (1993)
## 1092                                                                                     Client, The (1994)
## 1093                                                                         When Harry Met Sally... (1989)
## 1094                                                                                        Die Hard (1988)
## 1095                                                                                      Sting, The (1973)
## 1096                                                                              African Queen, The (1951)
## 1097                                                                              Young Frankenstein (1974)
## 1098                                                             Star Trek III: The Search for Spock (1984)
## 1099                                                                      Man Who Would Be King, The (1975)
## 1100                                                                              This Is Spinal Tap (1984)
## 1101                                                                                          Brazil (1985)
## 1102                                                                                         Aladdin (1992)
## 1103                                                                                     Dantes Peak (1997)
## 1104                                                             Willy Wonka & the Chocolate Factory (1971)
## 1105                                                                    Truth About Cats & Dogs, The (1996)
## 1106                                                                                   Jerry Maguire (1996)
## 1107                                                                                 River Wild, The (1994)
## 1108                                           Star Wars: Episode IV - A New Hope (a.k.a. Star Wars) (1977)
## 1109                                                                                         Twister (1996)
## 1110                                                                                    Phantom, The (1996)
## 1111                                                                 Wallace & Gromit: A Close Shave (1995)
## 1112                                                                   Independence Day (a.k.a. ID4) (1996)
## 1113                                                                             Mission: Impossible (1996)
## 1114                                                                                Dead Man Walking (1995)
## 1115                                                                                            Heat (1995)
## 1116                                                                              That Thing You Do! (1996)
## 1117                                                                                         Tin Cup (1996)
## 1118                                                             Willy Wonka & the Chocolate Factory (1971)
## 1119                                                                                      Juror, The (1996)
## 1120                                                                              Executive Decision (1996)
## 1121                                               Adventures of Priscilla, Queen of the Desert, The (1994)
## 1122                                                                                           Fargo (1996)
## 1123                                                                    Truth About Cats & Dogs, The (1996)
## 1124                                                                                    Strange Days (1995)
## 1125                                                                                          Clerks (1994)
## 1126                                                                                        Spy Hard (1996)
## 1127                                                                                 Beautiful Girls (1996)
## 1128                                                                 Monty Python and the Holy Grail (1975)
## 1129                                                                                     Black Sheep (1996)
## 1130                                                                                Escape from L.A. (1996)
## 1131                                                             William Shakespeares Romeo + Juliet (1996)
## 1132                                                                            Seven (a.k.a. Se7en) (1995)
## 1133                                                                               Leaving Las Vegas (1995)
## 1134                                                                                            Heat (1995)
## 1135                                                                                       Rock, The (1996)
## 1136                                                                                         Tin Cup (1996)
## 1137                                                                                      Four Rooms (1995)
## 1138                                                                                    Broken Arrow (1996)
## 1139                                                                                   Happy Gilmore (1996)
## 1140                                                                                   Trainspotting (1996)
## 1141                                                                                    Bed of Roses (1996)
## 1142                                                                                    Arrival, The (1996)
## 1143                                                                                    White Squall (1996)
## 1144                                                                                            Heat (1995)
## 1145                                           Star Wars: Episode IV - A New Hope (a.k.a. Star Wars) (1977)
## 1146                                                                                        Bio-Dome (1996)
## 1147                                                                                 Substitute, The (1996)
## 1148                                                                                         Twister (1996)
## 1149                                                                                  Cable Guy, The (1996)
## 1150                                                                                       Screamers (1995)
## 1151                                                                                  101 Dalmatians (1996)
## 1152                                                                       Crow: City of Angels, The (1996)
## 1153                                                                              Courage Under Fire (1996)
## 1154                                                                                            Jack (1996)
## 1155                                                                                   Mars Attacks! (1996)
## 1156                                                                                           Fargo (1996)
## 1157                                                                            Very Brady Sequel, A (1996)
## 1158                                                                                   Trainspotting (1996)
## 1159                                                                                         Kingpin (1996)
## 1160                                                                                         Michael (1996)
## 1161                                                                                  Joes Apartment (1996)
## 1162                                                                                 River Wild, The (1994)
## 1163                                           Star Wars: Episode IV - A New Hope (a.k.a. Star Wars) (1977)
## 1164                                                                                    One Fine Day (1996)
## 1165                                                                                     Dantes Peak (1997)
## 1166                                                                         Bastard Out of Carolina (1996)
## 1167                                                                                      Turbulence (1997)
## 1168                                                                         Portrait of a Lady, The (1996)
## 1169                                                                              Executive Decision (1996)
## 1170                                                                                         Michael (1996)
## 1171                                                                                            Cobb (1994)
## 1172                                                                             Legends of the Fall (1994)
## 1173                                                                                Right Stuff, The (1983)
## 1174                                                                                    Pretty Woman (1990)
## 1175                                                                                        Die Hard (1988)
## 1176                                                                                       Mr. Wrong (1996)
## 1177                                                                             Mission: Impossible (1996)
## 1178                                                                   Independence Day (a.k.a. ID4) (1996)
## 1179                                                                                    Sudden Death (1995)
## 1180                                                                              Courage Under Fire (1996)
## 1181                                                                                       Toy Story (1995)
## 1182                                                                                         Matilda (1996)
## 1183                                                                                        Daylight (1996)
## 1184                                                                                            Fled (1996)
## 1185                                                                                 Time to Kill, A (1996)
## 1186                                                                                      Phenomenon (1996)
## 1187                                                                                    Sudden Death (1995)
## 1188                                                                         American President, The (1995)
## 1189                                                                                         Top Gun (1986)
## 1190                                                                                    Broken Arrow (1996)
## 1191                                                                              Executive Decision (1996)
## 1192                                                                                    Multiplicity (1996)
## 1193                                                                                            Heat (1995)
## 1194                                                                                          Eraser (1996)
## 1195                                                                                      Four Rooms (1995)
## 1196                                                                                 Schindlers List (1993)
## 1197                                                                            Seven (a.k.a. Se7en) (1995)
## 1198                                                                                       Lone Star (1996)
## 1199                                                                       Six Degrees of Separation (1993)
## 1200                                                                               Mr. Hollands Opus (1995)
## 1201                                                                             Mission: Impossible (1996)
## 1202                                                                                           Fargo (1996)
## 1203                                                                                    Broken Arrow (1996)
## 1204                                                                                         Twister (1996)
## 1205                                                                                         Sabrina (1995)
## 1206                                                                                    Phantom, The (1996)
## 1207                                                                                         Twister (1996)
## 1208                                                                                Grumpier Old Men (1995)
## 1209                                           Star Wars: Episode IV - A New Hope (a.k.a. Star Wars) (1977)
## 1210                                                                                       Space Jam (1996)
## 1211                                                                                           Speed (1994)
## 1212                                                                            Addams Family Values (1993)
## 1213                                                                                         Twister (1996)
## 1214                                                                                Dead Man Walking (1995)
## 1215                                                                        Star Trek: First Contact (1996)
## 1216                                                                               Mr. Hollands Opus (1995)
## 1217                                                                            Nutty Professor, The (1996)
## 1218                                                                                     Dragonheart (1996)
## 1219                                                                             Mission: Impossible (1996)
## 1220                                                                                       Apollo 13 (1995)
## 1221                                                                             In the Line of Fire (1993)
## 1222                                                                                      Casablanca (1942)
## 1223                                                      Star Wars: Episode VI - Return of the Jedi (1983)
## 1224                                                                              Dances with Wolves (1990)
## 1225                                                                            Nutty Professor, The (1996)
## 1226                                                                                          Ransom (1996)
## 1227                                                                                  Eye for an Eye (1996)
## 1228                                                                                            Fear (1996)
## 1229                                                                                       Coneheads (1993)
## 1230                                                                               Mr. Hollands Opus (1995)
## 1231                                                                                         Sabrina (1995)
## 1232                                                                 Nightmare Before Christmas, The (1993)
## 1233                                                                                   Birdcage, The (1996)
## 1234                                                                                   Mars Attacks! (1996)
## 1235                                                                                    Pulp Fiction (1994)
## 1236                                                                             Murder in the First (1995)
## 1237                                                                            Fish Called Wanda, A (1988)
## 1238                                                                                         Amadeus (1984)
## 1239                                                                                          Sirens (1994)
## 1240                                                                                  Apocalypse Now (1979)
## 1241                                                                   Under Siege 2: Dark Territory (1995)
## 1242                                                                                            Cobb (1994)
## 1243                                                             Star Trek III: The Search for Spock (1984)
## 1244                                                                                        Stargate (1994)
## 1245                                                                                  Fatal Instinct (1993)
## 1246                                                                                       Toy Story (1995)
## 1247                                                                                  Drop Dead Fred (1991)
## 1248                                                                                    Broken Arrow (1996)
## 1249                                                                                       Toy Story (1995)
## 1250                                                                                     Dragonheart (1996)
## 1251                                                                   Independence Day (a.k.a. ID4) (1996)
## 1252                                           Star Wars: Episode IV - A New Hope (a.k.a. Star Wars) (1977)
## 1253                                                                                 Time to Kill, A (1996)
## 1254                                                            Chungking Express (Chóngqìng Senlín) (1994)
## 1255                                                                   Independence Day (a.k.a. ID4) (1996)
## 1256                                                                                 River Wild, The (1994)
## 1257                                                                                 Devils Own, The (1997)
## 1258                                                         Mystery Science Theater 3000: The Movie (1996)
## 1259                                                                      Postman, The (Postino, Il) (1994)
## 1260                                                                                Dead Man Walking (1995)
## 1261                                                                        Long Kiss Goodnight, The (1996)
## 1262                                                                   Kids in the Hall: Brain Candy (1996)
## 1263                                                               Wallace & Gromit: A Grand Day Out (1989)
## 1264                                                                              Young Frankenstein (1974)
## 1265                                                                                            Emma (1996)
## 1266                                                                           2001: A Space Odyssey (1968)
## 1267                                                                                        Heathers (1989)
## 1268                                                                 American Werewolf in London, An (1981)
## 1269                                                                                     Real Genius (1985)
## 1270                                                                            Escape from New York (1981)
## 1271                                                                                     Primal Fear (1996)
## 1272                                                                              When We Were Kings (1996)
## 1273                                                                                Grumpier Old Men (1995)
## 1274                                                                                        Sleepers (1996)
## 1275                                                                                     Black Sheep (1996)
## 1276                                                                                High School High (1996)
## 1277                                                                                       Toy Story (1995)
## 1278                                                                                    Shining, The (1980)
## 1279                                                                               Full Metal Jacket (1987)
## 1280                                                                                      Blown Away (1994)
## 1281                                                                                     Nine Months (1995)
## 1282                                                       Frankenstein (Mary Shelleys Frankenstein) (1994)
## 1283                                                                                Pillow Book, The (1996)
## 1284                                                                                       Toy Story (1995)
## 1285                                                      Star Wars: Episode VI - Return of the Jedi (1983)
## 1286                                                                                   Birdcage, The (1996)
## 1287                                                                                         Othello (1995)
## 1288                                                                                          Eraser (1996)
## 1289                                                                                      Craft, The (1996)
## 1290                                                                       Crow: City of Angels, The (1996)
## 1291                                                                      Postman, The (Postino, Il) (1994)
## 1292                                                                                    Phantom, The (1996)
## 1293                         Raiders of the Lost Ark (Indiana Jones and the Raiders of the Lost Ark) (1981)
## 1294                                                                                         Michael (1996)
## 1295                                                                                     Shadowlands (1993)
## 1296                                                                                     Being There (1979)
## 1297                                                                         Speed 2: Cruise Control (1997)
## 1298                                                                                  Mrs. Doubtfire (1993)
## 1299                                                                    So I Married an Axe Murderer (1993)
## 1300                                                                                        Sneakers (1992)
## 1301                                                                                        Clueless (1995)
## 1302                                                                                          Junior (1994)
## 1303                                                                                    Forrest Gump (1994)
## 1304                                                                          Madonna: Truth or Dare (1991)
## 1305                                                                       Silence of the Lambs, The (1991)
## 1306                                                                                          Malice (1993)
## 1307                                                                                          Sliver (1993)
## 1308                                                                                   Birdcage, The (1996)
## 1309                                                                                  Godfather, The (1972)
## 1310                                                                            Boat, The (Das Boot) (1981)
## 1311                                                                         Antonias Line (Antonia) (1995)
## 1312                                                                         Portrait of a Lady, The (1996)
## 1313                                                                                         Twister (1996)
## 1314                                                                                  Cable Guy, The (1996)
## 1315                                                                                       Mr. Wrong (1996)
## 1316                                                                                            Emma (1996)
## 1317                                                                               Cold Comfort Farm (1995)
## 1318                                                                              I Shot Andy Warhol (1996)
## 1319                                                                            2 Days in the Valley (1996)
## 1320                                                                                 Stealing Beauty (1996)
## 1321                                                                             Spitfire Grill, The (1996)
## 1322                                                             Willy Wonka & the Chocolate Factory (1971)
## 1323                                                                                           Nixon (1995)
## 1324                                                                                         Tin Cup (1996)
## 1325                                                                               Leaving Las Vegas (1995)
## 1326                                                                                       Rock, The (1996)
## 1327                                                                      Postman, The (Postino, Il) (1994)
## 1328                                                                            Seven (a.k.a. Se7en) (1995)
## 1329                                                                                     Dragonheart (1996)
## 1330                         Raiders of the Lost Ark (Indiana Jones and the Raiders of the Lost Ark) (1981)
## 1331                                                                                       Crow, The (1994)
## 1332                                                                                  Chain Reaction (1996)
## 1333                                                                                        Bad Boys (1995)
## 1334                                                                                         Twister (1996)
## 1335                                                                                         Sabrina (1995)
## 1336                                                                                           Ghost (1990)
## 1337                                                                                      Braveheart (1995)
## 1338                                                                                    Broken Arrow (1996)
## 1339                                                                                         Aladdin (1992)
## 1340                                                                                     Primal Fear (1996)
## 1341                                                                                         Matilda (1996)
## 1342                                                                                         Michael (1996)
## 1343                                                                                    Theodore Rex (1995)
## 1344                                                                                    Multiplicity (1996)
## 1345                                                                    Adventures of Pinocchio, The (1996)
## 1346                                                             Willy Wonka & the Chocolate Factory (1971)
## 1347                                                                                   Happy Gilmore (1996)
## 1348                                                                                         Sabrina (1995)
## 1349                                                                                  Godfather, The (1972)
## 1350                                                                               Mr. Hollands Opus (1995)
## 1351                                                                                          Eraser (1996)
## 1352                                                                                            Heat (1995)
## 1353                                                 Wallace & Gromit: The Best of Aardman Animation (1996)
## 1354                                                                                     Taxi Driver (1976)
## 1355                                                                       Shawshank Redemption, The (1994)
## 1356                                                                                    Nobodys Fool (1994)
## 1357                                                                             Clockwork Orange, A (1971)
## 1358                                                                     Father of the Bride Part II (1995)
## 1359                                                                                Grumpier Old Men (1995)
## 1360                                                                                  101 Dalmatians (1996)
## 1361                                                         Mystery Science Theater 3000: The Movie (1996)
## 1362                                                        Homeward Bound II: Lost in San Francisco (1996)
## 1363                                                                                       Mr. Wrong (1996)
## 1364                                                                                          Kazaam (1996)
## 1365                                                                                   Two if by Sea (1996)
## 1366                                                                               Mr. Hollands Opus (1995)
## 1367                                                                                    Broken Arrow (1996)
## 1368                                                                              Angels and Insects (1995)
## 1369                                                                       Silence of the Lambs, The (1991)
## 1370                                                                            English Patient, The (1996)
## 1371                                                                                 River Wild, The (1994)
## 1372                                                                                      Juror, The (1996)
## 1373                                                                                   Trainspotting (1996)
## 1374                                                                                      Craft, The (1996)
## 1375                                                                                      Diabolique (1996)
## 1376                                                                   Kids in the Hall: Brain Candy (1996)
## 1377                                                                                            Fear (1996)
## 1378                                                                                  Batman & Robin (1997)
## 1379                                                                                  Down Periscope (1996)
## 1380                                                                              Courage Under Fire (1996)
## 1381                                                                               Leaving Las Vegas (1995)
## 1382                                                                     12 Monkeys (Twelve Monkeys) (1995)
## 1383                                                                                          Eraser (1996)
## 1384                                                                                   Trainspotting (1996)
## 1385                                                                                   Mars Attacks! (1996)
## 1386                                                                                      Four Rooms (1995)
## 1387                                                                               Last Man Standing (1996)
## 1388                                                                             Mission: Impossible (1996)
## 1389                                                                        Star Trek: First Contact (1996)
## 1390                                                                                            Emma (1996)
## 1391                                                                    Truth About Cats & Dogs, The (1996)
## 1392                                                                    Hunchback of Notre Dame, The (1996)
## 1393                                                                                  101 Dalmatians (1996)
## 1394                                                                         All Dogs Go to Heaven 2 (1996)
## 1395                                                                   Independence Day (a.k.a. ID4) (1996)
## 1396                                                                               Mr. Hollands Opus (1995)
## 1397                                                                           Up Close and Personal (1996)
## 1398                                                                           First Wives Club, The (1996)
## 1399                                                                                Mulholland Falls (1996)
## 1400                                                                                        Sleepers (1996)
## 1401                                                                                   Mars Attacks! (1996)
## 1402                                                                     12 Monkeys (Twelve Monkeys) (1995)
## 1403                                                                     Father of the Bride Part II (1995)
## 1404                                                                                          Eraser (1996)
## 1405                                                                                         Sabrina (1995)
## 1406                                                                            Nutty Professor, The (1996)
## 1407                                                                                      Craft, The (1996)
## 1408                                                                                         Kingpin (1996)
## 1409                                                                                    White Squall (1996)
## 1410                                                          Things to Do in Denver When Youre Dead (1995)
## 1411                                                                              Fifth Element, The (1997)
## 1412                                                                                   Donnie Brasco (1997)
## 1413                                                                             Trigger Effect, The (1996)
## 1414                                                                                           Crash (1996)
## 1415                                                                                         Twister (1996)
## 1416                                                                                   Birdcage, The (1996)
## 1417                                                             Willy Wonka & the Chocolate Factory (1971)
## 1418                                                                                      Phenomenon (1996)
## 1419                                                                                    Bed of Roses (1996)
## 1420                                                                                        Sleepers (1996)
## 1421                                                                                Grumpier Old Men (1995)
## 1422                                                                             Legends of the Fall (1994)
## 1423                                                                                Bonnie and Clyde (1967)
## 1424                                                                    Turbo: A Power Rangers Movie (1997)
## 1425                                                                                         Twister (1996)
## 1426                                                                           Great White Hype, The (1996)
## 1427                                                                                     Dantes Peak (1997)
## 1428                                                                              Fifth Element, The (1997)
## 1429                                                                                    Forrest Gump (1994)
## 1430                                                                       Shawshank Redemption, The (1994)
## 1431                                                                                    Crimson Tide (1995)
## 1432                                                                             In the Line of Fire (1993)
## 1433                                                              Indiana Jones and the Last Crusade (1989)
## 1434                                                                                           Alien (1979)
## 1435                                                                             Blues Brothers, The (1980)
## 1436                                                                     Father of the Bride Part II (1995)
## 1437                                           Star Wars: Episode IV - A New Hope (a.k.a. Star Wars) (1977)
## 1438                                                                                  Apocalypse Now (1979)
## 1439                                                                 Return of the Pink Panther, The (1975)
## 1440                                                                           It Happened One Night (1934)
## 1441                                                                                     Hard Target (1993)
## 1442                                                                                         Rebecca (1940)
## 1443                                                             Willy Wonka & the Chocolate Factory (1971)
## 1444                                                      Star Wars: Episode VI - Return of the Jedi (1983)
## 1445                                                                             Grosse Pointe Blank (1997)
## 1446                                                                       Shawshank Redemption, The (1994)
## 1447                                                                                          Clerks (1994)
## 1448                                                                                            Kids (1995)
## 1449                                                  Star Wars: Episode V - The Empire Strikes Back (1980)
## 1450                                                                 Monty Python and the Holy Grail (1975)
## 1451                                                                                   Red Rock West (1992)
## 1452                                                                             Princess Bride, The (1987)
## 1453                                                                  One Flew Over the Cuckoos Nest (1975)
## 1454                                                                                 Terminator, The (1984)
## 1455                                                                   Independence Day (a.k.a. ID4) (1996)
## 1456                                                             Willy Wonka & the Chocolate Factory (1971)
## 1457                                                                                    Multiplicity (1996)
## 1458                                                                            Very Brady Sequel, A (1996)
## 1459                                                                        Welcome to the Dollhouse (1995)
## 1460                                                                            Boat, The (Das Boot) (1981)
## 1461                                                                     12 Monkeys (Twelve Monkeys) (1995)
## 1462                                                                                   Birdcage, The (1996)
## 1463                                                                                          Eraser (1996)
## 1464                                                                                   Trainspotting (1996)
## 1465                                                                               Leaving Las Vegas (1995)
## 1466                                                                                 River Wild, The (1994)
## 1467                                                                                         Twister (1996)
## 1468                                                                              Courage Under Fire (1996)
## 1469                                                                                   Jerry Maguire (1996)
## 1470                                                                 Beavis and Butt-Head Do America (1996)
## 1471                                                                                       Toy Story (1995)
## 1472                                                                                    White Squall (1996)
## 1473                                                                                      Quest, The (1996)
## 1474                                                                                     Dantes Peak (1997)
## 1475                                                                                     Dragonheart (1996)
## 1476                                                                                   Mars Attacks! (1996)
## 1477                                                                                         Amadeus (1984)
## 1478                                                                            Hudsucker Proxy, The (1994)
## 1479                                                                                    Philadelphia (1993)
## 1480                                                                       Silence of the Lambs, The (1991)
## 1481                                                                         While You Were Sleeping (1995)
## 1482                                                                                Some Like It Hot (1959)
## 1483                                                         Manon of the Spring (Manon des sources) (1986)
## 1484                                                                                            Dave (1993)
## 1485                                                                               Mrs. Winterbourne (1996)
## 1486                                                                                      Birds, The (1963)
## 1487                                                                 Aladdin and the King of Thieves (1996)
## 1488                                                                             Blues Brothers, The (1980)
## 1489                     Supercop (Police Story 3: Supercop) (Jing cha gu shi III: Chao ji jing cha) (1992)
## 1490                                                                                        Die Hard (1988)
## 1491                                                       Frankenstein (Mary Shelleys Frankenstein) (1994)
## 1492                                                                                  Godfather, The (1972)
## 1493                                                                                           Fargo (1996)
## 1494                                                                                 Denise Calls Up (1995)
## 1495                                                                                  Addiction, The (1995)
## 1496                                                                                       Big Night (1996)
## 1497                                                                                      Braveheart (1995)
## 1498                                                                                      Goodfellas (1990)
## 1499                                                                  Day the Earth Stood Still, The (1951)
## 1500                                                                     Evil Dead II (Dead by Dawn) (1987)
## 1501                                                                                    Forrest Gump (1994)
## 1502                                                                                    Crimson Tide (1995)
## 1503                                                                         Philadelphia Story, The (1940)
## 1504                                                                         When Harry Met Sally... (1989)
## 1505                                                                                  Doctor Zhivago (1965)
## 1506                                                                                Don Juan DeMarco (1995)
## 1507                                                                         While You Were Sleeping (1995)
## 1508                                                                                   Waterboy, The (1998)
## 1509                                                                                 My Cousin Vinny (1992)
## 1510                                                                                 My Cousin Vinny (1992)
## 1511                                                                                            Heat (1995)
## 1512                                                         Mystery Science Theater 3000: The Movie (1996)
## 1513                                                                                   Happy Gilmore (1996)
## 1514                                                                              Dances with Wolves (1990)
## 1515                                                                                        Sneakers (1992)
## 1516                                                                         My Best Friends Wedding (1997)
## 1517                                                                                Addicted to Love (1997)
## 1518                                                                                           Speed (1994)
## 1519                                                                                      Saint, The (1997)
## 1520                                                          Star Trek VI: The Undiscovered Country (1991)
## 1521                                                                          Muppet Treasure Island (1996)
## 1522                                                                                  Batman Returns (1992)
## 1523                                                               Darby OGill and the Little People (1959)
## 1524                                                                                Jungle Book, The (1967)
## 1525                                                 Wallace & Gromit: The Best of Aardman Animation (1996)
## 1526                                                                                           Bambi (1942)
## 1527                                                                                           Dumbo (1941)
## 1528                                                                     Four Weddings and a Funeral (1994)
## 1529                                           Star Wars: Episode IV - A New Hope (a.k.a. Star Wars) (1977)
## 1530                                                                                    Blade Runner (1982)
## 1531                                                                                  Doctor Zhivago (1965)
## 1532                                                          Star Trek VI: The Undiscovered Country (1991)
## 1533                                                                        Star Trek: First Contact (1996)
## 1534                                                                                 Field of Dreams (1989)
## 1535                                                                              This Is Spinal Tap (1984)
## 1536                                                                              Driving Miss Daisy (1989)
## 1537                                                            My Life as a Dog (Mitt liv som hund) (1985)
## 1538                                                                                        Mephisto (1981)
## 1539                                                                             About Last Night... (1986)
## 1540                                                                      Clan of the Cave Bear, The (1986)
## 1541                                                                  One Flew Over the Cuckoos Nest (1975)
## 1542                                                                                           Ronin (1998)
## 1543                                                                                          Psycho (1998)
## 1544                                                         Friday the 13th Part V: A New Beginning (1985)
## 1545                                                                        Night of the Living Dead (1968)
## 1546                                                                             Tales from the Hood (1995)
## 1547                                                                           Hellraiser: Bloodline (1996)
## 1548                                                                                       Fear, The (1995)
## 1549                                                                                 Terminator, The (1984)
## 1550                                                                                       Dark City (1998)
## 1551                                                                  X-Files: Fight the Future, The (1998)
## 1552                                                                                         Jumanji (1995)
## 1553                                                                                  Demolition Man (1993)
## 1554                                                                              Lawnmower Man, The (1992)
## 1555                                                                                       Coneheads (1993)
## 1556                                                                                           Congo (1995)
## 1557                                                                                          Junior (1994)
## 1558                                                                                       Rock, The (1996)
## 1559                                                                                          Batman (1989)
## 1560                                                                             Tomorrow Never Dies (1997)
## 1561                                                                                          Eraser (1996)
## 1562                                                                                    Sudden Death (1995)
## 1563                                                                          Muppet Treasure Island (1996)
## 1564                                                                            Hot Shots! Part Deux (1993)
## 1565                                                                                 Devils Own, The (1997)
## 1566                                                                                      Quest, The (1996)
## 1567                                                                                  Batman & Robin (1997)
## 1568                                                                                       Labyrinth (1986)
## 1569                                                                                            Babe (1995)
## 1570                                                                               Big Lebowski, The (1998)
## 1571                                                                                 Full Monty, The (1997)
## 1572                                                                                           Ghost (1990)
## 1573                                                                                 Renaissance Man (1994)
## 1574                                                                                  Lightning Jack (1994)
## 1575                                                                           Great White Hype, The (1996)
## 1576                                                                                   Billy Madison (1995)
## 1577                                                                                    Exit to Eden (1994)
## 1578                                                                  Ace Ventura: When Nature Calls (1995)
## 1579                                                                                     Richie Rich (1994)
## 1580                                                                          Road to Wellville, The (1994)
## 1581                                                                                    House Arrest (1996)
## 1582                                                                                         Vertigo (1958)
## 1583                                                                                       Game, The (1997)
## 1584                                                                                 Ordinary People (1980)
## 1585                                                                      E.T. the Extra-Terrestrial (1982)
## 1586                                                                              As Good As It Gets (1997)
## 1587                                                                                         Ed Wood (1994)
## 1588                                                                                       Liar Liar (1997)
## 1589                                                                 Nightmare Before Christmas, The (1993)
## 1590                                                                                  Mrs. Doubtfire (1993)
## 1591                                                                                      Striptease (1996)
## 1592                                                                           Getting Even with Dad (1994)
## 1593                                                                                 My Cousin Vinny (1992)
## 1594                                                                               Good Will Hunting (1997)
## 1595                                                                         Basketball Diaries, The (1995)
## 1596                                                                         While You Were Sleeping (1995)
## 1597                                                                         Man Without a Face, The (1993)
## 1598                                                                      Whats Eating Gilbert Grape (1993)
## 1599                                                                                 Beautiful Girls (1996)
## 1600                                                                                       Happiness (1998)
## 1601                                                                              Enemy of the State (1998)
## 1602                                                                                   Groundhog Day (1993)
## 1603                                                                                      L.A. Story (1991)
## 1604                                                                                       Toy Story (1995)
## 1605                                                                                 Schindlers List (1993)
## 1606                                                                                      Roger & Me (1989)
## 1607                                                                        Manhattan Murder Mystery (1993)
## 1608                                                                                 Few Good Men, A (1992)
## 1609                                                                                    Forrest Gump (1994)
## 1610                                                                             Usual Suspects, The (1995)
## 1611                                                                                Some Like It Hot (1959)
## 1612                                                                               Perfect Murder, A (1998)
## 1613                                                                                         Witness (1985)
## 1614                                                                              Dances with Wolves (1990)
## 1615                                                                                           Giant (1956)
## 1616                                                                                       Toy Story (1995)
## 1617                                                                           2001: A Space Odyssey (1968)
## 1618                                                                                        Net, The (1995)
## 1619                                                                   Independence Day (a.k.a. ID4) (1996)
## 1620                                                                                        Clueless (1995)
## 1621                                                                                            Hero (1992)
## 1622                                                                               Mrs. Winterbourne (1996)
## 1623                                                                                       Rambo III (1988)
## 1624                                                                            Its a Wonderful Life (1946)
## 1625                                                                                        Fantasia (1940)
## 1626                                                                                     Poltergeist (1982)
## 1627                                                             Cemetery Man (Dellamorte Dellamore) (1994)
## 1628                                                                             Little Mermaid, The (1989)
## 1629                                                                            Seven (a.k.a. Se7en) (1995)
## 1630                                                                                       Rock, The (1996)
## 1631                                               Léon: The Professional (Léon) (Professional, The) (1994)
## 1632                                                                                         Con Air (1997)
## 1633                                                                                  Absolute Power (1997)
## 1634                                                                                       Hard Rain (1998)
## 1635                                                                                   Jerry Maguire (1996)
## 1636                                                                                   Groundhog Day (1993)
## 1637                                                                                       True Lies (1994)
## 1638                                                                                      Phenomenon (1996)
## 1639                                                                                     Raging Bull (1980)
## 1640                                                                                      Old Yeller (1957)
## 1641                                                              Police Academy 3: Back in Training (1986)
## 1642                                                                                        Swingers (1996)
## 1643                                                                                       Liar Liar (1997)
## 1644                                                                                  Rosemarys Baby (1968)
## 1645                                                                             From Dusk Till Dawn (1996)
## 1646                                                                                    Bugs Life, A (1998)
## 1647                                                  Star Wars: Episode V - The Empire Strikes Back (1980)
## 1648                                                      Star Wars: Episode VI - Return of the Jedi (1983)
## 1649                                                                                         Jumanji (1995)
## 1650                                                                   Star Trek: The Motion Picture (1979)
## 1651                                                                                  Broadcast News (1987)
## 1652                                                                                          Willow (1988)
## 1653                                                                              Mask of Zorro, The (1998)
## 1654                                                                            Boat, The (Das Boot) (1981)
## 1655                                                                                       Apollo 13 (1995)
## 1656                                                                         Godfather: Part II, The (1974)
## 1657                                                                                         Ben-Hur (1959)
## 1658                                                                                    Broken Arrow (1996)
## 1659                                                                             Clockwork Orange, A (1971)
## 1660                                                                                     Deep Impact (1998)
## 1661                                                                                Army of Darkness (1993)
## 1662                                                                      Terminator 2: Judgment Day (1991)
## 1663                                                                                      Armageddon (1998)
## 1664                                                                   Independence Day (a.k.a. ID4) (1996)
## 1665                                                                                          Alien³ (1992)
## 1666                                                                             Alien: Resurrection (1997)
## 1667                                                                           Babe: Pig in the City (1998)
## 1668                                                                      Jerry Springer: Ringmaster (1998)
## 1669                                                                                 Bride of Chucky (1998)
## 1670                                                                                   Waterboy, The (1998)
## 1671                                                                                   Exorcist, The (1973)
## 1672                                                                                    Shining, The (1980)
## 1673                                                                                        Maverick (1994)
## 1674                                                                             Alien: Resurrection (1997)
## 1675                                                                                   Childs Play 2 (1990)
## 1676                                                                                       Lifeforce (1985)
## 1677                                                                        Night of the Living Dead (1968)
## 1678                                                  Nightmare on Elm Street 4: The Dream Master, A (1988)
## 1679                            Nosferatu in Venice (a.k.a. Vampire in Venice) (Nosferatu a Venezia) (1986)
## 1680                                                                                    Castle Freak (1995)
## 1681                                                                      Friday the 13th Part 3: 3D (1982)
## 1682                                                                                 Graveyard Shift (1990)
## 1683                                                                               Bordello of Blood (1996)
## 1684                                                                           Village of the Damned (1995)
## 1685                                                                           Babe: Pig in the City (1998)
## 1686                                                         Mystery Science Theater 3000: The Movie (1996)
## 1687                                                                                        Net, The (1995)
## 1688                                                                        Honey, I Blew Up the Kid (1992)
## 1689                                                                                      Abyss, The (1989)
## 1690                                                                 Star Trek V: The Final Frontier (1989)
## 1691                                                                                 Lethal Weapon 2 (1989)
## 1692                                                                                     Player, The (1992)
## 1693                                                                                       Toy Story (1995)
## 1694                                                                                   Groundhog Day (1993)
## 1695                                                                                            Dave (1993)
## 1696                                                                             Grosse Pointe Blank (1997)
## 1697                                                                                            Hero (1992)
## 1698                                                                                       Apollo 13 (1995)
## 1699                                                                              Mask of Zorro, The (1998)
## 1700                                                                                     Under Siege (1992)
## 1701                                                                            Natural Born Killers (1994)
## 1702                                                                                        Scream 2 (1997)
## 1703                                                                                         Con Air (1997)
## 1704                                                                                 Very Bad Things (1998)
## 1705                                                           I Still Know What You Did Last Summer (1998)
## 1706                                                                                         Henry V (1989)
## 1707                                                                               Wizard of Oz, The (1939)
## 1708                                                                                    Lost Horizon (1937)
## 1709                                                                                 Few Good Men, A (1992)
## 1710                                                                                         Ben-Hur (1959)
## 1711                                                                          Take the Money and Run (1969)
## 1712                                                                              Married to the Mob (1988)
## 1713                                                                     Theres Something About Mary (1998)
## 1714                                                                            Gentlemans Agreement (1947)
## 1715                                                                          Lord of the Rings, The (1978)
## 1716                                                                             Herbie Goes Bananas (1980)
## 1717                                                          Sunset Blvd. (a.k.a. Sunset Boulevard) (1950)
## 1718                                                                                         Vertigo (1958)
## 1719                                                                        Old Man and the Sea, The (1958)
## 1720                                                                                      Sting, The (1973)
## 1721                                                                       Adventures in Babysitting (1987)
## 1722                                                                             Terms of Endearment (1983)
## 1723                                                                           I Shot a Man in Vegas (1995)
## 1724                                                                        Man with Two Brains, The (1983)
## 1725                                                                               Godzilla (Gojira) (1954)
## 1726                                               Adventures of Priscilla, Queen of the Desert, The (1994)
## 1727                                                                                   Birdcage, The (1996)
## 1728                                                                               Dial M for Murder (1954)
## 1729                                                                                       Rush Hour (1998)
## 1730                                                                                Jungle Book, The (1967)
## 1731                                                                                  Mrs. Doubtfire (1993)
## 1732                                                                                  One True Thing (1998)
## 1733                                                                                          Psycho (1998)
## 1734                                                                             Dancing at Lughnasa (1998)
## 1735                                                                              Enemy of the State (1998)
## 1736                                                                                         Stripes (1981)
## 1737                                                                                      Home Alone (1990)
## 1738                                                                             Breakfast Club, The (1985)
## 1739                                                                     Around the World in 80 Days (1956)
## 1740                                                                           M*A*S*H (a.k.a. MASH) (1970)
## 1741                                                                           Bullets Over Broadway (1994)
## 1742                                                                                     Stand by Me (1986)
## 1743                                                                                         Sleeper (1973)
## 1744                                                                               Radioland Murders (1994)
## 1745                                                                               Mighty Ducks, The (1992)
## 1746                                                                                       Tank Girl (1995)
## 1747                                                     Austin Powers: International Man of Mystery (1997)
## 1748                                                                          Jewel of the Nile, The (1985)
## 1749                                                                                   Soylent Green (1973)
## 1750                                                  Star Wars: Episode V - The Empire Strikes Back (1980)
## 1751                                                                                      Abyss, The (1989)
## 1752                                                                      E.T. the Extra-Terrestrial (1982)
## 1753                                                                                           Fargo (1996)
## 1754                                                                                 Few Good Men, A (1992)
## 1755                                                                             Usual Suspects, The (1995)
## 1756                                                                                Last Supper, The (1995)
## 1757                                                                                        Cop Land (1997)
## 1758                                                              Indiana Jones and the Last Crusade (1989)
## 1759                                                                                       Apollo 13 (1995)
## 1760                                                                                         Platoon (1986)
## 1761                                                                                       Chinatown (1974)
## 1762                                                                        Star Trek: First Contact (1996)
## 1763                                                                                       GoldenEye (1995)
## 1764                                                                              Mask of Zorro, The (1998)
## 1765                     Supercop (Police Story 3: Supercop) (Jing cha gu shi III: Chao ji jing cha) (1992)
## 1766                                                                             Terms of Endearment (1983)
## 1767                                                                                   Groundhog Day (1993)
## 1768                                                                                   Fugitive, The (1993)
## 1769                                                                              Christmas Carol, A (1938)
## 1770                                                                                        Rain Man (1988)
## 1771                                                                                 Lethal Weapon 2 (1989)
## 1772                                                                               Conspiracy Theory (1997)
## 1773                                                                                      Get Shorty (1995)
## 1774                                                                                   Jerry Maguire (1996)
## 1775                                                                  2010: The Year We Make Contact (1984)
## 1776                                                                         While You Were Sleeping (1995)
## 1777                                                                                         Jumanji (1995)
## 1778                                                                           2001: A Space Odyssey (1968)
## 1779                                                                                 Sixteen Candles (1984)
## 1780                                                                             Mission: Impossible (1996)
## 1781                                                                     Back to the Future Part III (1990)
## 1782                                                                                         Matilda (1996)
## 1783                                                                                     Hope Floats (1998)
## 1784                                                                                 Full Monty, The (1997)
## 1785                                                                                  Rainmaker, The (1997)
## 1786                                                                                  Reservoir Dogs (1992)
## 1787                                                                                     Judge Dredd (1995)
## 1788                                                                            Natural Born Killers (1994)
## 1789                                                                                   Jurassic Park (1993)
## 1790                                                                                   Young Guns II (1990)
## 1791                                                                                           Nixon (1995)
## 1792                                                                                   Boogie Nights (1997)
## 1793                                                                   Whats Love Got to Do with It? (1993)
## 1794                                                                                  Night on Earth (1991)
## 1795                                                                                          Clerks (1994)
## 1796                                                                  Ever After: A Cinderella Story (1998)
## 1797                                                                                         Titanic (1997)
## 1798                                                                                     Dantes Peak (1997)
## 1799                                                                                Before and After (1996)
## 1800                                                                             Alien: Resurrection (1997)
## 1801                                                                                    Return to Oz (1985)
## 1802                                                  Star Wars: Episode V - The Empire Strikes Back (1980)
## 1803                                                                                       Apollo 13 (1995)
## 1804                                                                                   Air Force One (1997)
## 1805                                                                                  Godfather, The (1972)
## 1806                                                                                   Unforgettable (1996)
## 1807                                                                                  Sophies Choice (1982)
## 1808                                                                                       Rock, The (1996)
## 1809                                                                             Blues Brothers, The (1980)
## 1810                                                                        Dead Men Dont Wear Plaid (1982)
## 1811                                                                              As Good As It Gets (1997)
## 1812                                                                                   Varsity Blues (1999)
## 1813                                                                               Elephant Man, The (1980)
## 1814                                                                                     Matrix, The (1999)
## 1815                                                                                 Negotiator, The (1998)
## 1816                                                                                  Third Man, The (1949)
## 1817                                                                                       Duck Soup (1933)
## 1818                                                                        Blair Witch Project, The (1999)
## 1819                                                                             Message in a Bottle (1999)
## 1820                                                                                      52 Pick-Up (1986)
## 1821                                                                                      Radio Days (1987)
## 1822                                                                             Mosquito Coast, The (1986)
## 1823                                                  Nightmare on Elm Street 4: The Dream Master, A (1988)
## 1824                                                                                  Doctor Zhivago (1965)
## 1825                                                                                     Money Train (1995)
## 1826                                                                                        Election (1999)
## 1827                                                                                 American Beauty (1999)
## 1828                                                                                   Boys Dont Cry (1999)
## 1829                                                                              Outside Providence (1999)
## 1830                                                                                  Three to Tango (1999)
## 1831                                                                                 American Beauty (1999)
## 1832                                                                                     Blue Streak (1999)
## 1833                                                                                Crazy in Alabama (1999)
## 1834                                                                       Silence of the Lambs, The (1991)
## 1835                                                                                      Goodfellas (1990)
## 1836                                                                                Mickey Blue Eyes (1999)
## 1837                                                                                       Muse, The (1999)
## 1838                                                                           Better Than Chocolate (1999)
## 1839                                                                                        Dog Park (1998)
## 1840                                                             Ghostbusters (a.k.a. Ghost Busters) (1984)
## 1841                                                                         When Harry Met Sally... (1989)
## 1842                                                                                Sixth Sense, The (1999)
## 1843                                                                                    True Romance (1993)
## 1844                                                                                      Die Hard 2 (1990)
## 1845                                                                        Clear and Present Danger (1994)
## 1846                                                                             Mission: Impossible (1996)
## 1847                                                                              Thin Red Line, The (1998)
## 1848                                                                                      Snake Eyes (1998)
## 1849                                                                                 American Beauty (1999)
## 1850                                                                                         Titanic (1997)
## 1851                                                                                   Boys Dont Cry (1999)
## 1852                                                                                      Just Cause (1995)
## 1853                                                                                       Sommersby (1993)
## 1854                                                                                   Lost Son, The (1999)
## 1855                                                                              Man of the Century (1999)
## 1856                                                                                     Mystery Men (1999)
## 1857                                                                  Rocky Horror Picture Show, The (1975)
## 1858                                                                 Star Trek II: The Wrath of Khan (1982)
## 1859                                                                        Star Trek: First Contact (1996)
## 1860                                                                                  Ice Storm, The (1997)
## 1861                                                                                    Mary Poppins (1964)
## 1862                                                                     Four Weddings and a Funeral (1994)
## 1863                                                                                    Grand Canyon (1991)
## 1864                                                                                 Time to Kill, A (1996)
## 1865                                                                              Return to Paradise (1998)
## 1866                                                                                           Fargo (1996)
## 1867                                                                                    Forrest Gump (1994)
## 1868                                                                                   Jurassic Park (1993)
## 1869                                                                              Driving Miss Daisy (1989)
## 1870                                                                          Brothers McMullen, The (1995)
## 1871                                                                       Shawshank Redemption, The (1994)
## 1872                                                                                 Midnight Cowboy (1969)
## 1873                                                                                Dead Man Walking (1995)
## 1874                                                                                           Speed (1994)
## 1875                                                                      Postman, The (Postino, Il) (1994)
## 1876                                                                            Its a Wonderful Life (1946)
## 1877                                                                                    Citizen Kane (1941)
## 1878                                                                         Antonias Line (Antonia) (1995)
## 1879                                                         Cinema Paradiso (Nuovo cinema Paradiso) (1989)
## 1880                                                                             Edward Scissorhands (1990)
## 1881                                               Léon: The Professional (Léon) (Professional, The) (1994)
## 1882                                                            Eat Drink Man Woman (Yin shi nan nu) (1994)
## 1883                                                                                     Wild Things (1998)
## 1884                                                                                       Crow, The (1994)
## 1885                                                                               Menace II Society (1993)
## 1886                                                                                       Quiz Show (1994)
## 1887                                                                             Edward Scissorhands (1990)
## 1888                                                                           Breakfast at Tiffanys (1961)
## 1889                                                                                       GoldenEye (1995)
## 1890                                                                                  Watership Down (1978)
## 1891                                              Interview with the Vampire: The Vampire Chronicles (1994)
## 1892                                                                                      Casablanca (1942)
## 1893                                                                                    Pulp Fiction (1994)
## 1894                                                                                         Platoon (1986)
## 1895                                                                                    Forrest Gump (1994)
## 1896                                                                                Jean de Florette (1986)
## 1897                                                                                 Double Jeopardy (1999)
## 1898                                                                                 American Beauty (1999)
## 1899                                                                             Princess Bride, The (1987)
## 1900                                                                             Blues Brothers, The (1980)
## 1901                                                                                     Matrix, The (1999)
## 1902                                                                                  Reservoir Dogs (1992)
## 1903                                                                                     Sling Blade (1996)
## 1904                                                                                 Full Monty, The (1997)
## 1905                                                                                    Forrest Gump (1994)
## 1906                                                                                Truman Show, The (1998)
## 1907                                                                                       Apollo 13 (1995)
## 1908                                                                 Nightmare Before Christmas, The (1993)
## 1909                                                                            My Own Private Idaho (1991)
## 1910                                                                                   Boogie Nights (1997)
## 1911                                                                                       Elizabeth (1998)
## 1912                                                                                      Entrapment (1999)
## 1913                                                                                    White Squall (1996)
## 1914                                                                                        Vampires (1998)
## 1915                                                                                     Mystery Men (1999)
## 1916                                                           Romy and Micheles High School Reunion (1997)
## 1917                                                                                       Tank Girl (1995)
## 1918                                                                        Beverly Hillbillies, The (1993)
## 1919                                                                                      Ulees Gold (1997)
## 1920                                                                        Who Framed Roger Rabbit? (1988)
## 1921                                                                                    Notting Hill (1999)
## 1922                                                                                      Jawbreaker (1999)
## 1923                                                                                Truman Show, The (1998)
## 1924                                                                               Elephant Man, The (1980)
## 1925                                                  Star Wars: Episode V - The Empire Strikes Back (1980)
## 1926                                                              Indiana Jones and the Last Crusade (1989)
## 1927                                                                             Little Mermaid, The (1989)
## 1928                                                                        Who Framed Roger Rabbit? (1988)
## 1929                                                                            Fish Called Wanda, A (1988)
## 1930                                                                                   Lethal Weapon (1987)
## 1931                                                                                    Shining, The (1980)
## 1932                                                                                 Sixteen Candles (1984)
## 1933                                                                                     Down by Law (1986)
## 1934                                                                                      Abyss, The (1989)
## 1935                                                                                    Philadelphia (1993)
## 1936                                                                                        Mephisto (1981)
## 1937                                                                                    Verdict, The (1982)
## 1938                                                                                        Madeline (1998)
## 1939                                                   Nightmare on Elm Street 5: The Dream Child, A (1989)
## 1940                                                                                       Excalibur (1981)
## 1941                                                                                 Time to Kill, A (1996)
## 1942                                                                                     Wag the Dog (1997)
## 1943                                                                                 American Beauty (1999)
## 1944                            Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb (1964)
## 1945                                                                               Gods and Monsters (1998)
## 1946                                                                                   Grifters, The (1990)
## 1947                                                                                          Psycho (1960)
## 1948                                                                                 Schindlers List (1993)
## 1949                                                                                      Casablanca (1942)
## 1950                                                                         Godfather: Part II, The (1974)
## 1951                                                                              African Queen, The (1951)
## 1952                                                                                       High Noon (1952)
## 1953                                                                              Night of the Comet (1984)
## 1954                                                                                      Old Yeller (1957)
## 1955                                                                    20,000 Leagues Under the Sea (1954)
## 1956                                                                                    East of Eden (1955)
## 1957                                                                                         Amadeus (1984)
## 1958                                                                             Usual Suspects, The (1995)
## 1959                                                                                   Graduate, The (1967)
## 1960                                                                              Gone with the Wind (1939)
## 1961                                                                             Thin Blue Line, The (1988)
## 1962                                                                                  Godfather, The (1972)
## 1963                                                                                          Grease (1978)
## 1964                                                                                       Meatballs (1979)
## 1965                                                                                         Piranha (1978)
## 1966                                                                                        Repo Man (1984)
## 1967                                                                              Planet of the Apes (1968)
## 1968                                                                                          Aliens (1986)
## 1969                                                      Star Wars: Episode VI - Return of the Jedi (1983)
## 1970                                                                                         Sleeper (1973)
## 1971                                                                                        Superman (1978)
## 1972                                                                                    Blade Runner (1982)
## 1973                                                                                      Abyss, The (1989)
## 1974                                                                          Some Kind of Wonderful (1987)
## 1975                                                                   Star Trek IV: The Voyage Home (1986)
## 1976                                                                                          Sphere (1998)
## 1977                                                                         Karate Kid Part II, The (1986)
## 1978                                                                               Jumpin Jack Flash (1986)
## 1979                                                                   Independence Day (a.k.a. ID4) (1996)
## 1980                                                                                      Cat People (1982)
## 1981                                                                                       Christine (1983)
## 1982                                                                                        Repo Man (1984)
## 1983                                                                                  Police Academy (1984)
## 1984                                                                                      Spaceballs (1987)
## 1985                                                                              Christmas Vacation (1989)
## 1986                                                                                       Psycho II (1983)
## 1987                                                                                 Out of the Past (1947)
## 1988                                                                                       Chinatown (1974)
## 1989                                                                                           Gilda (1946)
## 1990                                                                              Heavenly Creatures (1994)
## 1991                                                                        Manhattan Murder Mystery (1993)
## 1992                                                                                       Game, The (1997)
## 1993                                                                             Mission: Impossible (1996)
## 1994                                                                                        Heathers (1989)
## 1995                                                                                       Duck Soup (1933)
## 1996                                                                                Crocodile Dundee (1986)
## 1997                                                                             Shakespeare in Love (1998)
## 1998                                                              Indiana Jones and the Last Crusade (1989)
## 1999                                                                                           Shine (1996)
## 2000                                                                           Breakfast at Tiffanys (1961)
## 2001                                                                                    Forrest Gump (1994)
## 2002                                                                                     Matrix, The (1999)
## 2003                                                                                       Apollo 13 (1995)
## 2004                                                                                     Sling Blade (1996)
## 2005                                                               Shall We Dance? (Shall We Dansu?) (1996)
## 2006                                                                       Run Lola Run (Lola rennt) (1998)
## 2007                                                                                      Braveheart (1995)
## 2008                                                                                    Pulp Fiction (1994)
## 2009                                                                             Edward Scissorhands (1990)
## 2010                                                                                              Pi (1998)
## 2011                                                                                   Touch of Evil (1958)
## 2012                                                                            Seven (a.k.a. Se7en) (1995)
## 2013                                                       Three Colors: Blue (Trois couleurs: Bleu) (1993)
## 2014                                                                                         Vertigo (1958)
## 2015                                                                       Femme Nikita, La (Nikita) (1990)
## 2016                                                                                       Bowfinger (1999)
## 2017                                                                                Truman Show, The (1998)
## 2018                                                                                   Runaway Bride (1999)
## 2019                                                                      Terminator 2: Judgment Day (1991)
## 2020                                                                       Femme Nikita, La (Nikita) (1990)
## 2021                                                                                Gumby: The Movie (1995)
## 2022                                                                                   Private Parts (1997)
## 2023                                                                            Horse Whisperer, The (1998)
## 2024                                                                                    Citizen Ruth (1996)
## 2025                                                                                Commitments, The (1991)
## 2026                                                                 Aladdin and the King of Thieves (1996)
## 2027                                                                                           Wings (1927)
## 2028                                                                                           Smoke (1995)
## 2029                                                                                       Firm, The (1993)
## 2030                                                                                   Groundhog Day (1993)
## 2031                                                         Mystery Science Theater 3000: The Movie (1996)
## 2032                                                                                       Liar Liar (1997)
## 2033                                                                       House of the Spirits, The (1993)
## 2034                                                                                   Private Parts (1997)
## 2035                                                                                      Craft, The (1996)
## 2036                                                                       Island of Dr. Moreau, The (1996)
## 2037                                                                                Fierce Creatures (1997)
## 2038                                                                                    Total Recall (1990)
## 2039                                                                                          Alien³ (1992)
## 2040                                                                                       Tombstone (1993)
## 2041                                                                                  Apartment, The (1960)
## 2042                                                                                         Gung Ho (1986)
## 2043                                                                                       Duck Soup (1933)
## 2044                                                                                          Splash (1984)
## 2045                                                                                 Say Anything... (1989)
## 2046                                                                                    Working Girl (1988)
## 2047                                                                                Crocodile Dundee (1986)
## 2048                                                                                 Ruthless People (1986)
## 2049                                                                            Next Stop Wonderland (1998)
## 2050                                                                      Back to the Future Part II (1989)
## 2051                                                                                Jungle Book, The (1967)
## 2052                                                                                Grumpier Old Men (1995)
## 2053                                                                                     Nine Months (1995)
## 2054                                                                                  Cable Guy, The (1996)
## 2055                                                                             Fear of a Black Hat (1994)
## 2056                                                                             Cops and Robbersons (1994)
## 2057                                                                                        Bio-Dome (1996)
## 2058                                                                                     Major Payne (1995)
## 2059                                                              Police Academy 3: Back in Training (1986)
## 2060                                                                          Little Shop of Horrors (1986)
## 2061                                                                              Planet of the Apes (1968)
## 2062                                                                                          Brazil (1985)
## 2063                                                                 Star Trek II: The Wrath of Khan (1982)
## 2064                                                                                           Akira (1988)
## 2065                                                                                  Rocketeer, The (1991)
## 2066                                                                                Escape from L.A. (1996)
## 2067                                                                                  Demolition Man (1993)
## 2068                                                                                         Top Hat (1935)
## 2069                                                                               Conspiracy Theory (1997)
## 2070                                                                                 Days of Thunder (1990)
## 2071                                                                                  Apocalypse Now (1979)
## 2072                                                                               Big Lebowski, The (1998)
## 2073                                                                               Leaving Las Vegas (1995)
## 2074                                                                             Waiting for Guffman (1996)
## 2075                                                                                     Sling Blade (1996)
## 2076                                                                             Edward Scissorhands (1990)
## 2077                                                                                    Forrest Gump (1994)
## 2078                                                                                         Ed Wood (1994)
## 2079                                                                                 Few Good Men, A (1992)
## 2080                                                                              As Good As It Gets (1997)
## 2081                                                                                 Muriels Wedding (1994)
## 2082                                                                                       Jane Eyre (1996)
## 2083                                                                                         Amadeus (1984)
## 2084                                                                                      Annie Hall (1977)
## 2085                                                                                 Raising Arizona (1987)
## 2086                                                                   Bridge on the River Kwai, The (1957)
## 2087                                                                        Children of a Lesser God (1986)
## 2088                                                                               Wedding Gift, The (1994)
## 2089                                                                Some Folks Call It a Sling Blade (1993)
## 2090                                                                                  St. Elmos Fire (1985)
## 2091                                                                                 Ordinary People (1980)
## 2092                                                                                   Graduate, The (1967)
## 2093                                                                          And the Band Played On (1993)
## 2094                                                                                           Bound (1996)
## 2095                                                                             Killing Fields, The (1984)
## 2096                                                                                  Doctor Zhivago (1965)
## 2097                                                                            English Patient, The (1996)
## 2098                                                                           From Here to Eternity (1953)
## 2099                                                                                           Trust (1990)
## 2100                                                                                     Three Kings (1999)
## 2101                                                                               Lost Weekend, The (1945)
## 2102                                                                                          Lolita (1997)
## 2103                                                                          Trip to Bountiful, The (1985)
## 2104                                                                         American President, The (1995)
## 2105                                                                                         Ben-Hur (1959)
## 2106                                                                                     Restoration (1995)
## 2107                                                                                          Brazil (1985)
## 2108                                                                            Horse Whisperer, The (1998)
## 2109                                                                              Desperate Measures (1998)
## 2110                                                                                    Forrest Gump (1994)
## 2111                                                                             Shakespeare in Love (1998)
## 2112                                                                             Color of Money, The (1986)
## 2113                                                                         American President, The (1995)
## 2114                                                                            Sleepless in Seattle (1993)
## 2115                                                                            My Own Private Idaho (1991)
## 2116                                                                     Four Weddings and a Funeral (1994)
## 2117                                                                     Once Upon a Time in America (1984)
## 2118                                                                              I Shot Andy Warhol (1996)
## 2119                                                           Romy and Micheles High School Reunion (1997)
## 2120                                                                                     Client, The (1994)
## 2121                                                                                         Stripes (1981)
## 2122                                                                                       Firm, The (1993)
## 2123                                                                                    Citizen Kane (1941)
## 2124                                                                                 Karate Kid, The (1984)
## 2125                                                                                    Analyze This (1999)
## 2126                                                                                  Secrets & Lies (1996)
## 2127                                                                             Killing Fields, The (1984)
## 2128                                                                                        Heathers (1989)
## 2129                                                                                Jean de Florette (1986)
## 2130                                                                                 Ordinary People (1980)
## 2131                                                                                    My Left Foot (1989)
## 2132                                                                                 American Beauty (1999)
## 2133                                                                  Dracula (Bram Stokers Dracula) (1992)
## 2134                                                                                            Antz (1998)
## 2135                                                                          Madonna: Truth or Dare (1991)
## 2136                                                                              This Is Spinal Tap (1984)
## 2137                                                                      Postman, The (Postino, Il) (1994)
## 2138                                                                             Usual Suspects, The (1995)
## 2139                                                             Life Is Beautiful (La Vita è bella) (1997)
## 2140                                                                         Godfather: Part II, The (1974)
## 2141                                                                                        Rushmore (1998)
## 2142                                                             Ghostbusters (a.k.a. Ghost Busters) (1984)
## 2143                                                                                  Apartment, The (1960)
## 2144                                                              Butch Cassidy and the Sundance Kid (1969)
## 2145                                                                     Theres Something About Mary (1998)
## 2146                                                                             Little Mermaid, The (1989)
## 2147                                                                                     Sling Blade (1996)
## 2148                                                                                         Rebecca (1940)
## 2149                                                                              Driving Miss Daisy (1989)
## 2150                                                                                 American Beauty (1999)
## 2151                                                            Wallace & Gromit: The Wrong Trousers (1993)
## 2152                                                                                 Unstrung Heroes (1995)
## 2153                                                                                         Everest (1998)
## 2154                                                                               Big Lebowski, The (1998)
## 2155                                                                        Who Framed Roger Rabbit? (1988)
## 2156                                                                         When Harry Met Sally... (1989)
## 2157                                                                                Harold and Maude (1971)
## 2158                                                                            Its a Wonderful Life (1946)
## 2159                                                                       Silence of the Lambs, The (1991)
## 2160                                                                       Manchurian Candidate, The (1962)
## 2161                                                                               L.A. Confidential (1997)
## 2162                         Raiders of the Lost Ark (Indiana Jones and the Raiders of the Lost Ark) (1981)
## 2163                                                                                       Apollo 13 (1995)
## 2164                                                                               On the Waterfront (1954)
## 2165                                                                                             Big (1988)
## 2166                                                                                       Duck Soup (1933)
## 2167                                                                        Night of the Living Dead (1968)
## 2168                                                                                        Fly, The (1986)
## 2169                                                                                Drugstore Cowboy (1989)
## 2170                                                                             Sydney (Hard Eight) (1996)
## 2171                                                                                      Dick Tracy (1990)
## 2172                                                                                  Batman & Robin (1997)
## 2173                                                                                      Striptease (1996)
## 2174                                                                                           Akira (1988)
## 2175                                                                                Army of Darkness (1993)
## 2176                                                                                   Arachnophobia (1990)
## 2177                                                                 Star Trek II: The Wrath of Khan (1982)
## 2178                                                                                         Contact (1997)
## 2179                                                                               Starship Troopers (1997)
## 2180                                                                                         Platoon (1986)
## 2181                                                            Indiana Jones and the Temple of Doom (1984)
## 2182                                                                                       Christine (1983)
## 2183                                                                               European Vacation (1985)
## 2184                                                                      Rambo: First Blood Part II (1985)
## 2185                                                                                       Toy Story (1995)
## 2186                                                                               Indecent Proposal (1993)
## 2187                                                                                Crying Game, The (1992)
## 2188                                                                        Children of the Corn III (1994)
## 2189                                                                                           Spawn (1997)
## 2190                                                                                 Practical Magic (1998)
## 2191                                                               Freddys Dead: The Final Nightmare (1991)
## 2192                                                                                       RoboCop 3 (1993)
## 2193                                                                   Star Trek: The Motion Picture (1979)
## 2194                                                                              Herbie Rides Again (1974)
## 2195                                                                            Fish Called Wanda, A (1988)
## 2196                                                                                Crocodile Dundee (1986)
## 2197                                                                                 Allnighter, The (1987)
## 2198                                                                                  Broadcast News (1987)
## 2199                                                                                        Die Hard (1988)
## 2200                                                                             Emerald Forest, The (1985)
## 2201                                                                          Miracle on 34th Street (1947)
## 2202                                                                                      Get Shorty (1995)
## 2203                                                                                   War Room, The (1993)
## 2204                                                                               On the Waterfront (1954)
## 2205                                                                                    Shining, The (1980)
## 2206                                                                                      Sting, The (1973)
## 2207                                                                                        Face/Off (1997)
## 2208                                                                                    Lost Horizon (1937)
## 2209                                                                                   All About Eve (1950)
## 2210                                                                                        Clueless (1995)
## 2211                                                       Star Wars: Episode I - The Phantom Menace (1999)
## 2212                                                                                 Lethal Weapon 2 (1989)
## 2213                                                                                      Roger & Me (1989)
## 2214                                                                           American in Paris, An (1951)
## 2215                                                                                       Breakdown (1997)
## 2216                                                                                     Blue Velvet (1986)
## 2217                                                                                      Phenomenon (1996)
## 2218                                                                 Nightmare Before Christmas, The (1993)
## 2219                                          One Hundred and One Dalmatians (a.k.a. 101 Dalmatians) (1961)
## 2220                                                                               Dolores Claiborne (1995)
## 2221                                                                              Driving Miss Daisy (1989)
## 2222                                                                                  Little Big Man (1970)
## 2223                                                                   Independence Day (a.k.a. ID4) (1996)
## 2224                                                                                            Jaws (1975)
## 2225                                                                                      Piano, The (1993)
## 2226                                                                            2 Days in the Valley (1996)
## 2227                                                                                 Karate Kid, The (1984)
## 2228                                                                                   Red Rock West (1992)
## 2229                                                             Ghostbusters (a.k.a. Ghost Busters) (1984)
## 2230                                                      Star Wars: Episode VI - Return of the Jedi (1983)
## 2231                                                                                      Sting, The (1973)
## 2232                                                                                         Amistad (1997)
## 2233                                                                                 Civil Action, A (1998)
## 2234                                                                       Six Degrees of Separation (1993)
## 2235                                                                                      Carrington (1995)
## 2236                                                                           Spanish Prisoner, The (1997)
## 2237                                                              Mrs. Parker and the Vicious Circle (1994)
## 2238                                                                                   Jerry Maguire (1996)
## 2239                                                                                  Primary Colors (1998)
## 2240                                                                                      Get Shorty (1995)
## 2241                                                                                 Schindlers List (1993)
## 2242                                                                                   Trainspotting (1996)
## 2243                                                 Fistful of Dollars, A (Per un pugno di dollari) (1964)
## 2244                                                                                           Rocky (1976)
## 2245                                                                                           Glory (1989)
## 2246                                                                                        Die Hard (1988)
## 2247                                                                                        Rocky II (1979)
## 2248                                                                             Maltese Falcon, The (1941)
## 2249                                                                                      Sting, The (1973)
## 2250                                                                        Children of a Lesser God (1986)
## 2251                                                                           M*A*S*H (a.k.a. MASH) (1970)
## 2252                                                                                  Pink Flamingos (1972)
## 2253                                                                                  Charlottes Web (1973)
## 2254                                                                                 American Beauty (1999)
## 2255                                                                        Star Trek: First Contact (1996)
## 2256                                                                                       True Lies (1994)
## 2257                                                                              Weekend at Bernies (1989)
## 2258                                                                                       Coneheads (1993)
## 2259                                              Interview with the Vampire: The Vampire Chronicles (1994)
## 2260                                                                 Wallace & Gromit: A Close Shave (1995)
## 2261                                                                                        Clueless (1995)
## 2262                                                                                             Big (1988)
## 2263                                                                              American History X (1998)
## 2264                                                                              Dead Poets Society (1989)
## 2265                                                                                        Swingers (1996)
## 2266                                                                                         Amistad (1997)
## 2267                                                                              This Is Spinal Tap (1984)
## 2268                                                                       Silence of the Lambs, The (1991)
## 2269                                                                                        Swingers (1996)
## 2270                                                                                           Bound (1996)
## 2271                                               Léon: The Professional (Léon) (Professional, The) (1994)
## 2272                                                                                Immortal Beloved (1994)
## 2273                                                                               L.A. Confidential (1997)
## 2274                                                                                            Heat (1995)
## 2275                                                                                         Freeway (1996)
## 2276                                                                             Shakespeare in Love (1998)
## 2277                                                                                     Beetlejuice (1988)
## 2278                                                                  X-Files: Fight the Future, The (1998)
## 2279                                                             Life Is Beautiful (La Vita è bella) (1997)
## 2280                                                                                           Mulan (1998)
## 2281                                                                       Last of the Mohicans, The (1992)
## 2282                                                  Star Wars: Episode V - The Empire Strikes Back (1980)
## 2283                                                                                  St. Elmos Fire (1985)
## 2284                                                                                  Pretty in Pink (1986)
## 2285                                                                                        Grease 2 (1982)
## 2286                                                                                Razors Edge, The (1984)
## 2287                                                                                            Reds (1981)
## 2288                                                                  Invasion of the Body Snatchers (1956)
## 2289                                                                                        High Art (1998)
## 2290                                                                                    Pretty Woman (1990)
## 2291                                                                            English Patient, The (1996)
## 2292                                                                              Lawrence of Arabia (1962)
## 2293                                                                                         Soldier (1998)
## 2294                                                                        Star Trek: First Contact (1996)
## 2295                                                                          Friday the 13th Part 2 (1981)
## 2296                                                                                    Shining, The (1980)
## 2297                                                                                  Believers, The (1987)
## 2298                                               Léon: The Professional (Léon) (Professional, The) (1994)
## 2299                                                                                      Goodfellas (1990)
## 2300                                                                                      Serial Mom (1994)
## 2301                                                                                       Crossfire (1947)
## 2302                                                                                To Catch a Thief (1955)
## 2303                                                                                Bringing Up Baby (1938)
## 2304                                                                                     Being There (1979)
## 2305                                                                                 Victor/Victoria (1982)
## 2306                                                                                    12 Angry Men (1957)
## 2307                                                                         Last Days of Disco, The (1998)
## 2308                                                                                   Meet John Doe (1941)
## 2309                                                                               Color Purple, The (1985)
## 2310                                                                          Buddy Holly Story, The (1978)
## 2311                                                                                      Short Cuts (1993)
## 2312                                                                                        Rain Man (1988)
## 2313                                                                                      Piano, The (1993)
## 2314                                                              Unbearable Lightness of Being, The (1988)
## 2315                                                                                     Raging Bull (1980)
## 2316                                                                                Ruby in Paradise (1993)
## 2317                                                                          Much Ado About Nothing (1993)
## 2318                                                                   Adventures of Robin Hood, The (1938)
## 2319                                                                              Dances with Wolves (1990)
## 2320                                                                       Femme Nikita, La (Nikita) (1990)
## 2321                                                                                 Negotiator, The (1998)
## 2322                                             Like Water for Chocolate (Como agua para chocolate) (1992)
## 2323                                                                              Angels and Insects (1995)
## 2324                                                                            Being John Malkovich (1999)
## 2325                                                                                    Total Recall (1990)
## 2326                                                                              Fifth Element, The (1997)
## 2327                                                                               Ideal Husband, An (1999)
## 2328                                                                                     October Sky (1999)
## 2329                                                                                      Mummy, The (1999)
## 2330                                                                                   Runaway Bride (1999)
## 2331                                                                        World Is Not Enough, The (1999)
## 2332                                                                                  Corruptor, The (1999)
## 2333                                                                    Fast, Cheap & Out of Control (1997)
## 2334                                                                           Breakfast at Tiffanys (1961)
## 2335                                                            Seven Samurai (Shichinin no samurai) (1954)
## 2336                                                                                        Scrooged (1988)
## 2337                                                          Sunset Blvd. (a.k.a. Sunset Boulevard) (1950)
## 2338                                                                 Monty Python and the Holy Grail (1975)
## 2339                         Raiders of the Lost Ark (Indiana Jones and the Raiders of the Lost Ark) (1981)
## 2340                                                                                    12 Angry Men (1957)
## 2341                                                                             Saving Private Ryan (1998)
## 2342                                                                                   Groundhog Day (1993)
## 2343                                                                              This Is Spinal Tap (1984)
## 2344                                                                                       Excalibur (1981)
## 2345                                                                 Star Trek II: The Wrath of Khan (1982)
## 2346                                                                             Blues Brothers, The (1980)
## 2347                                                                          French Connection, The (1971)
## 2348                                                                               Lost Weekend, The (1945)
## 2349                                                                                    Dr. Dolittle (1998)
## 2350                                                                               Never Been Kissed (1999)
## 2351                                                                             Little Mermaid, The (1989)
## 2352                                                                                 Mystery, Alaska (1999)
## 2353                                                                      Whats Eating Gilbert Grape (1993)
## 2354                                                                               Never Been Kissed (1999)
## 2355                                                                             Ride with the Devil (1999)
## 2356                                                                                     Three Kings (1999)
## 2357                                                                                Bicentennial Man (1999)
## 2358                                                                                       Chinatown (1974)
## 2359                                                                                          Patton (1970)
## 2360                                                                          It Could Happen to You (1994)
## 2361                                                                                  Murder at 1600 (1997)
## 2362                                                                        World Is Not Enough, The (1999)
## 2363                                                                                       Dark City (1998)
## 2364                                                                                        Stargate (1994)
## 2365                                                                                     Creepshow 2 (1987)
## 2366                                                           Austin Powers: The Spy Who Shagged Me (1999)
## 2367                                                                                      Thing, The (1982)
## 2368                                                                             Terms of Endearment (1983)
## 2369                                                                                       Blob, The (1958)
## 2370                                                                          Star Trek: Generations (1994)
## 2371                                                                                  Demolition Man (1993)
## 2372                                                                                        Stargate (1994)
## 2373                                                                                          Alien³ (1992)
## 2374                                                                           From Russia with Love (1963)
## 2375                                                                                     Thunderball (1965)
## 2376                                                                             Bone Collector, The (1999)
## 2377                                                                       Hunt for Red October, The (1990)
## 2378                                                                                    Midnight Run (1988)
## 2379                                                                                        Superman (1978)
## 2380                                                                              Planet of the Apes (1968)
## 2381                                                                              Mask of Zorro, The (1998)
## 2382                                                                                   Groundhog Day (1993)
## 2383                                                                             Romancing the Stone (1984)
## 2384                                                                                      Mummy, The (1932)
## 2385                                                                       Silence of the Lambs, The (1991)
## 2386                                                                                           Ghost (1990)
## 2387                                                                              Christmas Story, A (1983)
## 2388                                                                                          Legend (1985)
## 2389                                                                                  City of Angels (1998)
## 2390                                                                                             Tex (1982)
## 2391                                                                                       Chinatown (1974)
## 2392                                                                                     Rear Window (1954)
## 2393                                                                                    First Knight (1995)
## 2394                                                                                  Godfather, The (1972)
## 2395                                                                           Sense and Sensibility (1995)
## 2396                                                                              North by Northwest (1959)
## 2397                                                                                       Airplane! (1980)
## 2398                                                                                Harold and Maude (1971)
## 2399                                                                                     Stand by Me (1986)
## 2400                                                                                           Crumb (1994)
## 2401                                                                                   Lady Eve, The (1941)
## 2402                                                                                       Chinatown (1974)
## 2403                                                                                  Godfather, The (1972)
## 2404                                                                       Run Lola Run (Lola rennt) (1998)
## 2405                                                                                  Third Man, The (1949)
## 2406                                                                                  Ice Storm, The (1997)
## 2407                                                                                      Highlander (1986)
## 2408                                                  Star Wars: Episode V - The Empire Strikes Back (1980)
## 2409                                                                                       True Lies (1994)
## 2410                                                                                 Schindlers List (1993)
## 2411                                                                                     Hoop Dreams (1994)
## 2412                                                                            Sweet Hereafter, The (1997)
## 2413                                                                                   Mortal Kombat (1995)
## 2414                                                                                   Roman Holiday (1953)
## 2415                                                                              Jingle All the Way (1996)
## 2416                                                                               Shadow of a Doubt (1943)
## 2417                                                                            Operation Dumbo Drop (1995)
## 2418                                                                             Room with a View, A (1986)
## 2419                                                                                       Ninotchka (1939)
## 2420                                                                      Man Who Knew Too Much, The (1934)
## 2421                                                                                            Jaws (1975)
## 2422                                                                             Alice in Wonderland (1951)
## 2423                                                                                  Charlottes Web (1973)
## 2424                                                                               Waking Ned Devine (1998)
## 2425                                                                                 King and I, The (1999)
## 2426                                                                           All Dogs Go to Heaven (1989)
## 2427                                                                                          Carrie (1976)
## 2428                                                                                          Scream (1996)
## 2429                                                                                  Believers, The (1987)
## 2430                                                                          Amityville Horror, The (1979)
## 2431                                                                                 Damien: Omen II (1978)
## 2432                                                                                     Fly II, The (1989)
## 2433                                                                                          Splash (1984)
## 2434                                                                        Blair Witch Project, The (1999)
## 2435                                                                              North by Northwest (1959)
## 2436                                                                              Back to the Future (1985)
## 2437                                                                                      Casablanca (1942)
## 2438                                                                                         Bananas (1971)
## 2439                                                                                         Platoon (1986)
## 2440                                                                               European Vacation (1985)
## 2441                                                                                 Ruthless People (1986)
## 2442                                                                                Private Benjamin (1980)
## 2443                                                                                    Jackie Brown (1997)
## 2444                                                                                           Class (1983)
## 2445                                                                                      Funny Farm (1988)
## 2446                                                                                   Donnie Brasco (1997)
## 2447                                                                     Monty Pythons Life of Brian (1979)
## 2448                                                                                Sixth Sense, The (1999)
## 2449                                                                                 Heaven Can Wait (1978)
## 2450                                                                         When Harry Met Sally... (1989)
## 2451                                                                                         Michael (1996)
## 2452                                                                                    Dr. Dolittle (1998)
## 2453                                                                                      Wishmaster (1997)
## 2454                                                      Star Wars: Episode VI - Return of the Jedi (1983)
## 2455                                                                                       King Kong (1976)
## 2456                                                                   Star Trek: The Motion Picture (1979)
## 2457                                                                            Nutty Professor, The (1996)
## 2458                                                                                    Forrest Gump (1994)
## 2459                                                                         Poseidon Adventure, The (1972)
## 2460                                                                                          Gandhi (1982)
## 2461                                                                                     Prefontaine (1997)
## 2462                                                                               Color Purple, The (1985)
## 2463                                                                                       Chinatown (1974)
## 2464                                                                              Night of the Comet (1984)
## 2465                                                                                         Ben-Hur (1959)
## 2466                                                                             Places in the Heart (1984)
## 2467                                                                                           Crash (1996)
## 2468                                                                               Big Lebowski, The (1998)
## 2469                                                                                      Stalingrad (1993)
## 2470                            Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb (1964)
## 2471                                                                                  Apocalypse Now (1979)
## 2472                                                                             Usual Suspects, The (1995)
## 2473                                                                                      Moonstruck (1987)
## 2474                                                                                       High Noon (1952)
## 2475                                                                                          Patton (1970)
## 2476                                                                           From Here to Eternity (1953)
## 2477                                                                         Ferris Buellers Day Off (1986)
## 2478                                                    When the Cats Away (Chacun cherche son chat) (1996)
## 2479                                                                              Dangerous Liaisons (1988)
## 2480                                                                               Waking Ned Devine (1998)
## 2481                                                             Life Is Beautiful (La Vita è bella) (1997)
## 2482                                                                                        Election (1999)
## 2483                                                                                Yellow Submarine (1968)
## 2484                                                                                    Notting Hill (1999)
## 2485                                                                                     Matrix, The (1999)
## 2486                                                                          Much Ado About Nothing (1993)
## 2487                                                                 Snow White and the Seven Dwarfs (1937)
## 2488                                                                         Poseidon Adventure, The (1972)
## 2489                                                                                  Wild Wild West (1999)
## 2490                                                                                     Toy Story 2 (1999)
## 2491                                                                                  Broadcast News (1987)
## 2492                                                                               L.A. Confidential (1997)
## 2493                                                                                          Batman (1989)
## 2494                                           Raise the Red Lantern (Da hong deng long gao gao gua) (1991)
## 2495                                                                             Shakespeare in Love (1998)
## 2496                                                              1984 (a.k.a. Nineteen Eighty-Four) (1984)
## 2497                                                                                 Say Anything... (1989)
## 2498                                                                                 Victor/Victoria (1982)
## 2499                                                                                Dead Man Walking (1995)
## 2500                                                                                           Bambi (1942)
## 2501                                                                                Right Stuff, The (1983)
## 2502                                                                             Walk on the Moon, A (1999)
## 2503                                                                                               M (1931)
## 2504                                                                                       Cape Fear (1991)
## 2505                                                                      Great Mouse Detective, The (1986)
## 2506                                                                                       Pinocchio (1940)
## 2507                                                                                      Birds, The (1963)
## 2508                                                                 Nightmare Before Christmas, The (1993)
## 2509                                                                                   Jerry Maguire (1996)
## 2510                                                                                    Black Beauty (1994)
## 2511                                                                                      Home Alone (1990)
## 2512                              Good, the Bad and the Ugly, The (Buono, il brutto, il cattivo, Il) (1966)
## 2513                                                                         Godfather: Part II, The (1974)
## 2514                            Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb (1964)
## 2515                                               Léon: The Professional (Léon) (Professional, The) (1994)
## 2516                                                                                         Vertigo (1958)
## 2517                                           Star Wars: Episode IV - A New Hope (a.k.a. Star Wars) (1977)
## 2518                                                                                Parent Trap, The (1998)
## 2519                                                      Star Wars: Episode VI - Return of the Jedi (1983)
## 2520                                                               Treasure of the Sierra Madre, The (1948)
## 2521                                                                        River Runs Through It, A (1992)
## 2522                                                                              Hard Days Night, A (1964)
## 2523                                                                                       High Noon (1952)
## 2524                                                                                       Condorman (1981)
## 2525                                                                                Cruel Intentions (1999)
## 2526                                                                                      Entrapment (1999)
## 2527                                                                                     Being There (1979)
## 2528                                                                             Waiting for Guffman (1996)
## 2529                                                                                  Mod Squad, The (1999)
## 2530                                                                                    My Bodyguard (1980)
## 2531                                                                                  Pretty in Pink (1986)
## 2532                                                                                       Liar Liar (1997)
## 2533                                                                                    Marvins Room (1996)
## 2534                                                                           Six Days Seven Nights (1998)
## 2535                                                                                    Pulp Fiction (1994)
## 2536                                                                                Army of Darkness (1993)
## 2537                                                             Star Trek III: The Search for Spock (1984)
## 2538                                                                 Maya Lin: A Strong Clear Vision (1994)
## 2539                                                                                     Raging Bull (1980)
## 2540                                                                     Searching for Bobby Fischer (1993)
## 2541                                                                   Star Trek: The Motion Picture (1979)
## 2542                                                                                Parent Trap, The (1961)
## 2543                                                                               Dial M for Murder (1954)
## 2544                                                                            Fried Green Tomatoes (1991)
## 2545                                                                                       Condorman (1981)
## 2546                                                                           From Here to Eternity (1953)
## 2547                                                                                      Abyss, The (1989)
## 2548                                                                 Snow White and the Seven Dwarfs (1937)
## 2549                                                                                Chariots of Fire (1981)
## 2550                                                                 Return of the Pink Panther, The (1975)
## 2551                                                                              Planet of the Apes (1968)
## 2552                                                                                          Splash (1984)
## 2553                                                                    Billys Hollywood Screen Kiss (1997)
## 2554                                                                                     Under Siege (1992)
## 2555                                                                                  Murder at 1600 (1997)
## 2556                                                                                      Goldfinger (1964)
## 2557                                                                                           Bambi (1942)
## 2558                                                                                          Meteor (1979)
## 2559                                                                                     Thunderball (1965)
## 2560                                                                               Mr. Hollands Opus (1995)
## 2561                                                                                 Misérables, Les (1995)
## 2562                                                                                        Superman (1978)
## 2563                                                                                       Omen, The (1976)
## 2564                                                  King Kong vs. Godzilla (Kingukongu tai Gojira) (1962)
## 2565                                                                             Sheltering Sky, The (1990)
## 2566                                                                                   Lethal Weapon (1987)
## 2567                                                                                 Licence to Kill (1989)
## 2568                                                                             Breakfast Club, The (1985)
## 2569                                                                                        Face/Off (1997)
## 2570                                                                              Executive Decision (1996)
## 2571                                                                        Star Trek: First Contact (1996)
## 2572                                                                              Fifth Element, The (1997)
## 2573                                                                              Mask of Zorro, The (1998)
## 2574                                                                                          Clerks (1994)
## 2575                                                                                   Clockwatchers (1997)
## 2576                                                                              As Good As It Gets (1997)
## 2577                                                                                Cant Hardly Wait (1998)
## 2578                                                                                     Cliffhanger (1993)
## 2579                                                                             Wedding Singer, The (1998)
## 2580                                                                             Saving Private Ryan (1998)
## 2581                                                Friday the 13th Part VIII: Jason Takes Manhattan (1989)
## 2582                                                                                      Kalifornia (1993)
## 2583                                                                                    Pretty Woman (1990)
## 2584                                                                               Waking Ned Devine (1998)
## 2585                                                                         American President, The (1995)
## 2586                                                                                  Cable Guy, The (1996)
## 2587                                                                                  Godfather, The (1972)
## 2588                                                                             Killing Fields, The (1984)
## 2589                                                                                Fatal Attraction (1987)
## 2590                                                                  One Flew Over the Cuckoos Nest (1975)
## 2591                                                                                     French Kiss (1995)
## 2592                                                                                  Mrs. Doubtfire (1993)
## 2593                                                      Star Wars: Episode VI - Return of the Jedi (1983)
## 2594                                                                               L.A. Confidential (1997)
## 2595                                                                                     Matrix, The (1999)
## 2596                                                            Wallace & Gromit: The Wrong Trousers (1993)
## 2597                                                                             Princess Bride, The (1987)
## 2598                                                                                 Terminator, The (1984)
## 2599                                                                                         Gattaca (1997)
## 2600                                                                                         RoboCop (1987)
## 2601                                                                                    Blade Runner (1982)
## 2602                                                                                          Aliens (1986)
## 2603                                                                  Invasion of the Body Snatchers (1956)
## 2604                                                                                      Thing, The (1982)
## 2605                                                                                  Mrs. Doubtfire (1993)
## 2606                                                                                              Pi (1998)
## 2607                                                                                    Frankenstein (1931)
## 2608                                                  Nightmare on Elm Street 4: The Dream Master, A (1988)
## 2609                                                         Mystery Science Theater 3000: The Movie (1996)
## 2610                                                                                    Strange Days (1995)
## 2611                                                                                   Jurassic Park (1993)
## 2612                              Good, the Bad and the Ugly, The (Buono, il brutto, il cattivo, Il) (1966)
## 2613                                                                              Lawnmower Man, The (1992)
## 2614                                                                                         Exotica (1994)
## 2615                                                              Escape from the Planet of the Apes (1971)
## 2616                                                                                   Event Horizon (1997)
## 2617                                                                                           Spawn (1997)
## 2618                                                                                       Lifeforce (1985)
## 2619                                                                       Midsummer Nights Dream, A (1999)
## 2620                                                                                     Richard III (1995)
## 2621                                                                           To Kill a Mockingbird (1962)
## 2622                                                                                Bonnie and Clyde (1967)
## 2623                                                                             Saving Private Ryan (1998)
## 2624                                                                        Long Kiss Goodnight, The (1996)
## 2625                                                                                    Office Space (1999)
## 2626                                                                                Fisher King, The (1991)
## 2627                                                              Butch Cassidy and the Sundance Kid (1969)
## 2628                                                                                    Bugs Life, A (1998)
## 2629                                                                                         Vertigo (1958)
## 2630                                                                                       Apollo 13 (1995)
## 2631                                                                                         Ed Wood (1994)
## 2632                                                                                      Sting, The (1973)
## 2633                                                                            Arsenic and Old Lace (1944)
## 2634                                                                                           Crumb (1994)
## 2635                                                                                      Rising Sun (1993)
## 2636                                                                                    Jackie Brown (1997)
## 2637                                                                                      Set It Off (1996)
## 2638                                                                                     Client, The (1994)
## 2639                                                                                         Hoodlum (1997)
## 2640                                                                             Breakfast Club, The (1985)
## 2641                                                                                   Lethal Weapon (1987)
## 2642                                                             Willy Wonka & the Chocolate Factory (1971)
## 2643                                                                                         Hackers (1995)
## 2644                                                                                      Funny Face (1957)
## 2645                                                              Butch Cassidy and the Sundance Kid (1969)
## 2646                                                                                      Just Cause (1995)
## 2647                                                                                         Con Air (1997)
## 2648                                                                                     Dantes Peak (1997)
## 2649                                                                                     Hard Target (1993)
## 2650                                                                                         Aladdin (1992)
## 2651                                                                                        Maverick (1994)
## 2652                                                                                    Hang Em High (1968)
## 2653                                                                                        Clueless (1995)
## 2654                                                                              Lady and the Tramp (1955)
## 2655                                                                             Sound of Music, The (1965)
## 2656                                                                                Mighty Joe Young (1998)
## 2657                                                                                      Phenomenon (1996)
## 2658                                                                                       Space Jam (1996)
## 2659                                                                                    Phantom, The (1996)
## 2660                                                                                   Billy Madison (1995)
## 2661     Wonderful, Horrible Life of Leni Riefenstahl, The (Macht der Bilder: Leni Riefenstahl, Die) (1993)
## 2662                                                                                Crocodile Dundee (1986)
## 2663                                                                                       Tommy Boy (1995)
## 2664                                                              Marlene Dietrich: Shadow and Light (1996)
## 2665                                                                                   Arachnophobia (1990)
## 2666                                                                                 Lethal Weapon 2 (1989)
## 2667                                                                        Honey, I Shrunk the Kids (1989)
## 2668                                                                                   Donnie Brasco (1997)
## 2669                                                                          French Connection, The (1971)
## 2670                                                                                      Spaceballs (1987)
## 2671                                                                                           8 1/2 (1963)
## 2672                                                                                  Big Sleep, The (1946)
## 2673                                                                                   Waterboy, The (1998)
## 2674                                                                              Lawrence of Arabia (1962)
## 2675                                                                                 Ghostbusters II (1989)
## 2676                                                                                   Dumb & Dumber (1994)
## 2677                                                                                 Problem Child 2 (1991)
## 2678                                                                  American Werewolf in Paris, An (1997)
## 2679                                                                  Ace Ventura: When Nature Calls (1995)
## 2680                                                                                     Major Payne (1995)
## 2681                                                     City Slickers II: The Legend of Curlys Gold (1994)
## 2682                                                                  Home Alone 2: Lost in New York (1992)
## 2683                                                                         Godfather: Part II, The (1974)
## 2684                                                                               Full Metal Jacket (1987)
## 2685                                                                                    Insider, The (1999)
## 2686                                                        Wings of Desire (Der Himmel über Berlin) (1987)
## 2687                                                                                         Ed Wood (1994)
## 2688                                                                                     Player, The (1992)
## 2689                                                                                     Being There (1979)
## 2690                                                                                Harold and Maude (1971)
## 2691                                                                                    Inkwell, The (1994)
## 2692                                                                              Dazed and Confused (1993)
## 2693                                                                             Blast from the Past (1999)
## 2694                                                                                     Beetlejuice (1988)
## 2695                                                                                  Impostors, The (1998)
## 2696                                                                                          Cocoon (1985)
## 2697                                                                                           Fargo (1996)
## 2698                                                                                 American Beauty (1999)
## 2699                                                                               L.A. Confidential (1997)
## 2700                                                                                        Face/Off (1997)
## 2701                                                                              Thin Red Line, The (1998)
## 2702                                                                       You Cant Take It with You (1938)
## 2703                                                                                      Persuasion (1995)
## 2704                                                                                   Jerry Maguire (1996)
## 2705                                                                       Silence of the Lambs, The (1991)
## 2706                                                                                  On Golden Pond (1981)
## 2707                                                        Wings of Desire (Der Himmel über Berlin) (1987)
## 2708                                                                                    Shes the One (1996)
## 2709                                                                                       Sommersby (1993)
## 2710                                                                     Monty Pythons Life of Brian (1979)
## 2711                                                                                   Shes All That (1999)
## 2712                                                                                        Maverick (1994)
## 2713                                                                                    Three Amigos (1986)
## 2714                                                                                      Young Guns (1988)
## 2715                                                                            Beauty and the Beast (1991)
## 2716                                                                             Little Mermaid, The (1989)
## 2717                                                                                   Sid and Nancy (1986)
## 2718                                      Umbrellas of Cherbourg, The (Parapluies de Cherbourg, Les) (1964)
## 2719                                                                                Hate (Haine, La) (1995)
## 2720                                                                                     Chasing Amy (1997)
## 2721                                                                                      To Die For (1995)
## 2722                                                                                    Trees Lounge (1996)
## 2723                                                                         When Harry Met Sally... (1989)
## 2724                                                                                        Rushmore (1998)
## 2725                                                                             Breakfast Club, The (1985)
## 2726                                                                             Father of the Bride (1950)
## 2727                                                                     Four Weddings and a Funeral (1994)
## 2728                                                                                       Roommates (1995)
## 2729                                                                                       Tommy Boy (1995)
## 2730                                                                                    Pretty Woman (1990)
## 2731                                                                                            EDtv (1999)
## 2732                                                                              That Thing You Do! (1996)
## 2733                                                                                     French Kiss (1995)
## 2734                                                                                    Stupids, The (1996)
## 2735                                                                               Santa Clause, The (1994)
## 2736                                                                                   Arachnophobia (1990)
## 2737                                                                                     Fathers Day (1997)
## 2738                                                                             Vampire in Brooklyn (1995)
## 2739                                                                                            Jack (1996)
## 2740                                                                       Robin Hood: Men in Tights (1993)
## 2741                                                                                  I Love Trouble (1994)
## 2742                                                                     Dracula: Dead and Loving It (1995)
## 2743                                                                                  Drop Dead Fred (1991)
## 2744                                                                   National Lampoons Senior Trip (1995)
## 2745                                                                                 Jerky Boys, The (1994)
## 2746                                                              Police Academy 3: Back in Training (1986)
## 2747                                                                                           Blade (1998)
## 2748                                                                                  Running Scared (1986)
## 2749                                                                             Conan the Barbarian (1982)
## 2750                                                                                       Hard Rain (1998)
## 2751                                                                                       Rock, The (1996)
## 2752                                                                                     Bulletproof (1996)
## 2753                                                                                         Con Air (1997)
## 2754                                                                                   U.S. Marshals (1998)
## 2755                                                                                      Siege, The (1998)
## 2756                                                                                      Iron Eagle (1986)
## 2757                                                                                            Fled (1996)
## 2758                                                                                      Snake Eyes (1998)
## 2759                                                                                 Johnny Mnemonic (1995)
## 2760                                                                           Young Sherlock Holmes (1985)
## 2761                                                                               Dark Crystal, The (1982)
## 2762                                                                                    Pulp Fiction (1994)
## 2763                                                                                Bonnie and Clyde (1967)
## 2764                                                                            2 Days in the Valley (1996)
## 2765                                                                                  Needful Things (1993)
## 2766                                                                               Perfect Murder, A (1998)
## 2767                                                                                           Congo (1995)
## 2768                                                                                  Risky Business (1983)
## 2769                                                                               Wizard of Oz, The (1939)
## 2770                                                                             Blast from the Past (1999)
## 2771                                                                         When Harry Met Sally... (1989)
## 2772                                                                                   Mars Attacks! (1996)
## 2773                                                                                Deer Hunter, The (1978)
## 2774                                                                                  Godfather, The (1972)
## 2775                                                                            Fish Called Wanda, A (1988)
## 2776                                                                                     Primal Fear (1996)
## 2777                                                                                          Scream (1996)
## 2778                                                                                        Scream 2 (1997)
## 2779                                                            Indiana Jones and the Temple of Doom (1984)
## 2780                                                                                 Schindlers List (1993)
## 2781                                                                 Wallace & Gromit: A Close Shave (1995)
## 2782                                                                                Dead Man Walking (1995)
## 2783                                                               Wallace & Gromit: A Grand Day Out (1989)
## 2784                                                                                   Weird Science (1985)
## 2785                                                                                      True Crime (1999)
## 2786                                                                                   Smoke Signals (1998)
## 2787                                                                               Stand and Deliver (1988)
## 2788                                                                             Color of Money, The (1986)
## 2789                                                                             Spanking the Monkey (1994)
## 2790                                                                                    Working Girl (1988)
## 2791                                                                                      Free Willy (1993)
## 2792                                                                                       Body Heat (1981)
## 2793                                                                           Babe: Pig in the City (1998)
## 2794                                                                                      Home Alone (1990)
## 2795                                                                                       Mask, The (1994)
## 2796                                                                          Madonna: Truth or Dare (1991)
## 2797                                                                                         Vertigo (1958)
## 2798                                                                                         Orlando (1992)
## 2799                                                                                    Broken Arrow (1996)
## 2800                                                                             Crocodile Dundee II (1988)
## 2801                                                                                               M (1931)
## 2802                                                                              Heavenly Creatures (1994)
## 2803                                                                                         Aladdin (1992)
## 2804                                                                                    Mr. Nice Guy (1997)
## 2805                                                                                    Notting Hill (1999)
## 2806                                                                              Tea with Mussolini (1999)
## 2807                                                                             Places in the Heart (1984)
## 2808                                                                                Blood on the Sun (1945)
## 2809                                                                   They Shoot Horses, Dont They? (1969)
## 2810                                                                                   Fugitive, The (1993)
## 2811                                                                                To Live (Huozhe) (1994)
## 2812                                                                                       Indochine (1992)
## 2813                                                                                           Dogma (1999)
## 2814                                                                                            Dick (1999)
## 2815                                                                              Drop Dead Gorgeous (1999)
## 2816                                                                                    Blade Runner (1982)
## 2817                                                     Austin Powers: International Man of Mystery (1997)
## 2818                                                                                        Mallrats (1995)
## 2819                                                                                    Shining, The (1980)
## 2820                                                                            Being John Malkovich (1999)
## 2821                                                                              Living in Oblivion (1995)
## 2822                                                                           Kicking and Screaming (1995)
## 2823                                                                                       Happiness (1998)
## 2824                                                                                    Delicatessen (1991)
## 2825                                                                                     French Kiss (1995)
## 2826                                                                                      Party Girl (1995)
## 2827                                                                                         Stripes (1981)
## 2828                                                     Austin Powers: International Man of Mystery (1997)
## 2829                                                                                 Shaggy Dog, The (1959)
## 2830                                                                                  Money Pit, The (1986)
## 2831                                                                             From Dusk Till Dawn (1996)
## 2832                                                                                  Peters Friends (1992)
## 2833                                                                                      burbs, The (1989)
## 2834                                                                                          Popeye (1980)
## 2835                                                                         Bonfire of the Vanities (1990)
## 2836                                                                                    Mary Poppins (1964)
## 2837                                                                 Snow White and the Seven Dwarfs (1937)
## 2838                                                                          NeverEnding Story, The (1984)
## 2839                                                                                  Basic Instinct (1992)
## 2840                                                                                   Sleepy Hollow (1999)
## 2841                                                                                Forbidden Planet (1956)
## 2842                                                                                  Get on the Bus (1996)
## 2843                                                                                     He Got Game (1998)
## 2844                                                                                 West Side Story (1961)
## 2845                                                                                        Magnolia (1999)
## 2846                                                                                      Goldfinger (1964)
## 2847                                                                 Beavis and Butt-Head Do America (1996)
## 2848                                                                  Hard-Boiled (Lat sau san taam) (1992)
## 2849                                                                                   Arachnophobia (1990)
## 2850                                                                                          Ransom (1996)
## 2851                                                                     People vs. Larry Flynt, The (1996)
## 2852                                                                                  Mrs. Doubtfire (1993)
## 2853                                                                                   Shes All That (1999)
## 2854                                                                                  Youve Got Mail (1998)
## 2855                                                Lost World: Jurassic Park, The (Jurassic Park 2) (1997)
## 2856                                                                                          Sphere (1998)
## 2857                                                                                 Kurt & Courtney (1998)
## 2858                                                                                   Waterboy, The (1998)
## 2859                                                                                       Celebrity (1998)
## 2860                                                                                     Patch Adams (1998)
## 2861                                                                                  Arlington Road (1999)
## 2862                                                                                         Matewan (1987)
## 2863                                                                                  Big Chill, The (1983)
## 2864                                                                                   Donnie Brasco (1997)
## 2865                                                                               Mr. Hollands Opus (1995)
## 2866                                                                                     Prefontaine (1997)
## 2867                                                                                    Postman, The (1997)
## 2868                                                                                   Sid and Nancy (1986)
## 2869                                                                                         Timecop (1994)
## 2870                                                                               Waking Ned Devine (1998)
## 2871                                                                                 American Beauty (1999)
## 2872                                                      Star Wars: Episode VI - Return of the Jedi (1983)
## 2873                                                                                      Goodfellas (1990)
## 2874                                                                                             Tex (1982)
## 2875                                                                           To Kill a Mockingbird (1962)
## 2876                                                                                           Alive (1993)
## 2877                                                                             Saving Private Ryan (1998)
## 2878                                                                                   Thin Man, The (1934)
## 2879                                                                                       Suspicion (1941)
## 2880                                           Star Wars: Episode IV - A New Hope (a.k.a. Star Wars) (1977)
## 2881                                                                       Shawshank Redemption, The (1994)
## 2882                                                                               Big Lebowski, The (1998)
## 2883                                                                       Hunt for Red October, The (1990)
## 2884                                                                             Killing Fields, The (1984)
## 2885                                                                                 Midnight Cowboy (1969)
## 2886                                                       Star Wars: Episode I - The Phantom Menace (1999)
## 2887                                                                       Silence of the Lambs, The (1991)
## 2888                                                                           To Kill a Mockingbird (1962)
## 2889                                                                              North by Northwest (1959)
## 2890                                                                           Sense and Sensibility (1995)
## 2891                                                                                      Goodfellas (1990)
## 2892                                                                                    Waynes World (1992)
## 2893                                                                                 MatchMaker, The (1997)
## 2894                                                                              Dazed and Confused (1993)
## 2895                                                                                     Toy Story 2 (1999)
## 2896                                                                              Heavenly Creatures (1994)
## 2897                                                                              Back to the Future (1985)
## 2898                                                                         Ferris Buellers Day Off (1986)
## 2899                                                                                     Peeping Tom (1960)
## 2900                                                                                           Glory (1989)
## 2901                                                                                  Cool Hand Luke (1967)
## 2902                                                                             Breakfast Club, The (1985)
## 2903                                                                     Theres Something About Mary (1998)
## 2904                                                                       Silence of the Lambs, The (1991)
## 2905                                                                                     Money Train (1995)
## 2906                                                                                             Big (1988)
## 2907                                                                            Beauty and the Beast (1991)
## 2908                                                                        Who Framed Roger Rabbit? (1988)
## 2909                                                                                         Aladdin (1992)
## 2910                                                             Ghost in the Shell (Kôkaku kidôtai) (1995)
## 2911                                                                                     Heavy Metal (1981)
## 2912                                                                         Transformers: The Movie (1986)
## 2913                         Raiders of the Lost Ark (Indiana Jones and the Raiders of the Lost Ark) (1981)
## 2914                                                                               Great Escape, The (1963)
## 2915                                                                        Clear and Present Danger (1994)
## 2916                                                                                      Easy Rider (1969)
## 2917                                                                   Adventures of Robin Hood, The (1938)
## 2918                                                                            Operation Dumbo Drop (1995)
## 2919                                                                                  Rocketeer, The (1991)
## 2920                                                                                     Cliffhanger (1993)
## 2921                                                                                           Alien (1979)
## 2922                                                                 American Werewolf in London, An (1981)
## 2923                                                                             Alien: Resurrection (1997)
## 2924                                                               Freddys Dead: The Final Nightmare (1991)
## 2925                                                                       Gremlins 2: The New Batch (1990)
## 2926                                                                                 April Fools Day (1986)
## 2927                                                                                 Ghostbusters II (1989)
## 2928                                                                                        Candyman (1992)
## 2929                                                                             Mosquito Coast, The (1986)
## 2930                                                                                      Casablanca (1942)
## 2931                                                                                    Killing, The (1956)
## 2932                                                                           To Kill a Mockingbird (1962)
## 2933                                                                                 Schindlers List (1993)
## 2934                                                                                         Amadeus (1984)
## 2935                                                                           M*A*S*H (a.k.a. MASH) (1970)
## 2936                                                                              Back to the Future (1985)
## 2937                                               Léon: The Professional (Léon) (Professional, The) (1994)
## 2938                                                                                   Fugitive, The (1993)
## 2939                                                                               Elephant Man, The (1980)
## 2940                                                                       Hunt for Red October, The (1990)
## 2941                                                                                   Graduate, The (1967)
## 2942                                                                                  Risky Business (1983)
## 2943                                                                                            Dave (1993)
## 2944                                                                                 Few Good Men, A (1992)
## 2945                                                                              Enemy of the State (1998)
## 2946                                                                  One Flew Over the Cuckoos Nest (1975)
## 2947                                                                                    Forrest Gump (1994)
## 2948                                                                                            Rudy (1993)
## 2949                                                                     People vs. Larry Flynt, The (1996)
## 2950                                                                                   Losing Isaiah (1995)
## 2951                                                                               Color Purple, The (1985)
## 2952                                                                                       Big Daddy (1999)
## 2953                                                             Central Station (Central do Brasil) (1998)
## 2954                                                                               Kramer Vs. Kramer (1979)
## 2955                                                     Austin Powers: International Man of Mystery (1997)
## 2956                                                                                         Payback (1999)
## 2957                                                                            Gentlemans Agreement (1947)
## 2958                                                                             Usual Suspects, The (1995)
## 2959                                                                                  Apocalypse Now (1979)
## 2960                                                                                       Peter Pan (1953)
## 2961                                                                                  Outsiders, The (1983)
## 2962                                                            South Park: Bigger, Longer and Uncut (1999)
## 2963                                                                                    Falling Down (1993)
## 2964                                                                                  One True Thing (1998)
## 2965                                                                               Feeling Minnesota (1996)
## 2966                                                                                    Notting Hill (1999)
## 2967                                                                                         Shampoo (1975)
## 2968                                                                     Back to the Future Part III (1990)
## 2969                                                                         While You Were Sleeping (1995)
## 2970                                                                            Being John Malkovich (1999)
## 2971                                                                                     Toy Story 2 (1999)
## 2972                                                                           To Kill a Mockingbird (1962)
## 2973                                                                               Nothing in Common (1986)
## 2974                                                                                      Doors, The (1991)
## 2975                                                                                           Andre (1994)
## 2976                                                                                    Shining, The (1980)
## 2977                                                                                         Platoon (1986)
## 2978                                                                                 Terminator, The (1984)
## 2979                                                                                           Speed (1994)
## 2980                                                                              Hard Days Night, A (1964)
## 2981                                                                                  Reservoir Dogs (1992)
## 2982                                                                              Heavenly Creatures (1994)
## 2983                                                                             Killing Fields, The (1984)
## 2984                                                                                       Quiz Show (1994)
## 2985                                                                               Strictly Ballroom (1992)
## 2986                                                                     Searching for Bobby Fischer (1993)
## 2987                                                                                           Fargo (1996)
## 2988                                                                                     Client, The (1994)
## 2989                                                                                  Big Chill, The (1983)
## 2990                                                                               Golden Child, The (1986)
## 2991                                                                                      Goldfinger (1964)
## 2992                                                                                       Rock, The (1996)
## 2993                                                                                       True Lies (1994)
## 2994                                                             Rumble in the Bronx (Hont faan kui) (1995)
## 2995                                                                                   Air Force One (1997)
## 2996                                                Flower of My Secret, The (La Flor de Mi Secreto) (1995)
## 2997                                                                                Immortal Beloved (1994)
## 2998                                                                                   Love Bug, The (1969)
## 2999                                                                               Death Becomes Her (1992)
## 3000                                                                                    General, The (1927)
## 3001                                                             Central Station (Central do Brasil) (1998)
## 3002                                                                                    Pulp Fiction (1994)
## 3003                                                                             Glengarry Glen Ross (1992)
## 3004                                                                       Shawshank Redemption, The (1994)
## 3005                                                                                        Clueless (1995)
## 3006                                                                                         Titanic (1997)
## 3007                                                                       Last of the Mohicans, The (1992)
## 3008                                                                                       Rock, The (1996)
## 3009                                                                                       GoldenEye (1995)
## 3010                                                  Star Wars: Episode V - The Empire Strikes Back (1980)
## 3011                                                                                         Contact (1997)
## 3012                                                                                       Toy Story (1995)
## 3013                                  Godzilla (a.k.a. Godzilla 1985: The Legend Is Reborn) (Gojira) (1984)
## 3014                                                                                Bicentennial Man (1999)
## 3015                                                                                  Charlottes Web (1973)
## 3016                                                                         Flight of the Navigator (1986)
## 3017                                                                               Dark Crystal, The (1982)
## 3018                                                                                  Goofy Movie, A (1995)
## 3019                                            Adventures of Milo and Otis, The (Koneko monogatari) (1986)
## 3020                                                                                    Dr. Dolittle (1998)
## 3021                                                             Ghostbusters (a.k.a. Ghost Busters) (1984)
## 3022                                                                                    Faculty, The (1998)
## 3023                                                                                    American Pie (1999)
## 3024                                                                       Midsummer Nights Dream, A (1999)
## 3025                                                                                        Rushmore (1998)
## 3026                                                                                   Shes All That (1999)
## 3027                                                                                  Wild Wild West (1999)
## 3028                                                                              African Queen, The (1951)
## 3029                                                                                            Emma (1996)
## 3030                                                                               All the Kings Men (1949)
## 3031                                                                                     Rear Window (1954)
## 3032                                                                              Dances with Wolves (1990)
## 3033                                                                                     Shadowlands (1993)
## 3034                                                                                      Abyss, The (1989)
## 3035                                                                               Gods and Monsters (1998)
## 3036                                                                           Babe: Pig in the City (1998)
## 3037                                                                              Mark of Zorro, The (1940)
## 3038                                                                                 Lethal Weapon 2 (1989)
## 3039                                                                                  Broadcast News (1987)
## 3040                                                             Star Trek III: The Search for Spock (1984)
## 3041                                                                                  Body Snatchers (1993)
## 3042                                                                  Rocky Horror Picture Show, The (1975)
## 3043                                                                               Godzilla (Gojira) (1954)
## 3044                                                                                         Jumanji (1995)
## 3045                                                                                  Small Soldiers (1998)
## 3046                                                                               Untouchables, The (1987)
## 3047                                                                                 Civil Action, A (1998)
## 3048                                                 Strike! (a.k.a. All I Wanna Do, The Hairy Bird) (1998)
## 3049                                                                                 Cyclo (Xich lo) (1995)
## 3050                                                                         Godfather: Part II, The (1974)
## 3051                                                                                         Vertigo (1958)
## 3052                                                                   Bridge on the River Kwai, The (1957)
## 3053                                           Star Wars: Episode IV - A New Hope (a.k.a. Star Wars) (1977)
## 3054                                                                                Commitments, The (1991)
## 3055                                                                                          Patton (1970)
## 3056                                                        Bicycle Thief, The (Ladri di biciclette) (1948)
## 3057                                                                                   Kolya (Kolja) (1996)
## 3058                                                                                 In the Army Now (1994)
## 3059                                                                                    New Age, The (1994)
## 3060                                                                                    My Left Foot (1989)
## 3061                                                                                Dirty Dozen, The (1967)
## 3062                                                                             Glengarry Glen Ross (1992)
## 3063                                                                                            Diva (1981)
## 3064                                                                          Much Ado About Nothing (1993)
## 3065                                                                                     Stand by Me (1986)
## 3066                                                                                            Jaws (1975)
## 3067                                                                                      Craft, The (1996)
## 3068                                                           I Still Know What You Did Last Summer (1998)
## 3069                                                                              African Queen, The (1951)
## 3070                                                                                Pillow Book, The (1996)
## 3071                                                                                 Tequila Sunrise (1988)
## 3072                                                                                            I.Q. (1994)
## 3073                                                                         Poseidon Adventure, The (1972)
## 3074                                                                                       Rush Hour (1998)
## 3075                                                                              Back to the Future (1985)
## 3076                                                                                    Insider, The (1999)
## 3077                                                                                     Toy Story 2 (1999)
## 3078                                                                                    Bugs Life, A (1998)
## 3079                                                                                     Mighty, The (1998)
## 3080                                                                           Breakfast at Tiffanys (1961)
## 3081                                                                                          Ransom (1996)
## 3082                                                                                    Notting Hill (1999)
## 3083                                                           Austin Powers: The Spy Who Shagged Me (1999)
## 3084                                                                       Midsummer Nights Dream, A (1999)
## 3085                                                                              This Is Spinal Tap (1984)
## 3086                                                                 Monty Python and the Holy Grail (1975)
## 3087                                                                                    Forrest Gump (1994)
## 3088                                                                             Saving Private Ryan (1998)
## 3089                                                          Farewell My Concubine (Ba wang bie ji) (1993)
## 3090                                                          Sunset Blvd. (a.k.a. Sunset Boulevard) (1950)
## 3091                                           Star Wars: Episode IV - A New Hope (a.k.a. Star Wars) (1977)
## 3092                                                                                    Little Voice (1998)
## 3093                                                                           Swiss Family Robinson (1960)
## 3094                                                                                            Bean (1997)
## 3095                                                                                   Jerry Maguire (1996)
## 3096                                                                                       Chinatown (1974)
## 3097                                                                       Midsummer Nights Dream, A (1999)
## 3098                                                                                          Mother (1996)
## 3099                                                                        Blair Witch Project, The (1999)
## 3100                                                                             Terms of Endearment (1983)
## 3101                                                                                       Body Heat (1981)
## 3102                                                         Mystery Science Theater 3000: The Movie (1996)
## 3103                                                                                   Private Parts (1997)
## 3104                                                                                  Waynes World 2 (1993)
## 3105                                                                            Swimming with Sharks (1995)
## 3106                                                                          Snow Falling on Cedars (1999)
## 3107                                                                                        Ridicule (1996)
## 3108                                                                              This Is Spinal Tap (1984)
## 3109                                                                                 Muriels Wedding (1994)
## 3110                                                                                 Babysitter, The (1995)
## 3111                                                                                  Doctor Zhivago (1965)
## 3112                                                                                      Birds, The (1963)
## 3113                                                                                Sixth Sense, The (1999)
## 3114                                                                             Shakespeare in Love (1998)
## 3115                                                                           Better Than Chocolate (1999)
## 3116                                                                                          Aliens (1986)
## 3117                                                                                    Crimson Tide (1995)
## 3118                                                                       Hunt for Red October, The (1990)
## 3119                                                                                     Matrix, The (1999)
## 3120                                                                                      Red Corner (1997)
## 3121                                                                                   Event Horizon (1997)
## 3122                                                                                      Virtuosity (1995)
## 3123                                                                                           Fargo (1996)
## 3124                                                                                     Raging Bull (1980)
## 3125                                                                                       Boys Life (1995)
## 3126                                                                                      Annie Hall (1977)
## 3127                                                                           2001: A Space Odyssey (1968)
## 3128                                           Star Wars: Episode IV - A New Hope (a.k.a. Star Wars) (1977)
## 3129                                                                                Butcher Boy, The (1997)
## 3130                                                                                        Ref, The (1994)
## 3131                                                                                     I Went Down (1997)
## 3132                                                                      Terminator 2: Judgment Day (1991)
## 3133                                                                                         Amadeus (1984)
## 3134                                                                             Glengarry Glen Ross (1992)
## 3135                                                                                       Peter Pan (1953)
## 3136                                                                                  Hurricane, The (1999)
## 3137                                                                                        Election (1999)
## 3138                                                                          Flirting With Disaster (1996)
## 3139                                                                                    Dr. Dolittle (1998)
## 3140                                                                                         Contact (1997)
## 3141                                                                                Paris Is Burning (1990)
## 3142                                                                        Sex, Lies, and Videotape (1989)
## 3143                                                                       Secret of Roan Inish, The (1994)
## 3144                                                                         Gods Must Be Crazy, The (1980)
## 3145                                                                               Untouchables, The (1987)
## 3146                                                                             Room with a View, A (1986)
## 3147                                                                       Run Lola Run (Lola rennt) (1998)
## 3148                                                                  Buffalo 66 (a.k.a. Buffalo 66) (1998)
## 3149                                                                    Fast Times at Ridgemont High (1982)
## 3150                                                                                 Aristocats, The (1970)
## 3151                                                                               Mighty Ducks, The (1992)
## 3152                                                                                       Toy Story (1995)
## 3153                                                                                           Bound (1996)
## 3154                                                                            English Patient, The (1996)
## 3155                                                                                   Fools Rush In (1997)
## 3156                                                                                      Flashdance (1983)
## 3157                                                                                  Big Sleep, The (1946)
## 3158                                                                                     Hoop Dreams (1994)
## 3159                                                                           Cat on a Hot Tin Roof (1958)
## 3160                                                                                 Isnt She Great? (2000)
## 3161                                                                               13th Warrior, The (1999)
## 3162                                                                             Blast from the Past (1999)
## 3163                                                                                        Face/Off (1997)
## 3164                                                                                          Casino (1995)
## 3165                                                                                     Taxi Driver (1976)
## 3166                                                                         Godfather: Part II, The (1974)
## 3167                                                                                  Godfather, The (1972)
## 3168                                                                                    Blade Runner (1982)
## 3169                                                                               L.A. Confidential (1997)
## 3170                                                                                     Zero Effect (1998)
## 3171                                                                                 Say Anything... (1989)
## 3172                                                                                     Stand by Me (1986)
## 3173                                                                             White Men Cant Jump (1992)
## 3174                                                                       Devil and Max Devlin, The (1981)
## 3175                                                                                 Terminator, The (1984)
## 3176                                                                                      Dead Again (1991)
## 3177                                                                                           Speed (1994)
## 3178                                                                            Gingerbread Man, The (1998)
## 3179                                                                                Scent of a Woman (1992)
## 3180                              Good, the Bad and the Ugly, The (Buono, il brutto, il cattivo, Il) (1966)
## 3181                                                                      Nightmare on Elm Street, A (1984)
## 3182                                              Interview with the Vampire: The Vampire Chronicles (1994)
## 3183                                                                        Blair Witch Project, The (1999)
## 3184                                                                                          Jaws 2 (1978)
## 3185                                                                               Maximum Overdrive (1986)
## 3186                                                              Halloween III: Season of the Witch (1982)
## 3187                                                                            Hudsucker Proxy, The (1994)
## 3188                                                                       Man in the Iron Mask, The (1998)
## 3189                                                                             Legends of the Fall (1994)
## 3190                                                                   Independence Day (a.k.a. ID4) (1996)
## 3191                                                                                      Unforgiven (1992)
## 3192                                                                               Full Metal Jacket (1987)
## 3193                                                                      Rambo: First Blood Part II (1985)
## 3194                                                                                 Few Good Men, A (1992)
## 3195                                                                                          Batman (1989)
## 3196                                                                                        Cop Land (1997)
## 3197                                                                                     Cliffhanger (1993)
## 3198                                                                                 Midnight Cowboy (1969)
## 3199                                                                                       Malcolm X (1992)
## 3200                                                                                        Rain Man (1988)
## 3201                                                                                        Jaws 3-D (1983)
## 3202                                                                                          Grease (1978)
## 3203                                                                           M*A*S*H (a.k.a. MASH) (1970)
## 3204                                                                                  Cool Hand Luke (1967)
## 3205                                                                                To Catch a Thief (1955)
## 3206                                                                                   Smoke Signals (1998)
## 3207                                                                               Cutting Edge, The (1992)
## 3208                                                                                          Clerks (1994)
## 3209                                                                                        Election (1999)
## 3210                                                                                  Eyes Wide Shut (1999)
## 3211                                                                               Gods and Monsters (1998)
## 3212                                                                                              Go (1999)
## 3213                                                                        Blair Witch Project, The (1999)
## 3214                                                                               Cutting Edge, The (1992)
## 3215                                                                                    Waynes World (1992)
## 3216                                                                                            Nell (1994)
## 3217                                                                             Edward Scissorhands (1990)
## 3218                                                                                    Mariachi, El (1992)
## 3219                                                                                    Mariachi, El (1992)
## 3220                                                                                 American Beauty (1999)
## 3221                                                                         Buena Vista Social Club (1999)
## 3222                                                                                       Quiz Show (1994)
## 3223                                                                                      Affliction (1997)
## 3224                                                                                    Total Recall (1990)
## 3225                                                                                       Firm, The (1993)
## 3226                                                                        Who Framed Roger Rabbit? (1988)
## 3227                                                                             Blues Brothers, The (1980)
## 3228                                                                                 King and I, The (1956)
## 3229                                                                                         RoboCop (1987)
## 3230                                                               Lock, Stock & Two Smoking Barrels (1998)
## 3231                                                                                    True Romance (1993)
## 3232                                                                                  Absolute Power (1997)
## 3233                                                                                 American Beauty (1999)
## 3234                                                            Eat Drink Man Woman (Yin shi nan nu) (1994)
## 3235                                                                  Buffalo 66 (a.k.a. Buffalo 66) (1998)
## 3236                                                                               Air Up There, The (1994)
## 3237                                                          Sunset Blvd. (a.k.a. Sunset Boulevard) (1950)
## 3238                                                                                 Terminator, The (1984)
## 3239                                                                                          Ransom (1996)
## 3240                                                                                         Twister (1996)
## 3241                                                                      Promise, The (La Promesse) (1996)
## 3242                                                             Life Is Beautiful (La Vita è bella) (1997)
## 3243                                                                                    Forrest Gump (1994)
## 3244                                                                                        Bulworth (1998)
## 3245                                                                                    Mediterraneo (1991)
## 3246                                                                              Drop Dead Gorgeous (1999)
## 3247                                                                                    Carlitos Way (1993)
## 3248                                                                                     Wonder Boys (2000)
## 3249                                                                                       Chinatown (1974)
## 3250                                                                                  Cool Hand Luke (1967)
## 3251                                                                              Young Frankenstein (1974)
## 3252                                                                                       Airplane! (1980)
## 3253                                                                                         RoboCop (1987)
## 3254                                                                                    Fitzcarraldo (1982)
## 3255                                                                     Around the World in 80 Days (1956)
## 3256                                                                          Muppet Treasure Island (1996)
## 3257                                                                                   Lethal Weapon (1987)
## 3258                                               Nosferatu (Nosferatu, eine Symphonie des Grauens) (1922)
## 3259                                                                                      Birds, The (1963)
## 3260                                                                                    Tingler, The (1959)
## 3261                                                                                         Aladdin (1992)
## 3262                                                                              This Is Spinal Tap (1984)
## 3263                                                                            Pink Floyd: The Wall (1982)
## 3264                                                                 Year of Living Dangerously, The (1982)
## 3265                                           Once Upon a Time in the West (Cera una volta il West) (1968)
## 3266                                                                            McCabe & Mrs. Miller (1971)
## 3267                                                        Davy Crockett, King of the Wild Frontier (1955)
## 3268                                                                                             Ran (1985)
## 3269                                                                                          Patton (1970)
## 3270                                                                      Rambo: First Blood Part II (1985)
## 3271                                                                  Hard-Boiled (Lat sau san taam) (1992)
## 3272                                                                                          Aliens (1986)
## 3273                                                                                       True Lies (1994)
## 3274                                                                                        Outbreak (1995)
## 3275                                                                                     Heavy Metal (1981)
## 3276                                                                           Three Musketeers, The (1993)
## 3277                                                                                   Mars Attacks! (1996)
## 3278                                                                                  Rocketeer, The (1991)
## 3279                                         Teenage Mutant Ninja Turtles II: The Secret of the Ooze (1991)
## 3280                                                                             Beverly Hills Ninja (1997)
## 3281                                                                                        Scream 3 (2000)
## 3282                                                                                  Romeo Must Die (2000)
## 3283                                                                             Straight Story, The (1999)
## 3284                                                                              Night of the Comet (1984)
## 3285                                                                                    Goonies, The (1985)
## 3286                                                                             From Dusk Till Dawn (1996)
## 3287                                                                      Die Hard: With a Vengeance (1995)
## 3288                                                                                   All That Jazz (1979)
## 3289                                                                                 Live Nude Girls (1995)
## 3290                                                                                          Scream (1996)
## 3291                                                                                        Scream 3 (2000)
## 3292                                                                                        Red Dawn (1984)
## 3293                                                                                      Pocahontas (1995)
## 3294                                                                                         Cabaret (1972)
## 3295                                                                                    Notting Hill (1999)
## 3296                                                                                 Thelma & Louise (1991)
## 3297                                                                            Night to Remember, A (1958)
## 3298                                                                                     Hunger, The (1983)
## 3299                                                              Close Encounters of the Third Kind (1977)
## 3300                                                                                     Bull Durham (1988)
## 3301                                                                                   Fly Away Home (1996)
## 3302                                                                                    12 Angry Men (1957)
## 3303                                                                                  Apartment, The (1960)
## 3304                                                                                         Ed Wood (1994)
## 3305                                                                        Monster, The (Il Mostro) (1994)
## 3306                                                                                      Armageddon (1998)
## 3307                                                                                       Guinevere (1999)
## 3308                                                                          Cider House Rules, The (1999)
## 3309                                                                                    Insider, The (1999)
## 3310                                                                                 Mission to Mars (2000)
## 3311                                                        Cook the Thief His Wife & Her Lover, The (1989)
## 3312                                                                                  Rocketeer, The (1991)
## 3313                                                                                    Insider, The (1999)
## 3314                                                                                      Abyss, The (1989)
## 3315                                                                                   Jacobs Ladder (1990)
## 3316                                                                           Age of Innocence, The (1993)
## 3317                                                                                Scent of a Woman (1992)
## 3318                                                                           Ghosts of Mississippi (1996)
## 3319                                                               Tie Me Up! Tie Me Down! (¡Átame!) (1990)
## 3320                                                                                      Encino Man (1992)
## 3321                                                                             Crossing Guard, The (1995)
## 3322                                                                                     Bull Durham (1988)
## 3323                                                                                        Hoosiers (1986)
## 3324                                                                                      No Way Out (1987)
## 3325                                                                                       Stalag 17 (1953)
## 3326                                                                                Mickey Blue Eyes (1999)
## 3327                                                                                Shakes the Clown (1992)
## 3328                                                                                 Erin Brockovich (2000)
## 3329                                                                                       Chinatown (1974)
## 3330                                                                               Strictly Ballroom (1992)
## 3331                                                                                  Godfather, The (1972)
## 3332                                                                              Do the Right Thing (1989)
## 3333                                                  Star Wars: Episode V - The Empire Strikes Back (1980)
## 3334                                                                               Wizard of Oz, The (1939)
## 3335                                                                                           Dogma (1999)
## 3336                                                                   Bridge on the River Kwai, The (1957)
## 3337                                                                              African Queen, The (1951)
## 3338                                                                    Fast Times at Ridgemont High (1982)
## 3339                                                                                  Doctor Zhivago (1965)
## 3340                                                                                   Bronx Tale, A (1993)
## 3341                                                                              North by Northwest (1959)
## 3342                                                                                       Ladyhawke (1985)
## 3343                                                                                           Diner (1982)
## 3344                                                                                     Poltergeist (1982)
## 3345                                                                            Death and the Maiden (1994)
## 3346                                                                               Mr. Hollands Opus (1995)
## 3347                                                                         Remains of the Day, The (1993)
## 3348                                                                                       Malcolm X (1992)
## 3349                                                                                   Birdcage, The (1996)
## 3350                                                                                     Wag the Dog (1997)
## 3351                                                                              Enemy of the State (1998)
## 3352                                                                                          Clerks (1994)
## 3353                                                                                      Entrapment (1999)
## 3354                                                                                    Faculty, The (1998)
## 3355                                                                        Thomas Crown Affair, The (1999)
## 3356                                                                              When We Were Kings (1996)
## 3357                                                                                           Rocky (1976)
## 3358                                                                                           Ronin (1998)
## 3359                                                                                         Titanic (1953)
## 3360                                                                                      Die Hard 2 (1990)
## 3361                                                                                         RoboCop (1987)
## 3362                                                                                      Armageddon (1998)
## 3363                                                                                        Mad City (1997)
## 3364                                                                            Seven (a.k.a. Se7en) (1995)
## 3365                                                                                         Network (1976)
## 3366                                                                                       Happiness (1998)
## 3367                                                                               Ideal Husband, An (1999)
## 3368                                                                                 Blazing Saddles (1974)
## 3369                                                                              As Good As It Gets (1997)
## 3370                                                                                         Serpico (1973)
## 3371                                                                                 Midnight Cowboy (1969)
## 3372                                                                                          Gandhi (1982)
## 3373                                                                                  Apocalypse Now (1979)
## 3374                                                                               Soldiers Story, A (1984)
## 3375                                                                            English Patient, The (1996)
## 3376                                                          Sunset Blvd. (a.k.a. Sunset Boulevard) (1950)
## 3377                                                                     Monty Pythons Life of Brian (1979)
## 3378                                                                                    My Fair Lady (1964)
## 3379                                                                                 Full Monty, The (1997)
## 3380                                                                            Its a Wonderful Life (1946)
## 3381                                                                   Road Warrior, The (Mad Max 2) (1981)
## 3382                                                                                      Abyss, The (1989)
## 3383                                                                            Escape from New York (1981)
## 3384                                                                                            Dune (1984)
## 3385                                                                                         Contact (1997)
## 3386                                                                                            Tron (1982)
## 3387                                                                                     Superman II (1980)
## 3388                                                                                  Wild Wild West (1999)
## 3389                                                                                            Diva (1981)
## 3390                                                                                   Red Rock West (1992)
## 3391                                                                                Deer Hunter, The (1978)
## 3392                                                                                       Big Daddy (1999)
## 3393                                                                            Being John Malkovich (1999)
## 3394                                                                              Drop Dead Gorgeous (1999)
## 3395                                                                             Shakespeare in Love (1998)
## 3396                                                                        Talented Mr. Ripley, The (1999)
## 3397                                                                        Thomas Crown Affair, The (1999)
## 3398                                                                                     Toy Story 2 (1999)
## 3399                                                                                         Kingpin (1996)
## 3400                                                                                    Out of Sight (1998)
## 3401                                                                              Planet of the Apes (1968)
## 3402                                                                                           Speed (1994)
## 3403                                                                               Godzilla (Gojira) (1954)
## 3404                                                                              Enemy of the State (1998)
## 3405                                                                                    True Romance (1993)
## 3406                                                                       Last of the Mohicans, The (1992)
## 3407  Jackie Chans First Strike (Police Story 4: First Strike) (Jing cha gu shi IV: Jian dan ren wu) (1996)
## 3408                                                                                      Highlander (1986)
## 3409                                                                                    Arrival, The (1996)
## 3410                                                       Star Wars: Episode I - The Phantom Menace (1999)
## 3411                                                                                     Deep Impact (1998)
## 3412                                                                          Star Trek: Generations (1994)
## 3413                                                                            Hot Shots! Part Deux (1993)
## 3414                                                                                 Lethal Weapon 4 (1998)
## 3415                                                                                      Young Guns (1988)
## 3416                                                                               Conspiracy Theory (1997)
## 3417                                                                                         Twister (1996)
## 3418                                                                               Universal Soldier (1992)
## 3419                                                                                        Rocky II (1979)
## 3420                                                                                    Time Bandits (1981)
## 3421                                                                      Rambo: First Blood Part II (1985)
## 3422                                                                                   Young Guns II (1990)
## 3423                                                                                      Blown Away (1994)
## 3424                                                                                  Reservoir Dogs (1992)
## 3425                                                                                    Program, The (1993)
## 3426                                                                                    First Knight (1995)
## 3427                                                                                   Lost in Space (1998)
## 3428                            Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb (1964)
## 3429                                                                       Crow: City of Angels, The (1996)
## 3430                                                                         Karate Kid Part II, The (1986)
## 3431                                                                                            Toys (1992)
## 3432                                                                                            Solo (1996)
## 3433                           Highlander III: The Sorcerer (a.k.a. Highlander: The Final Dimension) (1994)
## 3434                                                                      Stop! Or My Mom Will Shoot (1992)
## 3435                                                                                     Stand by Me (1986)
## 3436                                                                                              Go (1999)
## 3437                                                                     Around the World in 80 Days (1956)
## 3438                                                                                     Deliverance (1972)
## 3439                                                                                       Mask, The (1994)
## 3440                                                          Homeward Bound: The Incredible Journey (1993)
## 3441                                                                                     Pushing Tin (1999)
## 3442                                                                        Honey, I Shrunk the Kids (1989)
## 3443                                                                                         Jumanji (1995)
## 3444                                                                        Bedknobs and Broomsticks (1971)
## 3445                                                                                Running Man, The (1987)
## 3446                                                                                      Barbarella (1968)
## 3447                                                                                    Superman III (1983)
## 3448                                                                                            Hook (1991)
## 3449                                                                                           Fargo (1996)
## 3450                                                 Wallace & Gromit: The Best of Aardman Animation (1996)
## 3451                                                                         Sword in the Stone, The (1963)
## 3452                                                                                     Three Kings (1999)
## 3453                                                                                Oliver & Company (1988)
## 3454                                                                               Wizard of Oz, The (1939)
## 3455                                                                                 American Psycho (2000)
## 3456                                                                                      Old Yeller (1957)
## 3457                                                                               Dark Crystal, The (1982)
## 3458                                            Adventures of Milo and Otis, The (Koneko monogatari) (1986)
## 3459                                                                               Battlefield Earth (2000)
## 3460                                                                     Muppet Christmas Carol, The (1992)
## 3461                                                                                      Abyss, The (1989)
## 3462                                                                              Muppets From Space (1999)
## 3463                                                                                     Hoop Dreams (1994)
## 3464                                                               Lock, Stock & Two Smoking Barrels (1998)
## 3465                                                                                      Goodfellas (1990)
## 3466                                                                      Terminator 2: Judgment Day (1991)
## 3467                                                                                Dangerous Beauty (1998)
## 3468                                                                                    Bugs Life, A (1998)
## 3469                                                                                   Pleasantville (1998)
## 3470                                                                                       Dark City (1998)
## 3471                                                 Wallace & Gromit: The Best of Aardman Animation (1996)
## 3472                                                                                          Hamlet (1996)
## 3473                                                                                 Schindlers List (1993)
## 3474                                                                                 Beautiful Girls (1996)
## 3475                                                                     Searching for Bobby Fischer (1993)
## 3476                                                                                     Matrix, The (1999)
## 3477                                                                  Ever After: A Cinderella Story (1998)
## 3478                                                                   Independence Day (a.k.a. ID4) (1996)
## 3479                                                                                         Rob Roy (1995)
## 3480                                                     Austin Powers: International Man of Mystery (1997)
## 3481                                                                                    Strange Days (1995)
## 3482                                                                             Edward Scissorhands (1990)
## 3483  Jackie Chans First Strike (Police Story 4: First Strike) (Jing cha gu shi IV: Jian dan ren wu) (1996)
## 3484                                                                                Truman Show, The (1998)
## 3485                                                                                   Jacobs Ladder (1990)
## 3486                                                                                 Full Monty, The (1997)
## 3487                                                                                     Bull Durham (1988)
## 3488                                                                                       Tombstone (1993)
## 3489                                                             William Shakespeares Romeo + Juliet (1996)
## 3490                                                                                      Roger & Me (1989)
## 3491                                                                                       Happiness (1998)
## 3492                                                                    Truth About Cats & Dogs, The (1996)
## 3493                                                                                   Groundhog Day (1993)
## 3494                                                                     Ghost and the Darkness, The (1996)
## 3495                                                                 Hand That Rocks the Cradle, The (1992)
## 3496                                                                                     Under Siege (1992)
## 3497                                                                      Children of the Revolution (1996)
## 3498                                                                                            Dave (1993)
## 3499                                                                             Alien: Resurrection (1997)
## 3500                                                                                       Big Daddy (1999)
## 3501                                                                          Pee-wees Big Adventure (1985)
## 3502                                                                          Star Trek: Generations (1994)
## 3503                                                                              Great Expectations (1998)
## 3504                                                                               Starship Troopers (1997)
## 3505                                                                                     Hope Floats (1998)
## 3506                                                                  Rocky Horror Picture Show, The (1975)
## 3507                                                                                Friends & Lovers (1999)
## 3508                                                                                       G.I. Jane (1997)
## 3509                                                                                         Singles (1992)
## 3510                                                                             Blues Brothers 2000 (1998)
## 3511                                                                                             8MM (1999)
## 3512                                                                                    Bed of Roses (1996)
## 3513                                                                     Object of My Affection, The (1998)
## 3514                                                                              Dazed and Confused (1993)
## 3515                                                                                            EDtv (1999)
## 3516                                                                                Forces of Nature (1999)
## 3517                                                                                 Puppet Master 4 (1993)
## 3518                                                                                 Johnny Mnemonic (1995)
## 3519                                                                                 Renaissance Man (1994)
## 3520                                                                             Two Girls and a Guy (1997)
## 3521                                                                       Robin Hood: Men in Tights (1993)
## 3522                                                                   Kids in the Hall: Brain Candy (1996)
## 3523                                                                                      Son in Law (1993)
## 3524                                                                                      Funny Farm (1988)
## 3525                                                                                      Volunteers (1985)
## 3526                                                                Major League: Back to the Minors (1998)
## 3527                                                              Thin Line Between Love and Hate, A (1996)
## 3528                                                                          Madonna: Truth or Dare (1991)
## 3529                                                                                 Midnight Cowboy (1969)
## 3530                                                                                       Lone Star (1996)
## 3531                                                                               Last Emperor, The (1987)
## 3532                                                                              Dangerous Liaisons (1988)
## 3533                                                                                   Sid and Nancy (1986)
## 3534                                                                                    My Left Foot (1989)
## 3535                                                                                     Blue Velvet (1986)
## 3536                                                                     People vs. Larry Flynt, The (1996)
## 3537                                                                                        High Art (1998)
## 3538                                                                  Ever After: A Cinderella Story (1998)
## 3539                                                                                         Titanic (1997)
## 3540                                                                     Guess Whos Coming to Dinner (1967)
## 3541                                                                            English Patient, The (1996)
## 3542                                                                                    Little Women (1994)
## 3543                                                                           Ghosts of Mississippi (1996)
## 3544                                                                               Somewhere in Time (1980)
## 3545                                                                                    Grand Canyon (1991)
## 3546                                                                                           Evita (1996)
## 3547                                                                                Babes in Toyland (1961)
## 3548                                                                                    Blade Runner (1982)
## 3549                                                                                  Dead Zone, The (1983)
## 3550                                                                                     Poltergeist (1982)
## 3551                                                                                 Friday the 13th (1980)
## 3552                                                        Halloween 4: The Return of Michael Myers (1988)
## 3553                                                                                 Poltergeist III (1988)
## 3554                                                         Friday the 13th Part VII: The New Blood (1988)
## 3555                                                                             Defending Your Life (1991)
## 3556                                                                                Forbidden Planet (1956)
## 3557                                                                 Hand That Rocks the Cradle, The (1992)
## 3558                                                Battleship Potemkin, The (Bronenosets Potyomkin) (1925)
## 3559                                                                                         Titanic (1997)
## 3560                                                                                   Out of Africa (1985)
## 3561                                                                               Wizard of Oz, The (1939)
## 3562                                                                  One Flew Over the Cuckoos Nest (1975)
## 3563                                                                                  Godfather, The (1972)
## 3564                                                                              Dead Poets Society (1989)
## 3565                                                                                      Old Yeller (1957)
## 3566                                                  Star Wars: Episode V - The Empire Strikes Back (1980)
## 3567                                                                        Karate Kid Part III, The (1989)
## 3568                                                                         While You Were Sleeping (1995)
## 3569                                                                                           Ghost (1990)
## 3570                                                                                   Fly Away Home (1996)
## 3571                                                                                Benji the Hunted (1987)
## 3572                                                                                          Paulie (1998)
## 3573                                                                      Journey of Natty Gann, The (1985)
## 3574                                                                             Little Mermaid, The (1989)
## 3575                                                                                         Matilda (1996)
## 3576                                                                        Rescuers Down Under, The (1990)
## 3577                                                         Sesame Street Presents Follow That Bird (1985)
## 3578                                                                       James and the Giant Peach (1996)
## 3579                                                                                 Thelma & Louise (1991)
## 3580                                                                                 Blazing Saddles (1974)
## 3581                                                                             Long Walk Home, The (1990)
## 3582                                                                                           Fargo (1996)
## 3583                                                               Lock, Stock & Two Smoking Barrels (1998)
## 3584                                                                              American History X (1998)
## 3585                                               Léon: The Professional (Léon) (Professional, The) (1994)
## 3586                                                                                 Negotiator, The (1998)
## 3587                                                                         Quick and the Dead, The (1995)
## 3588                                                                                      Fight Club (1999)
## 3589                                                                             Saving Private Ryan (1998)
## 3590                                                                                        Face/Off (1997)
## 3591                                                                                      Turbulence (1997)
## 3592                                                                           Mission: Impossible 2 (2000)
## 3593                                                                      Die Hard: With a Vengeance (1995)
## 3594                                                                                     Matrix, The (1999)
## 3595                                                                                   Jurassic Park (1993)
## 3596                                                                                   Patriot Games (1992)
## 3597                                                                                    Men in Black (1997)
## 3598                                                                                      Die Hard 2 (1990)
## 3599                                                                              Thin Red Line, The (1998)
## 3600                                                                                    Broken Arrow (1996)
## 3601                                                                   Under Siege 2: Dark Territory (1995)
## 3602                                                                            Operation Dumbo Drop (1995)
## 3603                                                                                Cruel Intentions (1999)
## 3604                                                                               Never Been Kissed (1999)
## 3605                                                                                     Pushing Tin (1999)
## 3606                                                                                Story of Us, The (1999)
## 3607                                                                                             8MM (1999)
## 3608                                                                                   Above the Rim (1994)
## 3609                                                                                       Dead Calm (1989)
## 3610                                                                             Shakespeare in Love (1998)
## 3611                                                                                       True Grit (1969)
## 3612                                                                 Star Trek II: The Wrath of Khan (1982)
## 3613                                                                      Captain Horatio Hornblower (1951)
## 3614                                                            Indiana Jones and the Temple of Doom (1984)
## 3615                                                                          NeverEnding Story, The (1984)
## 3616                                                                     Theres Something About Mary (1998)
## 3617                                                                         Philadelphia Story, The (1940)
## 3618                                                                 Monty Python and the Holy Grail (1975)
## 3619                                                                                Inherit the Wind (1960)
## 3620                                                                               Dog Day Afternoon (1975)
## 3621                                                                                Fisher King, The (1991)
## 3622                                                                                       Airplane! (1980)
## 3623                                                                                  Little Big Man (1970)
## 3624                                                                                          Hamlet (1990)
## 3625                                                                     Ghost and the Darkness, The (1996)
## 3626                                                                                       Bowfinger (1999)
## 3627                                                                                Fisher King, The (1991)
## 3628                                                                  X-Files: Fight the Future, The (1998)
## 3629                                                                                     Superman II (1980)
## 3630                                                                           Thirteenth Floor, The (1999)
## 3631                                                                                      Armageddon (1998)
## 3632                                                                                           Ronin (1998)
## 3633                                                                                    Grand Canyon (1991)
## 3634                                                                                        Rounders (1998)
## 3635                                                                                      Wyatt Earp (1994)
## 3636                                                                                         Hackers (1995)
## 3637                                                                                  Batman Forever (1995)
## 3638                                                                                  Rocketeer, The (1991)
## 3639                                                                                Mighty Joe Young (1998)
## 3640                                                                           Six Days Seven Nights (1998)
## 3641                                                                                  Charlottes Web (1973)
## 3642                                                                       Shawshank Redemption, The (1994)
## 3643                                                                       Silence of the Lambs, The (1991)
## 3644                                                                     Shop Around the Corner, The (1940)
## 3645                                                                                  My Man Godfrey (1936)
## 3646                                                              Close Encounters of the Third Kind (1977)
## 3647                                                                                   Graduate, The (1967)
## 3648                                                                              Back to the Future (1985)
## 3649                                                                           M*A*S*H (a.k.a. MASH) (1970)
## 3650                                                                                         Ed Wood (1994)
## 3651                                                                      Terminator 2: Judgment Day (1991)
## 3652                                                                      E.T. the Extra-Terrestrial (1982)
## 3653                                                                                         Sabrina (1954)
## 3654                                                                                    Mary Poppins (1964)
## 3655                                                                                    Little Voice (1998)
## 3656                                                                                         Aladdin (1992)
## 3657                                                                            Fried Green Tomatoes (1991)
## 3658                                                                                   Irma la Douce (1963)
## 3659                                                     Austin Powers: International Man of Mystery (1997)
## 3660                                                                                  City of Angels (1998)
## 3661                                                                         Gods Must Be Crazy, The (1980)
## 3662                                                                                            Emma (1996)
## 3663                                                                                         Titanic (1997)
## 3664                                                                                To Sir with Love (1967)
## 3665                                                                                    Waynes World (1992)
## 3666                                                                                             JFK (1991)
## 3667                                                                                    Magnum Force (1973)
## 3668                                                                                      Eraserhead (1977)
## 3669                                                                        Fabulous Baker Boys, The (1989)
## 3670                                                                                     Angel Heart (1987)
## 3671                                                                                 Shaggy Dog, The (1959)
## 3672                                                                                    From the Hip (1987)
## 3673                                                                                       Meatballs (1979)
## 3674                                                                               European Vacation (1985)
## 3675                                                                                           Fresh (1994)
## 3676                                                                                            Cujo (1983)
## 3677                                                               Freddys Dead: The Final Nightmare (1991)
## 3678                                                                                 Made in America (1993)
## 3679                                                                                       Gladiator (2000)
## 3680                                                                                    Return to Me (2000)
## 3681                                                                                    Total Recall (1990)
## 3682                                                          Star Trek VI: The Undiscovered Country (1991)
## 3683                                                            Seven Samurai (Shichinin no samurai) (1954)
## 3684                                                                                   Fugitive, The (1993)
## 3685                                                                                          Dr. No (1962)
## 3686                                                                                       King Kong (1933)
## 3687                              Good, the Bad and the Ugly, The (Buono, il brutto, il cattivo, Il) (1966)
## 3688                                                                 Star Trek II: The Wrath of Khan (1982)
## 3689                                                                                      Abyss, The (1989)
## 3690                                                                                     Thunderball (1965)
## 3691                                                                              Thin Red Line, The (1998)
## 3692                                                                                    Arrival, The (1996)
## 3693                                                       Star Wars: Episode I - The Phantom Menace (1999)
## 3694                                                                                   Runaway Train (1985)
## 3695                                                                               View to a Kill, A (1985)
## 3696                                                                                   Arachnophobia (1990)
## 3697                                                                                  Corruptor, The (1999)
## 3698                                                                                     End of Days (1999)
## 3699                                                             Willy Wonka & the Chocolate Factory (1971)
## 3700                                                                                      Highlander (1986)
## 3701                                                                                Mulholland Falls (1996)
## 3702                                                                                  Eyes Wide Shut (1999)
## 3703                                                                                    Hustler, The (1961)
## 3704                                                                                Crying Game, The (1992)
## 3705                                                                          Much Ado About Nothing (1993)
## 3706                                                                               Good Will Hunting (1997)
## 3707                                                     Three Colors: White (Trois couleurs: Blanc) (1994)
## 3708                                                                                           Shine (1996)
## 3709                                                                     Four Weddings and a Funeral (1994)
## 3710                                                                                    Little Women (1994)
## 3711                                                                               Down in the Delta (1998)
## 3712                                                                   Education of Little Tree, The (1997)
## 3713                                                                                   Reality Bites (1994)
## 3714                                                         Cinema Paradiso (Nuovo cinema Paradiso) (1989)
## 3715                                                                                     Stand by Me (1986)
## 3716                                                                                            Babe (1995)
## 3717                                                                             Terms of Endearment (1983)
## 3718                                                                                       Tom Jones (1963)
## 3719                                                                                    Notting Hill (1999)
## 3720                                                                                Right Stuff, The (1983)
## 3721                                                                              Driving Miss Daisy (1989)
## 3722                                                                                    Natural, The (1984)
## 3723                                                                                    Turtle Diary (1985)
## 3724                                                                               Stardust Memories (1980)
## 3725                                                                        Blair Witch Project, The (1999)
## 3726                                                           Austin Powers: The Spy Who Shagged Me (1999)
## 3727                                                                                  Eyes Wide Shut (1999)
## 3728                                                                                Sixth Sense, The (1999)
## 3729                                                                                  Eyes Wide Shut (1999)
## 3730                                                                     Father of the Bride Part II (1995)
## 3731                                                                            My Own Private Idaho (1991)
## 3732                                                       Three Colors: Red (Trois couleurs: Rouge) (1994)
## 3733                                                                                 Blazing Saddles (1974)
## 3734                                                               Princess Mononoke (Mononoke-hime) (1997)
## 3735                                                                             In the Line of Fire (1993)
## 3736                                                                 Maya Lin: A Strong Clear Vision (1994)
## 3737                                                                        Clear and Present Danger (1994)
## 3738                                                                                      Abyss, The (1989)
## 3739                                                                                    Strange Days (1995)
## 3740                                                                                      Die Hard 2 (1990)
## 3741                                                          Star Trek VI: The Undiscovered Country (1991)
## 3742                                                                             Mission: Impossible (1996)
## 3743                                                                                      Young Guns (1988)
## 3744                                                                                      Mummy, The (1999)
## 3745                                                                                        Outbreak (1995)
## 3746                                                                                      Armageddon (1998)
## 3747                                                                              Lawnmower Man, The (1992)
## 3748                                                                                   Young Guns II (1990)
## 3749                                                                                    First Knight (1995)
## 3750                                                                                   Lost in Space (1998)
## 3751                                                                                            Babe (1995)
## 3752                                                                               Last Emperor, The (1987)
## 3753                                                                                  Wild Wild West (1999)
## 3754                                                                                 Thelma & Louise (1991)
## 3755                                                                                  Sophies Choice (1982)
## 3756                                                                                     Player, The (1992)
## 3757                                                                              Back to the Future (1985)
## 3758                                                                         Antonias Line (Antonia) (1995)
## 3759                                                                                     Bull Durham (1988)
## 3760                                                               Lock, Stock & Two Smoking Barrels (1998)
## 3761                                                                                   Groundhog Day (1993)
## 3762                                                                                            Dick (1999)
## 3763                                                                                 No Looking Back (1998)
## 3764                                                                              Dazed and Confused (1993)
## 3765                                                                                 My Cousin Vinny (1992)
## 3766                                                                            Deconstructing Harry (1997)
## 3767                                                                                        Soapdish (1991)
## 3768                                                                             Little Mermaid, The (1989)
## 3769                                                                              Addams Family, The (1991)
## 3770                                                                          League of Their Own, A (1992)
## 3771                                                                                        SubUrbia (1997)
## 3772                                                                                            I.Q. (1994)
## 3773                                                                            Sleepless in Seattle (1993)
## 3774                                                                               Other Sister, The (1999)
## 3775                                                                                    Working Girl (1988)
## 3776                                                                                  Grumpy Old Men (1993)
## 3777                                                                                Addicted to Love (1997)
## 3778                                                                                   Weird Science (1985)
## 3779                                                                           Six Days Seven Nights (1998)
## 3780                                                                                 Lethal Weapon 4 (1998)
## 3781                                                                           2001: A Space Odyssey (1968)
## 3782                                                                                Chariots of Fire (1981)
## 3783                                                                                   Jerry Maguire (1996)
## 3784                                                                                   Out of Africa (1985)
## 3785                                                                 Monty Python and the Holy Grail (1975)
## 3786                                                                         Crimes and Misdemeanors (1989)
## 3787                                                                                             Big (1988)
## 3788                                                                                   Irma la Douce (1963)
## 3789                                                                                         Titanic (1953)
## 3790                                           Star Wars: Episode IV - A New Hope (a.k.a. Star Wars) (1977)
## 3791                                                                                       Body Heat (1981)
## 3792                                                                             Edward Scissorhands (1990)
## 3793                                                                   Unvanquished, The (Aparajito) (1957)
## 3794                                                                                   Soylent Green (1973)
## 3795                                                                            Horse Whisperer, The (1998)
## 3796                                                                                    Crimson Tide (1995)
## 3797                                                                                    Forrest Gump (1994)
## 3798                                                                 Wallace & Gromit: A Close Shave (1995)
## 3799                                                                            Grapes of Wrath, The (1940)
## 3800                                                                                  Paths of Glory (1957)
## 3801                                                                                           Fargo (1996)
## 3802                                                                                   Graduate, The (1967)
## 3803                                                                  Whos Afraid of Virginia Woolf? (1966)
## 3804                                                                                       Apollo 13 (1995)
## 3805                                                                                      Thing, The (1982)
## 3806                                                                     Little Shop of Horrors, The (1960)
## 3807                                                                                     Taxi Driver (1976)
## 3808                                                                                        Rushmore (1998)
## 3809                                                                                        War, The (1994)
## 3810                                                                           Mission: Impossible 2 (2000)
## 3811                                                                                 Erin Brockovich (2000)
## 3812                                                                                           Dogma (1999)
## 3813                                                                            Being John Malkovich (1999)
## 3814                                                                                 Civil Action, A (1998)
## 3815                                                                                      Titan A.E. (2000)
## 3816                                                                                      Piano, The (1993)
## 3817                                                                                         Ed Wood (1994)
## 3818                                                                        River Runs Through It, A (1992)
## 3819                                                                                        Soapdish (1991)
## 3820                                                                 Hand That Rocks the Cradle, The (1992)
## 3821                                                                      Kama Sutra: A Tale of Love (1996)
## 3822                                                                                      Limey, The (1999)
## 3823                                                                                Fatal Attraction (1987)
## 3824                         Raiders of the Lost Ark (Indiana Jones and the Raiders of the Lost Ark) (1981)
## 3825                                                                    Red Sorghum (Hong gao liang) (1987)
## 3826                                                                                       Airplane! (1980)
## 3827                                                       Three Colors: Blue (Trois couleurs: Bleu) (1993)
## 3828                                                                                 Thelma & Louise (1991)
## 3829                                                                                   Sid and Nancy (1986)
## 3830                                                                              Driving Miss Daisy (1989)
## 3831                                                                                    Paris, Texas (1984)
## 3832                                                                          Much Ado About Nothing (1993)
## 3833                                                                              Shes Gotta Have It (1986)
## 3834                                                                                   Exorcist, The (1973)
## 3835                                                                                      Caddyshack (1980)
## 3836                                                                                Live and Let Die (1973)
## 3837                                                                                   Birdcage, The (1996)
## 3838                                                                                         Top Gun (1986)
## 3839                                                                              Planet of the Apes (1968)
## 3840                                                                                 Friday the 13th (1980)
## 3841                                                                                       Jury Duty (1995)
## 3842                                                                                           X-Men (2000)
## 3843                                                                                    American Pie (1999)
## 3844                                                           Austin Powers: The Spy Who Shagged Me (1999)
## 3845                                                                                       Big Daddy (1999)
## 3846                                                                                        Dinosaur (2000)
## 3847                                                                                       Gladiator (2000)
## 3848                                                                                      Idle Hands (1999)
## 3849                                                                                    Office Space (1999)
## 3850                                                                           Mission: Impossible 2 (2000)
## 3851                                                                              Perfect Storm, The (2000)
## 3852                                                                                           Shaft (1971)
## 3853                                                                     Shop Around the Corner, The (1940)
## 3854                                                                                        Election (1999)
## 3855                                                                       Kentucky Fried Movie, The (1977)
## 3856                                                                                   Suicide Kings (1997)
## 3857                                                                                 Dead Presidents (1995)
## 3858                                                                                 Steel Magnolias (1989)
## 3859                                                                                     Hoop Dreams (1994)
## 3860                                                                            Being John Malkovich (1999)
## 3861                                                                                   Arachnophobia (1990)
## 3862                                                                           Bringing Out the Dead (1999)
## 3863                                                                                      Abyss, The (1989)
## 3864                                                                                      Doors, The (1991)
## 3865                                                                                     Lake Placid (1999)
## 3866                                                                                        Rushmore (1998)
## 3867                                                                                       Superstar (1999)
## 3868                                                                                  200 Cigarettes (1999)
## 3869                                                                                    American Pie (1999)
## 3870                                                                                   Thin Man, The (1934)
## 3871                                                                                       Key Largo (1948)
## 3872                                                                                  Bad Lieutenant (1992)
## 3873                                                                                     Hoop Dreams (1994)
## 3874                                                                                    Chuck & Buck (2000)
## 3875                                                                                    General, The (1927)
## 3876                                                                                     City Lights (1931)
## 3877                                                                                           Ronin (1998)
## 3878                                                                                             Ran (1985)
## 3879                                                                              North by Northwest (1959)
## 3880                                                                                 Wild Bunch, The (1969)
## 3881                                                                                 King and I, The (1956)
## 3882                                                                                             Big (1988)
## 3883                                                                                      Affliction (1997)
## 3884                                                                                    Best in Show (2000)
## 3885                                                                                      Annie Hall (1977)
## 3886                                                                                 Bless the Child (2000)
## 3887                                                                      Terminator 2: Judgment Day (1991)
## 3888                                                                               Conspiracy Theory (1997)
## 3889                                                                                    Out of Sight (1998)
## 3890                                                                                     Thunderball (1965)
## 3891                                                                                           X-Men (2000)
## 3892                                                             Ghostbusters (a.k.a. Ghost Busters) (1984)
## 3893                                                                               Never Been Kissed (1999)
## 3894                                                                                      Quest, The (1996)
## 3895                                                                             Usual Suspects, The (1995)
## 3896                                                                                         Jumanji (1995)
## 3897                                                                                     Mystery Men (1999)
## 3898                                                                                   Avengers, The (1998)
## 3899                                                                             Killing Fields, The (1984)
## 3900                                                                        Who Framed Roger Rabbit? (1988)
## 3901                                                                                  Broadcast News (1987)
## 3902                                                                                  Sophies Choice (1982)
## 3903                                                                          Cider House Rules, The (1999)
## 3904                                                                                       Frequency (2000)
## 3905                                                                                   High Fidelity (2000)
## 3906                                                                                Truman Show, The (1998)
## 3907                                                      Star Wars: Episode VI - Return of the Jedi (1983)
## 3908                                                                                    Men in Black (1997)
## 3909                                                                                  Grumpy Old Men (1993)
## 3910                                                                                     Wild Things (1998)
## 3911                                          Effect of Gamma Rays on Man-in-the-Moon Marigolds, The (1972)
## 3912                                                                                    12 Angry Men (1957)
## 3913                                                                                      Get Shorty (1995)
## 3914                                                                        Air Bud: Golden Receiver (1998)
## 3915                                                                                Crocodile Dundee (1986)
## 3916                                                                                Private Benjamin (1980)
## 3917                                                                                   Angelas Ashes (1999)
## 3918                                                                              Back to the Future (1985)
## 3919                                                                                          Cocoon (1985)
## 3920                                                              Escape from the Planet of the Apes (1971)
## 3921                                                                                           Fargo (1996)
## 3922                                                                           2001: A Space Odyssey (1968)
## 3923                                                                               Starship Troopers (1997)
## 3924                                                                                       Airplane! (1980)
## 3925                                                                                  Godfather, The (1972)
## 3926                                                              Indiana Jones and the Last Crusade (1989)
## 3927                                                                                      Goldfinger (1964)
## 3928                                                                                 West Side Story (1961)
## 3929                                                                                     Dantes Peak (1997)
## 3930                                                                                      Casablanca (1942)
## 3931                                                                              North by Northwest (1959)
## 3932                                                                                            Dick (1999)
## 3933                                                                                           Speed (1994)
## 3934                                                                            Being John Malkovich (1999)
## 3935                                                                                    My Left Foot (1989)
## 3936                                                                                       Indochine (1992)
## 3937                                                                         My Best Friends Wedding (1997)
## 3938                                                                               Conspiracy Theory (1997)
## 3939                                                                                 Family Thing, A (1996)
## 3940                                                                            Being John Malkovich (1999)
## 3941                                                                                  Empire Records (1995)
## 3942                                                     Austin Powers: International Man of Mystery (1997)
## 3943                                                                            Hudsucker Proxy, The (1994)
## 3944                                                                                       Bowfinger (1999)
## 3945                                                                           Bringing Out the Dead (1999)
## 3946                                                                          Cider House Rules, The (1999)
## 3947                                                                  2010: The Year We Make Contact (1984)
## 3948                                                             Ghostbusters (a.k.a. Ghost Busters) (1984)
## 3949                                                                             Saving Private Ryan (1998)
## 3950                                                                                            Jaws (1975)
## 3951                                                                                         Amistad (1997)
## 3952                                                                          Amityville Horror, The (1979)
## 3953                                                                                         Kingpin (1996)
## 3954                                                                                         Tin Men (1987)
## 3955                                                                                   Rescuers, The (1977)
## 3956                                                                             Edward Scissorhands (1990)
## 3957                                                                          Stranger Than Paradise (1984)
## 3958                                                                                           Rocky (1976)
## 3959                                                                                        Repo Man (1984)
## 3960                                                                                 Man on the Moon (1999)
## 3961                                                              Red Violin, The (Violon rouge, Le) (1998)
## 3962                                                                                        Rushmore (1998)
## 3963                                                                                       True Lies (1994)
## 3964                                                                                   Mystery Train (1989)
## 3965                                                                                       Rush Hour (1998)
## 3966                                                                                    Paris, Texas (1984)
## 3967                                                                                Forbidden Planet (1956)
## 3968                                                                                         Mr. Mom (1983)
## 3969                                                                               Conspiracy Theory (1997)
## 3970                                                      Star Wars: Episode VI - Return of the Jedi (1983)
## 3971                                                                                       G.I. Jane (1997)
## 3972                                                                           2001: A Space Odyssey (1968)
## 3973                                                                 Voyage to the Bottom of the Sea (1961)
## 3974                                                                                           Alien (1979)
## 3975                                                                               13th Warrior, The (1999)
## 3976                                                                                            Babe (1995)
## 3977                                                                                        Stargate (1994)
## 3978                                                                       Hunt for Red October, The (1990)
## 3979                                                                             Saving Private Ryan (1998)
## 3980                                                                                    Blade Runner (1982)
## 3981                                                                       Run Lola Run (Lola rennt) (1998)
## 3982                                                                                 Lethal Weapon 4 (1998)
## 3983                                                                                            Dune (1984)
## 3984                                                                        Honey, I Shrunk the Kids (1989)
## 3985                                                                       Last of the Mohicans, The (1992)
## 3986                                                                                           Speed (1994)
## 3987                                                                 Star Trek V: The Final Frontier (1989)
## 3988                                  Godzilla (a.k.a. Godzilla 1985: The Legend Is Reborn) (Gojira) (1984)
## 3989                                                                   Independence Day (a.k.a. ID4) (1996)
## 3990                                                                               L.A. Confidential (1997)
## 3991                                                                     12 Monkeys (Twelve Monkeys) (1995)
## 3992                                                                                        Outbreak (1995)
## 3993                                                                                   Jurassic Park (1993)
## 3994                                                                                       Screamers (1995)
## 3995                                                                      Die Hard: With a Vengeance (1995)
## 3996                                                                     Ghost and the Darkness, The (1996)
## 3997                                                                         When Harry Met Sally... (1989)
## 3998                                                                         Star Trek: Insurrection (1998)
## 3999                                                                                          Alien³ (1992)
## 4000                                                                           Village of the Damned (1995)
## 4001                                                                               Universal Soldier (1992)
## 4002                                                                                      Armageddon (1998)
## 4003                                                                                     Under Siege (1992)
## 4004                                                                                 Schindlers List (1993)
## 4005                                                                        Honey, I Blew Up the Kid (1992)
## 4006                                           Star Wars: Episode IV - A New Hope (a.k.a. Star Wars) (1977)
## 4007                                                                                 Schindlers List (1993)
## 4008                                                                                         Yojimbo (1961)
## 4009                                                                                  Risky Business (1983)
## 4010                                                                                    Citizen Kane (1941)
## 4011                                                                                      Hollow Man (2000)
## 4012                                                                          Little Shop of Horrors (1986)
## 4013                                                                                      Flatliners (1990)
## 4014                                                                          French Connection, The (1971)
## 4015                                                                           Towering Inferno, The (1974)
## 4016                                                                             Saving Private Ryan (1998)
## 4017                                                                                           Glory (1989)
## 4018                                                                                        Rain Man (1988)
## 4019                                                                                    Midnight Run (1988)
## 4020                                                         Handle with Care (a.k.a. Citizens Band) (1977)
## 4021                                                                                  Mrs. Doubtfire (1993)
## 4022                                                  Star Wars: Episode V - The Empire Strikes Back (1980)
## 4023                                                                                            Jaws (1975)
## 4024                                                      Star Wars: Episode VI - Return of the Jedi (1983)
## 4025                                                                                      Mouse Hunt (1997)
## 4026                                                                                   Lethal Weapon (1987)
## 4027                                                                                           X-Men (2000)
## 4028                                                                               Jumpin Jack Flash (1986)
## 4029                                                                          Star Trek: Generations (1994)
## 4030                                                                                      Get Shorty (1995)
## 4031                                                                             In the Line of Fire (1993)
## 4032                                                                        Honey, I Shrunk the Kids (1989)
## 4033                                                                     Ghost and the Darkness, The (1996)
## 4034                                                                                           Ghost (1990)
## 4035                                                                                 Johnny Mnemonic (1995)
## 4036                                                                        Clear and Present Danger (1994)
## 4037                                                                                     Judge Dredd (1995)
## 4038                                                                                       RoboCop 2 (1990)
## 4039                                                                               Super Mario Bros. (1993)
## 4040                                                                                     Cliffhanger (1993)
## 4041                                                                                     Hunted, The (1995)
## 4042                                                                                 Specialist, The (1994)
## 4043                                                                                 Fire Down Below (1997)
## 4044                                                                                  Reindeer Games (2000)
## 4045                                                                                  Son of Flubber (1963)
## 4046                                                                                Parent Trap, The (1961)
## 4047                                                                  Home Alone 2: Lost in New York (1992)
## 4048                                                                               Great Escape, The (1963)
## 4049                                                                                Crocodile Dundee (1986)
## 4050                                                                                  Producers, The (1968)
## 4051                                                  Everything You Always Wanted to Know About Sex (1972)
## 4052                                                                                 Murphys Romance (1985)
## 4053                                                                                     Night Shift (1982)
## 4054                                                                                       Supernova (2000)
## 4055                                                                                         Burglar (1987)
## 4056                                                                                             Hud (1963)
## 4057                                                                                         Ed Wood (1994)
## 4058                                                                    Truth About Cats & Dogs, The (1996)
## 4059                                                              Close Encounters of the Third Kind (1977)
## 4060                                                                                  Mrs. Doubtfire (1993)
## 4061                                                                                          Sirens (1994)
## 4062                                                                      Deuce Bigalow: Male Gigolo (1999)
## 4063                                                                             Jane Austens Mafia! (1998)
## 4064                                                                                      Dirty Work (1998)
## 4065                                                                                   Coogans Bluff (1968)
## 4066                                                                                      Goodfellas (1990)
## 4067                                                                                           Fargo (1996)
## 4068                                                                                    Pulp Fiction (1994)
## 4069                                                                                        Cop Land (1997)
## 4070                                                                                        Sleepers (1996)
## 4071                                                                            Devils Advocate, The (1997)
## 4072                                                                                     Playing God (1997)
## 4073                                                                                   Suicide Kings (1997)
## 4074                                                                          Miracle on 34th Street (1947)
## 4075                                                                                Way We Were, The (1973)
## 4076                                                                                          Patton (1970)
## 4077                                                                              Driving Miss Daisy (1989)
## 4078                                                                           Spanish Prisoner, The (1997)
## 4079                                                                                    Insider, The (1999)
## 4080                                                                                 Green Mile, The (1999)
## 4081                                             Like Water for Chocolate (Como agua para chocolate) (1992)
## 4082                                                                              Courage Under Fire (1996)
## 4083                                                                            Fried Green Tomatoes (1991)
## 4084                                                                           Home for the Holidays (1995)
## 4085                                                                                     Client, The (1994)
## 4086                                                                   Robin Hood: Prince of Thieves (1991)
## 4087                                                                                           Crash (1996)
## 4088                                                                                        Outbreak (1995)
## 4089                                                                                  Pay It Forward (2000)
## 4090                                                                                           Fargo (1996)
## 4091                                                                                    Mary Poppins (1964)
## 4092                                                                              Dances with Wolves (1990)
## 4093                                                                                    Three Amigos (1986)
## 4094                                                                            Fried Green Tomatoes (1991)
## 4095                                                                                      Die Hard 2 (1990)
## 4096                                                                                       Gladiator (2000)
## 4097                                                                               L.A. Confidential (1997)
## 4098                                                                                  Reservoir Dogs (1992)
## 4099                                                                                       Lone Star (1996)
## 4100                                                             Ghostbusters (a.k.a. Ghost Busters) (1984)
## 4101                                                                                        Fly, The (1986)
## 4102                                                                                         Contact (1997)
## 4103                                                                   Star Trek IV: The Voyage Home (1986)
## 4104                                                                                         Starman (1984)
## 4105                                                                                        Superman (1978)
## 4106                                                                                           Glory (1989)
## 4107                                                                                         Ben-Hur (1959)
## 4108                                                                          French Connection, The (1971)
## 4109                                                                                      Die Hard 2 (1990)
## 4110                                                                                           Speed (1994)
## 4111                                                       Official Story, The (La Historia oficial) (1985)
## 4112                                                                                  Big Chill, The (1983)
## 4113                                                                                    Insider, The (1999)
## 4114                                                                             Straight Story, The (1999)
## 4115                                                                                    Philadelphia (1993)
## 4116                                                                               Stand and Deliver (1988)
## 4117                                                                               Wizard of Oz, The (1939)
## 4118                                                              Close Encounters of the Third Kind (1977)
## 4119                                                                             Clockwork Orange, A (1971)
## 4120                                                                                    Time Bandits (1981)
## 4121                                                                               Great Escape, The (1963)
## 4122                                                                                   Boogie Nights (1997)
## 4123                                                                                    Notting Hill (1999)
## 4124                                                                                              Go (1999)
## 4125                                                                                        Sneakers (1992)
## 4126                                                                                    Tingler, The (1959)
## 4127                                                                                            Cujo (1983)
## 4128                                                                              Invisible Man, The (1933)
## 4129                                                                  Dracula (Bram Stokers Dracula) (1992)
## 4130                                                                                      Relic, The (1997)
## 4131                                                                                         Vertigo (1958)
## 4132                                                                                             JFK (1991)
## 4133                                                                                  Murder at 1600 (1997)
## 4134                                                                       Purple Rose of Cairo, The (1985)
## 4135                                                                               Seven Days in May (1964)
## 4136                                                                               Dog Day Afternoon (1975)
## 4137                                           Star Wars: Episode IV - A New Hope (a.k.a. Star Wars) (1977)
## 4138                                                                                             Big (1988)
## 4139                                                                                    Goonies, The (1985)
## 4140                                                                            Nutty Professor, The (1996)
## 4141                                                                                           Glory (1989)
## 4142                                                                                          Aliens (1986)
## 4143                                                                                    Crimson Tide (1995)
## 4144                                                                                    Forrest Gump (1994)
## 4145                                                                                 Charlies Angels (2000)
## 4146                                                                                  One False Move (1992)
## 4147                                                                            Opposite of Sex, The (1998)
## 4148                                                                                  Simple Plan, A (1998)
## 4149                                                                                     Sling Blade (1996)
## 4150                                                                                          Willow (1988)
## 4151                                                                                      Die Hard 2 (1990)
## 4152                                                                                       Backdraft (1991)
## 4153                                                                                       G.I. Jane (1997)
## 4154                                                                                 Licence to Kill (1989)
## 4155                                                                                        Red Dawn (1984)
## 4156                                                                                            Toys (1992)
## 4157                                                                                        Rocky IV (1985)
## 4158                                                                                 Johnny Mnemonic (1995)
## 4159                                                                       Crow: City of Angels, The (1996)
## 4160                                                                                   Sleepy Hollow (1999)
## 4161                                              Interview with the Vampire: The Vampire Chronicles (1994)
## 4162                                                       Frankenstein (Mary Shelleys Frankenstein) (1994)
## 4163                                                                      Journey of Natty Gann, The (1985)
## 4164                                                                                     Unbreakable (2000)
## 4165                                                                                    Analyze This (1999)
## 4166                                                                                    Galaxy Quest (1999)
## 4167                                                                        Long Kiss Goodnight, The (1996)
## 4168                                                                                       GoldenEye (1995)
## 4169                                                                             In the Line of Fire (1993)
## 4170                                                                                         Con Air (1997)
## 4171                                                                                Meet the Parents (2000)
## 4172                                                                                         Matewan (1987)
## 4173                                                                                Crocodile Dundee (1986)
## 4174                                                                                     Taxi Driver (1976)
## 4175                                                                                           Rocky (1976)
## 4176                                                                                            Coma (1978)
## 4177                                                                What Ever Happened to Baby Jane? (1962)
## 4178                                                                                      Casablanca (1942)
## 4179                                                                                   Bronx Tale, A (1993)
## 4180                                                                        Night Falls on Manhattan (1996)
## 4181                                                                                         Timecop (1994)
## 4182                                                                                 Ruthless People (1986)
## 4183                                                                                   High Fidelity (2000)
## 4184                                                                                   Almost Famous (2000)
## 4185                                                                             Shakespeare in Love (1998)
## 4186                                                                             Tomorrow Never Dies (1997)
## 4187                                                  Star Wars: Episode V - The Empire Strikes Back (1980)
## 4188                                                                       Shawshank Redemption, The (1994)
## 4189                                                                                 American Beauty (1999)
## 4190                                                                                        Face/Off (1997)
## 4191                                                                                           X-Men (2000)
## 4192                                                                           Living Daylights, The (1987)
## 4193                                                                                    Bugs Life, A (1998)
## 4194                                                                        Who Framed Roger Rabbit? (1988)
## 4195                                                                                      Siege, The (1998)
## 4196                                                                              Drop Dead Gorgeous (1999)
## 4197                                                                             Preachers Wife, The (1996)
## 4198                                                                               Cold Comfort Farm (1995)
## 4199                                                                                       Cast Away (2000)
## 4200                                                     Legend of Drunken Master, The (Jui Kuen II) (1994)
## 4201                                                      Star Wars: Episode VI - Return of the Jedi (1983)
## 4202                                                                   Star Trek IV: The Voyage Home (1986)
## 4203                                                                                         Jeffrey (1995)
## 4204                                                                                       Cast Away (2000)
## 4205                                                                               Final Destination (2000)
## 4206                                                                               Small Time Crooks (2000)
## 4207                                                                         Ferris Buellers Day Off (1986)
## 4208                                                                            Escape from New York (1981)
## 4209                                                                                  Godfather, The (1972)
## 4210                                                               Wallace & Gromit: A Grand Day Out (1989)
## 4211                                                                               Gods and Monsters (1998)
## 4212                                                                                     Sling Blade (1996)
## 4213                                                 Naked Gun: From the Files of Police Squad!, The (1988)
## 4214                                                                              Heavenly Creatures (1994)
## 4215                                                                                Millers Crossing (1990)
## 4216                                                                               Keeping the Faith (2000)
## 4217                                                                                  Charlottes Web (1973)
## 4218                                                                                         Titanic (1997)
## 4219                                                                             Remember the Titans (2000)
## 4220                                                                              Loves Labours Lost (2000)
## 4221                                                                               Small Time Crooks (2000)
## 4222                                                                                        Chocolat (2000)
## 4223                                                                             Save the Last Dance (2001)
## 4224                                                                               Battlefield Earth (2000)
## 4225                                                                                    Blade Runner (1982)
## 4226                                                                                     Coyote Ugly (2000)
## 4227                                                                                    Mystic Pizza (1988)
## 4228                                                                                     Cry Freedom (1987)
## 4229                                                                               Untouchables, The (1987)
## 4230                                                                                     Taxi Driver (1976)
## 4231                                                                                           Fargo (1996)
## 4232                                                                              Do the Right Thing (1989)
## 4233                                                                         Philadelphia Story, The (1940)
## 4234                                                                                 West Side Story (1961)
## 4235                                                                              Singin in the Rain (1952)
## 4236                                             Incredibly True Adventure of Two Girls in Love, The (1995)
## 4237                                                                           From Here to Eternity (1953)
## 4238                                                                                    Billy Elliot (2000)
## 4239                                                                                   Jerry Maguire (1996)
## 4240                                                                                    Far and Away (1992)
## 4241                                                                         Star Trek: Insurrection (1998)
## 4242                                                                     Officer and a Gentleman, An (1982)
## 4243                                                                      O Brother, Where Art Thou? (2000)
## 4244                                                                              Loves Labours Lost (2000)
## 4245                                                                          French Connection, The (1971)
## 4246                                                                                          Psycho (1960)
## 4247                                                                          Much Ado About Nothing (1993)
## 4248                                                                                      Get Shorty (1995)
## 4249                                                                        Urban Legends: Final Cut (2000)
## 4250                                                                   Road Warrior, The (Mad Max 2) (1981)
## 4251                                                                               Conversation, The (1974)
## 4252                                                                     Officer and a Gentleman, An (1982)
## 4253                                                                                         Amadeus (1984)
## 4254                                                                                             Ran (1985)
## 4255                                                                                      Local Hero (1983)
## 4256                                                                                     Stand by Me (1986)
## 4257                                                                                       Body Heat (1981)
## 4258                                                                       Purple Rose of Cairo, The (1985)
## 4259                                                                                         Starman (1984)
## 4260                                       Koyaanisqatsi (a.k.a. Koyaanisqatsi: Life Out of Balance) (1983)
## 4261                                                                                          Arthur (1981)
## 4262                                                                                Private Benjamin (1980)
## 4263                                                                                       Toy Story (1995)
## 4264                                                                                    Galaxy Quest (1999)
## 4265                                                                                   Jurassic Park (1993)
## 4266                                                                                     Beetlejuice (1988)
## 4267                                                                              This Is Spinal Tap (1984)
## 4268                                                                                            Babe (1995)
## 4269                                                                                      Parenthood (1989)
## 4270                                                                                           Ghost (1990)
## 4271                                                                             Saving Private Ryan (1998)
## 4272                                                                                        Hannibal (2001)
## 4273                                                                                    Benny & Joon (1993)
## 4274                                                                                    Forrest Gump (1994)
## 4275                                                                            Glass Menagerie, The (1987)
## 4276                                                                                         Twister (1996)
## 4277                                                                                Forces of Nature (1999)
## 4278                                            Paradise Lost: The Child Murders at Robin Hood Hills (1996)
## 4279                                                                                      Girls Town (1996)
## 4280                                                                                    General, The (1927)
## 4281                                                                               Conversation, The (1974)
## 4282                                                            Grand Illusion (Grande illusion, La) (1937)
## 4283                                                                                           Fargo (1996)
## 4284                                                                             Thin Blue Line, The (1988)
## 4285                                                               Blue Angel, The (Der Blaue Engel) (1930)
## 4286                                                                               Stop Making Sense (1984)
## 4287                                                                                         Ed Wood (1994)
## 4288                                                                                        Rushmore (1998)
## 4289                                                                                       Manhattan (1979)
## 4290                                                                               Strictly Ballroom (1992)
## 4291                                                                                         Sabrina (1954)
## 4292                                                                                     Chicken Run (2000)
## 4293                                                   Friend of the Deceased, A (Priyatel pokonika) (1997)
## 4294                                                                                       Happiness (1998)
## 4295                                                                                   Bottle Rocket (1996)
## 4296                                                                      O Brother, Where Art Thou? (2000)
## 4297                                                                                       Hairspray (1988)
## 4298                                                        Bicycle Thief, The (Ladri di biciclette) (1948)
## 4299                                                                       Shawshank Redemption, The (1994)
## 4300                                                                                Right Stuff, The (1983)
## 4301                                                                                    Animal House (1978)
## 4302                                                                                    Shining, The (1980)
## 4303                                                                             Ernest Goes to Camp (1987)
## 4304                                                                                   Bachelor, The (1999)
## 4305                                                                            But Im a Cheerleader (1999)
## 4306                                                                                     Chicken Run (2000)
## 4307                                                                                      Fight Club (1999)
## 4308                                                                                         Kingpin (1996)
## 4309                                                                                     Lake Placid (1999)
## 4310                                                           Romy and Micheles High School Reunion (1997)
## 4311                                                                                       Road Trip (2000)
## 4312                                                                                   Summer of Sam (1999)
## 4313                                                                                Dead Man Walking (1995)
## 4314                                                                            Seven (a.k.a. Se7en) (1995)
## 4315                                                                                    Waynes World (1992)
## 4316                                                                                       Quiz Show (1994)
## 4317                                                                  Ever After: A Cinderella Story (1998)
## 4318                                                                                   Jurassic Park (1993)
## 4319                                                                         American President, The (1995)
## 4320                                                                                 Heart and Souls (1993)
## 4321                                                                                   Patriot Games (1992)
## 4322                                                                             Legends of the Fall (1994)
## 4323                                                                             White Men Cant Jump (1992)
## 4324                                                                          Star Trek: Generations (1994)
## 4325                                                                                            I.Q. (1994)
## 4326                                                                                      Siege, The (1998)
## 4327                                                                                           Mimic (1997)
## 4328                                                                            Nutty Professor, The (1996)
## 4329                                                                                          Eraser (1996)
## 4330                                                                                         Matilda (1996)
## 4331                                                                                    Marvins Room (1996)
## 4332                                                                                       Hard Rain (1998)
## 4333                                                                               Mighty Ducks, The (1992)
## 4334                                                                                 Odd Couple, The (1968)
## 4335                                                                                 Problem Child 2 (1991)
## 4336                                                                            Dude, Wheres My Car? (2000)
## 4337                                                                      O Brother, Where Art Thou? (2000)
## 4338                                                                                   Jurassic Park (1993)
## 4339                                                                                       Cell, The (2000)
## 4340                                                                                     Thunderball (1965)
## 4341                                                                        Godfather: Part III, The (1990)
## 4342                                                                                      Young Guns (1988)
## 4343                                                                        World Is Not Enough, The (1999)
## 4344                                                                                    Falling Down (1993)
## 4345                                                                        Who Framed Roger Rabbit? (1988)
## 4346                                                                      E.T. the Extra-Terrestrial (1982)
## 4347                                                                                        Rain Man (1988)
## 4348                                                                                         Ben-Hur (1959)
## 4349                                                                                       Labyrinth (1986)
## 4350                                                                          NeverEnding Story, The (1984)
## 4351                                                                                          Batman (1989)
## 4352                                                                                        Superman (1978)
## 4353                                                             Star Trek III: The Search for Spock (1984)
## 4354                                                                                      Waterworld (1995)
## 4355                                                             Life Is Beautiful (La Vita è bella) (1997)
## 4356                                                                                    Delicatessen (1991)
## 4357                                                                                           Ghost (1990)
## 4358                                                                                     With Honors (1994)
## 4359                                                                                  Back to School (1986)
## 4360                                                                                           Shaft (2000)
## 4361                                                                                   Boys Dont Cry (1999)
## 4362                                                                                     Taxi Driver (1976)
## 4363                                                                                       Backdraft (1991)
## 4364                                                                       Streetcar Named Desire, A (1951)
## 4365                                           Star Wars: Episode IV - A New Hope (a.k.a. Star Wars) (1977)
## 4366                                                                       Silence of the Lambs, The (1991)
## 4367                                                                                  Godfather, The (1972)
## 4368                                                                               Beverly Hills Cop (1984)
## 4369                                                                                    Out of Sight (1998)
## 4370                                                                                         Network (1976)
## 4371                                                                                   Graduate, The (1967)
## 4372                                                                                Right Stuff, The (1983)
## 4373                                                                                      Goodfellas (1990)
## 4374                                                                              Heavenly Creatures (1994)
## 4375                                                                                 Say Anything... (1989)
## 4376                                                                                         Serpico (1973)
## 4377                                                                                  Sophies Choice (1982)
## 4378                                                                                    Mariachi, El (1992)
## 4379                                                                        Godfather: Part III, The (1990)
## 4380                                                          Star Trek VI: The Undiscovered Country (1991)
## 4381                                                                                        Superman (1978)
## 4382                                                                                    Nick of Time (1995)
## 4383                                                                                         Con Air (1997)
## 4384                                                                                    6th Day, The (2000)
## 4385                                                                                      Death Wish (1974)
## 4386                                                                   Star Trek: The Motion Picture (1979)
## 4387                                                                               Great Escape, The (1963)
## 4388                                                                                         Starman (1984)
## 4389                                                                        Who Framed Roger Rabbit? (1988)
## 4390                                                                              Perfect Storm, The (2000)
## 4391                                                                                Crocodile Dundee (1986)
## 4392                                                                                     Dragonheart (1996)
## 4393                                                                         When Harry Met Sally... (1989)
## 4394                                                                                   High Fidelity (2000)
## 4395                                                                                            Emma (1996)
## 4396                                                                                 Sixteen Candles (1984)
## 4397                                                                            Virgin Suicides, The (1999)
## 4398                                                              Butch Cassidy and the Sundance Kid (1969)
## 4399                                                                              Young Frankenstein (1974)
## 4400                                                                             Terms of Endearment (1983)
## 4401                                                                         When Harry Met Sally... (1989)
## 4402                                                                                         Ed Wood (1994)
## 4403                                                  Everything You Always Wanted to Know About Sex (1972)
## 4404                                           Star Wars: Episode IV - A New Hope (a.k.a. Star Wars) (1977)
## 4405                                                                               Wizard of Oz, The (1939)
## 4406                                                                                  Godfather, The (1972)
## 4407                                                                            Night to Remember, A (1958)
## 4408                                                                                     Matrix, The (1999)
## 4409                                                                                         Ben-Hur (1959)
## 4410                                                                              Cyrano de Bergerac (1990)
## 4411                                                                   Star Trek IV: The Voyage Home (1986)
## 4412                                                                             Romancing the Stone (1984)
## 4413                                                                   Independence Day (a.k.a. ID4) (1996)
## 4414                                                                                        Rocky II (1979)
## 4415                                                                                         Con Air (1997)
## 4416                                                                        Karate Kid Part III, The (1989)
## 4417                                                                                    Time Bandits (1981)
## 4418                                                                                        Fly, The (1986)
## 4419                                                                             Shakespeare in Love (1998)
## 4420                                                                                        Election (1999)
## 4421                                                                                  My Man Godfrey (1936)
## 4422                                                                                       Manhattan (1979)
## 4423                                                         Cinema Paradiso (Nuovo cinema Paradiso) (1989)
## 4424                                                                                   High Fidelity (2000)
## 4425                                                                                  Broadcast News (1987)
## 4426                                                                           Bullets Over Broadway (1994)
## 4427                                                                                   Pleasantville (1998)
## 4428                                                                                      L.A. Story (1991)
## 4429                                                                                    Waynes World (1992)
## 4430                                                                                 Best Laid Plans (1999)
## 4431                                                                        Night of the Living Dead (1968)
## 4432                                                                                    Citizen Kane (1941)
## 4433                                                                   Bridge on the River Kwai, The (1957)
## 4434                                                                                   Belle de jour (1967)
## 4435                                                                                    12 Angry Men (1957)
## 4436                                                                                   Trainspotting (1996)
## 4437                                                                    Jules and Jim (Jules et Jim) (1961)
## 4438                                                                          Miracle on 34th Street (1947)
## 4439                                                                                    Carlitos Way (1993)
## 4440                                                                                      Short Cuts (1993)
## 4441                                                                                Hate (Haine, La) (1995)
## 4442                                                                                         28 Days (2000)
## 4443                                                                                 What Women Want (2000)
## 4444                                                                            Being John Malkovich (1999)
## 4445                                                                                  Boys and Girls (2000)
## 4446                                                                       Shawshank Redemption, The (1994)
## 4447                                                                            Man in the Moon, The (1991)
## 4448                                                                             Princess Bride, The (1987)
## 4449                                                                                     Stand by Me (1986)
## 4450                                                                                 Thelma & Louise (1991)
## 4451                                                       All About My Mother (Todo sobre mi madre) (1999)
## 4452                                                                                        Heathers (1989)
## 4453                                                                                      Sting, The (1973)
## 4454                                                  Microcosmos (Microcosmos: Le peuple de lherbe) (1996)
## 4455                                                                                           X-Men (2000)
## 4456                                                                                  Ice Storm, The (1997)
## 4457                                                                                      Limey, The (1999)
## 4458                                                                               Big Lebowski, The (1998)
## 4459                                                                                  Eyes Wide Shut (1999)
## 4460                                                                              Mask of Zorro, The (1998)
## 4461                                                                                Margarets Museum (1995)
## 4462                                                                                       Gladiator (2000)
## 4463                                                                                         Titanic (1997)
## 4464                                                                          Some Kind of Wonderful (1987)
## 4465                                                                                    Mediterraneo (1991)
## 4466                                                                         Godfather: Part II, The (1974)
## 4467                                                                                          Psycho (1960)
## 4468                                                                                      Goodfellas (1990)
## 4469                                                                           M*A*S*H (a.k.a. MASH) (1970)
## 4470                                                                        In the Heat of the Night (1967)
## 4471                                                                                   Kolya (Kolja) (1996)
## 4472                                                                 Monty Python and the Holy Grail (1975)
## 4473                                                                                    Out of Sight (1998)
## 4474                                                                               Last Emperor, The (1987)
## 4475                                                                                           Titus (1999)
## 4476                                                                               Wizard of Oz, The (1939)
## 4477                                                                                   Donnie Brasco (1997)
## 4478                                                                                        Rain Man (1988)
## 4479                                                                                            Jaws (1975)
## 4480                                                                               Untouchables, The (1987)
## 4481                                                                                     Three Kings (1999)
## 4482                                                                                    Shining, The (1980)
## 4483                                                                             Blues Brothers, The (1980)
## 4484                                                                                   Lethal Weapon (1987)
## 4485                                                                                Some Like It Hot (1959)
## 4486                                                                                     Thunderball (1965)
## 4487                                                                                         Ed Wood (1994)
## 4488                                                                                 Charlies Angels (2000)
## 4489                                                                               L.A. Confidential (1997)
## 4490                                                                            Devils Advocate, The (1997)
## 4491                                                              Butch Cassidy and the Sundance Kid (1969)
## 4492                                                                                        Hoosiers (1986)
## 4493                                                                                    Animal House (1978)
## 4494                                                                         Ferris Buellers Day Off (1986)
## 4495                                                                                Right Stuff, The (1983)
## 4496                                                                                    Total Recall (1990)
## 4497                                                                                           Shine (1996)
## 4498                                                                             Secret of NIMH, The (1982)
## 4499                                                                        Sex, Lies, and Videotape (1989)
## 4500                                                                                       Gladiator (2000)
## 4501                                                                                        Clueless (1995)
## 4502                                                                                    Apostle, The (1997)
## 4503                                                                                   39 Steps, The (1935)
## 4504                                                             Navigator: A Mediaeval Odyssey, The (1988)
## 4505                                                                                    True Romance (1993)
## 4506                                                                                     Chasing Amy (1997)
## 4507                                                                        Who Framed Roger Rabbit? (1988)
## 4508                                                                                        High Art (1998)
## 4509                                                                                       Cape Fear (1991)
## 4510                                                                                      L.A. Story (1991)
## 4511                                                                           In the Company of Men (1997)
## 4512                                                                                           Nixon (1995)
## 4513                                                                                    Little Nicky (2000)
## 4514                                                                                     Chicken Run (2000)
## 4515                                                                                       Gladiator (2000)
## 4516                                                              Dont Tell Mom the Babysitters Dead (1991)
## 4517                                                                               Replacements, The (2000)
## 4518                                                                                        Hideaway (1995)
## 4519                                                                            Beauty and the Beast (1991)
## 4520                                                                              Rugrats Movie, The (1998)
## 4521                                                                                 Raising Arizona (1987)
## 4522                                                                              Do the Right Thing (1989)
## 4523                                                                               Hollywood Shuffle (1987)
## 4524                                                                               Color Purple, The (1985)
## 4525                                                                              Monster Squad, The (1987)
## 4526                                                                     Big Trouble in Little China (1986)
## 4527                                                                                      Hellraiser (1987)
## 4528                                                                                          Misery (1990)
## 4529                                                                                    Urban Legend (1998)
## 4530                                                                                      Relic, The (1997)
## 4531                                                                                      Idle Hands (1999)
## 4532                                                                             Disturbing Behavior (1998)
## 4533                                                           I Still Know What You Did Last Summer (1998)
## 4534                                                                                      Lost Souls (2000)
## 4535                                                                                        Fly, The (1986)
## 4536                                                                                     Phantasm II (1988)
## 4537                                                                                        Cats Eye (1985)
## 4538                                                    Nightmare on Elm Street 3: Dream Warriors, A (1987)
## 4539                                                      Friday the 13th Part IV: The Final Chapter (1984)
## 4540                                                                             Bone Collector, The (1999)
## 4541                                                                                       Firm, The (1993)
## 4542                                                                                             8MM (1999)
## 4543                                                                                       In Dreams (1999)
## 4544                                                                             Breakfast Club, The (1985)
## 4545                                                                                 American Beauty (1999)
## 4546                                                                        Blair Witch Project, The (1999)
## 4547                                                                                          Clerks (1994)
## 4548                                                                  Bridges of Madison County, The (1995)
## 4549                                                                                     Simon Birch (1998)
## 4550                                                                                      Eves Bayou (1997)
## 4551                                                            South Park: Bigger, Longer and Uncut (1999)
## 4552                                                                        Who Framed Roger Rabbit? (1988)
## 4553                                                                               Empire of the Sun (1987)
## 4554                                                                                     Cry Freedom (1987)
## 4555                                                                  How Stella Got Her Groove Back (1998)
## 4556                                                                                  Godfather, The (1972)
## 4557                                                                                    Citizen Kane (1941)
## 4558                                                                               Striking Distance (1993)
## 4559                                                                                           Congo (1995)
## 4560                                                           Romy and Micheles High School Reunion (1997)
## 4561                                                                                       Bowfinger (1999)
## 4562                                                                             White Men Cant Jump (1992)
## 4563                                                                                      Sister Act (1992)
## 4564                                                                            Virgin Suicides, The (1999)
## 4565                                                            Chungking Express (Chóngqìng Senlín) (1994)
## 4566                                                             Life Is Beautiful (La Vita è bella) (1997)
## 4567                                                                                           Fargo (1996)
## 4568                                                                                     Taxi Driver (1976)
## 4569                                                  Star Wars: Episode V - The Empire Strikes Back (1980)
## 4570                                                                               Empire of the Sun (1987)
## 4571                                                                            Being John Malkovich (1999)
## 4572                                                                                          Clerks (1994)
## 4573                                                                                Drugstore Cowboy (1989)
## 4574                                                                                         Amadeus (1984)
## 4575                                                                           Spanish Prisoner, The (1997)
## 4576                                                                                       Baby Boom (1987)
## 4577                                                                             Straight Story, The (1999)
## 4578                                                                                Sixth Sense, The (1999)
## 4579                                                                             Edward Scissorhands (1990)
## 4580                                                                              Living in Oblivion (1995)
## 4581                                                                                    Citizen Ruth (1996)
## 4582                                                                                     Bitter Moon (1992)
## 4583                                                                                    Jackie Brown (1997)
## 4584                                                                                      To Die For (1995)
## 4585                                                                               Starship Troopers (1997)
## 4586                                                                                    Grand Canyon (1991)
## 4587                                                                                       Game, The (1997)
## 4588                                                                                         Exotica (1994)
## 4589                                                                        Star Trek: First Contact (1996)
## 4590                                                                                 Higher Learning (1995)
## 4591                                                                                  Rosemarys Baby (1968)
## 4592                                                        Halloween 4: The Return of Michael Myers (1988)
## 4593                                                                                       Halloween (1978)
## 4594                                                                                 Graveyard Shift (1990)
## 4595                                                                               Exorcist III, The (1990)
## 4596                                                                                         Jumanji (1995)
## 4597                                                                             Fear of a Black Hat (1994)
## 4598                                                                                       Assassins (1995)
## 4599                                                                            Fish Called Wanda, A (1988)
## 4600                                                                                  Apartment, The (1960)
## 4601                                                                                Twin Falls Idaho (1999)
## 4602                                                                          Pee-wees Big Adventure (1985)
## 4603                                                                                        Superman (1978)
## 4604                                                       Star Wars: Episode I - The Phantom Menace (1999)
## 4605                                                                                        Face/Off (1997)
## 4606                                                                                  Primary Colors (1998)
## 4607                                                                                      Logans Run (1976)
## 4608                                                                        Night of the Living Dead (1968)
## 4609                                                                                    American Pie (1999)
## 4610                                                                                        Rounders (1998)
## 4611                                                                           Devil in a Blue Dress (1995)
## 4612                                                                            Deconstructing Harry (1997)
## 4613                                                                                    Analyze This (1999)
## 4614                                                                                 Civil Action, A (1998)
## 4615                     Supercop (Police Story 3: Supercop) (Jing cha gu shi III: Chao ji jing cha) (1992)
## 4616                                                                                      Dreamscape (1984)
## 4617                                                                               American Tail, An (1986)
## 4618                                                                         Remains of the Day, The (1993)
## 4619                            Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb (1964)
## 4620                                                                                    Citizen Kane (1941)
## 4621                                                                        Man with Two Brains, The (1983)
## 4622                                                                                      Die Hard 2 (1990)
## 4623                                                                                      Limey, The (1999)
## 4624                                                                                         Beloved (1998)
## 4625                                                                    Man Who Knew Too Little, The (1997)
## 4626                                                                                    Pretty Woman (1990)
## 4627                                              How the Grinch Stole Christmas (a.k.a. The Grinch) (2000)
## 4628                                                                                        Scream 2 (1997)
## 4629                                                                                    Happy, Texas (1999)
## 4630                                                                        Bedknobs and Broomsticks (1971)
## 4631                                                                          Jewel of the Nile, The (1985)
## 4632                                                                                  Back to School (1986)
## 4633                                                                                          Alien³ (1992)
## 4634                                                                                 Very Bad Things (1998)
## 4635                                                                                        Candyman (1992)
## 4636                                                                                          Grease (1978)
## 4637                                                                              Herbie Rides Again (1974)
## 4638                                                                                 Damien: Omen II (1978)
## 4639                                                                    Teenage Mutant Ninja Turtles (1990)
## 4640                                                                                   Monkey Shines (1988)
## 4641                                                                              Lawnmower Man, The (1992)
## 4642                                                                                      Iron Eagle (1986)
## 4643                                                                                      Hollow Man (2000)
## 4644                                                                              Dead Man on Campus (1998)
## 4645                                                                                     House Party (1990)
## 4646                                                                                      Predator 2 (1990)
## 4647                                                                                       Space Jam (1996)
## 4648                                                                                         Soldier (1998)
## 4649                                                     NeverEnding Story II: The Next Chapter, The (1990)
## 4650                                                                       Island of Dr. Moreau, The (1996)
## 4651                                                      Friday the 13th Part IV: The Final Chapter (1984)
## 4652                                                        Leatherface: Texas Chainsaw Massacre III (1990)
## 4653                                                                  Home Alone 2: Lost in New York (1992)
## 4654                                                                                   Avengers, The (1998)
## 4655                                                                                Double Indemnity (1944)
## 4656                                                                                   Touch of Evil (1958)
## 4657                                                                                         Gattaca (1997)
## 4658                                                                                   Shes All That (1999)
## 4659                                                                                        Rain Man (1988)
## 4660                                                                                      Goodfellas (1990)
## 4661                                                                               Gods and Monsters (1998)
## 4662                                                                                      Dead Again (1991)
## 4663                                                                                    True Romance (1993)
## 4664                                                  Star Wars: Episode V - The Empire Strikes Back (1980)
## 4665                                                                                            Jaws (1975)
## 4666                                                                                        Rushmore (1998)
## 4667                                                                                     Chicken Run (2000)
## 4668                                                                                    Passion Fish (1992)
## 4669                                                                                       Mannequin (1987)
## 4670                                                                          Im Gonna Git You Sucka (1988)
## 4671                                                                                      Gettysburg (1993)
## 4672                                                                       Hunt for Red October, The (1990)
## 4673                                                                                   Mars Attacks! (1996)
## 4674                                                                                      Robin Hood (1973)
## 4675                                                                             Secret of NIMH, The (1982)
## 4676                                                                                 Sleeping Beauty (1959)
## 4677                                                                                        Hercules (1997)
## 4678                                                             American Tail: Fievel Goes West, An (1991)
## 4679                                                                      Great Mouse Detective, The (1986)
## 4680                                                                              Fun and Fancy Free (1947)
## 4681                                                                                   Sid and Nancy (1986)
## 4682                                                                           Devil in a Blue Dress (1995)
## 4683                                                                               Dolores Claiborne (1995)
## 4684                                                                                 Ninth Gate, The (1999)
## 4685                                                                                      Disclosure (1994)
## 4686                                                                                     Lake Placid (1999)
## 4687                                                                 I Know What You Did Last Summer (1997)
## 4688                                                                                      Juror, The (1996)
## 4689                                                                         Speed 2: Cruise Control (1997)
## 4690                                                                                           Hype! (1996)
## 4691                                                                         When Harry Met Sally... (1989)
## 4692                                                                                Jungle Book, The (1967)
## 4693                                                                                  Empire Records (1995)
## 4694                                                                                    Benny & Joon (1993)
## 4695                                                                               Circle of Friends (1995)
## 4696                                                                                    Waynes World (1992)
## 4697                                                                                      Parenthood (1989)
## 4698                                                                              Back to the Future (1985)
## 4699                                                                                    Out of Sight (1998)
## 4700                                                              Butch Cassidy and the Sundance Kid (1969)
## 4701                                                                               Great Escape, The (1963)
## 4702                                                                                  Jakob the Liar (1999)
## 4703                                                                                 Damien: Omen II (1978)
## 4704                                                                               Seventh Sign, The (1988)
## 4705                                                                                       High Noon (1952)
## 4706                                                                                         Rob Roy (1995)
## 4707                                                                                          Fallen (1998)
## 4708                                                                               Terminal Velocity (1994)
## 4709                                                                                 Lethal Weapon 4 (1998)
## 4710                                                                                       King Kong (1976)
## 4711                                                                          Generals Daughter, The (1999)
## 4712                                                                                    Watcher, The (2000)
## 4713                                                                                       Psycho II (1983)
## 4714                                                                                   Graduate, The (1967)
## 4715                                                                              As Good As It Gets (1997)
## 4716                                                      Revenge of the Nerds II: Nerds in Paradise (1987)
## 4717                                                                                        Mermaids (1990)
## 4718                                                                           Shadow of the Vampire (2000)
## 4719                                                                                     Nurse Betty (2000)
## 4720                                                                                 Mission to Mars (2000)
## 4721                                                                                       Bedazzled (2000)
## 4722                                                                                    Benny & Joon (1993)
## 4723                                                                                       Manhunter (1986)
## 4724                                                                              Enemy at the Gates (2001)
## 4725                                                                                            Nell (1994)
## 4726                                                                                   Human Traffic (1999)
## 4727                                                                                            Blow (2001)
## 4728                                                                                 Of Mice and Men (1992)
## 4729                                                                             About Last Night... (1986)
## 4730                                                                             Dr. T and the Women (2000)
## 4731                                                                                          Detour (1945)
## 4732                                                                                          Driven (2001)
## 4733                                                           Pelle the Conqueror (Pelle erobreren) (1987)
## 4734                                                                                       G.I. Jane (1997)
## 4735                                                                                      Piano, The (1993)
## 4736                                                                                       Endurance (1999)
## 4737                                                                                Meet the Parents (2000)
## 4738                                                                                         Traffic (2000)
## 4739                                                                                          Quills (2000)
## 4740                                                                                          Hamlet (2000)
## 4741                                                                                      Red Planet (2000)
## 4742                                                                                    Kingdom Come (2001)
## 4743                                                                               13th Warrior, The (1999)
## 4744                                                           Austin Powers: The Spy Who Shagged Me (1999)
## 4745                                                                                      Fight Club (1999)
## 4746                                                           Romy and Micheles High School Reunion (1997)
## 4747                                                                                     Point Break (1991)
## 4748                                                                                           Shrek (2001)
## 4749                                                                           Tailor of Panama, The (2001)
## 4750                                                                                      Unforgiven (1992)
## 4751                                                                                 American Beauty (1999)
## 4752                                                                                   Arachnophobia (1990)
## 4753                                                                                   Boys Dont Cry (1999)
## 4754                                                                                      Entrapment (1999)
## 4755                                                                                 Iron Giant, The (1999)
## 4756                                                                                  Wild Wild West (1999)
## 4757                                                                       Brave Little Toaster, The (1987)
## 4758                                                                    Hunchback of Notre Dame, The (1996)
## 4759                                                                               American Tail, An (1986)
## 4760                                                                                  Small Soldiers (1998)
## 4761                                                                              Back to the Future (1985)
## 4762                                                                               Tao of Steve, The (2000)
## 4763                                                                          Take the Money and Run (1969)
## 4764                                                                                       True Lies (1994)
## 4765                                                                    Man with the Golden Gun, The (1974)
## 4766                                                                                          Aliens (1986)
## 4767                                                                                     Thunderball (1965)
## 4768                                                                             Blues Brothers, The (1980)
## 4769                                                                                      Die Hard 2 (1990)
## 4770                                                                                          Willow (1988)
## 4771                                                                                      Logans Run (1976)
## 4772                                                                                      Siege, The (1998)
## 4773                                                                                   Air Force One (1997)
## 4774                                                                                 Lethal Weapon 4 (1998)
## 4775                                                                                     Cliffhanger (1993)
## 4776                                                                                       Rocky III (1982)
## 4777                                                                                        Rocky IV (1985)
## 4778                                                                                    Sudden Death (1995)
## 4779                                                                                    Superman III (1983)
## 4780                                                                             Clockwork Orange, A (1971)
## 4781                                                                                              Pi (1998)
## 4782                                                                  Rocky Horror Picture Show, The (1975)
## 4783                                                                                           Mimic (1997)
## 4784                                                                                          Powder (1995)
## 4785                                                                                   Mars Attacks! (1996)
## 4786                                                                                    Animal House (1978)
## 4787                                                                                     Scary Movie (2000)
## 4788                                                                                     Childs Play (1988)
## 4789                                                                 I Know What You Did Last Summer (1997)
## 4790                                                           Halloween: The Curse of Michael Myers (1995)
## 4791                                                Friday the 13th Part VIII: Jason Takes Manhattan (1989)
## 4792                                                                                    Philadelphia (1993)
## 4793                                                                                           Fargo (1996)
## 4794                                                                                        Mermaids (1990)
## 4795                                                                         Ferris Buellers Day Off (1986)
## 4796                                                                            Fish Called Wanda, A (1988)
## 4797                                                                               Muppet Movie, The (1979)
## 4798                                                                                  Cool Hand Luke (1967)
## 4799                                                                                Frighteners, The (1996)
## 4800                                                                                 Heaven Can Wait (1978)
## 4801                                                                                     Wonder Boys (2000)
## 4802                                                                                     Toy Story 2 (1999)
## 4803                                                                                    Moulin Rouge (2001)
## 4804                                                                                       Cast Away (2000)
## 4805                                                                               American Graffiti (1973)
## 4806                                                                                   Mystery Train (1989)
## 4807                                                                                     Down by Law (1986)
## 4808                                                                        Children of a Lesser God (1986)
## 4809                                                                                       Toy Story (1995)
## 4810                                                                                       Leviathan (1989)
## 4811                                                                 Bill & Teds Excellent Adventure (1989)
## 4812                                                                                   Shoot to Kill (1988)
## 4813                                                                    A.I. Artificial Intelligence (2001)
## 4814                                                                                   Jerry Maguire (1996)
## 4815                                                                                          Snatch (2000)
## 4816                                                                                     Cats & Dogs (2001)
## 4817                                                                       Fast and the Furious, The (2001)
## 4818                                                                                Fisher King, The (1991)
## 4819                                                                             Grosse Pointe Blank (1997)
## 4820                                                                                   Space Cowboys (2000)
## 4821                                                                             You Can Count on Me (2000)
## 4822                                                                                 Midnight Cowboy (1969)
## 4823                                                               Final Fantasy: The Spirits Within (2001)
## 4824                                                                                       Bedazzled (2000)
## 4825                                                                                    Santa Sangre (1989)
## 4826                                                                                      Sister Act (1992)
## 4827                                                                               Tao of Steve, The (2000)
## 4828                                                                              American History X (1998)
## 4829                                                                                      Limey, The (1999)
## 4830                                                                                  My Man Godfrey (1936)
## 4831                                                                                        Superman (1978)
## 4832                                                                                        Blue Sky (1994)
## 4833                                                                                     Client, The (1994)
## 4834                                                                       Hunt for Red October, The (1990)
## 4835                                                                                  Kiss the Girls (1997)
## 4836                                                                                  Less Than Zero (1987)
## 4837                                                                            Revenge of the Nerds (1984)
## 4838                                                                                      Thing, The (1982)
## 4839                                                                                 Victor/Victoria (1982)
## 4840                                                                                       Gift, The (2000)
## 4841                                                                              Planet of the Apes (2001)
## 4842                                                                                           Panic (2000)
## 4843                                                                                         Mad Max (1979)
## 4844                                                                                       Dark City (1998)
## 4845                                                                      Terminator 2: Judgment Day (1991)
## 4846                                                                                 Short Circuit 2 (1988)
## 4847                                                                                         Vertigo (1958)
## 4848                                                                                       King Kong (1933)
## 4849                                                                                Dirty Dozen, The (1967)
## 4850                                                                                       Excalibur (1981)
## 4851                                                                                         Top Gun (1986)
## 4852                                                                        Talented Mr. Ripley, The (1999)
## 4853                                                                                       Guinevere (1999)
## 4854                                                                                        Phantoms (1998)
## 4855                                                                         Bastard Out of Carolina (1996)
## 4856                                                                            Seven Year Itch, The (1955)
## 4857                                                                                     Player, The (1992)
## 4858                                                                                    Out of Sight (1998)
## 4859                                                                                   Boogie Nights (1997)
## 4860                                                                                       Guinevere (1999)
## 4861                                                                                     Bob Roberts (1992)
## 4862                                                                                        Clueless (1995)
## 4863                                                                                          Splash (1984)
## 4864                                                                                        Ref, The (1994)
## 4865                                                                     Four Weddings and a Funeral (1994)
## 4866                                                                                  Legally Blonde (2001)
## 4867                                                                                    Waynes World (1992)
## 4868                                                                          Lord of the Rings, The (1978)
## 4869                                                                                   Proof of Life (2000)
## 4870                                                                                          Groove (2000)
## 4871                                                                                         Tootsie (1982)
## 4872                                                                       Shawshank Redemption, The (1994)
## 4873                                                              Red Violin, The (Violon rouge, Le) (1998)
## 4874                                                                                         Ed Wood (1994)
## 4875                                                                                           Bound (1996)
## 4876                                                                                     Childs Play (1988)
## 4877                                                                      Whats Eating Gilbert Grape (1993)
## 4878                                                                                    Animal House (1978)
## 4879                                                                       Drunken Master (Jui kuen) (1978)
## 4880                                                                 Monty Python and the Holy Grail (1975)
## 4881                                                                             Princess Bride, The (1987)
## 4882                                                                               Good Will Hunting (1997)
## 4883                                                                                    Pulp Fiction (1994)
## 4884                                                                             Remember the Titans (2000)
## 4885                                                                                    Best in Show (2000)
## 4886                                                                     Object of My Affection, The (1998)
## 4887                                                               Final Fantasy: The Spirits Within (2001)
## 4888                                                  Star Wars: Episode V - The Empire Strikes Back (1980)
## 4889                                                                                           Alien (1979)
## 4890                                                                            Escape from New York (1981)
## 4891                                                                                   Jurassic Park (1993)
## 4892                                                                                     Deep Impact (1998)
## 4893                                                                                  Demolition Man (1993)
## 4894                                                                                       Coneheads (1993)
## 4895                                                                                        Trekkies (1997)
## 4896                                                                           Devil in a Blue Dress (1995)
## 4897                                                                               Conspiracy Theory (1997)
## 4898                                                                  All Quiet on the Western Front (1930)
## 4899                                                                                 American Beauty (1999)
## 4900                                                                                    Elmer Gantry (1960)
## 4901                                                                                      Fight Club (1999)
## 4902                                                                                    Pretty Woman (1990)
## 4903                                                             Willy Wonka & the Chocolate Factory (1971)
## 4904                                                                             Saving Private Ryan (1998)
## 4905                                                                                       Norma Rae (1979)
## 4906                                                                          Amityville Horror, The (1979)
## 4907                                                                           Whole Nine Yards, The (2000)
## 4908                                                                                   Proof of Life (2000)
## 4909                                                                  Bridges of Madison County, The (1995)
## 4910                                                                                   Fugitive, The (1993)
## 4911                                                                               13th Warrior, The (1999)
## 4912                                                                                 American Beauty (1999)
## 4913                                                                                       Big Daddy (1999)
## 4914                                                                           Bringing Out the Dead (1999)
## 4915                                                                               Final Destination (2000)
## 4916                                                                                 Odd Couple, The (1968)
## 4917                                                                                          Gandhi (1982)
## 4918                                                                  On Her Majestys Secret Service (1969)
## 4919                                                                  Ace Ventura: When Nature Calls (1995)
## 4920                                                                                   Jerry Maguire (1996)
## 4921                                                                                      Fight Club (1999)
## 4922                                                                                      Hollow Man (2000)
## 4923                                                                                Mickey Blue Eyes (1999)
## 4924                                                                                        Predator (1987)
## 4925                                                                           2001: A Space Odyssey (1968)
## 4926                                                                    Absent Minded Professor, The (1961)
## 4927                                                                        Honey, I Shrunk the Kids (1989)
## 4928                                                                                           Bliss (1997)
## 4929                                                                                        Die Hard (1988)
## 4930                                                              Indiana Jones and the Last Crusade (1989)
## 4931                                                                       Last of the Mohicans, The (1992)
## 4932                                                                                          Batman (1989)
## 4933                                                                              Dances with Wolves (1990)
## 4934                                                                      Man Who Would Be King, The (1975)
## 4935                                                                                        Stargate (1994)
## 4936                                                                                         Go Fish (1994)
## 4937                                                                                 Pather Panchali (1955)
## 4938                                                                                         Aladdin (1992)
## 4939                                                                                      Braveheart (1995)
## 4940                                                                                  Godfather, The (1972)
## 4941                                                                         Godfather: Part II, The (1974)
## 4942                                                                 Monty Python and the Holy Grail (1975)
## 4943                                                                             Saving Private Ryan (1998)
## 4944                                                                                       Airplane! (1980)
## 4945                                                                                       Gladiator (2000)
## 4946                                                                                  Reservoir Dogs (1992)
## 4947                                                                                    Patriot, The (2000)
## 4948                                                                           Fighting Seabees, The (1944)
## 4949                                                        Messenger: The Story of Joan of Arc, The (1999)
## 4950                                                                                 In the Army Now (1994)
## 4951                                                                      Born on the Fourth of July (1989)
## 4952                                                                                    McHales Navy (1997)
## 4953                                                                                      Abyss, The (1989)
## 4954                                                                                  Arlington Road (1999)
## 4955                                                                               Down in the Delta (1998)
## 4956                                                                                       Road Trip (2000)
## 4957                                                            South Park: Bigger, Longer and Uncut (1999)
## 4958                                                                        Talented Mr. Ripley, The (1999)
## 4959                                                                                 Schindlers List (1993)
## 4960                                                                                    Forrest Gump (1994)
## 4961                                                                                Army of Darkness (1993)
## 4962                                                                             Princess Bride, The (1987)
## 4963                                                                             In the Line of Fire (1993)
## 4964                                                                                   Jurassic Park (1993)
## 4965                                                                                       Session 9 (2001)
## 4966                                                                                Jeepers Creepers (2001)
## 4967                                                                                     Re-Animator (1985)
## 4968                                                              Henry: Portrait of a Serial Killer (1986)
## 4969                                                                                      Sgt. Bilko (1996)
## 4970                                                                       Secret of Roan Inish, The (1994)
## 4971                                                                                        Bio-Dome (1996)
## 4972                                                               Final Fantasy: The Spirits Within (2001)
## 4973                                                                                      Score, The (2001)
## 4974                                                                              Planet of the Apes (2001)
## 4975                                                                                   Dumb & Dumber (1994)
## 4976                                                                      Die Hard: With a Vengeance (1995)
## 4977                                                                                       Blob, The (1958)
## 4978                                                                                       Toy Story (1995)
## 4979                                                                            Prince of Egypt, The (1998)
## 4980                                                                                  Lion King, The (1994)
## 4981                                                                                          Tarzan (1999)
## 4982                                                                                Steamboat Willie (1928)
## 4983                                                                 Beavis and Butt-Head Do America (1996)
## 4984                                                                                         Yojimbo (1961)
## 4985                                                                                        Dead Man (1995)
## 4986                                                                                      Pale Rider (1985)
## 4987                                                                                    Three Amigos (1986)
## 4988                                                                                       Stalag 17 (1953)
## 4989                                                                                  Paths of Glory (1957)
## 4990                                                                                       Kagemusha (1980)
## 4991                                                                                   Thirteen Days (2000)
## 4992                                                                             Clockwork Orange, A (1971)
## 4993                                                                                        Heathers (1989)
## 4994                                                                                    Total Recall (1990)
## 4995                                                                  Invasion of the Body Snatchers (1956)
## 4996                                                                                     Poltergeist (1982)
## 4997                                                             Cemetery Man (Dellamorte Dellamore) (1994)
## 4998                                                         Mystery Science Theater 3000: The Movie (1996)
## 4999                                                                                     Hidden, The (1987)
## 5000                                                                                  Altered States (1980)
## 5001                                                                                    Time Bandits (1981)
## 5002                                                                                        eXistenZ (1999)
## 5003                                                                      Mad Max Beyond Thunderdome (1985)
## 5004                                                                                  Body Snatchers (1993)
## 5005                                                                                      Armageddon (1998)
## 5006                                                                                Running Man, The (1987)
## 5007                                              Until the End of the World (Bis ans Ende der Welt) (1991)
## 5008                                                    Nightmare on Elm Street 3: Dream Warriors, A (1987)
## 5009                                                                                   Deep Blue Sea (1999)
## 5010                                                                                       Moonraker (1979)
## 5011                                                                                         Runaway (1984)
## 5012                                                                                    Halloween II (1981)
## 5013                                                                              Singin in the Rain (1952)
## 5014                                                                                         Sabrina (1954)
## 5015                                                                                       Notorious (1946)
## 5016                                                                                Fisher King, The (1991)
## 5017                                                                                            Dave (1993)
## 5018                                                                                    Jungle Fever (1991)
## 5019                                                      Oscar and Lucinda (a.k.a. Oscar & Lucinda) (1997)
## 5020                                                                       Purple Rose of Cairo, The (1985)
## 5021                                                                                          Splash (1984)
## 5022                                                                          Much Ado About Nothing (1993)
## 5023                                                Crouching Tiger, Hidden Dragon (Wu hu zang long) (2000)
## 5024                                                                             Message in a Bottle (1999)
## 5025                                                                        Fabulous Baker Boys, The (1989)
## 5026                                                                                Don Juan DeMarco (1995)
## 5027                                                                  Big Blue, The (Grand bleu, Le) (1988)
## 5028                                           Star Wars: Episode IV - A New Hope (a.k.a. Star Wars) (1977)
## 5029                                                                                   Harlem Nights (1989)
## 5030                                                                                Grumpier Old Men (1995)
## 5031                                                                                  Made in Heaven (1987)
## 5032                                                                                      Blind Date (1987)
## 5033                                                                          Jewel of the Nile, The (1985)
## 5034                                                                         Speed 2: Cruise Control (1997)
## 5035                                                                                   Jacobs Ladder (1990)
## 5036                                                                             Usual Suspects, The (1995)
## 5037                                                                                    Pulp Fiction (1994)
## 5038                                                                                           Fargo (1996)
## 5039                                                                               Dog Day Afternoon (1975)
## 5040                                                                             Mississippi Burning (1988)
## 5041                                                                                    Killing, The (1956)
## 5042                                                                             Grosse Pointe Blank (1997)
## 5043                                                                                   Lethal Weapon (1987)
## 5044                                                                                             F/X (1986)
## 5045                                                               Princess Mononoke (Mononoke-hime) (1997)
## 5046                                                                            Arsenic and Old Lace (1944)
## 5047                                                                                      Metropolis (1927)
## 5048                                                                                      True Crime (1999)
## 5049                                                                                Innocent Man, An (1989)
## 5050                                                                                            Clue (1985)
## 5051                                                                                      Underneath (1995)
## 5052                                                                                  Absolute Power (1997)
## 5053                                                                                January Man, The (1989)
## 5054                                                                 I Know What You Did Last Summer (1997)
## 5055                                                                                     Matrix, The (1999)
## 5056                                                                                   High Fidelity (2000)
## 5057                                                                                          Batman (1989)
## 5058                                                                      E.T. the Extra-Terrestrial (1982)
## 5059                                                                                    Office Space (1999)
## 5060                                                                          Little Shop of Horrors (1986)
## 5061                                                                                   Exorcist, The (1973)
## 5062                                                                                         Waxwork (1988)
## 5063                                                     Tales from the Crypt Presents: Demon Knight (1995)
## 5064                                                                                     Phantasm II (1988)
## 5065                                                                                         Parents (1989)
## 5066                                                                    Serpent and the Rainbow, The (1988)
## 5067                                                                              Mummy Returns, The (2001)
## 5068                                                                                 Renaissance Man (1994)
## 5069                                                    Faraway, So Close (In weiter Ferne, so nah!) (1993)
## 5070                                                                                         Network (1976)
## 5071                                                                                    Animal House (1978)
## 5072                                                                                     Being There (1979)
## 5073                                                                               American Graffiti (1973)
## 5074                                                                              Do the Right Thing (1989)
## 5075                                                                                       Tapeheads (1988)
## 5076                                                                    Planes, Trains & Automobiles (1987)
## 5077                                                                                      To Die For (1995)
## 5078                                                                          Im Gonna Git You Sucka (1988)
## 5079                                                                                      Caddyshack (1980)
## 5080                                                           Austin Powers: The Spy Who Shagged Me (1999)
## 5081                                                              Abbott and Costello Meet the Mummy (1955)
## 5082                                                                                Fierce Creatures (1997)
## 5083                                     Adventures of Buckaroo Banzai Across the 8th Dimension, The (1984)
## 5084                                                                                Eddie Murphy Raw (1987)
## 5085                                                                                Boys on the Side (1995)
## 5086                                                                  Fear and Loathing in Las Vegas (1998)
## 5087                                                                    Distinguished Gentleman, The (1992)
## 5088                                                              Dont Tell Mom the Babysitters Dead (1991)
## 5089                                                                              Wrongfully Accused (1998)
## 5090                                                                                             K-9 (1989)
## 5091                                                                                 Couch Trip, The (1988)
## 5092                                                                                      Encino Man (1992)
## 5093                                                                       Silence of the Lambs, The (1991)
## 5094                                                                      Ace Ventura: Pet Detective (1994)
## 5095                                                                               Wizard of Oz, The (1939)
## 5096                                                                                      Waterworld (1995)
## 5097                                                                                       Firm, The (1993)
## 5098                                                                                 Lethal Weapon 4 (1998)
## 5099                                                                                   Fugitive, The (1993)
## 5100                                                                                       Rock, The (1996)
## 5101                                                                                        Predator (1987)
## 5102                                                                                         RoboCop (1987)
## 5103                                                                                    Patriot, The (2000)
## 5104                                                                                     Rush Hour 2 (2001)
## 5105                                                                                  Cable Guy, The (1996)
## 5106                                                                                  Lost Boys, The (1987)
## 5107                                                                               Untouchables, The (1987)
## 5108                                                                                   Arachnophobia (1990)
## 5109                                                                             Shakespeare in Love (1998)
## 5110                                                                                     Chicken Run (2000)
## 5111                                                                          League of Their Own, A (1992)
## 5112                                                                               Elephant Man, The (1980)
## 5113                                                                                       Apollo 13 (1995)
## 5114                                                                                            Nell (1994)
## 5115                                                                  Fear and Loathing in Las Vegas (1998)
## 5116                                                                                        Cocktail (1988)
## 5117                                                           I Still Know What You Did Last Summer (1998)
## 5118                                                                             Clockwork Orange, A (1971)
## 5119                                           Star Wars: Episode IV - A New Hope (a.k.a. Star Wars) (1977)
## 5120                                                                                  Doctor Zhivago (1965)
## 5121                                                                                 West Side Story (1961)
## 5122                                                                                    My Fair Lady (1964)
## 5123                                                                                         Sabrina (1954)
## 5124                                                                         When Harry Met Sally... (1989)
## 5125                                                                             Room with a View, A (1986)
## 5126                                                                                          Clerks (1994)
## 5127                                                                             Maltese Falcon, The (1941)
## 5128                                                                                        Joe Dirt (2001)
## 5129                                                                  Its a Mad, Mad, Mad, Mad World (1963)
## 5130                                                         400 Blows, The (Les Quatre cents coups) (1959)
## 5131                                                                                   Trainspotting (1996)
## 5132                                                                             Reversal of Fortune (1990)
## 5133                                                                          Buddy Holly Story, The (1978)
## 5134                                                       Three Colors: Blue (Trois couleurs: Bleu) (1993)
## 5135                                                              Unbearable Lightness of Being, The (1988)
## 5136                                                                                Running on Empty (1988)
## 5137                                                                                     Howards End (1992)
## 5138                                                                     People vs. Larry Flynt, The (1996)
## 5139                                                                                  Without Limits (1998)
## 5140                                                                                Last Supper, The (1995)
## 5141                                                                                  Eyes Wide Shut (1999)
## 5142                                                                   Tucker: The Man and His Dream (1988)
## 5143                                                                                       My Family (1995)
## 5144                                                                              3 Ninjas Kick Back (1994)
## 5145                                                                  Ace Ventura: When Nature Calls (1995)
## 5146                                                                              Addams Family, The (1991)
## 5147                                                                    Amityville: A New Generation (1993)
## 5148                                                                                       Apt Pupil (1998)
## 5149                                                                          Baby-Sitters Club, The (1995)
## 5150                                                                                   Bad Seed, The (1956)
## 5151                                                                                        Vampires (1998)
## 5152                                                                                  Two Jakes, The (1990)
## 5153                                       Toxic Avenger Part III: The Last Temptation of Toxie, The (1989)
## 5154                                                                      Throw Momma from the Train (1987)
## 5155                                          3 Days of the Condor (a.k.a. Three Days of the Condor) (1975)
## 5156                                                                                         28 Days (2000)
## 5157                                                                      Man Who Fell to Earth, The (1976)
## 5158                                                                                       Cell, The (2000)
## 5159                                                                      Terminator 2: Judgment Day (1991)
## 5160                                                                              Fifth Element, The (1997)
## 5161                                                                                      Titan A.E. (2000)
## 5162                                                                           Hellraiser: Bloodline (1996)
## 5163                                                                                     Judge Dredd (1995)
## 5164                           Highlander III: The Sorcerer (a.k.a. Highlander: The Final Dimension) (1994)
## 5165                                                                               Battlefield Earth (2000)
## 5166                                                                                       Desperado (1995)
## 5167                                                                              Enemy of the State (1998)
## 5168                                                                                    Big Hit, The (1998)
## 5169                                                                                     Under Siege (1992)
## 5170                                                                              Surviving the Game (1994)
## 5171                                                                                     Jackal, The (1997)
## 5172                                                                                    Getaway, The (1994)
## 5173                                                                             Blues Brothers 2000 (1998)
## 5174                                                                     Ghost and the Darkness, The (1996)
## 5175                                                                         My Best Friends Wedding (1997)
## 5176                                                                                  Romeo Must Die (2000)
## 5177                                                                            Sleepless in Seattle (1993)
## 5178                                                                                     Rough Magic (1995)
## 5179                                                                                Addicted to Love (1997)
## 5180                                                                      O Brother, Where Art Thou? (2000)
## 5181                                                                             Grosse Pointe Blank (1997)
## 5182                                                         Midnight in the Garden of Good and Evil (1997)
## 5183                                                                                            Tron (1982)
## 5184                                                                                     Wonder Boys (2000)
## 5185                                                                                 Aristocats, The (1970)
## 5186                                                                         Dirty Rotten Scoundrels (1988)
## 5187                                                                                       Footloose (1984)
## 5188                                                                                      Pocahontas (1995)
## 5189                                                 Iron Monkey (Siunin Wong Fei-hung tsi titmalau) (1993)
## 5190                                                                                      Titan A.E. (2000)
## 5191                                                                                  State and Main (2000)
## 5192                                                                            Bridget Joness Diary (2001)
## 5193                                                                            Teaching Mrs. Tingle (1999)
## 5194                                                                                     Nurse Betty (2000)
## 5195                                                                                      15 Minutes (2001)
## 5196                                                                              Perfect Storm, The (2000)
## 5197                                                                               Replacements, The (2000)
## 5198                                                                                         28 Days (2000)
## 5199                                                                    Kid in King Arthurs Court, A (1995)
## 5200                                                                                         Memento (2000)
## 5201                                                                                       Desperado (1995)
## 5202                                                                              Mask of Zorro, The (1998)
## 5203                                                                              Halls of Montezuma (1950)
## 5204           Harry Potter and the Sorcerers Stone (a.k.a. Harry Potter and the Philosophers Stone) (2001)
## 5205                                                                             Along Came a Spider (2001)
## 5206                                                                                     Serendipity (2001)
## 5207                                                                                Inspector Gadget (1999)
## 5208                                                                       Silence of the Lambs, The (1991)
## 5209                                                           Xiu Xiu: The Sent-Down Girl (Tian yu) (1998)
## 5210                                                                           2001: A Space Odyssey (1968)
## 5211                                                                         Star Trek: Insurrection (1998)
## 5212                                                                        Star Trek: First Contact (1996)
## 5213                                                                                  Monsters, Inc. (2001)
## 5214                                                                              Do the Right Thing (1989)
## 5215                                                                             Princess Bride, The (1987)
## 5216                                                                                    Best in Show (2000)
## 5217                                                                                     Beetlejuice (1988)
## 5218                                                                                         Stripes (1981)
## 5219                                                                          Brighton Beach Memoirs (1986)
## 5220                                                                        Buffy the Vampire Slayer (1992)
## 5221                                                                                Eddie Murphy Raw (1987)
## 5222                                                                                Addicted to Love (1997)
## 5223                                                                                     Jabberwocky (1977)
## 5224                                                                 Bill & Teds Excellent Adventure (1989)
## 5225                                                                       Hedwig and the Angry Inch (2000)
## 5226                                                                              Dangerous Liaisons (1988)
## 5227                                              Lord of the Rings: The Fellowship of the Ring, The (2001)
## 5228                                                                                      Spellbound (1945)
## 5229                                                                                   Runaway Bride (1999)
## 5230                                                                           M*A*S*H (a.k.a. MASH) (1970)
## 5231                                                               Final Fantasy: The Spirits Within (2001)
## 5232                                                           Rosencrantz and Guildenstern Are Dead (1990)
## 5233                                                                               Beautiful Mind, A (2001)
## 5234                                                                            Bridget Joness Diary (2001)
## 5235                                              How the Grinch Stole Christmas (a.k.a. The Grinch) (2000)
## 5236                                                                                         Cousins (1989)
## 5237                                                                                 Another 48 Hrs. (1990)
## 5238                                                                                    Best in Show (2000)
## 5239                                                  Star Wars: Episode V - The Empire Strikes Back (1980)
## 5240                                                                         Godfather: Part II, The (1974)
## 5241                                                                           All the Pretty Horses (2000)
## 5242                                                            Indiana Jones and the Temple of Doom (1984)
## 5243                                                                                            Dune (1984)
## 5244                                                                                  In the Bedroom (2001)
## 5245                                                Crouching Tiger, Hidden Dragon (Wu hu zang long) (2000)
## 5246                                                                                       Girlfight (2000)
## 5247                                                                               Crimes of Passion (1984)
## 5248                                                                                         Traffic (2000)
## 5249                                                                            Virgin Suicides, The (1999)
## 5250                                                                                   Tortilla Soup (2001)
## 5251                                                                                    Pulp Fiction (1994)
## 5252                                                             William Shakespeares Romeo + Juliet (1996)
## 5253                                                                                 Say Anything... (1989)
## 5254                                                                                       Barcelona (1994)
## 5255                                                                                     Wild Orchid (1990)
## 5256                                                                        Riding in Cars with Boys (2001)
## 5257                                                   Devils Backbone, The (El Espinazo del diablo) (2001)
## 5258                                                      Star Wars: Episode VI - Return of the Jedi (1983)
## 5259                                                                                    Accused, The (1988)
## 5260                                                                   Whats Love Got to Do with It? (1993)
## 5261                                                                                   Jurassic Park (1993)
## 5262                                                                                Mulholland Drive (2001)
## 5263                                                                                     Coming Home (1978)
## 5264                                                                                Fatal Attraction (1987)
## 5265                                                                   Independence Day (a.k.a. ID4) (1996)
## 5266                                                                                   Unforgettable (1996)
## 5267                                                            My Life as a Dog (Mitt liv som hund) (1985)
## 5268                                                                                     Night Shift (1982)
## 5269                                                                               Carnival of Souls (1962)
## 5270                                                                                          Psycho (1960)
## 5271                                                                 Monty Python and the Holy Grail (1975)
## 5272                                                                           Home for the Holidays (1995)
## 5273                                                                             Shakespeare in Love (1998)
## 5274                                                                                       Toy Story (1995)
## 5275                                                                                          Clerks (1994)
## 5276                                                                       Desperately Seeking Susan (1985)
## 5277                                                                       Shawshank Redemption, The (1994)
## 5278                                                                              Back to the Future (1985)
## 5279                                                       Star Wars: Episode I - The Phantom Menace (1999)
## 5280                                                                              Weekend at Bernies (1989)
## 5281                                                                 Wallace & Gromit: A Close Shave (1995)
## 5282                                                                       Shawshank Redemption, The (1994)
## 5283                                                                                         Air Bud (1997)
## 5284                                                                                     Pitch Black (2000)
## 5285                                                                               Conversation, The (1974)
## 5286                                                                                        Magnolia (1999)
## 5287                                                                                           Shine (1996)
## 5288                                                                                  St. Elmos Fire (1985)
## 5289                                                                                         Traffic (2000)
## 5290                                                                 Maya Lin: A Strong Clear Vision (1994)
## 5291                                                                                       Omen, The (1976)
## 5292                                                                               Cutting Edge, The (1992)
## 5293                                                                               Wizard of Oz, The (1939)
## 5294                                                                                         Platoon (1986)
## 5295                                                                                           Twins (1988)
## 5296                                                         Burnt by the Sun (Utomlyonnye solntsem) (1994)
## 5297                                                                                   Fugitive, The (1993)
## 5298                                                                                        Red Heat (1988)
## 5299                                                                              Longtime Companion (1990)
## 5300                                                                                Sixth Sense, The (1999)
## 5301                                                                                      Siege, The (1998)
## 5302                                                                                         Memento (2000)
## 5303                                                       All About My Mother (Todo sobre mi madre) (1999)
## 5304                                                                                         Traffic (2000)
## 5305                                                                                        Die Hard (1988)
## 5306                                                                                   Kolya (Kolja) (1996)
## 5307                                                                             Princess Bride, The (1987)
## 5308                                                                                     Men at Work (1990)
## 5309                                                Crouching Tiger, Hidden Dragon (Wu hu zang long) (2000)
## 5310                                                                                           Shrek (2001)
## 5311                                                                                    Men of Honor (2000)
## 5312                                                                       Shawshank Redemption, The (1994)
## 5313                                                                           Whole Nine Yards, The (2000)
## 5314                                                                                 American Beauty (1999)
## 5315                                                                                 Charlies Angels (2000)
## 5316                                                                                         Memento (2000)
## 5317                                                                               L.A. Confidential (1997)
## 5318                                                                                Newton Boys, The (1998)
## 5319                                                                             Ride with the Devil (1999)
## 5320                                                                                    Forrest Gump (1994)
## 5321                                                                                   Patriot Games (1992)
## 5322                                                                             Tomorrow Never Dies (1997)
## 5323                                                                                      Flatliners (1990)
## 5324                                                                                      Mummy, The (1999)
## 5325                                                                                           Blade (1998)
## 5326                                                                                       Desperado (1995)
## 5327                                                                              Executive Decision (1996)
## 5328                                                                             Mission: Impossible (1996)
## 5329                                                                                         Twister (1996)
## 5330                                                                               Starship Troopers (1997)
## 5331                                                                                    Pulp Fiction (1994)
## 5332                                                              Henry: Portrait of a Serial Killer (1986)
## 5333                                                                                     Sling Blade (1996)
## 5334                                                                                            Babe (1995)
## 5335                                                                                     Three Kings (1999)
## 5336                                                                                      Awakenings (1990)
## 5337                                                                                         Rob Roy (1995)
## 5338                                                                                        Swingers (1996)
## 5339                                                                                      Gettysburg (1993)
## 5340                                                                       Last of the Mohicans, The (1992)
## 5341                                                                               Beautiful Mind, A (2001)
## 5342                                                                                  Wild Wild West (1999)
## 5343                                                                                        Scrooged (1988)
## 5344                                                                              Back to the Future (1985)
## 5345                                                                           2001: A Space Odyssey (1968)
## 5346                                                                            Americas Sweethearts (2001)
## 5347                                                           Austin Powers: The Spy Who Shagged Me (1999)
## 5348                                                                        Blair Witch Project, The (1999)
## 5349                                                             Flintstones in Viva Rock Vegas, The (2000)
## 5350                                                                                   Here on Earth (2000)
## 5351                                                                                      Hollow Man (2000)
## 5352                                                                               Jurassic Park III (2001)
## 5353                                                                                   Runaway Bride (1999)
## 5354                                                            South Park: Bigger, Longer and Uncut (1999)
## 5355                                                                                      Titan A.E. (2000)
## 5356                                                                              Behind Enemy Lines (2001)
## 5357                                                                                              54 (1998)
## 5358                                                                                    American Pie (1999)
## 5359                                                                                          Snatch (2000)
## 5360                                                                                      Thing, The (1982)
## 5361                                                                           Village of the Damned (1960)
## 5362                                                                                    Total Recall (1990)
## 5363                                                                                    Tango & Cash (1989)
## 5364                                                                                            Heat (1995)
## 5365                                                                                   Boogie Nights (1997)
## 5366                                                         Midnight in the Garden of Good and Evil (1997)
## 5367                                                                                    Forrest Gump (1994)
## 5368                                                                          Affair to Remember, An (1957)
## 5369                                                                                    Mexican, The (2001)
## 5370                                                                                  Godfather, The (1972)
## 5371                                                                                      Wyatt Earp (1994)
## 5372                                                                                Last Supper, The (1995)
## 5373                                                                               L.A. Confidential (1997)
## 5374                                                                                 American Beauty (1999)
## 5375                                                                                       Toy Story (1995)
## 5376                                                                                    Crimson Tide (1995)
## 5377                                                                                    Bugs Life, A (1998)
## 5378                                                             Ghostbusters (a.k.a. Ghost Busters) (1984)
## 5379                                                                              Dazed and Confused (1993)
## 5380                                                                                      L.A. Story (1991)
## 5381                                                                             Welcome To Sarajevo (1997)
## 5382                                                                             Princess Bride, The (1987)
## 5383                                                                             Shakespeare in Love (1998)
## 5384                                                                                 Raising Arizona (1987)
## 5385                                                                                     Stand by Me (1986)
## 5386                                                                      O Brother, Where Art Thou? (2000)
## 5387                                                                              Dazed and Confused (1993)
## 5388                                                                         Ferris Buellers Day Off (1986)
## 5389                                                                        Blair Witch Project, The (1999)
## 5390                                                                                              Go (1999)
## 5391                                                                        Talented Mr. Ripley, The (1999)
## 5392                                                                                   Summer of Sam (1999)
## 5393                                                                        Thomas Crown Affair, The (1999)
## 5394                                                                                       Cape Fear (1991)
## 5395                                                                           Spanish Prisoner, The (1997)
## 5396                                                                         Ferris Buellers Day Off (1986)
## 5397                                                                              Back to the Future (1985)
## 5398                                                                                   Birdcage, The (1996)
## 5399                                                                                  Evil Dead, The (1981)
## 5400                                                                                Meet the Parents (2000)
## 5401                                                                                          Fletch (1985)
## 5402                                                                                      Braveheart (1995)
## 5403                                                                                     Dirty Harry (1971)
## 5404                                                                                          Aliens (1986)
## 5405                                                                                        Scarface (1983)
## 5406                                                                                 Lethal Weapon 2 (1989)
## 5407                                                                                         Witness (1985)
## 5408                                                                                    Midnight Run (1988)
## 5409                                                                                         Kingpin (1996)
## 5410                                                                                  Godfather, The (1972)
## 5411                                                                                      Goldfinger (1964)
## 5412                                                                                      Braveheart (1995)
## 5413                                                                   Cheech and Chongs Up in Smoke (1978)
## 5414                                                                                        Rat Race (2001)
## 5415                                                                                         Vertigo (1958)
## 5416                                                                                  Basic Instinct (1992)
## 5417                                                                                        Joy Ride (2001)
## 5418                                                                                 Schindlers List (1993)
## 5419                                                                              Christmas Story, A (1983)
## 5420                                                                                Right Stuff, The (1983)
## 5421                                                                               L.A. Confidential (1997)
## 5422                                                                                          Aliens (1986)
## 5423                                                                                  Cool Hand Luke (1967)
## 5424                                                                                        Fearless (1993)
## 5425                                                                        Who Framed Roger Rabbit? (1988)
## 5426                                                                                        Papillon (1973)
## 5427                                                                                         Sleeper (1973)
## 5428                                                                     12 Monkeys (Twelve Monkeys) (1995)
## 5429                         Raiders of the Lost Ark (Indiana Jones and the Raiders of the Lost Ark) (1981)
## 5430                                                                                          Brazil (1985)
## 5431                                                                                    6th Day, The (2000)
## 5432                                                                                    American Pie (1999)
## 5433                                                           Austin Powers: The Spy Who Shagged Me (1999)
## 5434                                                                              Planet of the Apes (2001)
## 5435                                                                                 Waking the Dead (2000)
## 5436                                                Crouching Tiger, Hidden Dragon (Wu hu zang long) (2000)
## 5437                                                                                        Spy Kids (2001)
## 5438                                                                                   Space Cowboys (2000)
## 5439                                                                                             Ali (2001)
## 5440                                                                                        Net, The (1995)
## 5441                                                                             Room with a View, A (1986)
## 5442                                                                                     Stand by Me (1986)
## 5443                                                                     Monty Pythons Life of Brian (1979)
## 5444                                                                     12 Monkeys (Twelve Monkeys) (1995)
## 5445                                                                                 Thelma & Louise (1991)
## 5446                                                                                       Gift, The (2000)
## 5447                                                                                  Lost Boys, The (1987)
## 5448                                                                              Weekend at Bernies (1989)
## 5449                                                              Dont Tell Mom the Babysitters Dead (1991)
## 5450                                                                             Saving Private Ryan (1998)
## 5451                                                                      Terminator 2: Judgment Day (1991)
## 5452                                                                                Wish Upon a Star (1996)
## 5453                                                                          Lords of Flatbush, The (1974)
## 5454                                                        Police Academy 2: Their First Assignment (1985)
## 5455                                                                                         Aladdin (1992)
## 5456                                                       Star Wars: Episode I - The Phantom Menace (1999)
## 5457                                                                                 Schindlers List (1993)
## 5458                                                                    Kandahar (Safar e Ghandehar) (2001)
## 5459                                                                       Desperately Seeking Susan (1985)
## 5460                                                                                         Traffic (2000)
## 5461                                                                                   Almost Famous (2000)
## 5462                                                                              Gone with the Wind (1939)
## 5463                                                                           M*A*S*H (a.k.a. MASH) (1970)
## 5464                                                                                         Sleeper (1973)
## 5465                                                                 Monty Python and the Holy Grail (1975)
## 5466                                                                                    Midnight Run (1988)
## 5467                                                                             Terms of Endearment (1983)
## 5468                                                                                   Atlantic City (1980)
## 5469                                                                                    Natural, The (1984)
## 5470                                                                                          Cookie (1989)
## 5471                                                                                     Poltergeist (1982)
## 5472                                                                     Officer and a Gentleman, An (1982)
## 5473                                                                                    Men of Honor (2000)
## 5474                                                                                  Godfather, The (1972)
## 5475                                                                                          Clerks (1994)
## 5476                                                                              Cyrano de Bergerac (1990)
## 5477                                                                                           Akira (1988)
## 5478                                                                                          Lolita (1962)
## 5479                                                                                 Big Kahuna, The (2000)
## 5480                                                                           Smillas Sense of Snow (1997)
## 5481                                                                                          Ransom (1996)
## 5482                                                                                           Ronin (1998)
## 5483                                                                                     Restoration (1995)
## 5484                                                                            Gingerbread Man, The (1998)
## 5485                                                                                  Waynes World 2 (1993)
## 5486                                                                                         Copycat (1995)
## 5487                                                                                 Double Jeopardy (1999)
## 5488                                                                                      Blown Away (1994)
## 5489                                                                                      Species II (1998)
## 5490                                                                        Godfather: Part III, The (1990)
## 5491                                                             Ghostbusters (a.k.a. Ghost Busters) (1984)
## 5492                                                                                    Training Day (2001)
## 5493                                                                                    Faculty, The (1998)
## 5494                                                                                        Election (1999)
## 5495                                                                                        Rushmore (1998)
## 5496                                                        Thirteen Ghosts (a.k.a. Thir13en Ghosts) (2001)
## 5497                                                                                Dead Man Walking (1995)
## 5498                                                                            Escape from New York (1981)
## 5499                                                                                       Leviathan (1989)
## 5500                                                                      E.T. the Extra-Terrestrial (1982)
## 5501                                                            Indiana Jones and the Temple of Doom (1984)
## 5502                                                                                Dirty Dozen, The (1967)
## 5503                                                                             In the Line of Fire (1993)
## 5504                                                                                         Volcano (1997)
## 5505                                                                                Mulholland Drive (2001)
## 5506                                                                                   Oceans Eleven (2001)
## 5507                                                                                    Total Recall (1990)
## 5508                                                                                   Deep End, The (2001)
## 5509                                                                                        Papillon (1973)
## 5510                                                                      Rambo: First Blood Part II (1985)
## 5511                                                                 To Gillian on Her 37th Birthday (1996)
## 5512                                                                                       Rambo III (1988)
## 5513                                                                                        Net, The (1995)
## 5514                                                                                   Shoot to Kill (1988)
## 5515                                                                Some Folks Call It a Sling Blade (1993)
## 5516                                                                                    Tango & Cash (1989)
## 5517                                                                                     Rear Window (1954)
## 5518                                                                            Its a Wonderful Life (1946)
## 5519                                                                                  Apartment, The (1960)
## 5520                                                              Close Encounters of the Third Kind (1977)
## 5521                                                                                     Raging Bull (1980)
## 5522                                                                                    Mary Poppins (1964)
## 5523                                                                              Lady Vanishes, The (1938)
## 5524                                                                              Young Frankenstein (1974)
## 5525                                                                                      Moonstruck (1987)
## 5526                                                                                   Kiss of Death (1995)
## 5527                                                                                  Two Jakes, The (1990)
## 5528                                                                                 Very Bad Things (1998)
## 5529                                                                                 Sleeping Beauty (1959)
## 5530                                                                 Monty Python and the Holy Grail (1975)
## 5531                                                                                     Dantes Peak (1997)
## 5532                                                                                  Legally Blonde (2001)
## 5533                                                    Children of the Corn II: The Final Sacrifice (1993)
## 5534                                                                                    Gosford Park (2001)
## 5535                                                                                         Frailty (2001)
## 5536                                                                                      Spider-Man (2002)
## 5537                                                                                        Insomnia (2002)
## 5538                                                                                     Vanilla Sky (2001)
## 5539                                                                                         Lantana (2001)
## 5540                                                                                      L.A. Story (1991)
## 5541                                                                                    Waynes World (1992)
## 5542                                                                         My Best Friends Wedding (1997)
## 5543                                                                                  Grumpy Old Men (1993)
## 5544                                                                    Truth About Cats & Dogs, The (1996)
## 5545                                                                                   Stuart Little (1999)
## 5546                                                                                   Fools Rush In (1997)
## 5547                                                                                       Tommy Boy (1995)
## 5548                                                                     Father of the Bride Part II (1995)
## 5549                                                                                      Stay Tuned (1992)
## 5550                                                                                 Black Hawk Down (2001)
## 5551                                                                              Dangerous Liaisons (1988)
## 5552           Harry Potter and the Sorcerers Stone (a.k.a. Harry Potter and the Philosophers Stone) (2001)
## 5553                                                                                    Verdict, The (1982)
## 5554                                                           Cheech & Chongs The Corsican Brothers (1984)
## 5555                                                                      Terminator 2: Judgment Day (1991)
## 5556                                                          Homeward Bound: The Incredible Journey (1993)
## 5557                                                                                         Matilda (1996)
## 5558                                                                                   That Darn Cat (1997)
## 5559                                                                                 Pagemaster, The (1994)
## 5560                                                                              Christmas Story, A (1983)
## 5561                                                                                      Cinderella (1950)
## 5562                                                                               Gullivers Travels (1939)
## 5563                                                                        Night of the Living Dead (1968)
## 5564                                                                                      Hellraiser (1987)
## 5565                                                                                 Ghostbusters II (1989)
## 5566                                                                               Wizard of Oz, The (1939)
## 5567                                                       Star Wars: Episode I - The Phantom Menace (1999)
## 5568                                                                                Running Man, The (1987)
## 5569                                                                                     About a Boy (2002)
## 5570                                                                                        Predator (1987)
## 5571                                                                                   Jerry Maguire (1996)
## 5572                                                                                   Soylent Green (1973)
## 5573                                                                                        Vacation (1983)
## 5574                                                                                   Oceans Eleven (2001)
## 5575                                                                            Being John Malkovich (1999)
## 5576                                                                                       Zoolander (2001)
## 5577                                                                                    Octagon, The (1980)
## 5578                                                                               Finding Forrester (2000)
## 5579                                                                                   Monsters Ball (2001)
## 5580                                                                First Blood (Rambo: First Blood) (1982)
## 5581                                                                                 Black Hawk Down (2001)
## 5582                                                                                 Men in Black II (2002)
## 5583                                                                                 Minority Report (2002)
## 5584                                                                                Oliver & Company (1988)
## 5585                                                                      Back to the Future Part II (1989)
## 5586                                                                     Back to the Future Part III (1990)
## 5587                                                                                    Galaxy Quest (1999)
## 5588                                                                                     Rookie, The (2002)
## 5589                                                                                           Shrek (2001)
## 5590                                                                                  Kate & Leopold (2001)
## 5591                                                                                To Sir with Love (1967)
## 5592                                                                                    Notting Hill (1999)
## 5593                                                                                Scent of a Woman (1992)
## 5594                                                                                         Twister (1996)
## 5595                                                                        Thomas Crown Affair, The (1968)
## 5596                                                                              Great Expectations (1998)
## 5597                                                                               Beautiful Mind, A (2001)
## 5598                                                                         Something to Talk About (1995)
## 5599                                                                                 Erin Brockovich (2000)
## 5600                                                                                          L.I.E. (2001)
## 5601                                                                            For Love of the Game (1999)
## 5602                                                                                     Rookie, The (2002)
## 5603                                                                                        Joy Ride (2001)
## 5604                                                                               13th Warrior, The (1999)
## 5605                                                                                  Legally Blonde (2001)
## 5606                                                                                Saving Silverman (2001)
## 5607                                                                                     Chasing Amy (1997)
## 5608                                                                                    Pearl Harbor (2001)
## 5609                                                                                    Pearl Harbor (2001)
## 5610                                                                                Transporter, The (2002)
## 5611                                                                                Knockaround Guys (2002)
## 5612                                                                                Boys on the Side (1995)
## 5613                                                                                             8MM (1999)
## 5614                                                                               Good Will Hunting (1997)
## 5615                                                                            What Dreams May Come (1998)
## 5616                                                                                      Kalifornia (1993)
## 5617                                                                                      Panic Room (2002)
## 5618                                                    Star Wars: Episode II - Attack of the Clones (2002)
## 5619                                                                          Pokémon the Movie 2000 (2000)
## 5620                                                                    Chopper Chicks in Zombietown (1989)
## 5621                                                                              Behind Enemy Lines (2001)
## 5622                                                                                        Spy Kids (2001)
## 5623                                                                                          Driven (2001)
## 5624                                                                                       Gift, The (2000)
## 5625                                                                                      Hollow Man (2000)
## 5626                                                                                         Solaris (2002)
## 5627                                                                                We Were Soldiers (2002)
## 5628                                                                                     Shallow Hal (2001)
## 5629                                                                                     Scary Movie (2000)
## 5630                                                                             Mississippi Burning (1988)
## 5631                                                                       Six Degrees of Separation (1993)
## 5632                                                                               Battlefield Earth (2000)
## 5633                                                                                     Exit Wounds (2001)
## 5634                                                                                      True Crime (1999)
## 5635                                                                                    Watcher, The (2000)
## 5636                                                                                   Bad Influence (1990)
## 5637                                                                                      L.A. Story (1991)
## 5638                                                                                         Memento (2000)
## 5639                                                                                   Vampires Kiss (1989)
## 5640                                                                                       From Hell (2001)
## 5641                                                                                         Lantana (2001)
## 5642                                                                                 Dont Say a Word (2001)
## 5643                                                                                         Traffic (2000)
## 5644                                                                             Rules of Engagement (2000)
## 5645                                                                                           Crumb (1994)
## 5646                                                                              Jackass: The Movie (2002)
## 5647                                                          Lord of the Rings: The Two Towers, The (2002)
## 5648                                                                                           Alien (1979)
## 5649                                                                 American Werewolf in London, An (1981)
## 5650                                                                                          Scream (1996)
## 5651                                                                                     Deliverance (1972)
## 5652                                                                                     Sling Blade (1996)
## 5653                                                                       Femme Nikita, La (Nikita) (1990)
## 5654                                                                                         Sleeper (1973)
## 5655                                                         Burnt by the Sun (Utomlyonnye solntsem) (1994)
## 5656                                                                                     Rivers Edge (1986)
## 5657                                                                                     Dirty Harry (1971)
## 5658                                                                                   Oceans Eleven (2001)
## 5659                                                                                     Matrix, The (1999)
## 5660                                                                                 Erin Brockovich (2000)
## 5661                                                                             Terms of Endearment (1983)
## 5662                                                                       Last American Virgin, The (1982)
## 5663                                                                               Dennis the Menace (1993)
## 5664                                                                                   Monsters Ball (2001)
## 5665                                                                             Glengarry Glen Ross (1992)
## 5666                                                                                Band of the Hand (1986)
## 5667                                                                               Untouchables, The (1987)
## 5668                                                                            Night to Remember, A (1958)
## 5669                                                                                        Rocky II (1979)
## 5670                                                                              Behind Enemy Lines (2001)
## 5671                                                                                       Breakdown (1997)
## 5672                                                          Lord of the Rings: The Two Towers, The (2002)
## 5673                                                                                  Lets Get Harry (1986)
## 5674                                                                         Ferris Buellers Day Off (1986)
## 5675                                                                                  Risky Business (1983)
## 5676                                                                                      Stir Crazy (1980)
## 5677                                                                                        Mallrats (1995)
## 5678                                                                                   Reality Bites (1994)
## 5679                                                                                  Empire Records (1995)
## 5680                                                                            Revenge of the Nerds (1984)
## 5681                                                                                          Arthur (1981)
## 5682                                                                           War of the Roses, The (1989)
## 5683                                                                         Airplane II: The Sequel (1982)
## 5684                                                                                       Flashback (1990)
## 5685                                                                         8 Heads in a Duffel Bag (1997)
## 5686                                                                                 Man on the Moon (1999)
## 5687                                                                                      Bubble Boy (2001)
## 5688                                                                                          8 Mile (2002)
## 5689                                                                             Blues Brothers, The (1980)
## 5690                                                                                     Bob Roberts (1992)
## 5691                                                         Cinema Paradiso (Nuovo cinema Paradiso) (1989)
## 5692                                                                              North by Northwest (1959)
## 5693                                                                                Body of Evidence (1993)
## 5694                                                                                    Spring Break (1983)
## 5695                                                                                    Halloween II (1981)
## 5696                                                                               View to a Kill, A (1985)
## 5697                                                                                        Scanners (1981)
## 5698                                                                              For Your Eyes Only (1981)
## 5699                                                                                       Elizabeth (1998)
## 5700                                                                                 Heaven Can Wait (1978)
## 5701                                                                                     Jagged Edge (1985)
## 5702                                                                            Prince of Tides, The (1991)
## 5703                                                                                       City Hall (1996)
## 5704                                                                             Rules of Engagement (2000)
## 5705                                                                                        Cats Eye (1985)
## 5706                                                                                     Ghost Story (1981)
## 5707                                                                                    One Good Cop (1991)
## 5708                                                                               Conversation, The (1974)
## 5709                                                                                   High Fidelity (2000)
## 5710                                                                            Bourne Identity, The (2002)
## 5711                                                                    World According to Garp, The (1982)
## 5712                                                                                       Born Free (1966)
## 5713                                             Like Water for Chocolate (Como agua para chocolate) (1992)
## 5714                                                                                      Serial Mom (1994)
## 5715                                                                     Witness for the Prosecution (1957)
## 5716                                                                                    Blade Runner (1982)
## 5717                                                                                 Field of Dreams (1989)
## 5718                                                                               Menace II Society (1993)
## 5719                                                                       Hunt for Red October, The (1990)
## 5720                                                                                          Clerks (1994)
## 5721                                                                                     Hoop Dreams (1994)
## 5722                                                                                  Godfather, The (1972)
## 5723                                                                         Godfather: Part II, The (1974)
## 5724                                                                 Monty Python and the Holy Grail (1975)
## 5725                                                            Chungking Express (Chóngqìng Senlín) (1994)
## 5726                                                      Star Wars: Episode VI - Return of the Jedi (1983)
## 5727                                                                                         Traffic (2000)
## 5728                                                                             Alien: Resurrection (1997)
## 5729                                                                            Seven (a.k.a. Se7en) (1995)
## 5730                                                                     Dragon: The Bruce Lee Story (1993)
## 5731                                                                                    Lost Highway (1997)
## 5732                                                                      Ace Ventura: Pet Detective (1994)
## 5733                                                                                 Schindlers List (1993)
## 5734                                                                                  Godfather, The (1972)
## 5735                                                                  One Flew Over the Cuckoos Nest (1975)
## 5736                                                                             From Dusk Till Dawn (1996)
## 5737                                                                        Who Framed Roger Rabbit? (1988)
## 5738                                                                                     Taxi Driver (1976)
## 5739                                                                                        Die Hard (1988)
## 5740                                                                   Road Warrior, The (Mad Max 2) (1981)
## 5741                                                                                            Heat (1995)
## 5742                                                                                   Jurassic Park (1993)
## 5743                                                                                     Next Friday (2000)
## 5744                                                                                          Clerks (1994)
## 5745                                                                                      Hours, The (2002)
## 5746                                                                                 Erin Brockovich (2000)
## 5747                                                                       Hedwig and the Angry Inch (2000)
## 5748                                                                                     Wonder Boys (2000)
## 5749                                                                                 Family Man, The (2000)
## 5750                                                                                           Fargo (1996)
## 5751                                                                             In the Line of Fire (1993)
## 5752                                                                                    Sandlot, The (1993)
## 5753                                                                                    Forrest Gump (1994)
## 5754                                                                                          Grease (1978)
## 5755                                                                                Sixth Sense, The (1999)
## 5756                                                Crouching Tiger, Hidden Dragon (Wu hu zang long) (2000)
## 5757                         Raiders of the Lost Ark (Indiana Jones and the Raiders of the Lost Ark) (1981)
## 5758                                                                                            Jaws (1975)
## 5759                                                                                    Disorderlies (1987)
## 5760                                                                  One Flew Over the Cuckoos Nest (1975)
## 5761                                                                                      Booty Call (1997)
## 5762                                                                                 Man on the Moon (1999)
## 5763                                                                   Whats Love Got to Do with It? (1993)
## 5764                                                                                 Negotiator, The (1998)
## 5765                                                                               Untouchables, The (1987)
## 5766                                                                                 Johnny Mnemonic (1995)
## 5767                                                                             Saving Private Ryan (1998)
## 5768                                                                                           Alien (1979)
## 5769                                                                      Terminator 2: Judgment Day (1991)
## 5770                                                                              Sweet Home Alabama (2002)
## 5771                                                                      Ace Ventura: Pet Detective (1994)
## 5772                                                                                       Cast Away (2000)
## 5773                                                                                   Scary Movie 2 (2001)
## 5774                                                                              Dances with Wolves (1990)
## 5775                                                                               Leaving Las Vegas (1995)
## 5776                                                                                      Annie Hall (1977)
## 5777                                                                                       Gladiator (2000)
## 5778                                                                                Sixth Sense, The (1999)
## 5779                                                                            Its a Wonderful Life (1946)
## 5780                                                                             Save the Last Dance (2001)
## 5781                                                                                 Midnight Cowboy (1969)
## 5782                                                                                     Brown Sugar (2002)
## 5783                                                                                     Coyote Ugly (2000)
## 5784                                                                                    Galaxy Quest (1999)
## 5785                                                              1984 (a.k.a. Nineteen Eighty-Four) (1984)
## 5786                                                                                           Shrek (2001)
## 5787                                                                                    Gosford Park (2001)
## 5788                                                                            Seven Years in Tibet (1997)
## 5789                                                                                            Made (2001)
## 5790                                                                       Shawshank Redemption, The (1994)
## 5791                                                                                  Secrets & Lies (1996)
## 5792                                                                      Whats Eating Gilbert Grape (1993)
## 5793                                                                                          Kundun (1997)
## 5794                                                                                   Weird Science (1985)
## 5795                                                                                            Toys (1992)
## 5796                                                                                     Dantes Peak (1997)
## 5797                                                                                     Audrey Rose (1977)
## 5798                                                                                         Wendigo (2001)
## 5799                                                                    So I Married an Axe Murderer (1993)
## 5800                                                                                   Untamed Heart (1993)
## 5801                                                                                        Stigmata (1999)
## 5802                                                                                     Cliffhanger (1993)
## 5803                                                                       Desperately Seeking Susan (1985)
## 5804                                                                         Man Without a Face, The (1993)
## 5805                                                      Star Wars: Episode VI - Return of the Jedi (1983)
## 5806                                                                               Kramer Vs. Kramer (1979)
## 5807                                                                        Godfather: Part III, The (1990)
## 5808                                                                              Back to the Future (1985)
## 5809                                                                              8 Women (8 femmes) (2002)
## 5810                                                                                      Metropolis (1927)
## 5811                                                                               Maid in Manhattan (2002)
## 5812                                                               Shall We Dance? (Shall We Dansu?) (1996)
## 5813                                                    Amelie (Fabuleux destin dAmélie Poulain, Le) (2001)
## 5814                                                                                 Monsoon Wedding (2001)
## 5815                                                                                        Clueless (1995)
## 5816                                                                                   Jerry Maguire (1996)
## 5817                                                                                Punch-Drunk Love (2002)
## 5818                                                                                            Emma (1996)
## 5819                                                                                    Mystic Pizza (1988)
## 5820                                                                               Great Escape, The (1963)
## 5821                                                                                          Psycho (1960)
## 5822                                            Keep the River on Your Right: A Modern Cannibal Tale (2000)
## 5823                                                               Shall We Dance? (Shall We Dansu?) (1996)
## 5824                                           Raise the Red Lantern (Da hong deng long gao gao gua) (1991)
## 5825                                                                                       Chinatown (1974)
## 5826                                                                    Talk to Her (Hable con Ella) (2002)
## 5827                                                                                      Sting, The (1973)
## 5828                                                                       Run Lola Run (Lola rennt) (1998)
## 5829                                                                                      Fight Club (1999)
## 5830                                                                       Run Lola Run (Lola rennt) (1998)
## 5831                                    Princess and the Warrior, The (Der Krieger und die Kaiserin) (2000)
## 5832                                                        Thirteen Ghosts (a.k.a. Thir13en Ghosts) (2001)
## 5833                                                                                    Postman, The (1997)
## 5834                                                                     Muppet Christmas Carol, The (1992)
## 5835                                                                                 American Beauty (1999)
## 5836                                                                                      Beach, The (2000)
## 5837                                                                                    Bugs Life, A (1998)
## 5838                                                                                  Eyes Wide Shut (1999)
## 5839                                                                                      Hollow Man (2000)
## 5840                                                                            Me, Myself and Irene (2000)
## 5841                                                                                     Mystery Men (1999)
## 5842                                                                                         Payback (1999)
## 5843                                                                                        Scream 3 (2000)
## 5844                                                                                  Stir of Echoes (1999)
## 5845                                                                               What Lies Beneath (2000)
## 5846                                                                                           X-Men (2000)
## 5847                                                                              Enemy at the Gates (2001)
## 5848                                                                              Husbands and Wives (1992)
## 5849                                                                         When Harry Met Sally... (1989)
## 5850                                                                                   High Fidelity (2000)
## 5851                                                                              This Is Spinal Tap (1984)
## 5852                                                                     Theres Something About Mary (1998)
## 5853                                                                                    Waynes World (1992)
## 5854                                                                    World According to Garp, The (1982)
## 5855                                                                             Wedding Singer, The (1998)
## 5856                                                                   Kids in the Hall: Brain Candy (1996)
## 5857                                                                                          Batman (1989)
## 5858                                                                                     Rear Window (1954)
## 5859                                                                Importance of Being Earnest, The (2002)
## 5860                                                                                   Jurassic Park (1993)
## 5861                                                                                 Schindlers List (1993)
## 5862                                                                                  House of Games (1987)
## 5863                                                                           To Kill a Mockingbird (1962)
## 5864                                                                              Twelve OClock High (1949)
## 5865                                                                                       Chinatown (1974)
## 5866                                                                                Double Indemnity (1944)
## 5867                                                                                           Alien (1979)
## 5868                                                                    Mr. Smith Goes to Washington (1939)
## 5869                                                                                    Shining, The (1980)
## 5870                                                                                           Fargo (1996)
## 5871                                                                                           Bambi (1942)
## 5872                                                                                   Seven Chances (1925)
## 5873                                                                 Wallace & Gromit: A Close Shave (1995)
## 5874                                                                                   Graduate, The (1967)
## 5875                                                                               American Graffiti (1973)
## 5876                                                                   Bridge on the River Kwai, The (1957)
## 5877                                                                                         Titanic (1997)
## 5878                                                  Star Wars: Episode V - The Empire Strikes Back (1980)
## 5879                                                                        Who Framed Roger Rabbit? (1988)
## 5880                                                                              Driving Miss Daisy (1989)
## 5881                                                                                 Monsoon Wedding (2001)
## 5882                                                                                          Brazil (1985)
## 5883                                                      Star Wars: Episode VI - Return of the Jedi (1983)
## 5884                                                                             Princess Bride, The (1987)
## 5885                                                                                         Twister (1996)
## 5886                                                                                       Secretary (2002)
## 5887                                                                                   Into the West (1992)
## 5888                                                                              Singin in the Rain (1952)
## 5889                                                                                To Sir with Love (1967)
## 5890                                                                                         Topkapi (1964)
## 5891                                                                                Dirty Dozen, The (1967)
## 5892                                                                               Color Purple, The (1985)
## 5893                                                                               Great Escape, The (1963)
## 5894                                                                                      Braveheart (1995)
## 5895                                                                               Maximum Overdrive (1986)
## 5896                                                                                      Goodfellas (1990)
## 5897                                                                         Wet Hot American Summer (2001)
## 5898                                                                                  Slaughterhouse (1987)
## 5899                                                                                     Spanish Fly (1998)
## 5900                                                                             Places in the Heart (1984)
## 5901                                                                                         Michael (1996)
## 5902                                                         Adventures of Rocky and Bullwinkle, The (2000)
## 5903                                                                                     Boiler Room (2000)
## 5904                                                             Ghostbusters (a.k.a. Ghost Busters) (1984)
## 5905                                                                                     Animal, The (2001)
## 5906                                                                                   Little Buddha (1993)
## 5907                                                                                        Get Real (1998)
## 5908                                                            Two or Three Things I Know About Her (1966)
## 5909                                                                                     City Lights (1931)
## 5910                                                                         Remains of the Day, The (1993)
## 5911                                                                                         Sleeper (1973)
## 5912                                                                                Some Mothers Son (1996)
## 5913                                                                                   Boys Dont Cry (1999)
## 5914                                                                                    Verdict, The (1982)
## 5915                                                                              Heavenly Creatures (1994)
## 5916                                                                                        Croupier (1998)
## 5917                                                                                Scent of a Woman (1992)
## 5918                                                                             Terms of Endearment (1983)
## 5919                                                                                     Matrix, The (1999)
## 5920                                                                                  Contender, The (2000)
## 5921                                                                                 My Cousin Vinny (1992)
## 5922                                                                              Fifth Element, The (1997)
## 5923                                                                                 Full Monty, The (1997)
## 5924                                                                                 Minority Report (2002)
## 5925                               With a Friend Like Harry... (Harry, un ami qui vous veut du bien) (2000)
## 5926                                                                                  One True Thing (1998)
## 5927                                                                                            Antz (1998)
## 5928                                                                            Next Stop Wonderland (1998)
## 5929                                                                                    Return to Oz (1985)
## 5930                                                                               Starship Troopers (1997)
## 5931                                                                                       No Escape (1994)
## 5932                                                                                 Johnny Mnemonic (1995)
## 5933                                                                                Escape from L.A. (1996)
## 5934                                                                                            Dave (1993)
## 5935                                                                      10 Things I Hate About You (1999)
## 5936                                                                                            Emma (1996)
## 5937                                                                               Terminal Velocity (1994)
## 5938                                                                          It Could Happen to You (1994)
## 5939                                                                                       Threesome (1994)
## 5940                                                                                    One Fine Day (1996)
## 5941                                                                                          Legend (1985)
## 5942                                                                                  Bodyguard, The (1992)
## 5943                                                                                       Her Alibi (1989)
## 5944                                                                                       Ring, The (2002)
## 5945                                                                                          Carrie (1976)
## 5946                                                                                       Labyrinth (1986)
## 5947                                                                                     Tuxedo, The (2002)
## 5948                                                                                      Predator 2 (1990)
## 5949                                                                                Mickey Blue Eyes (1999)
## 5950                                                         Sesame Street Presents Follow That Bird (1985)
## 5951                                                                           To Kill a Mockingbird (1962)
## 5952                                                                             Waiting for Guffman (1996)
## 5953                                                                                       Dark City (1998)
## 5954                                                                                 Family Man, The (2000)
## 5955                                                                                        Anaconda (1997)
## 5956                                                             Rumble in the Bronx (Hont faan kui) (1995)
## 5957                                                         Grave of the Fireflies (Hotaru no haka) (1988)
## 5958                                                                                    Chamber, The (1996)
## 5959                                                                                 Very Bad Things (1998)
## 5960                                                                                        Scream 2 (1997)
## 5961                                                                                         Gattaca (1997)
## 5962                                                                                    Men in Black (1997)
## 5963                                                                                  Apocalypse Now (1979)
## 5964                                            Adventures of Milo and Otis, The (Koneko monogatari) (1986)
## 5965                                                                            2 Days in the Valley (1996)
## 5966                                                                                         Amadeus (1984)
## 5967                                                                  Fear and Loathing in Las Vegas (1998)
## 5968                                                                                       Evolution (2001)
## 5969                                                      Star Wars: Episode VI - Return of the Jedi (1983)
## 5970                                                                     Slums of Beverly Hills, The (1998)
## 5971                                                                                X2: X-Men United (2003)
## 5972                                                                                X2: X-Men United (2003)
## 5973                                                                                           Mulan (1998)
## 5974                                                                 Wallace & Gromit: A Close Shave (1995)
## 5975                                                                                       Pinocchio (1940)
## 5976                                                                          Road to El Dorado, The (2000)
## 5977                                                                                       Space Jam (1996)
## 5978                                                              Close Encounters of the Third Kind (1977)
## 5979                                                                                   City Slickers (1991)
## 5980                                                                                       Secretary (2002)
## 5981                                                                             Father of the Bride (1950)
## 5982                                                                                     About a Boy (2002)
## 5983                                                                              Better Off Dead... (1985)
## 5984                                                                         Ferris Buellers Day Off (1986)
## 5985                                                                             Grosse Pointe Blank (1997)
## 5986                                                                                   Oceans Eleven (2001)
## 5987                                                                                Sixth Sense, The (1999)
## 5988                                                                                         Platoon (1986)
## 5989                                                                                     Beetlejuice (1988)
## 5990                                                                                  Lion King, The (1994)
## 5991                                                                                       Game, The (1997)
## 5992                                                                                Italian Job, The (2003)
## 5993                                                                              Rabbit-Proof Fence (2002)
## 5994                                                                                      Possession (2002)
## 5995                                                                                            Hulk (2003)
## 5996                                                                                  One Hour Photo (2002)
## 5997                                                                                 Black Hawk Down (2001)
## 5998                                                         Harry Potter and the Chamber of Secrets (2002)
## 5999                                                                                       Secretary (2002)
## 6000                                                                                           Alien (1979)
## 6001                                                                                           Blade (1998)
## 6002                                                                               Seven Days in May (1964)
## 6003                                                                                   Meet John Doe (1941)
## 6004                                                               Ghost Dog: The Way of the Samurai (1999)
## 6005                                                                                   Swimming Pool (2003)
## 6006                                                                                 Monsoon Wedding (2001)
## 6007                                                                                       Cast Away (2000)
## 6008                                                                                      Adaptation (2002)
## 6009                                                                                         Ice Age (2002)
## 6010                                                                                    Recruit, The (2003)
## 6011                                                                               Beautiful Mind, A (2001)
## 6012                                                                                        Dead Man (1995)
## 6013                                                                        Man Who Wasnt There, The (2001)
## 6014                                                                                   Orange County (2002)
## 6015                                                                             Intolerable Cruelty (2003)
## 6016                                                         And Your Mother Too (Y tu mamá también) (2001)
## 6017                                                                                     Ghost World (2001)
## 6018                                                                              Do the Right Thing (1989)
## 6019                                                                                     Blue Velvet (1986)
## 6020                                                 Master and Commander: The Far Side of the World (2003)
## 6021                                                                         Matrix Revolutions, The (2003)
## 6022                                                                                     Entity, The (1981)
## 6023                                                                Importance of Being Earnest, The (2002)
## 6024                                                                            Sleepless in Seattle (1993)
## 6025                                                            Indiana Jones and the Temple of Doom (1984)
## 6026                                                                             Lost in Translation (2003)
## 6027                                                                My Life in Pink (Ma vie en rose) (1997)
## 6028                                                                                 Brothers Keeper (1992)
## 6029                                                                    Mostly Martha (Bella Martha) (2001)
## 6030                                                                         Remains of the Day, The (1993)
## 6031                                                   Devils Backbone, The (El Espinazo del diablo) (2001)
## 6032                                                                               Indecent Proposal (1993)
## 6033                                                                                      Panic Room (2002)
## 6034                                                                    Looney Tunes: Back in Action (2003)
## 6035                                                                 Monty Python and the Holy Grail (1975)
## 6036                                                                        Clear and Present Danger (1994)
## 6037                                                                             Color of Money, The (1986)
## 6038                                                           Austin Powers: The Spy Who Shagged Me (1999)
## 6039                                                                                             Elf (2003)
## 6040                                                                             Shot in the Dark, A (1964)
## 6041                                            Aguirre: The Wrath of God (Aguirre, der Zorn Gottes) (1972)
## 6042                                                                                          Psycho (1960)
## 6043                                                                                           Ikiru (1952)
## 6044                                                                             Maltese Falcon, The (1941)
## 6045                                                                                         Vertigo (1958)
## 6046                                                                                               M (1931)
## 6047                                                                            Strangers on a Train (1951)
## 6048                                                                                      Cool World (1992)
## 6049                                                                                     Chicken Run (2000)
## 6050                                                                                 Raising Arizona (1987)
## 6051                                                                                   Alex and Emma (2003)
## 6052                                                                            I Capture the Castle (2003)
## 6053                                                          Lord of the Rings: The Two Towers, The (2002)
## 6054                                                                                       Love Liza (2002)
## 6055                                                                                     Black Widow (1987)
## 6056                                                                                    Pulp Fiction (1994)
## 6057                                                                                    Forrest Gump (1994)
## 6058                                                                                       Firm, The (1993)
## 6059                                                                                      Home Alone (1990)
## 6060                                                                                Flintstones, The (1994)
## 6061                                                                                      Saint, The (1997)
## 6062                                                                                     Mystery Men (1999)
## 6063                                                                                    Analyze This (1999)
## 6064                                                                                      Awakenings (1990)
## 6065                                                                        Buffy the Vampire Slayer (1992)
## 6066                                                                                         Singles (1992)
## 6067                                                                                        Heathers (1989)
## 6068                                                                                          Elling (2001)
## 6069                                                                          Fox and the Hound, The (1981)
## 6070                                                                                      Highlander (1986)
## 6071                                                                                 Negotiator, The (1998)
## 6072                                                                             Room with a View, A (1986)
## 6073                                                                                   Shooting Fish (1997)
## 6074                                                                         When Harry Met Sally... (1989)
## 6075                                                                             Bone Collector, The (1999)
## 6076                                                                               Color Purple, The (1985)
## 6077                                                                                         48 Hrs. (1982)
## 6078                                                                                            Bean (1997)
## 6079                                                                                  Apocalypse Now (1979)
## 6080                                                                                       Cape Fear (1991)
## 6081                                                                                        Chocolat (2000)
## 6082                                                                                        Godzilla (1998)
## 6083                                                                                    Legal Eagles (1986)
## 6084                                                                                 Friday the 13th (1980)
## 6085                                                                        Hotel New Hampshire, The (1984)
## 6086                                                                 American Werewolf in London, An (1981)
## 6087                                                                                   High Fidelity (2000)
## 6088                                                                             Catch Me If You Can (2002)
## 6089                                                                             Conan the Barbarian (1982)
## 6090                                                                             Room with a View, A (1986)
## 6091                                                                             Armed and Dangerous (1986)
## 6092                                                                             Black Cauldron, The (1985)
## 6093                                                                                     Bob Roberts (1992)
## 6094                                                                                        In & Out (1997)
## 6095                                                                               Prelude to a Kiss (1992)
## 6096                                                                             Fireworks (Hana-bi) (1997)
## 6097                                                                         Remains of the Day, The (1993)
## 6098                                                                                      Braveheart (1995)
## 6099                                                                                        Fly, The (1986)
## 6100                                                                                      Die Hard 2 (1990)
## 6101                                                                                      Flatliners (1990)
## 6102                                                                            Saturday Night Fever (1977)
## 6103                                                                                      Cat People (1982)
## 6104                                                                                     Client, The (1994)
## 6105                                                                                   Goodbye Lover (1999)
## 6106                                                                                  Secrets & Lies (1996)
## 6107                                                                                   Vampires Kiss (1989)
## 6108                                                                            Bourne Identity, The (2002)
## 6109                                                                               Casualties of War (1989)
## 6110                                                                               Conversation, The (1974)
## 6111                                                                        In the Heat of the Night (1967)
## 6112                                                                                  Kate & Leopold (2001)
## 6113                                                                                    Midnight Run (1988)
## 6114                                                   Spirited Away (Sen to Chihiro no kamikakushi) (2001)
## 6115                                                                       Man in the Iron Mask, The (1998)
## 6116                                                                                     About a Boy (2002)
## 6117                                                                           Brimstone and Treacle (1982)
## 6118                                                                                       Curly Sue (1991)
## 6119                                                                               Great Gatsby, The (1974)
## 6120                                                               Lock, Stock & Two Smoking Barrels (1998)
## 6121                                                               Monty Pythons The Meaning of Life (1983)
## 6122                                                                                      Moonstruck (1987)
## 6123                                                                                       Snow Dogs (2002)
## 6124                                                                                    Waynes World (1992)
## 6125                                                                                 Double Jeopardy (1999)
## 6126                                                                                    Sleepwalkers (1992)
## 6127                                                                                   Happy Gilmore (1996)
## 6128                                                                            Americas Sweethearts (2001)
## 6129                                                                                      Dick Tracy (1990)
## 6130                                                            Blood and Wine (a.k.a. Blood & Wine) (1996)
## 6131                                                                           Great White Hype, The (1996)
## 6132                                                                                Death to Smoochy (2002)
## 6133                                                                 Confessions of a Dangerous Mind (2002)
## 6134                                                                                      Unfaithful (2002)
## 6135                                                                                      Fire Birds (1990)
## 6136                                                                                       Lone Star (1996)
## 6137                                                                                    Passenger 57 (1992)
## 6138                                                                                         Cabaret (1972)
## 6139                                                                                            Clue (1985)
## 6140                                                                                  Quiet Man, The (1952)
## 6141                                                    Amelie (Fabuleux destin dAmélie Poulain, Le) (2001)
## 6142                                                   Spirited Away (Sen to Chihiro no kamikakushi) (2001)
## 6143                                                                         Capturing the Friedmans (2003)
## 6144                                                                                     Raging Bull (1980)
## 6145                                                                                        Big Fish (2003)
## 6146                                                                               Love the Hard Way (2001)
## 6147                                                                     Searching for Bobby Fischer (1993)
## 6148                                                                                   High Fidelity (2000)
## 6149                                                                                 Minority Report (2002)
## 6150                                                                                  Waynes World 2 (1993)
## 6151                                                           Eternal Sunshine of the Spotless Mind (2004)
## 6152                                                                              Lawrence of Arabia (1962)
## 6153                                                                                 Lethal Weapon 2 (1989)
## 6154                                                                                 Charlies Angels (2000)
## 6155                                                                         Matrix Revolutions, The (2003)
## 6156                                                  Lord of the Rings: The Return of the King, The (2003)
## 6157                                                          Lord of the Rings: The Two Towers, The (2002)
## 6158                                                                                    Men in Black (1997)
## 6159                                                                                   Pleasantville (1998)
## 6160                                                                                   Sleepy Hollow (1999)
## 6161                                                                                        Stigmata (1999)
## 6162                                                                                    Delicatessen (1991)
## 6163                                                                                      Fight Club (1999)
## 6164                                                                       Run Lola Run (Lola rennt) (1998)
## 6165                                                                                     About a Boy (2002)
## 6166                                                                 Battle Royale (Batoru Rowaiaru) (2000)
## 6167                                                                             Shakespeare in Love (1998)
## 6168                                                                                    Blade Runner (1982)
## 6169                                                              Naked Gun 33 1/3: The Final Insult (1994)
## 6170                              Good, the Bad and the Ugly, The (Buono, il brutto, il cattivo, Il) (1966)
## 6171                                                    Star Wars: Episode II - Attack of the Clones (2002)
## 6172                                                          League of Extraordinary Gentlemen, The (2003)
## 6173                                           Star Wars: Episode IV - A New Hope (a.k.a. Star Wars) (1977)
## 6174                                                                                 Schindlers List (1993)
## 6175                                                                             Usual Suspects, The (1995)
## 6176                                                                                            Babe (1995)
## 6177                                                                            Seven (a.k.a. Se7en) (1995)
## 6178                                                                             Saving Private Ryan (1998)
## 6179                                                                                    Total Recall (1990)
## 6180                                                              Butch Cassidy and the Sundance Kid (1969)
## 6181                                                      Star Wars: Episode VI - Return of the Jedi (1983)
## 6182                                                                       Silence of the Lambs, The (1991)
## 6183                                                                                       Toy Story (1995)
## 6184                                                                               Good Will Hunting (1997)
## 6185                                                                                            Jaws (1975)
## 6186                                                                             Lost in Translation (2003)
## 6187                                                                                           Glory (1989)
## 6188                                               Nosferatu (Nosferatu, eine Symphonie des Grauens) (1922)
## 6189                                                              Indiana Jones and the Last Crusade (1989)
## 6190                                                                                    Multiplicity (1996)
## 6191                                                                               Wizard of Oz, The (1939)
## 6192                                                                                     Matrix, The (1999)
## 6193                                                                 Monty Python and the Holy Grail (1975)
## 6194                                                                                          Gandhi (1982)
## 6195                                                                     Father of the Bride Part II (1995)
## 6196                                                                              This Is Spinal Tap (1984)
## 6197                                                                                  Producers, The (1968)
## 6198                                                                                        Vacation (1983)
## 6199                                                                              Christmas Vacation (1989)
## 6200                                                                                       Peter Pan (1953)
## 6201                                                     Austin Powers: International Man of Mystery (1997)
## 6202                                                                 Bill & Teds Excellent Adventure (1989)
## 6203                                                             Willy Wonka & the Chocolate Factory (1971)
## 6204                                                                             Grosse Pointe Blank (1997)
## 6205                                                                                  Matchstick Men (2003)
## 6206                                                                                       Tommy Boy (1995)
## 6207                                                                                          Grease (1978)
## 6208                                                                                 Mona Lisa Smile (2003)
## 6209                                                                   Star Trek: The Motion Picture (1979)
## 6210                                                                         My Best Friends Wedding (1997)
## 6211                                                                                     Toy Story 2 (1999)
## 6212                                                         Mystery Science Theater 3000: The Movie (1996)
## 6213                                                                                  Rocketeer, The (1991)
## 6214                                                                    A.I. Artificial Intelligence (2001)
## 6215                                                                                      Sister Act (1992)
## 6216                                                                                   Trainspotting (1996)
## 6217                                                                                           Dogma (1999)
## 6218                                                                           Spanish Prisoner, The (1997)
## 6219                                                                    Teenage Mutant Ninja Turtles (1990)
## 6220                                                                                       Anastasia (1997)
## 6221                                                                                    Safety Last! (1923)
## 6222                                                                                      Old School (2003)
## 6223                                                                                           Shrek (2001)
## 6224                                                                                      Mummy, The (1999)
## 6225                                                                 Bill & Teds Excellent Adventure (1989)
## 6226                                                                               Miss Congeniality (2000)
## 6227                                                                                  Wild Wild West (1999)
## 6228                                                                     Big Trouble in Little China (1986)
## 6229                                                                                      Adaptation (2002)
## 6230                                                                                      Doors, The (1991)
## 6231                                                                                      Rocket Man (1997)
## 6232                                                                                      Encino Man (1992)
## 6233                                                                                           Shrek (2001)
## 6234                                                                                        Magnolia (1999)
## 6235                                                                                   Haunting, The (1999)
## 6236                                                                                   Lost in Space (1998)
## 6237                                                                                     Gone Fishin (1997)
## 6238                                                                                    Corky Romano (2001)
## 6239                                                                                           I Spy (2002)
## 6240                                                                      Count of Monte Cristo, The (2002)
## 6241                                                                             Breakfast Club, The (1985)
## 6242                                                                                  School of Rock (2003)
## 6243                                                                                 Mission to Mars (2000)
## 6244                                                                                        Bulworth (1998)
## 6245                                                                             Romancing the Stone (1984)
## 6246                                                                                         RoboCop (1987)
## 6247                                                                              Enemy of the State (1998)
## 6248                                                     Austin Powers: International Man of Mystery (1997)
## 6249                                                                                  Beethovens 2nd (1993)
## 6250                                                            Police Academy 4: Citizens on Patrol (1987)
## 6251                                                                                Midnight Madness (1980)
## 6252                                                                                       Project X (1987)
## 6253                                                                                 No Holds Barred (1989)
## 6254                                                                                Mole People, The (1956)
## 6255                                                                              Drop Dead Gorgeous (1999)
## 6256                                                                   Independence Day (a.k.a. ID4) (1996)
## 6257                                                                                Last Action Hero (1993)
## 6258                                                                                   City Slickers (1991)
## 6259                                                             Ghostbusters (a.k.a. Ghost Busters) (1984)
## 6260                                                                            Pursuit of Happiness (2001)
## 6261                                                                   Independence Day (a.k.a. ID4) (1996)
## 6262                                                                             Usual Suspects, The (1995)
## 6263                                                                             In the Line of Fire (1993)
## 6264                                                                                   Groundhog Day (1993)
## 6265                                                             Ghostbusters (a.k.a. Ghost Busters) (1984)
## 6266                                                                               Great Escape, The (1963)
## 6267                                                                             Blues Brothers, The (1980)
## 6268                                                                             Lost in Translation (2003)
## 6269                                                                                    Out of Sight (1998)
## 6270                                                                               Cannonball Run II (1984)
## 6271                                                                              Enemy of the State (1998)
## 6272                                                                       Shawshank Redemption, The (1994)
## 6273                                                                                    Total Recall (1990)
## 6274                                                                                    Forrest Gump (1994)
## 6275                                                  Lord of the Rings: The Return of the King, The (2003)
## 6276                                                                                    Natural, The (1984)
## 6277                                                                                     Three Kings (1999)
## 6278                                                                                        Rocky IV (1985)
## 6279                                                                                        Kid, The (2000)
## 6280                                                                                      Flatliners (1990)
## 6281                                                                                      To Die For (1995)
## 6282                                                                       Silence of the Lambs, The (1991)
## 6283                                                                                        Cocktail (1988)
## 6284                                                                                        Drumline (2002)
## 6285                                                                             Saving Private Ryan (1998)
## 6286                                                              Red Violin, The (Violon rouge, Le) (1998)
## 6287                                                                                Chariots of Fire (1981)
## 6288                                                                                   Birdcage, The (1996)
## 6289                                                                                   Summer of Sam (1999)
## 6290                                                                                    Billy Elliot (2000)
## 6291                                                                                   Almost Famous (2000)
## 6292                                              Lord of the Rings: The Fellowship of the Ring, The (2001)
## 6293                                                          Lord of the Rings: The Two Towers, The (2002)
## 6294                                                                         Not Without My Daughter (1991)
## 6295                                                                                Ladykillers, The (2004)
## 6296                                                                           Ten Commandments, The (1956)
## 6297                                                                                 Mona Lisa Smile (2003)
## 6298                                                                        Who Framed Roger Rabbit? (1988)
## 6299                                                                                 Ready to Rumble (2000)
## 6300                                                                                        Red Heat (1988)
## 6301                                                                            Beauty and the Beast (1991)
## 6302                                                                       My Stepmother Is an Alien (1988)
## 6303                                                                                             Ali (2001)
## 6304                                                                                          John Q (2002)
## 6305                                                                                       Cabin Boy (1994)
## 6306                                                                                   Short Circuit (1986)
## 6307                                                                                Romeo and Juliet (1968)
## 6308                                                                                    Killing, The (1956)
## 6309                                                                                            I.Q. (1994)
## 6310                                                                             Mission: Impossible (1996)
## 6311                                                                                      Spider-Man (2002)
## 6312                                                                                Meet the Parents (2000)
## 6313                                                                            Cheaper by the Dozen (1950)
## 6314                                                                                           Rocky (1976)
## 6315                                                                Importance of Being Earnest, The (2002)
## 6316                                                                           Breakfast at Tiffanys (1961)
## 6317                                                                                  Pay It Forward (2000)
## 6318                                                                                     Widows Peak (1994)
## 6319                                                                           Sum of All Fears, The (2002)
## 6320                                                                           Walk in the Clouds, A (1995)
## 6321                                                                         When Harry Met Sally... (1989)
## 6322                                             Like Water for Chocolate (Como agua para chocolate) (1992)
## 6323                                                                                     Chicken Run (2000)
## 6324                                                                                  Godfather, The (1972)
## 6325                                                                                Running Man, The (1987)
## 6326                                              Lord of the Rings: The Fellowship of the Ring, The (2001)
## 6327                                                                                 Johnny Mnemonic (1995)
## 6328                                                                                Bonnie and Clyde (1967)
## 6329                                                                                Army of Darkness (1993)
## 6330                                                                  Charlies Angels: Full Throttle (2003)
## 6331                                                                               Kill Bill: Vol. 2 (2004)
## 6332                                                                                           Speed (1994)
## 6333                                                                                        Fly, The (1986)
## 6334                                                                                         Titanic (1997)
## 6335                                                                       Hunt for Red October, The (1990)
## 6336                                                                 Star Trek II: The Wrath of Khan (1982)
## 6337                                                                                           X-Men (2000)
## 6338                                                                            Hot Shots! Part Deux (1993)
## 6339                                                                                Crocodile Dundee (1986)
## 6340                                                                                            Cube (1997)
## 6341                                                                             Blues Brothers, The (1980)
## 6342                                                                                            Dune (1984)
## 6343                                                                      Back to the Future Part II (1989)
## 6344                                                                                            Dune (2000)
## 6345                                                                         Matrix Revolutions, The (2003)
## 6346                                                                   Road Warrior, The (Mad Max 2) (1981)
## 6347                                                                                       Ring, The (1927)
## 6348                                              Lord of the Rings: The Fellowship of the Ring, The (2001)
## 6349                                                                                   Secret Window (2004)
## 6350                                                                 Star Trek V: The Final Frontier (1989)
## 6351                                                                              Star Trek: Nemesis (2002)
## 6352                                                                                      Phenomenon (1996)
## 6353                                                                                      Awakenings (1990)
## 6354                                                Battleship Potemkin, The (Bronenosets Potyomkin) (1925)
## 6355                                                                                         Memento (2000)
## 6356                                                                                Army of Darkness (1993)
## 6357                                                                                    Forrest Gump (1994)
## 6358                                                                                Deer Hunter, The (1978)
## 6359                                                                      Mad Max Beyond Thunderdome (1985)
## 6360                                                         Monty Python Live at the Hollywood Bowl (1982)
## 6361                                                              Close Encounters of the Third Kind (1977)
## 6362                                                                                    Forrest Gump (1994)
## 6363                                                                                         Memento (2000)
## 6364                                                                          Day of the Jackal, The (1973)
## 6365                                                                                     Beetlejuice (1988)
## 6366                                                                                           Ronin (1998)
## 6367                                                                                        Magnolia (1999)
## 6368                                                                                        Face/Off (1997)
## 6369                                                                             From Dusk Till Dawn (1996)
## 6370                                                                           2001: A Space Odyssey (1968)
## 6371                                                                                    Total Recall (1990)
## 6372                                                                                        Sleepers (1996)
## 6373                                                                   Under Siege 2: Dark Territory (1995)
## 6374                                                                    A.I. Artificial Intelligence (2001)
## 6375                                                                                             JFK (1991)
## 6376                                                               Final Fantasy: The Spirits Within (2001)
## 6377                                                                                  School of Rock (2003)
## 6378                                                                                      Braveheart (1995)
## 6379                                                                                          Brazil (1985)
## 6380                                                                        Clear and Present Danger (1994)
## 6381                                                                             Mission: Impossible (1996)
## 6382                                                                             Alien: Resurrection (1997)
## 6383                                                Lost World: Jurassic Park, The (Jurassic Park 2) (1997)
## 6384                                                                 Monty Python and the Holy Grail (1975)
## 6385                                                                                X2: X-Men United (2003)
## 6386                                                                                         Jumanji (1995)
## 6387                                                                               Finding Forrester (2000)
## 6388                                                                               Good Will Hunting (1997)
## 6389                                           Once Upon a Time in the West (Cera una volta il West) (1968)
## 6390                                                                       Silence of the Lambs, The (1991)
## 6391                                                Crouching Tiger, Hidden Dragon (Wu hu zang long) (2000)
## 6392                                                                                 Schindlers List (1993)
## 6393                                                                                 Johnny Mnemonic (1995)
## 6394                                                                                  Romeo Must Die (2000)
## 6395                                                                           Bowling for Columbine (2002)
## 6396                                                                       Shawshank Redemption, The (1994)
## 6397                                                                                     Others, The (2001)
## 6398                                                                      Terminator 2: Judgment Day (1991)
## 6399                                                          Lord of the Rings: The Two Towers, The (2002)
## 6400                                              Lord of the Rings: The Fellowship of the Ring, The (2001)
## 6401                                                              Killer, The (Die xue shuang xiong) (1989)
## 6402                                             Hidden Fortress, The (Kakushi-toride no san-akunin) (1958)
## 6403                                                                                      Unforgiven (1992)
## 6404                                                                                       Rock, The (1996)
## 6405                                                                                     Matrix, The (1999)
## 6406                                                                         When Harry Met Sally... (1989)
## 6407                                                                                    Forrest Gump (1994)
## 6408                                                                       Run Lola Run (Lola rennt) (1998)
## 6409                                                                                          Batman (1989)
## 6410                                                                                     Cliffhanger (1993)
## 6411                                                                                Italian Job, The (2003)
## 6412                                                                                          Tarzan (1999)
## 6413                                                                             Shakespeare in Love (1998)
## 6414                                                                                            Hulk (2003)
## 6415                                                                                        Stargate (1994)
## 6416                                                                                We Were Soldiers (2002)
## 6417                                                                               American Tail, An (1986)
## 6418                                                                                          Willow (1988)
## 6419                                                                      Whats Eating Gilbert Grape (1993)
## 6420                                                                                       True Lies (1994)
## 6421                                                                                         Amadeus (1984)
## 6422                                                                                          Batman (1989)
## 6423                                                                                Sixth Sense, The (1999)
## 6424                                                                     Show Me Love (Fucking Åmål) (1998)
## 6425                                                                                   Groundhog Day (1993)
## 6426                                                                                         Platoon (1986)
## 6427                                                                                      Home Alone (1990)
## 6428                                                                                      Casablanca (1942)
## 6429                                                                                     Others, The (2001)
## 6430                                                                       Brave Little Toaster, The (1987)
## 6431                                                           Austin Powers: The Spy Who Shagged Me (1999)
## 6432                                                                                    Shining, The (1980)
## 6433                                                                                         Species (1995)
## 6434                                                                                         Platoon (1986)
## 6435                                                                                          Brazil (1985)
## 6436                                           Star Wars: Episode IV - A New Hope (a.k.a. Star Wars) (1977)
## 6437                                                                                 Terminator, The (1984)
## 6438                                                                              Planet of the Apes (1968)
## 6439                                                      Star Wars: Episode VI - Return of the Jedi (1983)
## 6440                                                            Wallace & Gromit: The Wrong Trousers (1993)
## 6441                                                                        Star Trek: First Contact (1996)
## 6442                                                                             Blues Brothers, The (1980)
## 6443                                                                   Bridge on the River Kwai, The (1957)
## 6444                                                                                 Minority Report (2002)
## 6445                                                                  Jay and Silent Bob Strike Back (2001)
## 6446                                                                             From Dusk Till Dawn (1996)
## 6447                                                                                    Total Recall (1990)
## 6448                                                                                   Wild at Heart (1990)
## 6449                                                                                        Chocolat (2000)
## 6450                                                              Close Encounters of the Third Kind (1977)
## 6451                                                                        Clear and Present Danger (1994)
## 6452                                                                                           Speed (1994)
## 6453                                                                      Die Hard: With a Vengeance (1995)
## 6454                                                                                  Godfather, The (1972)
## 6455                                                                                           Alien (1979)
## 6456                                                                      E.T. the Extra-Terrestrial (1982)
## 6457                                                                               Wizard of Oz, The (1939)
## 6458                                           Star Wars: Episode IV - A New Hope (a.k.a. Star Wars) (1977)
## 6459                                                                     12 Monkeys (Twelve Monkeys) (1995)
## 6460                                                                                         Titanic (1997)
## 6461                                                                          Star Trek: Generations (1994)
## 6462                                                                                 American Beauty (1999)
## 6463                                                                                   Trainspotting (1996)
## 6464                                                                                  Reservoir Dogs (1992)
## 6465                                                                  Ace Ventura: When Nature Calls (1995)
## 6466                                                                                       Crow, The (1994)
## 6467                                                                                         Species (1995)
## 6468                                                                                     French Kiss (1995)
## 6469                                                                                To Sir with Love (1967)
## 6470                                                                                     Judge Dredd (1995)
## 6471                                                                                Italian Job, The (1969)
## 6472                                                          Lord of the Rings: The Two Towers, The (2002)
## 6473                                                                              American History X (1998)
## 6474                                                                                         Monster (2003)
## 6475                                                                             Princess Bride, The (1987)
## 6476                                                                             Clockwork Orange, A (1971)
## 6477                                                                                 Men in Black II (2002)
## 6478                                                                                   Almost Famous (2000)
## 6479                                                                                      Pale Rider (1985)
## 6480                                                                                           Ronin (1998)
## 6481                                                                               Mighty Ducks, The (1992)
## 6482                                                                               Gangs of New York (2002)
## 6483                                                                      Ace Ventura: Pet Detective (1994)
## 6484                                                                                  Evil Dead, The (1981)
## 6485                                                              Indiana Jones and the Last Crusade (1989)
## 6486                                                                           2001: A Space Odyssey (1968)
## 6487                                                                                  Reservoir Dogs (1992)
## 6488                                                                                  Apocalypse Now (1979)
## 6489                                                                                        Face/Off (1997)
## 6490                                                   Black Cat, White Cat (Crna macka, beli macor) (1998)
## 6491                                                                               Kill Bill: Vol. 1 (2003)
## 6492                                                                                        Predator (1987)
## 6493                                                                                Kindergarten Cop (1990)
## 6494                                                         Cries and Whispers (Viskningar och rop) (1972)
## 6495                                                                                         Memento (2000)
## 6496                                          Pirates of the Caribbean: The Curse of the Black Pearl (2003)
## 6497                                                          Lord of the Rings: The Two Towers, The (2002)
## 6498                                                                                  Demolition Man (1993)
## 6499                                                                                        Maverick (1994)
## 6500                                                                            Matrix Reloaded, The (2003)
## 6501                                                                                     Dragonheart (1996)
## 6502                                                                      10 Things I Hate About You (1999)
## 6503                                                                                           Alien (1979)
## 6504                                                                                   High Fidelity (2000)
## 6505                                                                    So I Married an Axe Murderer (1993)
## 6506                                                                                          Clerks (1994)
## 6507                                                                    Hunchback of Notre Dame, The (1996)
## 6508                                                                                        Die Hard (1988)
## 6509                                                                                      Goodfellas (1990)
## 6510                                                                                         Contact (1997)
## 6511                                                                      10 Things I Hate About You (1999)
## 6512                                                                                         28 Days (2000)
## 6513                                                                                   Groundhog Day (1993)
## 6514                                                             Willy Wonka & the Chocolate Factory (1971)
## 6515                                                               Final Fantasy: The Spirits Within (2001)
## 6516                                                                                  Waynes World 2 (1993)
## 6517                                                                                   Deep Blue Sea (1999)
## 6518                                                                          Generals Daughter, The (1999)
## 6519                                                                                        Outbreak (1995)
## 6520                                                                                   Air Force One (1997)
## 6521                                                           Eternal Sunshine of the Spotless Mind (2004)
## 6522                                                                                         Platoon (1986)
## 6523                                                                         Matrix Revolutions, The (2003)
## 6524                                                                                   Resident Evil (2002)
## 6525                                                                                 Thelma & Louise (1991)
## 6526                                                                              Fifth Element, The (1997)
## 6527                                                                                  Godfather, The (1972)
## 6528                                                        Police Academy 2: Their First Assignment (1985)
## 6529                                                                   Ben-Hur: A Tale of the Christ (1925)
## 6530                                                                                    Pulp Fiction (1994)
## 6531                                                                              Dances with Wolves (1990)
## 6532                                                                           Look Whos Talking Now (1993)
## 6533                                                                                    Training Day (2001)
## 6534                                                                                    Men of Honor (2000)
## 6535                                                                                       Rock, The (1996)
## 6536                                                                                        Outbreak (1995)
## 6537                                                                             Saving Private Ryan (1998)
## 6538                                                                                   Almost Famous (2000)
## 6539                                                                           Three Musketeers, The (1993)
## 6540                                                                        Honey, I Blew Up the Kid (1992)
## 6541                                                                                         RoboCop (1987)
## 6542                                                                                    Now and Then (1995)
## 6543                                                                      O Brother, Where Art Thou? (2000)
## 6544                                                                                           Fargo (1996)
## 6545                                                                            Beauty and the Beast (1991)
## 6546                                                     Austin Powers: International Man of Mystery (1997)
## 6547                                                                                Truman Show, The (1998)
## 6548                                                                               Miss Congeniality (2000)
## 6549                                                                                         Platoon (1986)
## 6550                                                                                     Judge Dredd (1995)
## 6551                                                                                            Dave (1993)
## 6552                                                                                  Wild Wild West (1999)
## 6553                                                                               Beautiful Mind, A (2001)
## 6554                                                                                 What About Bob? (1991)
## 6555                                                                                         Contact (1997)
## 6556                                                                           Kissing Jessica Stein (2001)
## 6557                                                                            Opposite of Sex, The (1998)
## 6558                                                                                 Negotiator, The (1998)
## 6559                                                                                  School of Rock (2003)
## 6560                                                                              Back to the Future (1985)
## 6561                                                                                        Stargate (1994)
## 6562                                                                                    Office Space (1999)
## 6563                                                                                        Scream 3 (2000)
## 6564                                                                                        Fly, The (1958)
## 6565                                                                              Planet of the Apes (1968)
## 6566                                                                    Man with the Golden Gun, The (1974)
## 6567                                                         Naked Gun 2 1/2: The Smell of Fear, The (1991)
## 6568                                                                                 Pieces of April (2003)
## 6569                                                                   Star Trek: The Motion Picture (1979)
## 6570                                                                                   Scary Movie 2 (2001)
## 6571                                                                                 Head Over Heels (2001)
## 6572                                                                     Back to the Future Part III (1990)
## 6573                                                                        Dead Men Dont Wear Plaid (1982)
## 6574                                                                           Guns of Navarone, The (1961)
## 6575                                                                                     Three Kings (1999)
## 6576                                                                                       Rambo III (1988)
## 6577                                                                                     Tuxedo, The (2002)
## 6578                                                                                    My Fair Lady (1964)
## 6579                                                                       Desperately Seeking Susan (1985)
## 6580                                                                                  Wild Wild West (1999)
## 6581                                                                     Ghost and the Darkness, The (1996)
## 6582                                                                                        Stargate (1994)
## 6583                                                              Escape from the Planet of the Apes (1971)
## 6584                                                                   Independence Day (a.k.a. ID4) (1996)
## 6585                                                Lost World: Jurassic Park, The (Jurassic Park 2) (1997)
## 6586                                                                                   Air Force One (1997)
## 6587                                                                  Bridges of Madison County, The (1995)
## 6588                                                                                       Rock, The (1996)
## 6589                                                                                       Mask, The (1994)
## 6590                                                                     Legend of Bagger Vance, The (2000)
## 6591                                                                      Die Hard: With a Vengeance (1995)
## 6592                                                                                   Donnie Brasco (1997)
## 6593                                                                                       Toy Story (1995)
## 6594                                                                                         Aladdin (1992)
## 6595                                                  Star Wars: Episode V - The Empire Strikes Back (1980)
## 6596                                                            South Park: Bigger, Longer and Uncut (1999)
## 6597                                                                                    Pretty Woman (1990)
## 6598                                                                                    Forrest Gump (1994)
## 6599                                                                                  Bodyguard, The (1992)
## 6600                                                                                        Die Hard (1988)
## 6601                                                                             Requiem for a Dream (2000)
## 6602                                                                         Wet Hot American Summer (2001)
## 6603                                                                           Bowling for Columbine (2002)
## 6604                                                                                         Ice Age (2002)
## 6605                                                                                Cutthroat Island (1995)
## 6606                                                                      Terminator 2: Judgment Day (1991)
## 6607                                                      Star Wars: Episode VI - Return of the Jedi (1983)
## 6608                                                                                       Gladiator (2000)
## 6609                                                                             Romancing the Stone (1984)
## 6610                                                                                     October Sky (1999)
## 6611                                                                                         Twister (1996)
## 6612                                                                                   Jerry Maguire (1996)
## 6613                                                                                            Babe (1995)
## 6614                                                                                     Toy Story 2 (1999)
## 6615                                                                                   Thirteen Days (2000)
## 6616                                                                              As Good As It Gets (1997)
## 6617                                                                                       Firm, The (1993)
## 6618                                                                                   Billy Madison (1995)
## 6619                                                                    Man with the Golden Gun, The (1974)
## 6620                                                                                 Specialist, The (1994)
## 6621                                                                                Last Action Hero (1993)
## 6622                                                             Willy Wonka & the Chocolate Factory (1971)
## 6623                                                                                 Terminator, The (1984)
## 6624                                                                                 Lethal Weapon 3 (1992)
## 6625                                                             Ghostbusters (a.k.a. Ghost Busters) (1984)
## 6626                                                                                 Lethal Weapon 4 (1998)
## 6627                                                                                            Dune (1984)
## 6628                                                                                   City Slickers (1991)
## 6629                                                                                   Patriot Games (1992)
## 6630                                                                                   Lost in Space (1998)
## 6631                                                                                         Timecop (1994)
## 6632                                                                          Much Ado About Nothing (1993)
## 6633                                                                     Father of the Bride Part II (1995)
## 6634                                                                                     Dragonheart (1996)
## 6635                                                                              Weekend at Bernies (1989)
## 6636                                                                                      Snake Eyes (1998)
## 6637                                                                                          Ransom (1996)
## 6638                                                                                    Shining, The (1980)
## 6639                                                                      Rambo: First Blood Part II (1985)
## 6640                                                                                           X-Men (2000)
## 6641                                                                               Last Man Standing (1996)
## 6642                                                                          NeverEnding Story, The (1984)
## 6643                                                                                        Election (1999)
## 6644                                                                                        Hannibal (2001)
## 6645                                                                                   City Slickers (1991)
## 6646                                                                                  State and Main (2000)
## 6647                                                                                         Mad Max (1979)
## 6648                                                                                         28 Days (2000)
## 6649                                                                           Whole Nine Yards, The (2000)
## 6650                                                                                   Exorcist, The (1973)
## 6651                                                                                        Scream 2 (1997)
## 6652                                                                                        Grease 2 (1982)
## 6653                                                                                  Before Sunrise (1995)
## 6654                                                                                     Mary Reilly (1996)
## 6655                                                                    How to Lose a Guy in 10 Days (2003)
## 6656                                                                                   Reign of Fire (2002)
## 6657                                                                                   High Fidelity (2000)
## 6658                                                                                      To Die For (1995)
## 6659                                                                                Fatal Attraction (1987)
## 6660                                                                                    Total Recall (1990)
## 6661                                                                  Rocky Horror Picture Show, The (1975)
## 6662                                                                                     HouseSitter (1992)
## 6663                                                                                Sixth Sense, The (1999)
## 6664                                                                                   Fantasia 2000 (1999)
## 6665                                                                                    Finding Nemo (2003)
## 6666                                                                                  Lion King, The (1994)
## 6667                                                                                   Boys Dont Cry (1999)
## 6668                                                                  Ace Ventura: When Nature Calls (1995)
## 6669                                                                                         Aladdin (1992)
## 6670                                                                                    Pearl Harbor (2001)
## 6671                                                                                        Stargate (1994)
## 6672                                                Lost World: Jurassic Park, The (Jurassic Park 2) (1997)
## 6673                                                                    So I Married an Axe Murderer (1993)
## 6674                                                                             From Dusk Till Dawn (1996)
## 6675                                                                                  Cool Hand Luke (1967)
## 6676                                                             William Shakespeares Romeo + Juliet (1996)
## 6677                                                                                              Pi (1998)
## 6678                                                             Ghostbusters (a.k.a. Ghost Busters) (1984)
## 6679                                                                                            Jaws (1975)
## 6680                                                                                   Mars Attacks! (1996)
## 6681                                                                        Thomas Crown Affair, The (1999)
## 6682                                                                   Star Trek IV: The Voyage Home (1986)
## 6683                                                 Wallace & Gromit: The Best of Aardman Animation (1996)
## 6684                                                                                     Beetlejuice (1988)
## 6685                                                                                    Time Bandits (1981)
## 6686                                                                              Back to the Future (1985)
## 6687                                                                                    Broken Arrow (1996)
## 6688                                                                                     Taxi Driver (1976)
## 6689                                                                                  Demolition Man (1993)
## 6690                                                                             Clockwork Orange, A (1971)
## 6691                                                                                    Shining, The (1980)
## 6692                                                                               Hero (Ying xiong) (2002)
## 6693                                                                                Mulholland Drive (2001)
## 6694                                                                                     Matrix, The (1999)
## 6695                                                         Harry Potter and the Chamber of Secrets (2002)
## 6696                                                                                 What Women Want (2000)
## 6697                                                                  Charlies Angels: Full Throttle (2003)
## 6698                                                                                 Die Another Day (2002)
## 6699                                                                                We Were Soldiers (2002)
## 6700                                                                                    Home Alone 3 (1997)
## 6701                                                                               Super Mario Bros. (1993)
## 6702                                                                                        Anaconda (1997)
## 6703                                                                                         Carpool (1996)
## 6704                                                                                    Urban Legend (1998)
## 6705                                                                 Snow White and the Seven Dwarfs (1937)
## 6706                                                                                Jungle Book, The (1967)
## 6707                                                                                     Poltergeist (1982)
## 6708                                                                                    Goonies, The (1985)
## 6709                                                                            Natural Born Killers (1994)
## 6710                                                                                 Terminator, The (1984)
## 6711                                                                                        Maverick (1994)
## 6712                                                              Naked Gun 33 1/3: The Final Insult (1994)
## 6713                                                                                        Superman (1978)
## 6714                                                                            Its a Wonderful Life (1946)
## 6715                                                                        Honey, I Shrunk the Kids (1989)
## 6716                                                                  Rocky Horror Picture Show, The (1975)
## 6717                                                                                      Craft, The (1996)
## 6718                                                                         Star Trek: Insurrection (1998)
## 6719                                                                                       Jerk, The (1979)
## 6720                                                                             Breakfast Club, The (1985)
## 6721                                                                  Ace Ventura: When Nature Calls (1995)
## 6722                                                                                    American Pie (1999)
## 6723                                                                                      Fight Club (1999)
## 6724                                                                          League of Their Own, A (1992)
## 6725                                                                                    Gosford Park (2001)
## 6726                                                                        Everyone Says I Love You (1996)
## 6727                                                                            Operation Dumbo Drop (1995)
## 6728                                                                                    Mexican, The (2001)
## 6729                                                                             Lost in Translation (2003)
## 6730                                                                                       From Hell (2001)
## 6731                                                                                       Dead Calm (1989)
## 6732                                                                                         RoboCop (1987)
## 6733                                                                                   Donnie Brasco (1997)
## 6734                                                                              Dancer in the Dark (2000)
## 6735                                                                                Bicentennial Man (1999)
## 6736                                                                                   Almost Famous (2000)
## 6737                                                                           Things Behind the Sun (2001)
## 6738                                               Brotherhood of the Wolf, The (Le Pacte des loups) (2001)
## 6739                                                                                  One Hour Photo (2002)
## 6740                                                                        My Big Fat Greek Wedding (2002)
## 6741                                                                                       Road Trip (2000)
## 6742                                                                        Ordinary Decent Criminal (2000)
## 6743                                                                              Gone in 60 Seconds (2000)
## 6744                                                                              Back to the Future (1985)
## 6745                                                                                   Dumb & Dumber (1994)
## 6746                                                                                        Clueless (1995)
## 6747                                                                  Rocky Horror Picture Show, The (1975)
## 6748                                                                                    Donnie Darko (2001)
## 6749                                                                              Christmas Story, A (1983)
## 6750                                                                              Planet of the Apes (1968)
## 6751                                                                                   Mars Attacks! (1996)
## 6752                                                                               Wizard of Oz, The (1939)
## 6753                                                                 Snow White and the Seven Dwarfs (1937)
## 6754                                                                               Miss Congeniality (2000)
## 6755                                                                                     Three Kings (1999)
## 6756                                                                               European Vacation (1985)
## 6757                                                                                    Three Amigos (1986)
## 6758                                                                               Waking Ned Devine (1998)
## 6759                                                           Romy and Micheles High School Reunion (1997)
## 6760                                                                                        Grease 2 (1982)
## 6761                                                                                   Cool Runnings (1993)
## 6762                                                                 Confessions of a Dangerous Mind (2002)
## 6763                                                                                          Bounce (2000)
## 6764                                                                                        Grease 2 (1982)
## 6765                                                          Star Trek VI: The Undiscovered Country (1991)
## 6766                                                                                           Mulan (1998)
## 6767                                                                                     Point Break (1991)
## 6768                                                                         Josie and the Pussycats (2001)
## 6769                                                                                          Ransom (1996)
## 6770                                                                                      Armageddon (1998)
## 6771                                                                      E.T. the Extra-Terrestrial (1982)
## 6772                                                                             Dancing at Lughnasa (1998)
## 6773                                                                                    Bugs Life, A (1998)
## 6774                                                                     Big Trouble in Little China (1986)
## 6775                                                                                      Sister Act (1992)
## 6776                                                                                      Wyatt Earp (1994)
## 6777                                                                                      Jawbreaker (1999)
## 6778                                                                                   Doc Hollywood (1991)
## 6779                                                                                       Curly Sue (1991)
## 6780                                                                               Beverly Hills Cop (1984)
## 6781                                                                                       Tigerland (2000)
## 6782                                                                          Cider House Rules, The (1999)
## 6783                                                                                        Maverick (1994)
## 6784                                                                              Fifth Element, The (1997)
## 6785                                                                                   Trainspotting (1996)
## 6786                                                            South Park: Bigger, Longer and Uncut (1999)
## 6787                                                            Indiana Jones and the Temple of Doom (1984)
## 6788                                                                            Bridget Joness Diary (2001)
## 6789                                                                          Generals Daughter, The (1999)
## 6790                                                                               Miss Congeniality (2000)
## 6791                                                                                    Billy Elliot (2000)
## 6792                                                                           Smillas Sense of Snow (1997)
## 6793                                                                                    Mexican, The (2001)
## 6794                                                                                     Beetlejuice (1988)
## 6795                                                                                 Renaissance Man (1994)
## 6796                                                                         Godfather: Part II, The (1974)
## 6797                                                                      Terminator 2: Judgment Day (1991)
## 6798                                                                                 Green Mile, The (1999)
## 6799                                                                                      Seabiscuit (2003)
## 6800                                                                                 Few Good Men, A (1992)
## 6801                                                                              Back to the Future (1985)
## 6802                                                                               Beautiful Mind, A (2001)
## 6803                                                                                     Jungle Book (1942)
## 6804                                                                                 Sleeping Beauty (1959)
## 6805                                                                                          Batman (1989)
## 6806                                                                                      Fight Club (1999)
## 6807                                                                                 Negotiator, The (1998)
## 6808                                                                                    Philadelphia (1993)
## 6809                                               Léon: The Professional (Léon) (Professional, The) (1994)
## 6810                                                                 Curse of the Jade Scorpion, The (2001)
## 6811                                                                                          Misery (1990)
## 6812                                                                        Buffy the Vampire Slayer (1992)
## 6813                                                      Allan Quatermain and the Lost City of Gold (1987)
## 6814                                                                              Outrageous Fortune (1987)
## 6815                                                                                        Fantasia (1940)
## 6816                                                                                  Mighty Wind, A (2003)
## 6817                                                               Monty Pythons The Meaning of Life (1983)
## 6818                                                                                    Best in Show (2000)
## 6819                            Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb (1964)
## 6820                                                                                   Lethal Weapon (1987)
## 6821                                                                                 Minority Report (2002)
## 6822                                                                 Star Trek II: The Wrath of Khan (1982)
## 6823                                                     City Slickers II: The Legend of Curlys Gold (1994)
## 6824                                                                        Who Framed Roger Rabbit? (1988)
## 6825                                                                                   Fugitive, The (1993)
## 6826                                                                       Hunt for Red October, The (1990)
## 6827                                                                        Thomas Crown Affair, The (1999)
## 6828                                                                              For Your Eyes Only (1981)
## 6829                                                                                  Bird on a Wire (1990)
## 6830                                                            Indiana Jones and the Temple of Doom (1984)
## 6831                                                                                          Clerks (1994)
## 6832                                                                                      Caddyshack (1980)
## 6833                                                                           Somethings Gotta Give (2003)
## 6834                                                                                   Cool Runnings (1993)
## 6835                                                                         American President, The (1995)
## 6836                                                                                   Dirty Dancing (1987)
## 6837                                                                            Death and the Maiden (1994)
## 6838                                                                                         Gattaca (1997)
## 6839                                                                                 Lethal Weapon 4 (1998)
## 6840                                                                                 Lethal Weapon 2 (1989)
## 6841                                                                               L.A. Confidential (1997)
## 6842                                                                                        Salvador (1986)
## 6843                                                                                    Hang Em High (1968)
## 6844                                                                                Internal Affairs (1990)
## 6845                                                                       Hunt for Red October, The (1990)
## 6846                                                                     Back to the Future Part III (1990)
## 6847                                                                               Beverly Hills Cop (1984)
## 6848                                                                                       Big Daddy (1999)
## 6849                                                                                         Valmont (1989)
## 6850                                                                             Catch Me If You Can (2002)
## 6851                                            Mr. Toads Wild Ride (a.k.a. The Wind in the Willows) (1996)
## 6852                                                                               Cutting Edge, The (1992)
## 6853                                                                                          Casper (1995)
## 6854                                                       Star Wars: Episode I - The Phantom Menace (1999)
## 6855                                           Star Wars: Episode IV - A New Hope (a.k.a. Star Wars) (1977)
## 6856                                                      Star Wars: Episode VI - Return of the Jedi (1983)
## 6857                                                                                           Speed (1994)
## 6858                                                                            Beauty and the Beast (1991)
## 6859                                                                                     Matrix, The (1999)
## 6860                                                                             Shakespeare in Love (1998)
## 6861                                                                                  Changing Lanes (2002)
## 6862                                                                                   Jurassic Park (1993)
## 6863                                                                                         Con Air (1997)
## 6864                                                                              Mummy Returns, The (2001)
## 6865                                                                                   Resident Evil (2002)
## 6866                                                                                   Birdcage, The (1996)
## 6867                                                                   Star Trek: The Motion Picture (1979)
## 6868                                                                                       Space Jam (1996)
## 6869                                                                              Fifth Element, The (1997)
## 6870                                                                             Catch Me If You Can (2002)
## 6871                                                                                      Underworld (2003)
## 6872                                                                                         Contact (1997)
## 6873                                                             Ghost in the Shell (Kôkaku kidôtai) (1995)
## 6874                                                                                      Spaceballs (1987)
## 6875                                                                                   Forever Young (1992)
## 6876                                                                                 Men in Black II (2002)
## 6877                                          Pirates of the Caribbean: The Curse of the Black Pearl (2003)
## 6878                                                                                       Daredevil (2003)
## 6879                                                                                      Doors, The (1991)
## 6880                                                                                      Milk Money (1994)
## 6881                                                                                           Fargo (1996)
## 6882                                                                          Star Trek: Generations (1994)
## 6883                                                                                            Rudy (1993)
## 6884                                                                                 Ghostbusters II (1989)
## 6885                                                                                        Repo Man (1984)
## 6886                                                                                   Exorcist, The (1973)
## 6887                                                                                    Pretty Woman (1990)
## 6888                                                                             Breakfast Club, The (1985)
## 6889                                                                                   Lilo & Stitch (2002)
## 6890                                            Adventures of Milo and Otis, The (Koneko monogatari) (1986)
## 6891                                                                           Care Bears Movie, The (1985)
## 6892                                                                                    Home Alone 3 (1997)
## 6893                                                                      Chronicles of Riddick, The (2004)
## 6894                                                                         Day After Tomorrow, The (2004)
## 6895                                                                                        Identity (2003)
## 6896                                                                                Cant Hardly Wait (1998)
## 6897                                                                              Mask of Zorro, The (1998)
## 6898                                                                                       GoldenEye (1995)
## 6899                                                                                       Westworld (1973)
## 6900                                                                                       Assassins (1995)
## 6901                                                                                       They Live (1988)
## 6902                                                                                    Men of Honor (2000)
## 6903                                                                              Gone with the Wind (1939)
## 6904                                                                             Son of Frankenstein (1939)
## 6905                                                                      Magnificent Ambersons, The (1942)
## 6906                                                                              Fun and Fancy Free (1947)
## 6907                                                                      Song Remains the Same, The (1976)
## 6908                                                                                       Slap Shot (1977)
## 6909                                              Barbarian Invasions, The (Invasions Barbares, Les) (2003)
## 6910                                Lovers of the Arctic Circle, The (Los Amantes del Círculo Polar) (1998)
## 6911                                                                              As Good As It Gets (1997)
## 6912                                                                                          Scream (1996)
## 6913                                                                                      Get Shorty (1995)
## 6914                                                 Master and Commander: The Far Side of the World (2003)
## 6915                                                                                          Arthur (1981)
## 6916                                             For a Few Dollars More (Per qualche dollaro in più) (1965)
## 6917                                                                                        S.W.A.T. (2003)
## 6918                                                   Vampire Hunter D: Bloodlust (Banpaia hantâ D) (2000)
## 6919                                                              Red Violin, The (Violon rouge, Le) (1998)
## 6920                                                                                   Secret Window (2004)
## 6921                                                                            Matrix Reloaded, The (2003)
## 6922                                                                                   28 Days Later (2002)
## 6923                                                                               Kill Bill: Vol. 2 (2004)
## 6924                                                                                       Secretary (2002)
## 6925                                                                                         Chicago (2002)
## 6926                                                                                Dawn of the Dead (2004)
## 6927                                                                              Monster Squad, The (1987)
## 6928                                                                                     Poltergeist (1982)
## 6929                                                         Harry Potter and the Chamber of Secrets (2002)
## 6930                                                                                     King Arthur (2004)
## 6931                                                                            Very Brady Sequel, A (1996)
## 6932                                                         Adventures of Ichabod and Mr. Toad, The (1949)
## 6933                                                                                 Cats Dont Dance (1997)
## 6934                                                                                       Apollo 13 (1995)
## 6935                                                                                     Chicken Run (2000)
## 6936                                                                                           Alien (1979)
## 6937                                                                      Postman, The (Postino, Il) (1994)
## 6938                                                                                Truman Show, The (1998)
## 6939                                                                                      Sting, The (1973)
## 6940                                                                                     Sling Blade (1996)
## 6941                                                                                     Hoop Dreams (1994)
## 6942                                                                                     Being There (1979)
## 6943                                                                         Philadelphia Story, The (1940)
## 6944                                                                                        Chocolat (2000)
## 6945                                                                           Age of Innocence, The (1993)
## 6946                                                                                         Amistad (1997)
## 6947                                                                  King of Masks, The (Bian Lian) (1996)
## 6948                                                     Children of Heaven, The (Bacheha-Ye Aseman) (1997)
## 6949                                                                                           Ghost (1990)
## 6950                                                                              Joy Luck Club, The (1993)
## 6951                                                                              Station Agent, The (2003)
## 6952                                                                           Bourne Supremacy, The (2004)
## 6953                                                                                         Hellboy (2004)
## 6954                                                                               Napoleon Dynamite (2004)
## 6955                                                                                   Head of State (2003)
## 6956                                                                                      Birds, The (1963)
## 6957                                                                           First Wives Club, The (1996)
## 6958                                                                                   Shallow Grave (1994)
## 6959                                                                                Agent Cody Banks (2003)
## 6960                                                               At Play in the Fields of the Lord (1991)
## 6961                                                                            Gentlemans Agreement (1947)
## 6962                                                                                 Fahrenheit 9/11 (2004)
## 6963                                                                                   Sting II, The (1983)
## 6964                                                                            Boondock Saints, The (2000)
## 6965                                                                        Man Who Wasnt There, The (2001)
## 6966                                                            Road Home, The (Wo de fu qin mu qin) (1999)
## 6967                                                                                            Troy (2004)
## 6968                                                                                      Hollow Man (2000)
## 6969                                                                                        I, Robot (2004)
## 6970                                                                             Dirty Pretty Things (2002)
## 6971                                                                                Italian Job, The (2003)
## 6972                                                                                   Punisher, The (2004)
## 6973                                                                                    Pretty Woman (1990)
## 6974                                                                           2001: A Space Odyssey (1968)
## 6975                                                                                American Wedding (2003)
## 6976                                                                                  Jakob the Liar (1999)
## 6977                                                                                    True Romance (1993)
## 6978                                                                                     Matrix, The (1999)
## 6979                                                                             Asphalt Jungle, The (1950)
## 6980                                                                           Bourne Supremacy, The (2004)
## 6981                                                                                 Starsky & Hutch (2004)
## 6982                                                                                            Narc (2002)
## 6983                                                                                     Stand by Me (1986)
## 6984                                                            Wallace & Gromit: The Wrong Trousers (1993)
## 6985                                               Léon: The Professional (Léon) (Professional, The) (1994)
## 6986                                                                                Truman Show, The (1998)
## 6987                                                                                    Office Space (1999)
## 6988                                                                                Incredibles, The (2004)
## 6989                                                 Fistful of Dollars, A (Per un pugno di dollari) (1964)
## 6990                                                                            Strangers on a Train (1951)
## 6991                                                                                      Mummy, The (1999)
## 6992                                                                                    Blade Runner (1982)
## 6993                                                                                      Disclosure (1994)
## 6994                                                                                    Citizen Kane (1941)
## 6995                                                                                  Eyes Wide Shut (1999)
## 6996                                                                                          Brazil (1985)
## 6997                                                                                Fatal Attraction (1987)
## 6998                                                                                Meet the Parents (2000)
## 6999                                                                                       Dark City (1998)
## 7000                                                                      Man Who Would Be King, The (1975)
## 7001                                              Man Without a Past, The (Mies vailla menneisyyttä) (2002)
## 7002                                                                         To Live and Die in L.A. (1985)
## 7003                                                                             Asphalt Jungle, The (1950)
## 7004                                                                                        Catch-22 (1970)
## 7005                                                                                    Killers Kiss (1955)
## 7006                                                                                         Sabrina (1954)
## 7007                                                                                      Spellbound (1945)
## 7008                                                                                          Frenzy (1972)
## 7009                                                                                 Regarding Henry (1991)
## 7010                                                                           Somethings Gotta Give (2003)
## 7011                                                                                    Aviator, The (1985)
## 7012                                                                                           Shrek (2001)
## 7013                                                                           American in Paris, An (1951)
## 7014                                                                                   Oceans Twelve (2004)
## 7015                                                                              Dazed and Confused (1993)
## 7016                                                                              Gone with the Wind (1939)
## 7017                                                                                        Elephant (2003)
## 7018                                                                                   Laurel Canyon (2002)
## 7019                                                                                       Apollo 13 (1995)
## 7020                                                                                       Toy Story (1995)
## 7021                                                                                   Oceans Eleven (2001)
## 7022                                                                                      Spaceballs (1987)
## 7023                                                                       Life or Something Like It (2002)
## 7024                                                                             Clockwork Orange, A (1971)
## 7025                                                                                     Once Around (1991)
## 7026                                                                                 Iron Giant, The (1999)
## 7027                                                        Rules of the Game, The (La Règle du jeu) (1939)
## 7028                                                                            Its a Wonderful Life (1946)
## 7029                                                                                     Hidden, The (1987)
## 7030                                                                                      Mean Girls (2004)
## 7031                                                  Lemony Snickets A Series of Unfortunate Events (2004)
## 7032                                                                                             Ray (2004)
## 7033                                                           Sky Captain and the World of Tomorrow (2004)
## 7034                                                                                            Troy (2004)
## 7035                                                                            Seven (a.k.a. Se7en) (1995)
## 7036                                                                       Silence of the Lambs, The (1991)
## 7037                                                Crouching Tiger, Hidden Dragon (Wu hu zang long) (2000)
## 7038                                                                               Elephant Man, The (1980)
## 7039                                                                                   Weird Science (1985)
## 7040                                                                                    Barry Lyndon (1975)
## 7041                                                          League of Extraordinary Gentlemen, The (2003)
## 7042                                                                                  Risky Business (1983)
## 7043                                                                                    Garden State (2004)
## 7044                                                                             Million Dollar Baby (2004)
## 7045                                                                                  Forgotten, The (2004)
## 7046                                                                                         Shrek 2 (2004)
## 7047                                                                                  Blade: Trinity (2004)
## 7048                                                                                     Bounty, The (1984)
## 7049                                                                                      Ulees Gold (1997)
## 7050                                              Barbarian Invasions, The (Invasions Barbares, Les) (2003)
## 7051                                                                             Shakespeare in Love (1998)
## 7052                                                                                   Oceans Eleven (2001)
## 7053                                                                                    Spider-Man 2 (2004)
## 7054                                                           Sky Captain and the World of Tomorrow (2004)
## 7055                                                                            Under the Tuscan Sun (2003)
## 7056                                                                                Mulholland Falls (1996)
## 7057                                                                                      Old School (2003)
## 7058                                                                      Passion of the Christ, The (2004)
## 7059                                                                       Girl with a Pearl Earring (2003)
## 7060                                                                                   Super Size Me (2004)
## 7061                                                                             Cat in the Hat, The (2003)
## 7062                                                                               Finding Neverland (2004)
## 7063                                                            South Park: Bigger, Longer and Uncut (1999)
## 7064                                                                                    Strange Days (1995)
## 7065                                                                                      To Die For (1995)
## 7066                                                                                         Witness (1985)
## 7067                                                                          Day of the Jackal, The (1973)
## 7068                                                     City Slickers II: The Legend of Curlys Gold (1994)
## 7069                                                              Naked Gun 33 1/3: The Final Insult (1994)
## 7070                                                            South Park: Bigger, Longer and Uncut (1999)
## 7071                                                                       Robin Hood: Men in Tights (1993)
## 7072                                                                                  Apocalypse Now (1979)
## 7073                                                                            Being John Malkovich (1999)
## 7074                                                                             Legends of the Fall (1994)
## 7075                                                                            Sleepless in Seattle (1993)
## 7076                                                                        Who Framed Roger Rabbit? (1988)
## 7077                                               Adventures of Priscilla, Queen of the Desert, The (1994)
## 7078                                                                           Mission: Impossible 2 (2000)
## 7079                                                                             Wedding Singer, The (1998)
## 7080                                                                                         Witness (1985)
## 7081                                                                  Rocky Horror Picture Show, The (1975)
## 7082                                                                                    Shining, The (1980)
## 7083                                                                                 Minority Report (2002)
## 7084                                                                             Tomorrow Never Dies (1997)
## 7085                                                                                 Lethal Weapon 2 (1989)
## 7086                                                                                     Deep Impact (1998)
## 7087                                                                               Beautiful Mind, A (2001)
## 7088                                                                           Mission: Impossible 2 (2000)
## 7089                                                                                    Billy Elliot (2000)
## 7090                                                                              American History X (1998)
## 7091                                                                                         RoboCop (1987)
## 7092                                                                                         Tootsie (1982)
## 7093                                                                       Run Lola Run (Lola rennt) (1998)
## 7094                                                                              As Good As It Gets (1997)
## 7095                                                Lost World: Jurassic Park, The (Jurassic Park 2) (1997)
## 7096                                                                                      Fight Club (1999)
## 7097                                                                        Who Framed Roger Rabbit? (1988)
## 7098                                                                                      Armageddon (1998)
## 7099                                                                                       Rock, The (1996)
## 7100                                                                               Kill Bill: Vol. 1 (2003)
## 7101                                                                         Quick and the Dead, The (1995)
## 7102                                                                                Truman Show, The (1998)
## 7103                                                              Naked Gun 33 1/3: The Final Insult (1994)
## 7104                                                                                 Muriels Wedding (1994)
## 7105                                                                              Fifth Element, The (1997)
## 7106                                                                  Ace Ventura: When Nature Calls (1995)
## 7107                                                          Lord of the Rings: The Two Towers, The (2002)
## 7108                                                                                         Memento (2000)
## 7109                                                                               Gangs of New York (2002)
## 7110                                                                               Road to Perdition (2002)
## 7111                                                                                Good bye, Lenin! (2003)
## 7112                                                                                  Reservoir Dogs (1992)
## 7113                                                                    So I Married an Axe Murderer (1993)
## 7114                                                                               Jurassic Park III (2001)
## 7115                                                                                          Casino (1995)
## 7116                                                                                       Road Trip (2000)
## 7117                                                                              Back to the Future (1985)
## 7118                                                                                          Aliens (1986)
## 7119                                                                                  Lion King, The (1994)
## 7120                                                                                          Ransom (1996)
## 7121                                                                                      Fight Club (1999)
## 7122                                                                                           Ghost (1990)
## 7123                                                                                    Bugs Life, A (1998)
## 7124                                                                         Life of David Gale, The (2003)
## 7125                                                                                          Casino (1995)
## 7126                                                                                  American Pie 2 (2001)
## 7127                                                                                    Insider, The (1999)
## 7128                                                                         Quick and the Dead, The (1995)
## 7129                                                                             Remember the Titans (2000)
## 7130                                                                                       Firm, The (1993)
## 7131                                                                                       RoboCop 2 (1990)
## 7132                                                                            Pink Floyd: The Wall (1982)
## 7133                                                                                       Elizabeth (1998)
## 7134                                                                           40 Days and 40 Nights (2002)
## 7135                                                                                    Insider, The (1999)
## 7136                                                                                      Piano, The (1993)
## 7137                                                                                         Beaches (1988)
## 7138                                                                                      Holy Smoke (1999)
## 7139                                                                              Thin Red Line, The (1998)
## 7140                                                                            Boondock Saints, The (2000)
## 7141                                                                           Bowling for Columbine (2002)
## 7142                                                                                  Empire Records (1995)
## 7143                                                                               Untouchables, The (1987)
## 7144                                                                               Replacements, The (2000)
## 7145                                               Adventures of Priscilla, Queen of the Desert, The (1994)
## 7146                                                                                          Scream (1996)
## 7147                                                                                     Man on Fire (2004)
## 7148                                                                                      Caddyshack (1980)
## 7149                                                                                        Rounders (1998)
## 7150                                                                           Butterfly Effect, The (2004)
## 7151                                                                                     Stand by Me (1986)
## 7152                                               Léon: The Professional (Léon) (Professional, The) (1994)
## 7153                                                                              Fifth Element, The (1997)
## 7154                                                                                  Hot Chick, The (2002)
## 7155                                                                                        Die Hard (1988)
## 7156                                               Léon: The Professional (Léon) (Professional, The) (1994)
## 7157                                                  Lord of the Rings: The Return of the King, The (2003)
## 7158                                                                             Mission: Impossible (1996)
## 7159                                                                                            Babe (1995)
## 7160                                                                                       GoldenEye (1995)
## 7161                                                                                Scent of a Woman (1992)
## 7162                                                                                       Firm, The (1993)
## 7163                                                                     Four Weddings and a Funeral (1994)
## 7164                                                                                        Net, The (1995)
## 7165                                                                               Strictly Ballroom (1992)
## 7166                                                                                       Toy Story (1995)
## 7167                                                                                      Mean Girls (2004)
## 7168                                                                                 Schindlers List (1993)
## 7169                                                                              Courage Under Fire (1996)
## 7170                                                                            Seven (a.k.a. Se7en) (1995)
## 7171                         Raiders of the Lost Ark (Indiana Jones and the Raiders of the Lost Ark) (1981)
## 7172                                                                                  Godfather, The (1972)
## 7173                                                                                   Dumb & Dumber (1994)
## 7174                                                                                  Mrs. Doubtfire (1993)
## 7175                                                                                   Donnie Brasco (1997)
## 7176                                                                               Coming to America (1988)
## 7177                                                                                      Spider-Man (2002)
## 7178                                                                       Robin Hood: Men in Tights (1993)
## 7179                                                                               Last Samurai, The (2003)
## 7180                                                                                        Predator (1987)
## 7181                                                                               Kill Bill: Vol. 1 (2003)
## 7182                                              Lord of the Rings: The Fellowship of the Ring, The (2001)
## 7183                                                                                             Ray (2004)
## 7184                                                                                 Unforgiven, The (1960)
## 7185                                                                                        Clueless (1995)
## 7186                                                                              Fifth Element, The (1997)
## 7187                                                                               Super Mario Bros. (1993)
## 7188                                                                                         Contact (1997)
## 7189                                                                                      Fight Club (1999)
## 7190                                                                          Much Ado About Nothing (1993)
## 7191                                                                                    No Mans Land (2001)
## 7192                                                              Naked Gun 33 1/3: The Final Insult (1994)
## 7193                                                                                             Big (1988)
## 7194                                                                                    Pulp Fiction (1994)
## 7195                                                              Escape from the Planet of the Apes (1971)
## 7196                                                  Star Wars: Episode V - The Empire Strikes Back (1980)
## 7197                                                                                       Rock, The (1996)
## 7198                                                                                    Hotel Rwanda (2004)
## 7199                                                    Amelie (Fabuleux destin dAmélie Poulain, Le) (2001)
## 7200                                                                                         Shrek 2 (2004)
## 7201                                                                                      Parenthood (1989)
## 7202                                                                                         Memento (2000)
## 7203                                                                              North by Northwest (1959)
## 7204                                                                                      Fight Club (1999)
## 7205                                                  Lord of the Rings: The Return of the King, The (2003)
## 7206                                                                                X2: X-Men United (2003)
## 7207                                                                                       Dark City (1998)
## 7208                                                                               Good Will Hunting (1997)
## 7209                                                                                Scent of a Woman (1992)
## 7210                                                                               Look Whos Talking (1989)
## 7211                                                                              Hearts in Atlantis (2001)
## 7212                                                                                       Tigerland (2000)
## 7213                                                                                       Gift, The (2000)
## 7214                                                                                     Judge Dredd (1995)
## 7215                                                                             Alien: Resurrection (1997)
## 7216                                                                                 Charlies Angels (2000)
## 7217                                                Crouching Tiger, Hidden Dragon (Wu hu zang long) (2000)
## 7218                                                                                  Batman Returns (1992)
## 7219                                                                           Sum of All Fears, The (2002)
## 7220                                                                           Royal Tenenbaums, The (2001)
## 7221                                                                    Planes, Trains & Automobiles (1987)
## 7222                                                                                  Vertical Limit (2000)
## 7223                                                                                  Money Pit, The (1986)
## 7224                                                                                         Michael (1996)
## 7225                                                                                Jungle Book, The (1994)
## 7226                                                               Lock, Stock & Two Smoking Barrels (1998)
## 7227                                                                                 Dont Say a Word (2001)
## 7228                                                                           Three Musketeers, The (1993)
## 7229                                                                                  Monsters, Inc. (2001)
## 7230                                                                                         Aladdin (1992)
## 7231                                                                                           X-Men (2000)
## 7232                                                                                         Gattaca (1997)
## 7233                                                                              Fifth Element, The (1997)
## 7234                                                                                         Titanic (1997)
## 7235                                                                              This Is Spinal Tap (1984)
## 7236                                                                     Monty Pythons Life of Brian (1979)
## 7237                                                                            Its a Wonderful Life (1946)
## 7238                                                                    Truth About Cats & Dogs, The (1996)
## 7239                                                                               Keeping the Faith (2000)
## 7240                                                                                         Species (1995)
## 7241                                                                         Matrix Revolutions, The (2003)
## 7242                                                                           Royal Tenenbaums, The (2001)
## 7243                                                                              Planet of the Apes (2001)
## 7244                                                                    Texas Chainsaw Massacre, The (2003)
## 7245                                                                                    Donnie Darko (2001)
## 7246                                                                               Kill Bill: Vol. 2 (2004)
## 7247                                                                                      Highlander (1986)
## 7248                                                                                      Piano, The (1993)
## 7249                                                                     Legend of Bagger Vance, The (2000)
## 7250                                                                                      Flatliners (1990)
## 7251                                                                                      Flashdance (1983)
## 7252                                                                                      Spaceballs (1987)
## 7253                                                                                         Whipped (2000)
## 7254                                                                                      Saint, The (1997)
## 7255                                                                                      Persuasion (1995)
## 7256                                                                Oceans Eleven (a.k.a. Oceans 11) (1960)
## 7257                                                                                   Trainspotting (1996)
## 7258                                                           Austin Powers: The Spy Who Shagged Me (1999)
## 7259                                                                       Run Lola Run (Lola rennt) (1998)
## 7260                                                                                     Chasing Amy (1997)
## 7261                                                                                 Time to Kill, A (1996)
## 7262                                                                                     Stand by Me (1986)
## 7263                                                                                           X-Men (2000)
## 7264                                              Lord of the Rings: The Fellowship of the Ring, The (2001)
## 7265                                                                                          Casper (1995)
## 7266                                                                                          Alien³ (1992)
## 7267                                                                                        Superman (1978)
## 7268                                                                                Truman Show, The (1998)
## 7269                                                                                       Pinocchio (1940)
## 7270                                              Lord of the Rings: The Fellowship of the Ring, The (2001)
## 7271                                                                                    Animal House (1978)
## 7272                                                                                 Minority Report (2002)
## 7273                                                                                 Minority Report (2002)
## 7274                                                               Final Fantasy: The Spirits Within (2001)
## 7275                                                                                   Arachnophobia (1990)
## 7276                                                           Austin Powers: The Spy Who Shagged Me (1999)
## 7277                                                                                   Happy Gilmore (1996)
## 7278                                                                                     Beetlejuice (1988)
## 7279                                                                                   Lethal Weapon (1987)
## 7280                                                                                    Galaxy Quest (1999)
## 7281                                                              Naked Gun 33 1/3: The Final Insult (1994)
## 7282                                                                                       True Lies (1994)
## 7283                                                                                    Men in Black (1997)
## 7284                                                                                       Toy Story (1995)
## 7285                                                                                   Lethal Weapon (1987)
## 7286                                                                                     Cliffhanger (1993)
## 7287                                                                                   Dumb & Dumber (1994)
## 7288                                                                                   Happy Gilmore (1996)
## 7289                            Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb (1964)
## 7290                                                                          Brady Bunch Movie, The (1995)
## 7291                                                                               Kill Bill: Vol. 2 (2004)
## 7292           Harry Potter and the Sorcerers Stone (a.k.a. Harry Potter and the Philosophers Stone) (2001)
## 7293                                                                                 Of Mice and Men (1992)
## 7294                                                                               Coming to America (1988)
## 7295                                                                               Keeping the Faith (2000)
## 7296                                                                                  Charlottes Web (1973)
## 7297                                                                           Whole Nine Yards, The (2000)
## 7298                                                                  On Her Majestys Secret Service (1969)
## 7299                                                                                Incredibles, The (2004)
## 7300                                                                                          Snatch (2000)
## 7301                                                                              Planet of the Apes (2001)
## 7302                                                                                 Starsky & Hutch (2004)
## 7303                                                                                 American Beauty (1999)
## 7304                                                                                    Aviator, The (2004)
## 7305                                                                                       Gladiator (2000)
## 7306                                                 Naked Gun: From the Files of Police Squad!, The (1988)
## 7307                                                                             Breakfast Club, The (1985)
## 7308                                                                                  Super Troopers (2001)
## 7309                                                                               Shaun of the Dead (2004)
## 7310                                                                                   Event Horizon (1997)
## 7311                                                Crouching Tiger, Hidden Dragon (Wu hu zang long) (2000)
## 7312                                                                                 Doctor Dolittle (1967)
## 7313                                                                              Dazed and Confused (1993)
## 7314                                                                            Bend It Like Beckham (2002)
## 7315                                                                                  Cool Hand Luke (1967)
## 7316                                                                         Day After Tomorrow, The (2004)
## 7317                                                                               Shaun of the Dead (2004)
## 7318                                                                                      Hot Shots! (1991)
## 7319                                                                              Undercover Brother (2002)
## 7320                                                                                        Maverick (1994)
## 7321                                                                                     Toy Story 2 (1999)
## 7322                                                                                      Uncle Buck (1989)
## 7323                                                                           Butterfly Effect, The (2004)
## 7324                                                                                  Fahrenheit 451 (1966)
## 7325                                                                      Terminator 2: Judgment Day (1991)
## 7326                                                                                      Get Carter (2000)
## 7327                                                                              Planet of the Apes (1968)
## 7328                                                                   Incredible Shrinking Man, The (1957)
## 7329                                                                            For Richer or Poorer (1997)
## 7330                                                                                       Key Largo (1948)
## 7331                                                                                          Casino (1995)
## 7332                                                              Close Encounters of the Third Kind (1977)
## 7333                                                                                Poolhall Junkies (2002)
## 7334                                           Star Wars: Episode IV - A New Hope (a.k.a. Star Wars) (1977)
## 7335                                                                                       Jerk, The (1979)
## 7336                                                                                           X-Men (2000)
## 7337                                                                               Beverly Hills Cop (1984)
## 7338                                                                             Little Mermaid, The (1989)
## 7339                                                                                   Lethal Weapon (1987)
## 7340                                                                                     Three Kings (1999)
## 7341                                                                        Star Trek: First Contact (1996)
## 7342                                                                            Addams Family Values (1993)
## 7343                                                                            Bend It Like Beckham (2002)
## 7344                                                                                 Terminator, The (1984)
## 7345                                                                                  School of Rock (2003)
## 7346                                               Léon: The Professional (Léon) (Professional, The) (1994)
## 7347                                                                 Wallace & Gromit: A Close Shave (1995)
## 7348                                                                                    No Mans Land (2001)
## 7349                                                                                          Misery (1990)
## 7350                                                                                          Scream (1996)
## 7351                                                                                Frighteners, The (1996)
## 7352                                                                                        Fly, The (1986)
## 7353                                                                              As Good As It Gets (1997)
## 7354                                                                                  Demolition Man (1993)
## 7355                                                                         Dirty Rotten Scoundrels (1988)
## 7356                                                                                           Ghost (1990)
## 7357                                                                             Thunderbirds Are GO (1966)
## 7358                                                                                   Happy Gilmore (1996)
## 7359                                                                                            Emma (1996)
## 7360                                                                     Big Trouble in Little China (1986)
## 7361                                                                          Star Trek: Generations (1994)
## 7362                                                                                      Armageddon (1998)
## 7363                                                                                            Heat (1995)
## 7364                                                                     Back to the Future Part III (1990)
## 7365                                                Crouching Tiger, Hidden Dragon (Wu hu zang long) (2000)
## 7366                                                                                   Fugitive, The (1993)
## 7367                                           Star Wars: Episode IV - A New Hope (a.k.a. Star Wars) (1977)
## 7368                                                                                       True Lies (1994)
## 7369                                                                                 American Beauty (1999)
## 7370                                                                                   Dumb & Dumber (1994)
## 7371                                                                                       Mask, The (1994)
## 7372                                                   Nightmare on Elm Street 2: Freddys Revenge, A (1985)
## 7373                                                                      E.T. the Extra-Terrestrial (1982)
## 7374                                                                                     Serendipity (2001)
## 7375                                                                                        Die Hard (1988)
## 7376                                                                                           Fargo (1996)
## 7377                                                                                     Rear Window (1954)
## 7378                                                                             Clockwork Orange, A (1971)
## 7379                                                                                    Philadelphia (1993)
## 7380                                                            Indiana Jones and the Temple of Doom (1984)
## 7381                                                                                           Proof (1991)
## 7382                                                                                    Finding Nemo (2003)
## 7383                                                                                           Shrek (2001)
## 7384                                                                                       Tombstone (1993)
## 7385                                                                                    Pearl Harbor (2001)
## 7386                                                                               Lord of the Flies (1963)
## 7387                                                                                    Training Day (2001)
## 7388                                                                     Monty Pythons Life of Brian (1979)
## 7389                                                                                          Ransom (1996)
## 7390                                                            Wallace & Gromit: The Wrong Trousers (1993)
## 7391                                                                                    Billy Elliot (2000)
## 7392                                                                                    6th Day, The (2000)
## 7393                                                                              Gone in 60 Seconds (2000)
## 7394                                                                                          Baraka (1992)
## 7395                                                                                            Emma (1996)
## 7396                                                                         Basketball Diaries, The (1995)
## 7397                                                                              U2: Rattle and Hum (1988)
## 7398                                                                         Ferris Buellers Day Off (1986)
## 7399                                                                              Back to the Future (1985)
## 7400                                                                                        Gremlins (1984)
## 7401                                                                                    Benny & Joon (1993)
## 7402                                                                                    Bugs Life, A (1998)
## 7403                                                                                     Dirty Harry (1971)
## 7404                                                 Wallace & Gromit: The Best of Aardman Animation (1996)
## 7405                                                                              Dead Poets Society (1989)
## 7406                                                                                  Charlottes Web (1973)
## 7407                                                                                Italian Job, The (2003)
## 7408                                                                                      Get Shorty (1995)
## 7409                                                         Naked Gun 2 1/2: The Smell of Fear, The (1991)
## 7410                                                                       Fast and the Furious, The (2001)
## 7411                                                                                      Red Dragon (2002)
## 7412                                                                                      Goodfellas (1990)
## 7413                                                                             In the Line of Fire (1993)
## 7414                                                                                Blue Lagoon, The (1980)
## 7415                                                                                      Young Guns (1988)
## 7416                                                                                      Parenthood (1989)
## 7417                                                                             Bone Collector, The (1999)
## 7418                                                                             White Men Cant Jump (1992)
## 7419                                                                                      Goldfinger (1964)
## 7420                                                                                      Wyatt Earp (1994)
## 7421                                                                             Beverly Hills Ninja (1997)
## 7422                                                                   Star Trek: The Motion Picture (1979)
## 7423                                                                             Conan the Barbarian (1982)
## 7424                                                                              Weekend at Bernies (1989)
## 7425                                                                                      Green Card (1990)
## 7426                                                                                      Blind Date (1987)
## 7427                                                                             Cannonball Run, The (1981)
## 7428                                                                                      Uncle Buck (1989)
## 7429                                                                             Freddy Got Fingered (2001)
## 7430                                                                       My Stepmother Is an Alien (1988)
## 7431                                                                                   Jerry Maguire (1996)
## 7432                                                                  Ace Ventura: When Nature Calls (1995)
## 7433                                                                                           X-Men (2000)
## 7434                                                 Naked Gun: From the Files of Police Squad!, The (1988)
## 7435                                                                                         Kingpin (1996)
## 7436                                                                            Beauty and the Beast (1991)
## 7437                                                        Police Academy 2: Their First Assignment (1985)
## 7438                                                                                    Broken Arrow (1996)
## 7439                                                                                         Shrek 2 (2004)
## 7440                                                                            Bend It Like Beckham (2002)
## 7441                                                                            Matrix Reloaded, The (2003)
## 7442                                                                                    Training Day (2001)
## 7443                                                                                    Pearl Harbor (2001)
## 7444                                                                            Beverly Hills Cop II (1987)
## 7445                                                                                         Mad Max (1979)
## 7446                                                                             White Men Cant Jump (1992)
## 7447                                                                           M*A*S*H (a.k.a. MASH) (1970)
## 7448                                                                                       Desperado (1995)
## 7449                                                                                    Office Space (1999)
## 7450                                                        Homeward Bound II: Lost in San Francisco (1996)
## 7451                                                                                         Flipper (1996)
## 7452                                                                                    Three Amigos (1986)
## 7453                                                                            Three Men and a Baby (1987)
## 7454                                                                                      Funny Farm (1988)
## 7455                                                                       Hunt for Red October, The (1990)
## 7456                                                                               Kill Bill: Vol. 2 (2004)
## 7457                                                                                 Lethal Weapon 2 (1989)
## 7458                                                                             Tomorrow Never Dies (1997)
## 7459                                                                       Fast and the Furious, The (2001)
## 7460                                                                        Emperors New Groove, The (2000)
## 7461                                                                               Girl, Interrupted (1999)
## 7462                                                                               Mighty Ducks, The (1992)
## 7463                                                                             Saving Private Ryan (1998)
## 7464                                                                                      Waterworld (1995)
## 7465                                                                                     Stand by Me (1986)
## 7466                                                                        Who Framed Roger Rabbit? (1988)
## 7467                                                                                           X-Men (2000)
## 7468                                                                                        Face/Off (1997)
## 7469                                                                                     Judge Dredd (1995)
## 7470                                                                                      Red Dragon (2002)
## 7471                                                                                Eddie Murphy Raw (1987)
## 7472                                                                                   Billy Madison (1995)
## 7473                                                                              Enemy of the State (1998)
## 7474                                                                  Jay and Silent Bob Strike Back (2001)
## 7475                                                                                      Spider-Man (2002)
## 7476                                                                                       Ring, The (2002)
## 7477                                                                                       Gladiator (2000)
## 7478                                                                                Sixth Sense, The (1999)
## 7479                                                                                           X-Men (2000)
## 7480                                                        Harry Potter and the Prisoner of Azkaban (2004)
## 7481                                                                      Passion of the Christ, The (2004)
## 7482                                                                                    Finding Nemo (2003)
## 7483                                                                       Run Lola Run (Lola rennt) (1998)
## 7484                                                                                   Freshman, The (1990)
## 7485                                                                               Dog Day Afternoon (1975)
## 7486                                                                                    Mean Streets (1973)
## 7487                                                                                   Happy Gilmore (1996)
## 7488                                                                                 American Beauty (1999)
## 7489                                                                              Fifth Element, The (1997)
## 7490                                                                                       True Lies (1994)
## 7491                                                                                         Aladdin (1992)
## 7492                                                                                           Speed (1994)
## 7493                                                                                    Pretty Woman (1990)
## 7494                                                                                       Mask, The (1994)
## 7495                                                                               Leaving Las Vegas (1995)
## 7496                                                                                      Phenomenon (1996)
## 7497                                                                                       Desperado (1995)
## 7498                                                                                    First Knight (1995)
## 7499                                                                                   Sleepy Hollow (1999)
## 7500                                                                                    Analyze This (1999)
## 7501                                                                              Gone in 60 Seconds (2000)
## 7502                                                                               13th Warrior, The (1999)
## 7503                                                                                     Scary Movie (2000)
## 7504                                                                                 Black Hawk Down (2001)
## 7505                                                                                   Cool Runnings (1993)
## 7506                                                                                      Hollow Man (2000)
## 7507                                                                                    Pearl Harbor (2001)
## 7508                                                                      Terminator 2: Judgment Day (1991)
## 7509                                                                              Mummy Returns, The (2001)
## 7510                                                                                       Tigerland (2000)
## 7511                                                                                    Runaway Jury (2003)
## 7512                                                           Austin Powers: The Spy Who Shagged Me (1999)
## 7513                                                                            Teaching Mrs. Tingle (1999)
## 7514                                                                                   Exorcist, The (1973)
## 7515                                                                                         Species (1995)
## 7516                                                                               Big Lebowski, The (1998)
## 7517                                                                           Guns of Navarone, The (1961)
## 7518                                                                               Blackboard Jungle (1955)
## 7519                                                              Tales from the Darkside: The Movie (1990)
## 7520                                                                               National Treasure (2004)
## 7521                                                                                       Rock, The (1996)
## 7522                                                                               Keeping the Faith (2000)
## 7523                                                                                    Finding Nemo (2003)
## 7524                                                                                   Sliding Doors (1998)
## 7525                                                                                        I, Robot (2004)
## 7526                                                                                     Pitch Black (2000)
## 7527                                                                                         Solaris (2002)
## 7528                                                            South Park: Bigger, Longer and Uncut (1999)
## 7529                                                                                       Gallipoli (1981)
## 7530                                                                                 Green Mile, The (1999)
## 7531                                                                                   Love Actually (2003)
## 7532                                                                            Beauty and the Beast (1991)
## 7533                                                                                   Pleasantville (1998)
## 7534                                                                                        Chocolat (1988)
## 7535                                                                 Monty Python and the Holy Grail (1975)
## 7536                                                         Miss Congeniality 2: Armed and Fabulous (2005)
## 7537                                                                                        Election (1999)
## 7538                                                                                         Gattaca (1997)
## 7539                                                                                            Jaws (1975)
## 7540                                                                                     Stand by Me (1986)
## 7541                                                                                  Daddy and Them (2001)
## 7542                                                                       Shawshank Redemption, The (1994)
## 7543                                                       Star Wars: Episode I - The Phantom Menace (1999)
## 7544                                                                                      Fight Club (1999)
## 7545                                                                                       All of Me (1984)
## 7546                                                                                          Zardoz (1974)
## 7547                                                           Sky Captain and the World of Tomorrow (2004)
## 7548                                        Songs From the Second Floor (Sånger från andra våningen) (2000)
## 7549                                                                            Beauty and the Beast (1991)
## 7550                                                                                 Men in Black II (2002)
## 7551                                                           Eternal Sunshine of the Spotless Mind (2004)
## 7552                                                                                            Hook (1991)
## 7553                                                                                Secondhand Lions (2003)
## 7554                                                                                      Collateral (2004)
## 7555                                                                                  50 First Dates (2004)
## 7556                                                                Dodgeball: A True Underdog Story (2004)
## 7557                                                                                Two Weeks Notice (2002)
## 7558                                          Pirates of the Caribbean: The Curse of the Black Pearl (2003)
## 7559                                                                                   Trainspotting (1996)
## 7560                                                                                       Secretary (2002)
## 7561                                                                                           Fargo (1996)
## 7562                                                                              When We Were Kings (1996)
## 7563                                                                                          Robots (2005)
## 7564                                                                                      Pale Rider (1985)
## 7565                                                                               Where Eagles Dare (1968)
## 7566                                                                                   Jurassic Park (1993)
## 7567                                                                        Rules of Attraction, The (2002)
## 7568                                                                                      Collateral (2004)
## 7569                                                                                          Sahara (2005)
## 7570                                                                           Bell, Book and Candle (1958)
## 7571                                                                                   Love Actually (2003)
## 7572                                                                                      Get Shorty (1995)
## 7573                                                                                   Birdcage, The (1996)
## 7574                                                                                  Rocketeer, The (1991)
## 7575                                                                                      Rhinestone (1984)
## 7576                                                                                        Magnolia (1999)
## 7577                                                                  One Flew Over the Cuckoos Nest (1975)
## 7578                                                                               Full Metal Jacket (1987)
## 7579                                                                                   Lethal Weapon (1987)
## 7580                                                                                       Quiz Show (1994)
## 7581                                                                                      Wonderland (2003)
## 7582                                                                                       Guess Who (2005)
## 7583                                                                           Breakin All the Rules (2004)
## 7584                                                                                         Platoon (1986)
## 7585                                                                                          Quills (2000)
## 7586                                                                                       Woodstock (1970)
## 7587                                                                         Capturing the Friedmans (2003)
## 7588                                                             William Shakespeares Romeo + Juliet (1996)
## 7589                                                                      1492: Conquest of Paradise (1992)
## 7590                                                    Star Wars: Episode III - Revenge of the Sith (2005)
## 7591                                                                 Wallace & Gromit: A Close Shave (1995)
## 7592                                                                                  Mrs. Doubtfire (1993)
## 7593                                                                                         Mr. Mom (1983)
## 7594                                                                                  Meet Joe Black (1998)
## 7595                                                                    How to Lose a Guy in 10 Days (2003)
## 7596                                                                                         Airport (1970)
## 7597                                                                                      Craft, The (1996)
## 7598                                                                                     Phone Booth (2002)
## 7599                                                                            Revenge of the Nerds (1984)
## 7600                                                                                Incredibles, The (2004)
## 7601                                                                              Gone with the Wind (1939)
## 7602                                                                                 Odd Couple, The (1968)
## 7603                                                                              African Queen, The (1951)
## 7604                                                                                To Catch a Thief (1955)
## 7605                                                                                   Notebook, The (2004)
## 7606                                                                                      Doors, The (1991)
## 7607                                                           Eternal Sunshine of the Spotless Mind (2004)
## 7608                                                                                  Rosemarys Baby (1968)
## 7609                                                                                       Rock, The (1996)
## 7610                                                                                  Demolition Man (1993)
## 7611                                                                                       Coneheads (1993)
## 7612                                                                           Bowling for Columbine (2002)
## 7613                                                                            Americas Sweethearts (2001)
## 7614                                                                                       Swordfish (2001)
## 7615                                                                                  Eyes Wide Shut (1999)
## 7616                                                                                       Happiness (1998)
## 7617                                                                                         Con Air (1997)
## 7618                                                                            Devils Advocate, The (1997)
## 7619                                                                                       RoboCop 3 (1993)
## 7620                                                                                       Drop Zone (1994)
## 7621                                                                                         Species (1995)
## 7622                                                                                   Memphis Belle (1990)
## 7623                                                                           Sum of All Fears, The (2002)
## 7624                                                                                  Young Einstein (1988)
## 7625                                                                                   Childs Play 2 (1990)
## 7626                                                                                  Romper Stomper (1992)
## 7627                                                                                    Lorenzos Oil (1992)
## 7628                                                                                   Kangaroo Jack (2003)
## 7629                                                                           Amityville Curse, The (1990)
## 7630                                                                                    Forrest Gump (1994)
## 7631                                                                                         Twister (1990)
## 7632                                                                                       Ned Kelly (2003)
## 7633                                                                                    Falling Down (1993)
## 7634                                                                            English Patient, The (1996)
## 7635                                                                                  Silk Stockings (1957)
## 7636                                                                             Garfield: The Movie (2004)
## 7637                                                                                Incredibles, The (2004)
## 7638                                                                                    Finding Nemo (2003)
## 7639                                                                                 Starsky & Hutch (2004)
## 7640                                                                SpongeBob SquarePants Movie, The (2004)
## 7641                                                                                            Nell (1994)
## 7642                                                                                           28 Up (1985)
## 7643                                                                                          Misery (1990)
## 7644                                                                                     Whale Rider (2002)
## 7645                                                                           Babe: Pig in the City (1998)
## 7646                                                                               Bride & Prejudice (2004)
## 7647                                                                                       Dark City (1998)
## 7648                                                                                        D.E.B.S. (2004)
## 7649                                                                  One Flew Over the Cuckoos Nest (1975)
## 7650                                                                                    Garden State (2004)
## 7651                                                                             I Love You to Death (1990)
## 7652                                                                     Love Song for Bobby Long, A (2004)
## 7653                                                                                    Forrest Gump (1994)
## 7654                                                                   Ichi the Killer (Koroshiya 1) (2001)
## 7655                                                                           Cat on a Hot Tin Roof (1958)
## 7656                                                                                      Flatliners (1990)
## 7657                                                                                    Garden State (2004)
## 7658                                                                                          Closer (2004)
## 7659                                                                                Wedding Crashers (2005)
## 7660                                                                                          Kinsey (2004)
## 7661                                                                          Bang, Bang, Youre Dead (2002)
## 7662                                                                              Ten Little Indians (1965)
## 7663                                                                              Shipping News, The (2001)
## 7664                                                               To Be and to Have (Être et avoir) (2002)
## 7665                                                                           Milagro Beanfield War (1988)
## 7666                                                                     Officer and a Gentleman, An (1982)
## 7667                                                                               Look Whos Talking (1989)
## 7668                                                                               War of the Worlds (2005)
## 7669                                                                                     Island, The (2005)
## 7670                                                                                Extreme Measures (1996)
## 7671                                                                                      Madagascar (2005)
## 7672                                                            Hitchhikers Guide to the Galaxy, The (2005)
## 7673                                                                                    Intermission (2003)
## 7674                                                                                  School of Rock (2003)
## 7675                                                                                  Fantastic Four (2005)
## 7676                                                                             Million Dollar Baby (2004)
## 7677                                                       House of Flying Daggers (Shi mian mai fu) (2004)
## 7678                                                                                    Faculty, The (1998)
## 7679                                                                                     Grudge, The (2004)
## 7680                                                 March of the Penguins (Marche de lempereur, La) (2005)
## 7681                                                           Sherlock Holmes and the Secret Weapon (1942)
## 7682                                                                                      Ghost Ship (2002)
## 7683                                                                SpongeBob SquarePants Movie, The (2004)
## 7684                                                                               Caine Mutiny, The (1954)
## 7685                                                                           Because of Winn-Dixie (2005)
## 7686                                                                               Shadow of a Doubt (1943)
## 7687                                                                               Little Black Book (2004)
## 7688                                                                                        Gaslight (1944)
## 7689                                                                                           Alive (1993)
## 7690                                                                               Empire of the Sun (1987)
## 7691                                                                                        Papillon (1973)
## 7692                                                                                    Donnie Darko (2001)
## 7693                                                                                        Sideways (2004)
## 7694                                                             Life Aquatic with Steve Zissou, The (2004)
## 7695                                                                                   Oceans Eleven (2001)
## 7696                                                                                 Fahrenheit 9/11 (2004)
## 7697                                                                                      Mouse Hunt (1997)
## 7698                                                                                      Birds, The (1963)
## 7699                                                                                     Vanilla Sky (2001)
## 7700                                                                                      Krays, The (1990)
## 7701                                                                                        Sideways (2004)
## 7702                                                                                         Copycat (1995)
## 7703                                                                                         Ice Age (2002)
## 7704                                                                                        Millions (2004)
## 7705                                                                                      Crossroads (2002)
## 7706                                                                             Color of Money, The (1986)
## 7707                                                                                        Sideways (2004)
## 7708                                                                              Station Agent, The (2003)
## 7709                                                                                    Finding Nemo (2003)
## 7710                                                                                        Gremlins (1984)
## 7711                                                                              This Is Spinal Tap (1984)
## 7712                                                                                  Godfather, The (1972)
## 7713                                                                                  Money Pit, The (1986)
## 7714                                                                              Addams Family, The (1991)
## 7715                                                              Unbearable Lightness of Being, The (1988)
## 7716                                                                                         Sleeper (1973)
## 7717                                                                        Manhattan Murder Mystery (1993)
## 7718                                                                                   Oceans Twelve (2004)
## 7719                                                                                   Dont Look Now (1973)
## 7720                                                                                       Toy Story (1995)
## 7721                                                                                           Speed (1994)
## 7722                                                                      Die Hard: With a Vengeance (1995)
## 7723                         Raiders of the Lost Ark (Indiana Jones and the Raiders of the Lost Ark) (1981)
## 7724                                                                             Shakespeare in Love (1998)
## 7725                                                                                           Shrek (2001)
## 7726                                                                             Romancing the Stone (1984)
## 7727                                                                                         Rob Roy (1995)
## 7728                                           Star Wars: Episode IV - A New Hope (a.k.a. Star Wars) (1977)
## 7729                         Raiders of the Lost Ark (Indiana Jones and the Raiders of the Lost Ark) (1981)
## 7730                                                  Lord of the Rings: The Return of the King, The (2003)
## 7731                                                                                       Tommy Boy (1995)
## 7732                                                                                  Pay It Forward (2000)
## 7733                                                                                 Family Man, The (2000)
## 7734                                                                                        Face/Off (1997)
## 7735                                                                                      Die Hard 2 (1990)
## 7736                                                                                       True Lies (1994)
## 7737                                                                                           U-571 (2000)
## 7738                                                                             Legends of the Fall (1994)
## 7739                                                                             Mission: Impossible (1996)
## 7740                                                                        Long Kiss Goodnight, The (1996)
## 7741                                                                                Italian Job, The (2003)
## 7742                                                                           Sum of All Fears, The (2002)
## 7743                                                                                    Now and Then (1995)
## 7744                                                                                          Batman (1989)
## 7745                                                                            Beauty and the Beast (1991)
## 7746                                                                              Fifth Element, The (1997)
## 7747                                                                                         Jumanji (1995)
## 7748                                                                                           Shrek (2001)
## 7749                                                                                           X-Men (2000)
## 7750                                                                      Back to the Future Part II (1989)
## 7751                                                                                     Chicken Run (2000)
## 7752                                                                                 Erin Brockovich (2000)
## 7753                                                                                    Mary Poppins (1964)
## 7754                                                                                      Spider-Man (2002)
## 7755                                                                                   Oceans Eleven (2001)
## 7756                                                                                      Spaceballs (1987)
## 7757                                                                                 Dangerous Minds (1995)
## 7758                                                                      10 Things I Hate About You (1999)
## 7759                                                         Harry Potter and the Chamber of Secrets (2002)
## 7760                                                                                  101 Dalmatians (1996)
## 7761                                                                                Jungle Book, The (1994)
## 7762                                                            Wallace & Gromit: The Wrong Trousers (1993)
## 7763                                                                   Bridge on the River Kwai, The (1957)
## 7764                                                                              Mask of Zorro, The (1998)
## 7765                                                                                  Godfather, The (1972)
## 7766                                                                        Who Framed Roger Rabbit? (1988)
## 7767                                                                             Secret of NIMH, The (1982)
## 7768                                                     Austin Powers: International Man of Mystery (1997)
## 7769                                                                                     Beetlejuice (1988)
## 7770                                                                                       Gladiator (2000)
## 7771                                                                               Gangs of New York (2002)
## 7772                                                                            Being John Malkovich (1999)
## 7773                                                                                Ladykillers, The (1955)
## 7774                                                                                         Platoon (1986)
## 7775                                                                             Wedding Singer, The (1998)
## 7776                                                                                       Big Daddy (1999)
## 7777                                                                                 Schindlers List (1993)
## 7778                                                                                         Traffic (2000)
## 7779                                                                   Star Trek IV: The Voyage Home (1986)
## 7780                                                                                  Batman Returns (1992)
## 7781                                                              Terminator 3: Rise of the Machines (2003)
## 7782                                                                                   Memphis Belle (1990)
## 7783                                                                                 Karate Kid, The (1984)
## 7784                                                                                           K-PAX (2001)
## 7785                                                                      Back to the Future Part II (1989)
## 7786                                                                                           U-571 (2000)
## 7787                                                                          Force 10 from Navarone (1978)
## 7788                                                                                      Sting, The (1973)
## 7789                                                                                           Alien (1979)
## 7790                                                                                     Matrix, The (1999)
## 7791                                                                             Blues Brothers, The (1980)
## 7792                                                                  Invasion of the Body Snatchers (1956)
## 7793                                                                                        Scarface (1983)
## 7794                                                                                X2: X-Men United (2003)
## 7795                                                                                         Titanic (1997)
## 7796                                                                           Butterfly Effect, The (2004)
## 7797                                                                         Matrix Revolutions, The (2003)
## 7798                                                                                      Metropolis (1927)
## 7799                                                                                      Flatliners (1990)
## 7800                                                                                  Fahrenheit 451 (1966)
## 7801                                                                                        Outbreak (1995)
## 7802                                                                                   Groundhog Day (1993)
## 7803                                                                                        Die Hard (1988)
## 7804                                                                                       Gladiator (2000)
## 7805                                                                               Good Will Hunting (1997)
## 7806                                                                                            Jaws (1975)
## 7807                                                                             You Only Live Twice (1967)
## 7808                                                                          War of the Worlds, The (1953)
## 7809                                                                                            Dune (2000)
## 7810                                                                               Big Lebowski, The (1998)
## 7811                                                                             Romancing the Stone (1984)
## 7812                                                                                         Traffic (2000)
## 7813                                                                                        Die Hard (1988)
## 7814                                                                                  Batman Forever (1995)
## 7815                                                                                 Mission to Mars (2000)
## 7816                                                                                           X-Men (2000)
## 7817                                                                                           Nixon (1995)
## 7818                                                                                Grumpier Old Men (1995)
## 7819                                                                                    Citizen Kane (1941)
## 7820                                                                                  Godfather, The (1972)
## 7821                                                                                 American Beauty (1999)
## 7822                                                               Lock, Stock & Two Smoking Barrels (1998)
## 7823                                                                    Mr. Smith Goes to Washington (1939)
## 7824                                                                                       Stalag 17 (1953)
## 7825                                                                       Silence of the Lambs, The (1991)
## 7826                                                                                    Finding Nemo (2003)
## 7827                                                                                    Hustler, The (1961)
## 7828                                                                                 Blazing Saddles (1974)
## 7829                                                                               Untouchables, The (1987)
## 7830                                                           Eternal Sunshine of the Spotless Mind (2004)
## 7831                                                                                          Aliens (1986)
## 7832                                                                                      Braveheart (1995)
## 7833                                                          Lord of the Rings: The Two Towers, The (2002)
## 7834                                                                                         Top Gun (1986)
## 7835                                                                      Back to the Future Part II (1989)
## 7836                                                                                   Almost Famous (2000)
## 7837                                                                                 Green Mile, The (1999)
## 7838                                                                      E.T. the Extra-Terrestrial (1982)
## 7839                                                                              Solaris (Solyaris) (1972)
## 7840                                                                                        Heathers (1989)
## 7841                                                                             In the Line of Fire (1993)
## 7842                                                                      E.T. the Extra-Terrestrial (1982)
## 7843                                                                                    Best in Show (2000)
## 7844                                                                                 Minority Report (2002)
## 7845                                                                                            Dune (1984)
## 7846                                                                         Flight of the Navigator (1986)
## 7847                                                                    A.I. Artificial Intelligence (2001)
## 7848                                                                                       Adams Rib (1949)
## 7849                                                      Star Wars: Episode VI - Return of the Jedi (1983)
## 7850                                                                      Chronicles of Riddick, The (2004)
## 7851                                              Lord of the Rings: The Fellowship of the Ring, The (2001)
## 7852                                                                            Bend It Like Beckham (2002)
## 7853                                                                                   Love Actually (2003)
## 7854                                                                                    Citizen Kane (1941)
## 7855                                                                                           Shrek (2001)
## 7856                                                                                         48 Hrs. (1982)
## 7857                                                                            Beauty and the Beast (1991)
## 7858                                                                                      Paper Moon (1973)
## 7859                                                                                Bonnie and Clyde (1967)
## 7860                                                                           From Here to Eternity (1953)
## 7861                                                                                       All of Me (1984)
## 7862                                                                                 Minority Report (2002)
## 7863                                                               Charlie and the Chocolate Factory (2005)
## 7864                                                                            Coal Miners Daughter (1980)
## 7865                                                                          Cider House Rules, The (1999)
## 7866                                                              Journey to the Center of the Earth (1959)
## 7867                                                                                        WarGames (1983)
## 7868                                                                                             JFK (1991)
## 7869                                                                              Dangerous Liaisons (1988)
## 7870                                                                                   Meet John Doe (1941)
## 7871                                                                                            Dave (1993)
## 7872                                                                              Great Santini, The (1979)
## 7873                                                                   Highlander II: The Quickening (1991)
## 7874                                                                              North by Northwest (1959)
## 7875                                                                                        Superman (1978)
## 7876                                                                              Young Frankenstein (1974)
## 7877                                                                                        Sneakers (1992)
## 7878                                                                                     Real Genius (1985)
## 7879                                                                                     Toy Story 2 (1999)
## 7880                                                                                            Taps (1981)
## 7881                                                                      E.T. the Extra-Terrestrial (1982)
## 7882                                                                                     Beetlejuice (1988)
## 7883                                                                                Dirty Dozen, The (1967)
## 7884                                                                                 Midnight Cowboy (1969)
## 7885                                                                                 Minority Report (2002)
## 7886                                                                      Passion of the Christ, The (2004)
## 7887                                                                                    Notting Hill (1999)
## 7888                                                                                 Men in Black II (2002)
## 7889                                                                      Count of Monte Cristo, The (2002)
## 7890                                                                                     Point Break (1991)
## 7891                                                                      O Brother, Where Art Thou? (2000)
## 7892                                                                                           Glory (1989)
## 7893                                                                                             Gus (1976)
## 7894                                                                      Rambo: First Blood Part II (1985)
## 7895                                                                     Evil Dead II (Dead by Dawn) (1987)
## 7896                                                                                 Sixteen Candles (1984)
## 7897                                                                     Big Trouble in Little China (1986)
## 7898                                                                                    On the Beach (1959)
## 7899                                                                                    Coach Carter (2005)
## 7900                                                                                        Hannibal (2001)
## 7901                                                                                Italian Job, The (2003)
## 7902                                                                                     Restoration (1995)
## 7903                                                                                      L.A. Story (1991)
## 7904                                                                                 Boyz N the Hood (1991)
## 7905                                                                                           Speed (1994)
## 7906                                                                               Goodbye Girl, The (1977)
## 7907                                                                                            Troy (2004)
## 7908                                                                                   Air Force One (1997)
## 7909                                                                                     Serendipity (2001)
## 7910                                                                                 Crazy/Beautiful (2001)
## 7911                                                                               Ice Station Zebra (1968)
## 7912                                                                       Manchurian Candidate, The (1962)
## 7913                                                                            Prince of Tides, The (1991)
## 7914                                                                                        Face/Off (1997)
## 7915                                                                                  Dead Pool, The (1988)
## 7916                                                                           Living Daylights, The (1987)
## 7917                                                                                 Thelma & Louise (1991)
## 7918                                                                                 Tequila Sunrise (1988)
## 7919                                                                      Deep End of the Ocean, The (1999)
## 7920                                                                                 Practical Magic (1998)
## 7921                                                                                   Fugitive, The (1993)
## 7922                                                                         When Harry Met Sally... (1989)
## 7923                                                                                      No Way Out (1987)
## 7924                                                                              Dead Poets Society (1989)
## 7925                                                                                 Die Another Day (2002)
## 7926                                                                                 Minority Report (2002)
## 7927                                                                               Miss Congeniality (2000)
## 7928                                                                                 Black Hawk Down (2001)
## 7929                                                                                      Lean on Me (1989)
## 7930                                                         Harry Potter and the Chamber of Secrets (2002)
## 7931                                                                            Nutty Professor, The (1996)
## 7932                                                                                          Jaws 2 (1978)
## 7933                                                                                    Superman III (1983)
## 7934                                                                                  Trading Places (1983)
## 7935                                                                                      Cat Ballou (1965)
## 7936                                                                                       Ned Kelly (1970)
## 7937                                                                                 Few Good Men, A (1992)
## 7938                                                                               L.A. Confidential (1997)
## 7939                                                                Secret Life of Walter Mitty, The (1947)
## 7940                                                                                      Birds, The (1963)
## 7941                                                                                 Green Mile, The (1999)
## 7942                                                                                           Dogma (1999)
## 7943                                                                 Machinist, The (Maquinista, El) (2004)
## 7944                                                                                             Ran (1985)
## 7945                                                                                     Matrix, The (1999)
## 7946                                                                                 Iron Giant, The (1999)
## 7947                                                      Castle in the Sky (Tenkû no shiro Rapyuta) (1986)
## 7948                                                           My Neighbor Totoro (Tonari no Totoro) (1988)
## 7949                                                                               Full Metal Jacket (1987)
## 7950                                                                 Machinist, The (Maquinista, El) (2004)
## 7951                                                To Wong Foo, Thanks for Everything! Julie Newmar (1995)
## 7952                                                                          History of Violence, A (2005)
## 7953                                                                          Door in the Floor, The (2004)
## 7954                                                                          Real Women Have Curves (2002)
## 7955                                                                                 Schindlers List (1993)
## 7956                                                                         Star Trek: Insurrection (1998)
## 7957                                                                                      Armageddon (1998)
## 7958                                                                                 Time to Kill, A (1996)
## 7959                                                                                         Con Air (1997)
## 7960                                                                              Mask of Zorro, The (1998)
## 7961                                                                              Christmas Story, A (1983)
## 7962                                                                                  Monsters, Inc. (2001)
## 7963                                                                                       Toy Story (1995)
## 7964                                                                                 Say Anything... (1989)
## 7965                                                                                   Love Actually (2003)
## 7966                                                                     Theres Something About Mary (1998)
## 7967                                                                                  Godfather, The (1972)
## 7968                                                                              Dances with Wolves (1990)
## 7969                                                                          Magnificent Seven, The (1960)
## 7970                                                             Willy Wonka & the Chocolate Factory (1971)
## 7971                                                                           Guns of Navarone, The (1961)
## 7972                                                                                      Waterworld (1995)
## 7973                                                                               Last Samurai, The (2003)
## 7974                                                                                        Rain Man (1988)
## 7975                                                                                          Scream (1996)
## 7976                                                                                   Graduate, The (1967)
## 7977                                                                                 My Cousin Vinny (1992)
## 7978                                                                                           Dogma (1999)
## 7979                                                               Charlie and the Chocolate Factory (2005)
## 7980                                                 Happenstance (Battement dailes du papillon, Le) (2001)
## 7981                                                                                      Van Wilder (2002)
## 7982                                                                                      Crossroads (2002)
## 7983                                                                                   Batman Begins (2005)
## 7984                                                                               Skeleton Key, The (2005)
## 7985                                                                            Wedding Planner, The (2001)
## 7986                                                    Star Wars: Episode III - Revenge of the Sith (2005)
## 7987                                                                               Shaun of the Dead (2004)
## 7988                                                                             Catch Me If You Can (2002)
## 7989                                                                               Beautiful Mind, A (2001)
## 7990                                                                               Kill Bill: Vol. 1 (2003)
## 7991                                                                            Virgin Suicides, The (1999)
## 7992                                                                              Gone with the Wind (1939)
## 7993                                                                                     Nine Months (1995)
## 7994                                                                            Addams Family Values (1993)
## 7995                                                                                   Super Size Me (2004)
## 7996                                                                            Strangers on a Train (1951)
## 7997                                                                            Arsenic and Old Lace (1944)
## 7998                                                                                   Reality Bites (1994)
## 7999                                                                            Saturday Night Fever (1977)
## 8000                                                                                    Lorenzos Oil (1992)
## 8001                                                                             Handmaids Tale, The (1990)
## 8002                                                                                   Hideous Kinky (1998)
## 8003                                                                                   Guilty as Sin (1993)
## 8004                                                                                           Evita (1996)
## 8005                                                                         My Best Friends Wedding (1997)
## 8006                                                                                           Crumb (1994)
## 8007                                                                            Tuesdays with Morrie (1999)
## 8008                                                                                           Yentl (1983)
## 8009                                                            Eat Drink Man Woman (Yin shi nan nu) (1994)
## 8010                                                                                    Finding Nemo (2003)
## 8011                                                                                         Memento (2000)
## 8012                                                                              Christmas Story, A (1983)
## 8013                                                                        In the Heat of the Night (1967)
## 8014                                               Léon: The Professional (Léon) (Professional, The) (1994)
## 8015                                                                                          Hamlet (1996)
## 8016                                                                               L.A. Confidential (1997)
## 8017                                                                    City of God (Cidade de Deus) (2002)
## 8018                                                                        Who Framed Roger Rabbit? (1988)
## 8019                                                                     Little Shop of Horrors, The (1960)
## 8020                                                                                      Green Card (1990)
## 8021                                                                              Brewsters Millions (1985)
## 8022                                                                                      Navy Seals (1990)
## 8023                                                                                       Psycho II (1983)
## 8024                                                                                         Titanic (1997)
## 8025                                                                          Little Shop of Horrors (1986)
## 8026                                                                                  Money Pit, The (1986)
## 8027                                                                                 Green Mile, The (1999)
## 8028                                                                                 Thelma & Louise (1991)
## 8029                                                                                         Gattaca (1997)
## 8030                                                                                         Platoon (1986)
## 8031                                                                             Tomorrow Never Dies (1997)
## 8032                                                                                      Pocahontas (1995)
## 8033                                                                                          Patton (1970)
## 8034                                                                                       Apollo 13 (1995)
## 8035                                                                                Incredibles, The (2004)
## 8036                                                                              As Good As It Gets (1997)
## 8037                                                                                      Goodfellas (1990)
## 8038                                                                     Theres Something About Mary (1998)
## 8039                                                Crouching Tiger, Hidden Dragon (Wu hu zang long) (2000)
## 8040                                                                                          Eraser (1996)
## 8041                                                                                 Muriels Wedding (1994)
## 8042                                                                             Legends of the Fall (1994)
## 8043                                                                                         Platoon (1986)
## 8044                                                                                         Traffic (2000)
## 8045                                                                                         Top Gun (1986)
## 8046                                                                      Whats Eating Gilbert Grape (1993)
## 8047                                                                                Double Indemnity (1944)
## 8048                                                                            Strangers on a Train (1951)
## 8049                                                                                               M (1931)
## 8050                                                  I Spit on Your Grave (a.k.a. Day of the Woman) (1978)
## 8051                                                                                    Blade Runner (1982)
## 8052                                                                                         Seconds (1966)
## 8053                                                                                          Casino (1995)
## 8054                                                                                      Annie Hall (1977)
## 8055                                                    Amelie (Fabuleux destin dAmélie Poulain, Le) (2001)
## 8056                                                                             Rashomon (Rashômon) (1950)
## 8057                                                                                           Ikiru (1952)
## 8058                                                                           Bowling for Columbine (2002)
## 8059                                                                    Mr. Smith Goes to Washington (1939)
## 8060                                                                                  Mrs. Doubtfire (1993)
## 8061                                                                                         Titanic (1997)
## 8062                                                              Indiana Jones and the Last Crusade (1989)
## 8063                                                                               Beautiful Mind, A (2001)
## 8064                                                                              Young Frankenstein (1974)
## 8065                                                                                      Pocahontas (1995)
## 8066                                                            Wallace & Gromit: The Wrong Trousers (1993)
## 8067                                                                             Princess Bride, The (1987)
## 8068                                                                                     Matrix, The (1999)
## 8069                                                                 Snow White and the Seven Dwarfs (1937)
## 8070                                                                 Snow White and the Seven Dwarfs (1937)
## 8071                                                                 Year of Living Dangerously, The (1982)
## 8072                                                                      Whats Eating Gilbert Grape (1993)
## 8073                                                                                   Happy Gilmore (1996)
## 8074                                                                            Welcome to Mooseport (2004)
## 8075                                    Baadasssss! (a.k.a. How to Get the Mans Foot Outta Your Ass) (2003)
## 8076                                                                                     Radio Flyer (1992)
## 8077                                                                                       King Kong (2005)
## 8078                                                                                   Batman Begins (2005)
## 8079                                                                 Wallace & Gromit: A Close Shave (1995)
## 8080                                                                        Honey, I Shrunk the Kids (1989)
## 8081                                                                  X-Files: Fight the Future, The (1998)
## 8082                                                                            Matrix Reloaded, The (2003)
## 8083                                                                             Usual Suspects, The (1995)
## 8084                                                                                 American Beauty (1999)
## 8085                                                                                  Reservoir Dogs (1992)
## 8086                                                                                       Dark Star (1974)
## 8087                                                                            Kiss Before Dying, A (1991)
## 8088                                                                                        Darkness (2002)
## 8089                                                                                 Fire in the Sky (1993)
## 8090                                                                                             Bug (1975)
## 8091                                                                                     Legacy, The (1978)
## 8092                                                                                    Mangler, The (1995)
## 8093                                                                                        Maverick (1994)
## 8094                                                                                       Evilspeak (1981)
## 8095                                                                                             Big (1988)
## 8096                                                                                   Happy Gilmore (1996)
## 8097                                                                            Beauty and the Beast (1991)
## 8098                                                                                  Calendar Girls (2003)
## 8099                                                              Indiana Jones and the Last Crusade (1989)
## 8100                                                                               Untouchables, The (1987)
## 8101                                                                             Princess Bride, The (1987)
## 8102                                                                             Million Dollar Baby (2004)
## 8103                                                                                       Gladiator (2000)
## 8104                                                                                         Shrek 2 (2004)
## 8105                                                                           Good Morning, Vietnam (1987)
## 8106                                                            Wallace & Gromit: The Wrong Trousers (1993)
## 8107                                                                Importance of Being Earnest, The (1952)
## 8108                                                                              As Good As It Gets (1997)
## 8109                                                                                        Maverick (1994)
## 8110                                                                 Snow White and the Seven Dwarfs (1937)
## 8111                                                                            Addams Family Values (1993)
## 8112                                                                                      Goodfellas (1990)
## 8113                                                                                  Monsters, Inc. (2001)
## 8114                                                                              Christmas Story, A (1983)
## 8115                                                                                       Cast Away (2000)
## 8116                                                                              This Is Spinal Tap (1984)
## 8117                                                                           From Russia with Love (1963)
## 8118                                                                              Back to the Future (1985)
## 8119                                                                           M*A*S*H (a.k.a. MASH) (1970)
## 8120                                                                       In the Name of the Father (1993)
## 8121                                                                             Usual Suspects, The (1995)
## 8122                                                                             Saving Private Ryan (1998)
## 8123                                                                                    Insider, The (1999)
## 8124                                                                                             Ray (2004)
## 8125                                                                               Hero (Ying xiong) (2002)
## 8126                                                                                 Minority Report (2002)
## 8127                                                      Star Wars: Episode VI - Return of the Jedi (1983)
## 8128                                                                                Crocodile Dundee (1986)
## 8129                                                                                         Witness (1985)
## 8130                                                                                         Con Air (1997)
## 8131                                                                                  School of Rock (2003)
## 8132                                                                                  Rocketeer, The (1991)
## 8133                                                                              Lady and the Tramp (1955)
## 8134                                                      Star Wars: Episode VI - Return of the Jedi (1983)
## 8135                                                    Star Wars: Episode III - Revenge of the Sith (2005)
## 8136                                                                               Little Romance, A (1979)
## 8137                                                                                  Secrets & Lies (1996)
## 8138                                                                                Double Happiness (1994)
## 8139                                                                                        Chocolat (2000)
## 8140                                                                 Monty Python and the Holy Grail (1975)
## 8141                                                                            Being John Malkovich (1999)
## 8142                                                                      Whats Eating Gilbert Grape (1993)
## 8143                                                                                       Norma Rae (1979)
## 8144                                                                                     Nine Months (1995)
## 8145                                                                               Untouchables, The (1987)
## 8146                                                                         American President, The (1995)
## 8147                            Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb (1964)
## 8148                                                    Star Wars: Episode II - Attack of the Clones (2002)
## 8149                                                                                Grumpier Old Men (1995)
## 8150                                                                                        Kid, The (1921)
## 8151                                                                             Edward Scissorhands (1990)
## 8152                                                                                           Alien (1979)
## 8153                                                                 Monty Python and the Holy Grail (1975)
## 8154                                                                                       Gladiator (2000)
## 8155                                                                               Good Will Hunting (1997)
## 8156                                                                     12 Monkeys (Twelve Monkeys) (1995)
## 8157                                                                                 River Wild, The (1994)
## 8158                                                                            Dude, Wheres My Car? (2000)
## 8159                                                                                  Reindeer Games (2000)
## 8160                                                                                        Sin City (2005)
## 8161                                                                                    Spider-Man 2 (2004)
## 8162                                                                                     Chicken Run (2000)
## 8163                                                                               Leaving Las Vegas (1995)
## 8164                                                                                   Jerry Maguire (1996)
## 8165                                                            Indiana Jones and the Temple of Doom (1984)
## 8166                                                                                   Mars Attacks! (1996)
## 8167                                                                                        Serenity (2005)
## 8168                                                                                   Warriors, The (1979)
## 8169                                                                                  Monsters, Inc. (2001)
## 8170                                                                                     Stand by Me (1986)
## 8171                                                                                    Spider-Man 2 (2004)
## 8172                                                    Amelie (Fabuleux destin dAmélie Poulain, Le) (2001)
## 8173                                                                               Hero (Ying xiong) (2002)
## 8174                                                         Twilight Samurai, The (Tasogare Seibei) (2002)
## 8175                                                                                     Beetlejuice (1988)
## 8176                                                            Indiana Jones and the Temple of Doom (1984)
## 8177                                                                                       Chinatown (1974)
## 8178                                                                      O Brother, Where Art Thou? (2000)
## 8179                                                                                        Rushmore (1998)
## 8180                                                                                             Saw (2004)
## 8181                                                                                  School of Rock (2003)
## 8182                                                               Monty Pythons The Meaning of Life (1983)
## 8183                                                                                        Superman (1978)
## 8184                                                                                        I, Robot (2004)
## 8185                                                                           Spy Who Loved Me, The (1977)
## 8186                                                                                     Dying Young (1991)
## 8187                                                                                    Bugs Life, A (1998)
## 8188                                                                                   Lethal Weapon (1987)
## 8189                                                                                   Jerry Maguire (1996)
## 8190                                                                         While You Were Sleeping (1995)
## 8191                                                                                     Mr. Destiny (1990)
## 8192                                                                           Look Whos Talking Now (1993)
## 8193                                                                                            Fame (1980)
## 8194                                                                          End of the Affair, The (1999)
## 8195                                                                                    Office Space (1999)
## 8196                                                                                    Philadelphia (1993)
## 8197                                                                                   Jerry Maguire (1996)
## 8198                                                                                 Beautiful Girls (1996)
## 8199                                                       Three Colors: Red (Trois couleurs: Rouge) (1994)
## 8200                                                             William Shakespeares Romeo + Juliet (1996)
## 8201                                                                                           Ghost (1990)
## 8202                                                                               Santa Clause, The (1994)
## 8203                                                                               Death Becomes Her (1992)
## 8204                                                                               Golden Child, The (1986)
## 8205                                                                                       Westworld (1973)
## 8206                                                                                           Benji (1974)
## 8207                                                                                     Beetlejuice (1988)
## 8208                                                                                      Armageddon (1998)
## 8209                                                                         American President, The (1995)
## 8210                                                                        Kind Hearts and Coronets (1949)
## 8211                                                                        Night of the Hunter, The (1955)
## 8212                                                                                Parent Trap, The (1961)
## 8213                                                                                Two Weeks Notice (2002)
## 8214                                                                                    East is East (1999)
## 8215                                                                                 Charlies Angels (2000)
## 8216                                                                                   Bottle Rocket (1996)
## 8217                                                                                    Shining, The (1980)
## 8218                                                                            Upside of Anger, The (2005)
## 8219                                 Chronicles of Narnia: The Lion, the Witch and the Wardrobe, The (2005)
## 8220                                                                                Inherit the Wind (1960)
## 8221                                                                        When a Man Loves a Woman (1994)
## 8222                                                                                          Psycho (1960)
## 8223                                                                             Dry White Season, A (1989)
## 8224                                                                                          Kinsey (2004)
## 8225                                                                                       Dish, The (2001)
## 8226                                                                            Seven (a.k.a. Se7en) (1995)
## 8227                                                                                  Third Man, The (1949)
## 8228                                                                                 Lethal Weapon 2 (1989)
## 8229                                                                                        I, Robot (2004)
## 8230                                                                                 Major League II (1994)
## 8231                                                                                 Murphys Romance (1985)
## 8232                                                            Best Little Whorehouse in Texas, The (1982)
## 8233                                                                                Oh, God! Book II (1980)
## 8234                                                                      Man with One Red Shoe, The (1985)
## 8235                                                                        Benny Goodman Story, The (1955)
## 8236                                                                                   Freaky Friday (2003)
## 8237                                                                                   Freaky Friday (1977)
## 8238                                                                                    Little Nicky (2000)
## 8239                                                                                    Total Recall (1990)
## 8240                                                                                     Deep Impact (1998)
## 8241                                                                                     Mindhunters (2004)
## 8242                                                                                  Fantastic Four (2005)
## 8243                                                                                   Orange County (2002)
## 8244                                                                         Life of David Gale, The (2003)
## 8245                                                                                   Sliding Doors (1998)
## 8246                                                                               Finding Forrester (2000)
## 8247                                                                                     Island, The (2005)
## 8248                                                                                   Raising Helen (2004)
## 8249                                                      Lara Croft Tomb Raider: The Cradle of Life (2003)
## 8250                                                  Lemony Snickets A Series of Unfortunate Events (2004)
## 8251                                                                            Nutty Professor, The (1996)
## 8252                                                                                     Jersey Girl (2004)
## 8253                                                                                      Pocahontas (1995)
## 8254                                                                                          Freaks (1932)
## 8255                                                                          All the Presidents Men (1976)
## 8256                                                                               Full Metal Jacket (1987)
## 8257                                                                         40 Year Old Virgin, The (2005)
## 8258                                                          Lord of the Rings: The Two Towers, The (2002)
## 8259                                                        Dark Water (Honogurai mizu no soko kara) (2002)
## 8260                                                                                           Alien (1979)
## 8261                                                                      Terminator 2: Judgment Day (1991)
## 8262                                                                      E.T. the Extra-Terrestrial (1982)
## 8263                                                                                 River Wild, The (1994)
## 8264                                                                              Prince of Darkness (1987)
## 8265                                          One Hundred and One Dalmatians (a.k.a. 101 Dalmatians) (1961)
## 8266                                                                       Manchurian Candidate, The (2004)
## 8267                                                                                       Teen Wolf (1985)
## 8268                                                                               Cutting Edge, The (1992)
## 8269                                                                               Ju-on: The Grudge (2003)
## 8270                                                                                       Gladiator (1992)
## 8271                                                                                   Cold Mountain (2003)
## 8272                                                                                  Forgotten, The (2004)
## 8273                                                                                         Shrek 2 (2004)
## 8274                                                                      Good Night, and Good Luck. (2005)
## 8275                                                                              Dances with Wolves (1990)
## 8276                                                                                       True Lies (1994)
## 8277                                                                               Gangs of New York (2002)
## 8278                                                                                          Dr. No (1962)
## 8279                                                                                       Moonraker (1979)
## 8280                                                                             High Plains Drifter (1973)
## 8281                                                                                 Licence to Kill (1989)
## 8282                                                                                Meet the Fockers (2004)
## 8283                                                              Transporter 2 (Le Transporteur II) (2005)
## 8284                                                                                   Sid and Nancy (1986)
## 8285                                                                                             F/X (1986)
## 8286                                                                                        Dogfight (1991)
## 8287                                                                               Blackboard Jungle (1955)
## 8288                                                                             Dirty Pretty Things (2002)
## 8289                                                                                   Breaking Away (1979)
## 8290                                                                       Femme Nikita, La (Nikita) (1990)
## 8291                                                                            My Uncle (Mon oncle) (1958)
## 8292                                                                                      Shark Tale (2004)
## 8293                                                                           To Kill a Mockingbird (1962)
## 8294                                                                          Generals Daughter, The (1999)
## 8295                                                                                   Shes All That (1999)
## 8296                                                                                  Simple Plan, A (1998)
## 8297                                                                         Something to Talk About (1995)
## 8298                                                                                   Oceans Twelve (2004)
## 8299                                                           Anchorman: The Legend of Ron Burgundy (2004)
## 8300                                                                                         Jarhead (2005)
## 8301                                                                                  Youve Got Mail (1998)
## 8302                                                                                          Sniper (1993)
## 8303                                                                                      Collateral (2004)
## 8304                                                                                           Speed (1994)
## 8305                                                                                Don Juan DeMarco (1995)
## 8306                                                                                       GoldenEye (1995)
## 8307                                                                                       From Hell (2001)
## 8308                                                                                       Daredevil (2003)
## 8309                                                                                        Backbeat (1993)
## 8310                                                              Butch Cassidy and the Sundance Kid (1969)
## 8311                                                                                       Metroland (1997)
## 8312                                                                            Devils Advocate, The (1997)
## 8313                                                                                  Mrs. Doubtfire (1993)
## 8314                                                                    Hunchback of Notre Dame, The (1996)
## 8315                                                                                  Pay It Forward (2000)
## 8316                                                                               Shadow of a Doubt (1943)
## 8317                                                                                  Fantastic Four (2005)
## 8318                                                            Hitchhikers Guide to the Galaxy, The (2005)
## 8319                                                                             Saints and Soldiers (2003)
## 8320                                                            Dont Tempt Me (Sin noticias de Dios) (2001)
## 8321                                                                            Nutty Professor, The (1996)
## 8322                                                                                  Stir of Echoes (1999)
## 8323                                                                                        Elephant (2003)
## 8324                                                                                      Fat Albert (2004)
## 8325                                                                                   Trainspotting (1996)
## 8326                                                                                    Citizen Kane (1941)
## 8327                                                                                     Phone Booth (2002)
## 8328                                                                                         Hostage (2005)
## 8329                                                                                         Rebound (2005)
## 8330                                                                            Where the Truth Lies (2005)
## 8331                                                                                 Erin Brockovich (2000)
## 8332                                                                          Together (Tillsammans) (2000)
## 8333                                                                          Constant Gardener, The (2005)
## 8334                                                                                           Alien (1979)
## 8335                                                                                Crocodile Dundee (1986)
## 8336                                                                       Fast and the Furious, The (2001)
## 8337                                                                             Crocodile Dundee II (1988)
## 8338                                                                                     Killing Zoe (1994)
## 8339                                                                           Butterfly Effect, The (2004)
## 8340                                                                                     Vanity Fair (2004)
## 8341                                                                                    Spider-Man 2 (2004)
## 8342                                                                          Fun with Dick and Jane (2005)
## 8343                                                                                     Waking Life (2001)
## 8344                                                                                Interpreter, The (2005)
## 8345                                                                       Girl with a Pearl Earring (2003)
## 8346                                                                                    Just Friends (2005)
## 8347                                                                              Da Vinci Code, The (2006)
## 8348                                                                                   Shooting Fish (1997)
## 8349                                                                         Man Without a Face, The (1993)
## 8350                                                                          French Connection, The (1971)
## 8351                                                                                       Apollo 13 (1995)
## 8352                                                                               Last Samurai, The (2003)
## 8353                                                                             Anatomy of a Murder (1959)
## 8354                                                                                    Blood Simple (1984)
## 8355                                                                                Bonnie and Clyde (1967)
## 8356                                              Porco Rosso (a.k.a. Crimson Pig) (Kurenai no buta) (1992)
## 8357                                                                                   Stranger, The (1946)
## 8358                                                                                    Mean Streets (1973)
## 8359                                                                            Grapes of Wrath, The (1940)
## 8360                                                                            Bridget Joness Diary (2001)
## 8361                                                                                   Private Parts (1997)
## 8362                                                                                   Above the Law (1988)
## 8363                                                                                    Full Frontal (2002)
## 8364                                                                                 Time to Kill, A (1996)
## 8365                                                                                       Crow, The (1994)
## 8366                                                                                    Best in Show (2000)
## 8367                                                                                     Bitter Moon (1992)
## 8368                                                                                Bringing Up Baby (1938)
## 8369                                                          In the Mood For Love (Fa yeung nin wa) (2000)
## 8370                                                                       Our Music (Notre Musique) (2004)
## 8371                                                                                   Sleepy Hollow (1999)
## 8372                                                                                    Storytelling (2001)
## 8373                                                                            Hudsucker Proxy, The (1994)
## 8374                                                                     Big Trouble in Little China (1986)
## 8375                                                                                          Colors (1988)
## 8376                                                                                 Day of the Dead (1985)
## 8377                                                                                    Gambler, The (1974)
## 8378                                                                                      Hot Shots! (1991)
## 8379                                                                                     Man on Fire (2004)
## 8380                                                                                      Ossessione (1943)
## 8381                                                                              Thin Red Line, The (1998)
## 8382                                                       All About My Mother (Todo sobre mi madre) (1999)
## 8383                                                                   Ichi the Killer (Koroshiya 1) (2001)
## 8384                                                                             Million Dollar Baby (2004)
## 8385                                                                       Thunderbolt and Lightfoot (1974)
## 8386                                                                                        I, Robot (2004)
## 8387                                                                         When Harry Met Sally... (1989)
## 8388                                                                                     Hudson Hawk (1991)
## 8389                                                                                  One Hour Photo (2002)
## 8390                                                                                        Insomnia (2002)
## 8391                                                                                         Code 46 (2003)
## 8392                                                                                        Palmetto (1998)
## 8393                                                                   Road Warrior, The (Mad Max 2) (1981)
## 8394                                                                                            Tron (1982)
## 8395                                                                                    Sleepwalkers (1992)
## 8396                                                                      Good Night, and Good Luck. (2005)
## 8397                                                                                   North Country (2005)
## 8398                                                              Prize Winner of Defiance Ohio, The (2005)
## 8399                                                                                     Richard III (1995)
## 8400                                                                                 Sleeping Beauty (1959)
## 8401                                                                              Singin in the Rain (1952)
## 8402                                                                                    Major League (1989)
## 8403                                                      Lara Croft Tomb Raider: The Cradle of Life (2003)
## 8404                                                                                         Syriana (2005)
## 8405                                                                                  V for Vendetta (2006)
## 8406                                                       Pirates of the Caribbean: Dead Mans Chest (2006)
## 8407                                                                          History of Violence, A (2005)
## 8408                                                                                  4 Little Girls (1997)
## 8409                                                                                           Lenny (1974)
## 8410                                                       Pirates of the Caribbean: Dead Mans Chest (2006)
## 8411                                                     Talladega Nights: The Ballad of Ricky Bobby (2006)
## 8412                                                                                  Must Love Dogs (2005)
## 8413                                                                                    Shadow Magic (2000)
## 8414                                                                               Empire of the Sun (1987)
## 8415                                                                     Legend of Bagger Vance, The (2000)
## 8416                                                                                        Beerfest (2006)
## 8417                                                     Talladega Nights: The Ballad of Ricky Bobby (2006)
## 8418                                                                                     Eight Below (2006)
## 8419                                                                                     Kinky Boots (2005)
## 8420                                                                                   Take the Lead (2006)
## 8421                                                                             Lucky Number Slevin (2006)
## 8422                                                                                   Hollywoodland (2006)
## 8423                                                                                       United 93 (2006)
## 8424                                                                                        Derailed (2005)
## 8425                                                                                          Saw II (2005)
## 8426                                                                                      Wonderland (2003)
## 8427                                                                                      Deep Cover (1992)
## 8428                                                                           Beverly Hills Cop III (1994)
## 8429                                                                                         RoboCop (1987)
## 8430                                                                                 Charlies Angels (2000)
## 8431                                                           Eternal Sunshine of the Spotless Mind (2004)
## 8432                                                                     Show Me Love (Fucking Åmål) (1998)
## 8433                                                                                    Pretty Woman (1990)
## 8434                                                                                        Superman (1978)
## 8435                                                                       Robin Hood: Men in Tights (1993)
## 8436                                                                                         Titanic (1997)
## 8437                                                           Austin Powers: The Spy Who Shagged Me (1999)
## 8438                                                                                         Traffic (2000)
## 8439                                                                            Seven (a.k.a. Se7en) (1995)
## 8440                                                                               Kill Bill: Vol. 2 (2004)
## 8441                                                                           M*A*S*H (a.k.a. MASH) (1970)
## 8442                                                                             From Dusk Till Dawn (1996)
## 8443                                                                                    Strange Brew (1983)
## 8444                                     Adventures of Buckaroo Banzai Across the 8th Dimension, The (1984)
## 8445                                                                   Independence Day (a.k.a. ID4) (1996)
## 8446                                               Léon: The Professional (Léon) (Professional, The) (1994)
## 8447                                                                                 American Beauty (1999)
## 8448                                                                       Silence of the Lambs, The (1991)
## 8449                                                                       Shawshank Redemption, The (1994)
## 8450                                                                           Stranger Than Fiction (2006)
## 8451                                                                        Honey, I Shrunk the Kids (1989)
## 8452                                                                               Beautiful Mind, A (2001)
## 8453                                                                                          Gandhi (1982)
## 8454                                                                               Dial M for Murder (1954)
## 8455                                                                                   Fugitive, The (1993)
## 8456                                                                           Beverly Hills Cop III (1994)
## 8457                                                                       Shawshank Redemption, The (1994)
## 8458                                                                       Robin Hood: Men in Tights (1993)
## 8459                                                                                 Specialist, The (1994)
## 8460                                                                             From Dusk Till Dawn (1996)
## 8461                                                                     Back to the Future Part III (1990)
## 8462                                                                              Dead Poets Society (1989)
## 8463                                                                             Princess Bride, The (1987)
## 8464                                              Lord of the Rings: The Fellowship of the Ring, The (2001)
## 8465                                                               Wallace & Gromit: A Grand Day Out (1989)
## 8466                                                                                      Fight Club (1999)
## 8467                                                                                   Happy Gilmore (1996)
## 8468                                                                                          Psycho (1960)
## 8469                                                                                   Jurassic Park (1993)
## 8470                                                                               Beautiful Mind, A (2001)
## 8471                                                                                    Spider-Man 2 (2004)
## 8472                                                                                  Monsters, Inc. (2001)
## 8473                                                                              Dances with Wolves (1990)
## 8474                                                                                           Speed (1994)
## 8475                                           Star Wars: Episode IV - A New Hope (a.k.a. Star Wars) (1977)
## 8476                                           Star Wars: Episode IV - A New Hope (a.k.a. Star Wars) (1977)
## 8477                                                                      Die Hard: With a Vengeance (1995)
## 8478                                                Crouching Tiger, Hidden Dragon (Wu hu zang long) (2000)
## 8479                                                        Harry Potter and the Prisoner of Azkaban (2004)
## 8480                                                                             Mission: Impossible (1996)
## 8481                                                                                   Oceans Eleven (2001)
## 8482           Harry Potter and the Sorcerers Stone (a.k.a. Harry Potter and the Philosophers Stone) (2001)
## 8483                                                                                 Terminator, The (1984)
## 8484                                                                                      Fight Club (1999)
## 8485                                                                              As Good As It Gets (1997)
## 8486                                                                                        Sin City (2005)
## 8487                                                                                           X-Men (2000)
## 8488                                                                                       Cast Away (2000)
## 8489                                                                         Matrix Revolutions, The (2003)
## 8490                                                  Lord of the Rings: The Return of the King, The (2003)
## 8491                                                                          Star Trek: Generations (1994)
## 8492                                                                                      Armageddon (1998)
## 8493                                                                                        Superman (1978)
## 8494                                                                             Million Dollar Baby (2004)
## 8495                                                            South Park: Bigger, Longer and Uncut (1999)
## 8496                                                                                   Prestige, The (2006)
## 8497                                                                                       Gladiator (2000)
## 8498                                                                                         Gattaca (1997)
## 8499                            Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb (1964)
## 8500             Borat: Cultural Learnings of America for Make Benefit Glorious Nation of Kazakhstan (2006)
## 8501                                                                               Court Jester, The (1956)
## 8502                                                                                     About a Boy (2002)
## 8503                          National Lampoons Lady Killers (a.k.a. National Lampoons Gold Diggers) (2003)
## 8504                                                                       Hunt for Red October, The (1990)
## 8505                                                                                   Jerry Maguire (1996)
## 8506                                                                                 American Psycho (2000)
## 8507                                                                               National Treasure (2004)
## 8508                                                                               National Treasure (2004)
## 8509                                                    Star Wars: Episode III - Revenge of the Sith (2005)
## 8510                                                                                    Office Space (1999)
## 8511                                                                           Thank You for Smoking (2006)
## 8512                                                                                      Goodfellas (1990)
## 8513                                                                  Hard-Boiled (Lat sau san taam) (1992)
## 8514                                                 Master and Commander: The Far Side of the World (2003)
## 8515                                           Star Wars: Episode IV - A New Hope (a.k.a. Star Wars) (1977)
## 8516                                              Lord of the Rings: The Fellowship of the Ring, The (2001)
## 8517                                                           Austin Powers: The Spy Who Shagged Me (1999)
## 8518                                                      Star Wars: Episode VI - Return of the Jedi (1983)
## 8519                                                                                   Jurassic Park (1993)
## 8520                                                                               Kill Bill: Vol. 2 (2004)
## 8521                                                                                   Oceans Eleven (2001)
## 8522                                                                                Wedding Crashers (2005)
## 8523                                                                                Anger Management (2003)
## 8524                                                                                         Titanic (1997)
## 8525                                                    Star Wars: Episode III - Revenge of the Sith (2005)
## 8526                                                                                Big Mommas House (2000)
## 8527                                                                                  Bruce Almighty (2003)
## 8528                                                                                         Chicago (2002)
## 8529                                                                                 Fahrenheit 9/11 (2004)
## 8530                                                                                        Die Hard (1988)
## 8531                                                                                   Super Size Me (2004)
## 8532                                                                                    Dr. Dolittle (1998)
## 8533                                                                               Finding Forrester (2000)
## 8534                                                             Harry Potter and the Goblet of Fire (2005)
## 8535                                                                                           Havoc (2005)
## 8536                                                                                         Ice Age (2002)
## 8537                                                                                      Madagascar (2005)
## 8538                                                                                      Monkeybone (2001)
## 8539                                                                                  Mrs. Doubtfire (1993)
## 8540                                                                                  My Blue Heaven (1990)
## 8541                                                                                      Old School (2003)
## 8542                                                                                        Serenity (2005)
## 8543                                                                                   Shanghai Noon (2000)
## 8544                                 Chronicles of Narnia: The Lion, the Witch and the Wardrobe, The (2005)
## 8545                                                                                  Lion King, The (1994)
## 8546                                              Lord of the Rings: The Fellowship of the Ring, The (2001)
## 8547                                                                                  V for Vendetta (2006)
## 8548                                                                                 Minority Report (2002)
## 8549                                                                        Blair Witch Project, The (1999)
## 8550                                                                                   Dumb & Dumber (1994)
## 8551                                                                                 American Beauty (1999)
## 8552                                                                                Wedding Crashers (2005)
## 8553                                                                               Wizard of Oz, The (1939)
## 8554                                                                                  School of Rock (2003)
## 8555                                                                                    Donnie Darko (2001)
## 8556                                                                            Beauty and the Beast (1991)
## 8557                                                                                    Waynes World (1992)
## 8558                                                                                      Mummy, The (1999)
## 8559                                                                                  American Pie 2 (2001)
## 8560                                                                                   Cool Runnings (1993)
## 8561                                                                                  Back to School (1986)
## 8562                                                                         Ferris Buellers Day Off (1986)
## 8563                                                  Star Wars: Episode V - The Empire Strikes Back (1980)
## 8564                                                                                Truman Show, The (1998)
## 8565                                                                 Monty Python and the Holy Grail (1975)
## 8566                                                                            Strangers on a Train (1951)
## 8567                                                                               Starship Troopers (1997)
## 8568                                                                                      Collateral (2004)
## 8569                                                                                         Con Air (1997)
## 8570                                                                                 Minority Report (2002)
## 8571                                                            South Park: Bigger, Longer and Uncut (1999)
## 8572                                                                               Beautiful Mind, A (2001)
## 8573                                                                     Searching for Bobby Fischer (1993)
## 8574                                                                 Monty Python and the Holy Grail (1975)
## 8575                                                                                   Departed, The (2006)
## 8576                                                           Eternal Sunshine of the Spotless Mind (2004)
## 8577                                                                                  Apocalypse Now (1979)
## 8578                                                                               Great Escape, The (1963)
## 8579                                                                                 Schindlers List (1993)
## 8580                                                                                   Thin Man, The (1934)
## 8581                                                                                Deer Hunter, The (1978)
## 8582                                                                                         Sabrina (1995)
## 8583                                                                                         Gattaca (1997)
## 8584                                                                                          Alien³ (1992)
## 8585                                                    Star Wars: Episode II - Attack of the Clones (2002)
## 8586                                                                                         Shrek 2 (2004)
## 8587                                                    Amelie (Fabuleux destin dAmélie Poulain, Le) (2001)
## 8588                                                                                        Chocolat (2000)
## 8589                                                            Wallace & Gromit: The Wrong Trousers (1993)
## 8590                                                                                 Pieces of April (2003)
## 8591                                                                                 Odd Couple, The (1968)
## 8592                                                                                   Pleasantville (1998)
## 8593                                                                               Battle of Britain (1969)
## 8594                                                                                   Almost Famous (2000)
## 8595                                                                                    Insider, The (1999)
## 8596                                                                          All the Presidents Men (1976)
## 8597                                                                           Night at the Opera, A (1935)
## 8598                                                                                    Forrest Gump (1994)
## 8599                                                                                      Train, The (1964)
## 8600                                                                              To Be or Not to Be (1942)
## 8601                                                                                       Gunga Din (1939)
## 8602                                                                       Two Mules for Sister Sara (1969)
## 8603                                                                     Shop Around the Corner, The (1940)
## 8604                                                                            To Have and Have Not (1944)
## 8605                                                                                       Ninotchka (1939)
## 8606                                                                               Dial M for Murder (1954)
## 8607                                                                       You Cant Take It with You (1938)
## 8608                                                                            Arsenic and Old Lace (1944)
## 8609                                                                              Singin in the Rain (1952)
## 8610                                                                           Man from Laramie, The (1955)
## 8611                                                                               Wizard of Oz, The (1939)
## 8612                                                                                   Prestige, The (2006)
## 8613                                                           Eternal Sunshine of the Spotless Mind (2004)
## 8614                                                                             Mission: Impossible (1996)
## 8615                                                                      Ace Ventura: Pet Detective (1994)
## 8616                                                  Lord of the Rings: The Return of the King, The (2003)
## 8617                                                                                          Scream (1996)
## 8618                                                                                     Judge Dredd (1995)
## 8619                                                                                       Liar Liar (1997)
## 8620                                                    Amelie (Fabuleux destin dAmélie Poulain, Le) (2001)
## 8621                                                                                    Animal House (1978)
## 8622                                                                                     Matrix, The (1999)
## 8623                                                                                   Oceans Eleven (2001)
## 8624                                                                                       Chinatown (1974)
## 8625                                                                                     Sling Blade (1996)
## 8626                                                                                           Alien (1979)
## 8627                                                                                          Brazil (1985)
## 8628                                                                                         Mad Max (1979)
## 8629                                                                                    Men in Black (1997)
## 8630                                                                         Ferris Buellers Day Off (1986)
## 8631                                                                                      Annie Hall (1977)
## 8632                                                                                   Trainspotting (1996)
## 8633                                                                                       Liar Liar (1997)
## 8634                                                                                          Snatch (2000)
## 8635                                                                                    Office Space (1999)
## 8636                                                                                        Rain Man (1988)
## 8637                                             Like Water for Chocolate (Como agua para chocolate) (1992)
## 8638                                                                                         Top Gun (1986)
## 8639                                                                                  Monsters, Inc. (2001)
## 8640                                                                             Romancing the Stone (1984)
## 8641                                                                                    Forrest Gump (1994)
## 8642                                                                             Princess Bride, The (1987)
## 8643                                                                                  Lion King, The (1994)
## 8644                                                                 Monty Python and the Holy Grail (1975)
## 8645                                                                                     About a Boy (2002)
## 8646                                                                     Back to the Future Part III (1990)
## 8647                                                                                        Millions (2004)
## 8648                                                                                           Dogma (1999)
## 8649                                                                             Shakespeare in Love (1998)
## 8650                                                                                          Dr. No (1962)
## 8651                                                                              Christmas Story, A (1983)
## 8652                                                                                 American Beauty (1999)
## 8653                                                                   Star Trek IV: The Voyage Home (1986)
## 8654                                                                            Seven (a.k.a. Se7en) (1995)
## 8655                                                    Star Wars: Episode II - Attack of the Clones (2002)
## 8656                                                           Eternal Sunshine of the Spotless Mind (2004)
## 8657                                                                                 Black Hawk Down (2001)
## 8658                                                                           Bourne Supremacy, The (2004)
## 8659                                                                                    Bugs Life, A (1998)
## 8660                                                      Star Wars: Episode VI - Return of the Jedi (1983)
## 8661                                                                                   Jurassic Park (1993)
## 8662                                                                           Bourne Supremacy, The (2004)
## 8663                                                                         40 Year Old Virgin, The (2005)
## 8664                                                                                      Armageddon (1998)
## 8665                                                                                      Mummy, The (1999)
## 8666                                                                                 American Beauty (1999)
## 8667                                                                                         Shrek 2 (2004)
## 8668                                                                             Catch Me If You Can (2002)
## 8669                                                                                         Aladdin (1992)
## 8670                                                        Harry Potter and the Prisoner of Azkaban (2004)
## 8671                                                                                  Mrs. Doubtfire (1993)
## 8672                                                                    A.I. Artificial Intelligence (2001)
## 8673                                                                                    Why We Fight (2005)
## 8674                                                                                          Batman (1989)
## 8675                                                                                           X-Men (2000)
## 8676                                                                       Hunt for Red October, The (1990)
## 8677                                                                                        Maverick (1994)
## 8678                                                                      Terminator 2: Judgment Day (1991)
## 8679                                                                                    Forrest Gump (1994)
## 8680                                                                                    Finding Nemo (2003)
## 8681                                                                                   Dumb & Dumber (1994)
## 8682                                                                                         Gattaca (1997)
## 8683                                                                              North by Northwest (1959)
## 8684                                                                                         Traffic (2000)
## 8685                                                                                   Pleasantville (1998)
## 8686                                                                            Its a Wonderful Life (1946)
## 8687                                                            Wallace & Gromit: The Wrong Trousers (1993)
## 8688                                                                                    Forrest Gump (1994)
## 8689                                                                                           Mulan (1998)
## 8690                                                                                       Gladiator (2000)
## 8691                                                                                  Monsters, Inc. (2001)
## 8692                                                                                    Men in Black (1997)
## 8693                                                             Life Is Beautiful (La Vita è bella) (1997)
## 8694                                                                   National Lampoons Senior Trip (1995)
## 8695                                                                                             Elf (2003)
## 8696                                                                                       Toy Story (1995)
## 8697                                                                              Jackass Number Two (2006)
## 8698                                                                             Sound of Music, The (1965)
## 8699                                                                                         Vertigo (1958)
## 8700                                                                                   Exorcist, The (1973)
## 8701                                                                                Fatal Attraction (1987)
## 8702                                                                                         Contact (1997)
## 8703                                                                                  Demolition Man (1993)
## 8704                                                          League of Extraordinary Gentlemen, The (2003)
## 8705                                                                                          Ransom (1996)
## 8706                                                                                          Grease (1978)
## 8707                                                                            Hot Shots! Part Deux (1993)
## 8708                                                                                      Braveheart (1995)
## 8709                                                                                  Monsters, Inc. (2001)
## 8710                                                                                    Men in Black (1997)
## 8711                                                                                      Spider-Man (2002)
## 8712                                                                                         Aladdin (1992)
## 8713                                                                                   Arachnophobia (1990)
## 8714                                                                                  Apocalypse Now (1979)
## 8715                                                                            Its a Wonderful Life (1946)
## 8716                                                                                     Rear Window (1954)
## 8717                                                                                      Fight Club (1999)
## 8718                                                                         Godfather: Part II, The (1974)
## 8719                                                                             Maltese Falcon, The (1941)
## 8720                                                                                     Stand by Me (1986)
## 8721                                                                       Silence of the Lambs, The (1991)
## 8722                                                                                    Forrest Gump (1994)
## 8723                                                                                       Gladiator (2000)
## 8724                                                                                  Cool Hand Luke (1967)
## 8725                                                                                        Rain Man (1988)
## 8726                                                                                          Clerks (1994)
## 8727                                                Crouching Tiger, Hidden Dragon (Wu hu zang long) (2000)
## 8728                                                                      Man Who Knew Too Much, The (1956)
## 8729                                                  Star Wars: Episode V - The Empire Strikes Back (1980)
## 8730                                                                               Road to Perdition (2002)
## 8731                                                                                   Oceans Eleven (2001)
## 8732                                                                            Matrix Reloaded, The (2003)
## 8733                                                             Ghostbusters (a.k.a. Ghost Busters) (1984)
## 8734                                                                                 Schindlers List (1993)
## 8735                                                                                Incredibles, The (2004)
## 8736                                                                                     Toy Story 2 (1999)
## 8737                                                                                   Jerry Maguire (1996)
## 8738                                                                           Bowling for Columbine (2002)
## 8739                                                                 Monty Python and the Holy Grail (1975)
## 8740                                                                                        Swingers (1996)
## 8741                                                                        Blair Witch Project, The (1999)
## 8742                                                                                          Capote (2005)
## 8743                                                                                   High Fidelity (2000)
## 8744                                                       Pirates of the Caribbean: Dead Mans Chest (2006)
## 8745                                                                                        Sideways (2004)
## 8746                                                                                    Crimson Tide (1995)
## 8747                                                                                      Collateral (2004)
## 8748                                                                                           Ikiru (1952)
## 8749                                                                               American Splendor (2003)
## 8750                                                                                     Castle, The (1997)
## 8751                                                                   Amores Perros (Loves a Bitch) (2000)
## 8752                                                                                              Pi (1998)
## 8753                                                       Three Colors: Blue (Trois couleurs: Bleu) (1993)
## 8754                                                       Three Colors: Red (Trois couleurs: Rouge) (1994)
## 8755                                                                                     Beetlejuice (1988)
## 8756                                                                                     Phone Booth (2002)
## 8757                                                           Austin Powers: The Spy Who Shagged Me (1999)
## 8758                                                            Enron: The Smartest Guys in the Room (2005)
## 8759                                                                            Seven (a.k.a. Se7en) (1995)
## 8760                                                                                    Shining, The (1980)
## 8761                                                                   Independence Day (a.k.a. ID4) (1996)
## 8762                                                                     Four Weddings and a Funeral (1994)
## 8763                                                                        Who Framed Roger Rabbit? (1988)
## 8764                                                                        Honey, I Shrunk the Kids (1989)
## 8765                                                                                        Mallrats (1995)
## 8766                                                                                 What Women Want (2000)
## 8767                                                                                  Arlington Road (1999)
## 8768                                                                                          Batman (1989)
## 8769                                                                                           K-PAX (2001)
## 8770                                                                                Corrina, Corrina (1994)
## 8771                                                                               American Tail, An (1986)
## 8772                                                                                           Signs (2002)
## 8773                                                                            Beverly Hills Cop II (1987)
## 8774                                                                                   Summer of Sam (1999)
## 8775                                                                                      Persuasion (1995)
## 8776                                                                                          8 Mile (2002)
## 8777                                                                                        Rain Man (1988)
## 8778                                                                                           Signs (2002)
## 8779                                                                                    Pretty Woman (1990)
## 8780                                                                                Anger Management (2003)
## 8781                                                                                        Face/Off (1997)
## 8782                                            Adventures of Milo and Otis, The (Koneko monogatari) (1986)
## 8783                                                                                     Blank Check (1994)
## 8784                                                                                           Hype! (1996)
## 8785                                                                                       Crow, The (1994)
## 8786                                                                                           Blade (1998)
## 8787                                                                                       Daredevil (2003)
## 8788                                                                                      MirrorMask (2005)
## 8789                                                             Adventures of Baron Munchausen, The (1988)
## 8790                                                                                           Chaos (2001)
## 8791                                                            My Sassy Girl (Yeopgijeogin geunyeo) (2001)
## 8792                                                                           Sunless (Sans Soleil) (1983)
## 8793                                                              Killer, The (Die xue shuang xiong) (1989)
## 8794                                                              Close Encounters of the Third Kind (1977)
## 8795                                                                                       Stalag 17 (1953)
## 8796                                                                               Mr. Hollands Opus (1995)
## 8797                                                                          Star Trek: Generations (1994)
## 8798                                                                                    Men in Black (1997)
## 8799                                                             Ghostbusters (a.k.a. Ghost Busters) (1984)
## 8800                                                                                    Corpse Bride (2005)
## 8801                                                                                        Accepted (2006)
## 8802                                                                                       Desperado (1995)
## 8803                                                                                 Green Mile, The (1999)
## 8804                                                                                           Click (2006)
## 8805                                                                                      Spellbound (2002)
## 8806                                                                             Lost in Translation (2003)
## 8807                                                              Indiana Jones and the Last Crusade (1989)
## 8808                                                                                 Starsky & Hutch (2004)
## 8809                                                                                  Racing Stripes (2005)
## 8810                                                                                 Knights Tale, A (2001)
## 8811                                                               Princess Mononoke (Mononoke-hime) (1997)
## 8812                                                                                     Raging Bull (1980)
## 8813                                                                                  Monsters, Inc. (2001)
## 8814                         Raiders of the Lost Ark (Indiana Jones and the Raiders of the Lost Ark) (1981)
## 8815                                                                      Die Hard: With a Vengeance (1995)
## 8816                                                             Harry Potter and the Goblet of Fire (2005)
## 8817                                                                     12 Monkeys (Twelve Monkeys) (1995)
## 8818                                                                                           Shaft (2000)
## 8819                                                                                    Corpse Bride (2005)
## 8820                                                                                       Daredevil (2003)
## 8821                                                                                             Saw (2004)
## 8822                                                                              Joy Luck Club, The (1993)
## 8823                                                                                     Rush Hour 2 (2001)
## 8824                                                                                   Walk the Line (2005)
## 8825                                                                               Black Dahlia, The (2006)
## 8826                                                                                          Lolita (1962)
## 8827                                                                                     Man on Fire (2004)
## 8828                                                                                Meet the Parents (2000)
## 8829                                                                                    12 Angry Men (1957)
## 8830                                                               I Am a Fugitive from a Chain Gang (1932)
## 8831                                                                              Lawrence of Arabia (1962)
## 8832                                                                       Anne of the Thousand Days (1969)
## 8833                                                                                           Glory (1989)
## 8834                                                              Final Fantasy VII: Advent Children (2004)
## 8835                                                                                       Ring, The (2002)
## 8836                                                                                    Moulin Rouge (2001)
## 8837                                                                                         Ice Age (2002)
## 8838                                                                                       Liar Liar (1997)
## 8839           Harry Potter and the Sorcerers Stone (a.k.a. Harry Potter and the Philosophers Stone) (2001)
## 8840                                                                                   Oceans Eleven (2001)
## 8841                                                                 Monty Python and the Holy Grail (1975)
## 8842                                                                      O Brother, Where Art Thou? (2000)
## 8843                                                                    Serpent and the Rainbow, The (1988)
## 8844                                                                    Who Killed the Electric Car? (2006)
## 8845                                                                                    Bugs Life, A (1998)
## 8846                                                                      E.T. the Extra-Terrestrial (1982)
## 8847                                                                                 Charlies Angels (2000)
## 8848                                                                           X-Men: The Last Stand (2006)
## 8849                                                                                  Lion King, The (1994)
## 8850                                                                                  Reservoir Dogs (1992)
## 8851                                                                                           Signs (2002)
## 8852                                                                                   Almost Famous (2000)
## 8853                                                                                    Waynes World (1992)
## 8854                                                                                   Lethal Weapon (1987)
## 8855                                                                              Dead Poets Society (1989)
## 8856                                                                                         Jumanji (1995)
## 8857                                                                               Hero (Ying xiong) (2002)
## 8858                                                             Life Is Beautiful (La Vita è bella) (1997)
## 8859                                                                                   Trainspotting (1996)
## 8860                                                                               Starship Troopers (1997)
## 8861                                                                                         Con Air (1997)
## 8862                                                                     Monty Pythons Life of Brian (1979)
## 8863                                                                                        21 Grams (2003)
## 8864                                                                               Jurassic Park III (2001)
## 8865                                                                            Hot Shots! Part Deux (1993)
## 8866                                                                         Lara Croft: Tomb Raider (2001)
## 8867                                                                               L.A. Confidential (1997)
## 8868                                                                                  One Hour Photo (2002)
## 8869                                                                                  V for Vendetta (2006)
## 8870                                                                                        Mallrats (1995)
## 8871                                                                                   Departed, The (2006)
## 8872                                                                                       Tombstone (1993)
## 8873                                                                                    General, The (1927)
## 8874                                                            Seven Samurai (Shichinin no samurai) (1954)
## 8875                                                                               Dark Crystal, The (1982)
## 8876                                           Star Wars: Episode IV - A New Hope (a.k.a. Star Wars) (1977)
## 8877                                                                 I Know What You Did Last Summer (1997)
## 8878                                                     Austin Powers: International Man of Mystery (1997)
## 8879                                                                                       Crow, The (1994)
## 8880                                                                                      Phenomenon (1996)
## 8881                                                                                     Unbreakable (2000)
## 8882                                                                                X2: X-Men United (2003)
## 8883                                                                         Gods Must Be Crazy, The (1980)
## 8884                                                                                 What Women Want (2000)
## 8885                                                                       Six Degrees of Separation (1993)
## 8886                                                                             Intolerable Cruelty (2003)
## 8887                                                                                   Weird Science (1985)
## 8888                                                                                   Shes All That (1999)
## 8889                                                                               Keeping the Faith (2000)
## 8890                                                                               Golden Child, The (1986)
## 8891                                                                                          Sirens (1994)
## 8892                                                                               Menace II Society (1993)
## 8893                                                                                 King and I, The (1956)
## 8894                                                                                Cant Hardly Wait (1998)
## 8895                                                                                   Fools Rush In (1997)
## 8896                                                                 Sister Act 2: Back in the Habit (1993)
## 8897                                                           Sky Captain and the World of Tomorrow (2004)
## 8898                                                                                   Orange County (2002)
## 8899                                                                            Little Miss Sunshine (2006)
## 8900                                                                                   All About Eve (1950)
## 8901                                                                                    Shes the Man (2006)
## 8902                                                                                         Ben-Hur (1959)
## 8903                                                                                 Mystery, Alaska (1999)
## 8904                                                                                   Space Cowboys (2000)
## 8905                                                                                    Three Amigos (1986)
## 8906                                                                                     Richie Rich (1994)
## 8907                                                                                 Dangerous Minds (1995)
## 8908                                                                                    Analyze This (1999)
## 8909                                                           I Still Know What You Did Last Summer (1998)
## 8910                                                                                   Freaky Friday (2003)
## 8911                                                                   Down and Out in Beverly Hills (1986)
## 8912                                                                                           Speed (1994)
## 8913                                                                              Brokeback Mountain (2005)
## 8914                                                                                           Alien (1979)
## 8915                                                                                    Lost Highway (1997)
## 8916                                                                                 Die Another Day (2002)
## 8917             Borat: Cultural Learnings of America for Make Benefit Glorious Nation of Kazakhstan (2006)
## 8918                                                                                   Trainspotting (1996)
## 8919                                                                               Kill Bill: Vol. 2 (2004)
## 8920                                                                                  Monsters, Inc. (2001)
## 8921                                                                                   High Fidelity (2000)
## 8922                                                                                      Sting, The (1973)
## 8923                                                                                        Rounders (1998)
## 8924                                                                                           Ronin (1998)
## 8925                                                                                   Orange County (2002)
## 8926                                                                               Coming to America (1988)
## 8927                                                                              North by Northwest (1959)
## 8928                                                                                  Dolce Vita, La (1960)
## 8929                                                                                          Aliens (1986)
## 8930                                                                                 Rumor Has It... (2005)
## 8931                                                                                        Stick It (2006)
## 8932                                                 March of the Penguins (Marche de lempereur, La) (2005)
## 8933                                                                    Mostly Martha (Bella Martha) (2001)
## 8934                                                                             Kiss Kiss Bang Bang (2005)
## 8935                                                                               Pink Panther, The (2006)
## 8936                                                                                  Contender, The (2000)
## 8937                                                                                      No Way Out (1987)
## 8938                                                                                         Jarhead (2005)
## 8939                                                                                    Passenger 57 (1992)
## 8940                                                     Hearts of Darkness: A Filmmakers Apocalypse (1991)
## 8941                                                                                      Home Alone (1990)
## 8942                                                                                 Minority Report (2002)
## 8943                                                                                 Black Hawk Down (2001)
## 8944                                                                              Fifth Element, The (1997)
## 8945                                                                                    Total Recall (1990)
## 8946                                                                                Truman Show, The (1998)
## 8947                                                                                     Whale Rider (2002)
## 8948                                                                                        Fan, The (1996)
## 8949                                                                                       Alexander (2004)
## 8950                                                                              Brokeback Mountain (2005)
## 8951                                                                                   Departed, The (2006)
## 8952                                                                         Mission: Impossible III (2006)
## 8953                                                                                        Swingers (1996)
## 8954                                                                                           Babel (2006)
## 8955                                                                                    Garden State (2004)
## 8956                                                                                   Departed, The (2006)
## 8957                                                                                   Prestige, The (2006)
## 8958                                                                          Devil Wears Prada, The (2006)
## 8959                                                                                       Ghost Dad (1990)
## 8960                                                                     Indian in the Cupboard, The (1995)
## 8961                                                                                  School of Rock (2003)
## 8962                                                                                        Fly, The (1958)
## 8963                                                                                       Spartacus (1960)
## 8964                                                                             Lucky Number Slevin (2006)
## 8965                                                                                   Departed, The (2006)
## 8966                                                                                           Crank (2006)
## 8967                                                                                   Casino Royale (2006)
## 8968                                                         Pans Labyrinth (El Laberinto del fauno) (2006)
## 8969                                                    Lives of Others, The (Das Leben der Anderen) (2006)
## 8970                                                                      Last King of Scotland, The (2006)
## 8971                                                                              Back to the Future (1985)
## 8972                                                          Passenger, The (Professione: reporter) (1975)
## 8973                                                                                  Evil (Ondskan) (2003)
## 8974                                                    Star Wars: Episode II - Attack of the Clones (2002)
## 8975                                                                     Theres Something About Mary (1998)
## 8976                                                               Final Fantasy: The Spirits Within (2001)
## 8977                                                                                        Spy Hard (1996)
## 8978                                                                                Any Given Sunday (1999)
## 8979                                                                                  Bruce Almighty (2003)
## 8980                                                                                        Wiz, The (1978)
## 8981                                                                                       Tombstone (1993)
## 8982                                                         Pirates of the Caribbean: At Worlds End (2007)
## 8983                                                                                    First Knight (1995)
## 8984                                                                                            Doom (2005)
## 8985                                                                                        Hot Fuzz (2007)
## 8986                                                                                   Resident Evil (2002)
## 8987                                                                                        Accepted (2006)
## 8988                                                             Ghost in the Shell (Kôkaku kidôtai) (1995)
## 8989                                                      Star Wars: Episode VI - Return of the Jedi (1983)
## 8990                                                                                  Godfather, The (1972)
## 8991                                                                                 Little Children (2006)
## 8992                                                            Wallace & Gromit: The Wrong Trousers (1993)
## 8993                                                 Wallace & Gromit: The Best of Aardman Animation (1996)
## 8994                                                                                      Old School (2003)
## 8995                                                         Before Sunset (a.k.a. Before Sunrise 2) (2004)
## 8996                                              Lord of the Rings: The Fellowship of the Ring, The (2001)
## 8997                                                                                 Erin Brockovich (2000)
## 8998                                                                         Ferris Buellers Day Off (1986)
## 8999                                                                                    Patriot, The (2000)
## 9000                                                                                           Dogma (1999)
## 9001                                                                                   Lethal Weapon (1987)
## 9002                                                                             Breakfast Club, The (1985)
## 9003                                                                                Eddie Murphy Raw (1987)
## 9004                                                                                Along Came Polly (2004)
## 9005                                                                                   Aprils Shower (2003)
## 9006                                                                                         Gothika (2003)
## 9007                                                                             Simpsons Movie, The (2007)
## 9008                                                                     Guess Whos Coming to Dinner (1967)
## 9009                                                       Harry Potter and the Order of the Phoenix (2007)
## 9010                                                                                           Sicko (2007)
## 9011                                                                                 American Beauty (1999)
## 9012                                                                             Jane Austens Mafia! (1998)
## 9013                                                                      Count of Monte Cristo, The (2002)
## 9014                                                                                             300 (2007)
## 9015                                                                         40 Year Old Virgin, The (2005)
## 9016                                                                                   Departed, The (2006)
## 9017                                                                               Mr. Beans Holiday (2007)
## 9018                                                                             Usual Suspects, The (1995)
## 9019                                                    Star Wars: Episode II - Attack of the Clones (2002)
## 9020                                                       Pirates of the Caribbean: Dead Mans Chest (2006)
## 9021                                                                             Catch Me If You Can (2002)
## 9022                                                                      E.T. the Extra-Terrestrial (1982)
## 9023                                                                                       Mask, The (1994)
## 9024                                                                                      Home Alone (1990)
## 9025                                                                                    Total Recall (1990)
## 9026                                                                                          Zodiac (2007)
## 9027                                                                        Night of the Hunter, The (1955)
## 9028                                                                     Back to the Future Part III (1990)
## 9029                                                                                           Signs (2002)
## 9030                                                                        Star Trek: First Contact (1996)
## 9031                                                                 Monty Python and the Holy Grail (1975)
## 9032                                                                               Leaving Las Vegas (1995)
## 9033                                                                                     Stand by Me (1986)
## 9034                                                                                         Jumanji (1995)
## 9035                                                                          Code Name: The Cleaner (2007)
## 9036                                                                                        I, Robot (2004)
## 9037                                                                                      Piano, The (1993)
## 9038                                                                                        Rushmore (1998)
## 9039                                                                                            Troy (2004)
## 9040                                                                           M*A*S*H (a.k.a. MASH) (1970)
## 9041                                                                                      Seabiscuit (2003)
## 9042                                                                                 Raising Arizona (1987)
## 9043                                                                                         Syriana (2005)
## 9044                                                                                          Ransom (1996)
## 9045                                                              Terminator 3: Rise of the Machines (2003)
## 9046                                                                                         Hellboy (2004)
## 9047                                                                                    Notting Hill (1999)
## 9048                                                                                   Patriot Games (1992)
## 9049                                                                      Good Night, and Good Luck. (2005)
## 9050                                                                                 Johnny Mnemonic (1995)
## 9051                                                                                         Ice Age (2002)
## 9052                                                                     Searching for Bobby Fischer (1993)
## 9053                              Good, the Bad and the Ugly, The (Buono, il brutto, il cattivo, Il) (1966)
## 9054                                                                                     Superman II (1980)
## 9055                                                                                          Gandhi (1982)
## 9056                                                                                Running Man, The (1987)
## 9057                                                                                     Constantine (2005)
## 9058                                                                                      To Die For (1995)
## 9059                                                                          Devil Wears Prada, The (2006)
## 9060                                                                                  Arlington Road (1999)
## 9061                                                                                2 Fast 2 Furious (2003)
## 9062                                                                  Ace Ventura: When Nature Calls (1995)
## 9063                                                                             Alice in Wonderland (1951)
## 9064                                                                     Officer and a Gentleman, An (1982)
## 9065                                                       Pirates of the Caribbean: Dead Mans Chest (2006)
## 9066                                                                           Mission: Impossible 2 (2000)
## 9067                                                                         Mission: Impossible III (2006)
## 9068                                                           Anchorman: The Legend of Ron Burgundy (2004)
## 9069                                                                                     Big Trouble (2002)
## 9070                                                                                         Con Air (1997)
## 9071                                                                                             Saw (2004)
## 9072                                                  Star Wars: Episode V - The Empire Strikes Back (1980)
## 9073                                                                                  Lion King, The (1994)
## 9074                                                                                   Dumb & Dumber (1994)
## 9075                                                             Willy Wonka & the Chocolate Factory (1971)
## 9076                                                                            Natural Born Killers (1994)
## 9077                                                                                     Taxi Driver (1976)
## 9078                                               Léon: The Professional (Léon) (Professional, The) (1994)
## 9079                                                     Austin Powers: International Man of Mystery (1997)
## 9080                                                                                     Toy Story 2 (1999)
## 9081                                                                                    Pianist, The (2002)
## 9082                                                                                           Akira (1988)
## 9083                                                                                        Scarface (1983)
## 9084                                                                                Truman Show, The (1998)
## 9085                                                                                 Hannibal Rising (2007)
## 9086                                                                             Lost in Translation (2003)
## 9087                                                                             Edward Scissorhands (1990)
## 9088                                                                                      Four Rooms (1995)
## 9089                                                                                     Re-Animator (1985)
## 9090                                                                    Texas Chainsaw Massacre, The (1974)
## 9091                                                                                         Rob Roy (1995)
## 9092                                                                                   Boogie Nights (1997)
## 9093                                                                                         Jumanji (1995)
## 9094                                                                             Wedding Singer, The (1998)
## 9095                                                                                   Sleepy Hollow (1999)
## 9096                                                                    A.I. Artificial Intelligence (2001)
## 9097                                                                                         Pollock (2000)
## 9098                                                                                 American Beauty (1999)
## 9099                                                                               Big Lebowski, The (1998)
## 9100                                                                  Its a Mad, Mad, Mad, Mad World (1963)
## 9101                                                                                      Spaceballs (1987)
## 9102             Borat: Cultural Learnings of America for Make Benefit Glorious Nation of Kazakhstan (2006)
## 9103                                                                         When Harry Met Sally... (1989)
## 9104                                                                       Shawshank Redemption, The (1994)
## 9105                                                                         Ferris Buellers Day Off (1986)
## 9106                                                     Austin Powers: International Man of Mystery (1997)
## 9107                                                                                         RoboCop (1987)
## 9108                                                              Escape from the Planet of the Apes (1971)
## 9109                                                                             Edward Scissorhands (1990)
## 9110                                                                                       16 Blocks (2006)
## 9111                                                                                            Hulk (2003)
## 9112                                                       Pirates of the Caribbean: Dead Mans Chest (2006)
## 9113                                                                             Saving Private Ryan (1998)
## 9114                                          One Hundred and One Dalmatians (a.k.a. 101 Dalmatians) (1961)
## 9115                                                                                             300 (2007)
## 9116                                                              Butch Cassidy and the Sundance Kid (1969)
## 9117                                        Monty Pythons And Now for Something Completely Different (1971)
## 9118                                                                     12 Monkeys (Twelve Monkeys) (1995)
## 9119                                                                                    Best in Show (2000)
## 9120                                     Adventures of Buckaroo Banzai Across the 8th Dimension, The (1984)
## 9121                                              Lord of the Rings: The Fellowship of the Ring, The (2001)
## 9122                                                                     Exorcism of Emily Rose, The (2005)
## 9123                                                                          All the Presidents Men (1976)
## 9124                                                                                    Blade Runner (1982)
## 9125                                                                                            Jaws (1975)
## 9126                                                                             Blues Brothers, The (1980)
## 9127                                                                            Its a Wonderful Life (1946)
## 9128                                                                                Big Red One, The (1980)
## 9129                                                                               Menace II Society (1993)
## 9130                                                                                           Rocky (1976)
## 9131                                                                                             Big (1988)
## 9132                                                                     Revenge of the Pink Panther (1978)
## 9133                                                                              Christmas Vacation (1989)
## 9134                                                                                         Payback (1999)
## 9135                                                                                       Toy Story (1995)
## 9136                                                                              Back to the Future (1985)
## 9137                                                                                  Mrs. Doubtfire (1993)
## 9138                                                                                       Mask, The (1994)
## 9139                                                                             Breakfast Club, The (1985)
## 9140                                                                                      Sting, The (1973)
## 9141                                                                  Ever After: A Cinderella Story (1998)
## 9142                                                                                 Friday the 13th (1980)
## 9143                                                                                             300 (2007)
## 9144                                                                           Bourne Ultimatum, The (2007)
## 9145                                                                         *batteries not included (1987)
## 9146                                                                                           11:14 (2003)
## 9147                                                                                       16 Blocks (2006)
## 9148                                                                                   28 Days Later (2002)
## 9149                                                                             About Last Night... (1986)
## 9150                                                                                  Absolute Power (1997)
## 9151                                                                                    Pearl Harbor (2001)
## 9152                                                                                  Sweet November (2001)
## 9153                                                                   Independence Day (a.k.a. ID4) (1996)
## 9154                                                                              American History X (1998)
## 9155                                                                                            Blow (2001)
## 9156                                                                                           Crank (2006)
## 9157                                                                                   Believer, The (2001)
## 9158                                                                         *batteries not included (1987)
## 9159                                                                                    12 Angry Men (1957)
## 9160                                                                                   About Schmidt (2002)
## 9161                                                                                       Toy Story (1995)
## 9162                                                                                     Matrix, The (1999)
## 9163                                                Crouching Tiger, Hidden Dragon (Wu hu zang long) (2000)
## 9164                                                  Lord of the Rings: The Return of the King, The (2003)
## 9165                                                                     12 Monkeys (Twelve Monkeys) (1995)
## 9166                                                                             Shakespeare in Love (1998)
## 9167                                                                    City of God (Cidade de Deus) (2002)
## 9168                                                                                  50 First Dates (2004)
## 9169                                                                                   39 Steps, The (1935)
## 9170                                                                      Ace Ventura: Pet Detective (1994)
## 9171                                                         Adventures of Rocky and Bullwinkle, The (2000)
## 9172                                                                          Affair to Remember, An (1957)
## 9173                                                                                       Alexander (2004)
## 9174                                                                                          Alien³ (1992)
## 9175                                                                                   All That Jazz (1979)
## 9176                                                                                       All of Me (1984)
## 9177                                                                         American President, The (1995)
## 9178                                                                                      Four Rooms (1995)
## 9179                                                                                          Arthur (1981)
## 9180                                          Pirates of the Caribbean: The Curse of the Black Pearl (2003)
## 9181                                                                                            Babe (1995)
## 9182                                                                           Six Days Seven Nights (1998)
## 9183                                                                                   Scary Movie 3 (2003)
## 9184                                                              Naked Gun 33 1/3: The Final Insult (1994)
## 9185                                                                              Weekend at Bernies (1989)
## 9186                                                                                 Ghostbusters II (1989)
## 9187                                                                                     Scary Movie (2000)
## 9188                                                                       Robin Hood: Men in Tights (1993)
## 9189                                                                                      Birds, The (1963)
## 9190                                                                      Born on the Fourth of July (1989)
## 9191                                                                            Bourne Identity, The (2002)
## 9192                                                                             Breakfast Club, The (1985)
## 9193                                                               Bridget Jones: The Edge of Reason (2004)
## 9194                                                                                           Bugsy (1991)
## 9195                                                                                       Elizabeth (1998)
## 9196                                                                         3000 Miles to Graceland (2001)
## 9197                                                                                          8 Mile (2002)
## 9198                                                                    A.I. Artificial Intelligence (2001)
## 9199                                                                                    Accused, The (1988)
## 9200                                                                                   Air Force One (1997)
## 9201                                                                             Alien: Resurrection (1997)
## 9202                                                                                 American Flyers (1985)
## 9203                                                                                           Annie (1982)
## 9204                                                                                           Rocky (1976)
## 9205                                                                                        Serenity (2005)
## 9206                                                                                Along Came Polly (2004)
## 9207                                                                       Hunt for Red October, The (1990)
## 9208                                                                                    Office Space (1999)
## 9209                                                                                            Jaws (1975)
## 9210                         Raiders of the Lost Ark (Indiana Jones and the Raiders of the Lost Ark) (1981)
## 9211                                                                               Mr. Hollands Opus (1995)
## 9212                                                                                         Aladdin (1992)
## 9213                                                                                    Broken Arrow (1996)
## 9214                                                                               Kill Bill: Vol. 2 (2004)
## 9215                                                                                Truman Show, The (1998)
## 9216                                                                              Fifth Element, The (1997)
## 9217                                                                             Romancing the Stone (1984)
## 9218                                                                                         Gattaca (1997)
## 9219                                                                 Monty Python and the Holy Grail (1975)
## 9220                                                                      Ace Ventura: Pet Detective (1994)
## 9221                                                                                         Traffic (2000)
## 9222                                                             Harry Potter and the Goblet of Fire (2005)
## 9223                                                                                            Emma (1996)
## 9224                                                                                 American Beauty (1999)
## 9225                                                           Austin Powers: The Spy Who Shagged Me (1999)
## 9226                                                                                 Sixteen Candles (1984)
## 9227                                                                  Breathless (À bout de souffle) (1960)
## 9228                                              Kirikou and the Sorceress (Kirikou et la sorcière) (1998)
## 9229                                  Nausicaä of the Valley of the Winds (Kaze no tani no Naushika) (1984)
## 9230                                                   Spirited Away (Sen to Chihiro no kamikakushi) (2001)
## 9231                                                                             Usual Suspects, The (1995)
## 9232                                                            Wallace & Gromit: The Wrong Trousers (1993)
## 9233                                                                            Bourne Identity, The (2002)
## 9234                                                                         Godfather: Part II, The (1974)
## 9235                                                  Lord of the Rings: The Return of the King, The (2003)
## 9236                                                                                         Chicago (2002)
## 9237                                                                                Meet the Parents (2000)
## 9238                                                                             Alien: Resurrection (1997)
## 9239                                                         Before Sunset (a.k.a. Before Sunrise 2) (2004)
## 9240                                                                 Bill & Teds Excellent Adventure (1989)
## 9241                                                                                     Point Break (1991)
## 9242                                                         Pans Labyrinth (El Laberinto del fauno) (2006)
## 9243                                                                                   Casino Royale (2006)
## 9244                                                                                         28 Days (2000)
## 9245                                                   Spirited Away (Sen to Chihiro no kamikakushi) (2001)
## 9246                                                                                    Hustler, The (1961)
## 9247                                                      Howls Moving Castle (Hauru no ugoku shiro) (2004)
## 9248                                                                       Manchurian Candidate, The (1962)
## 9249                                                                    City of God (Cidade de Deus) (2002)
## 9250                                                                                        Rain Man (1988)
## 9251                                                                            English Patient, The (1996)
## 9252                                                                                 Schindlers List (1993)
## 9253                                                                              Enemy at the Gates (2001)
## 9254                                                                                   Prestige, The (2006)
## 9255                                                                                   Jurassic Park (1993)
## 9256                                                                      E.T. the Extra-Terrestrial (1982)
## 9257                                                                             Catch Me If You Can (2002)
## 9258                                                                                         Traffic (2000)
## 9259                                                                                    Total Recall (1990)
## 9260                                                                            Seven (a.k.a. Se7en) (1995)
## 9261                                                                                          Snatch (2000)
## 9262                                                                                 Oceans Thirteen (2007)
## 9263                                                                                            Troy (2004)
## 9264                                                                     12 Monkeys (Twelve Monkeys) (1995)
## 9265                                        City of Lost Children, The (Cité des enfants perdus, La) (1995)
## 9266                                                                                   Lethal Weapon (1987)
## 9267                                                                                    Aviator, The (2004)
## 9268                                                                              Perfect Storm, The (2000)
## 9269                                                                               Kill Bill: Vol. 1 (2003)
## 9270                                                                                         Gattaca (1997)
## 9271                                                                                         48 Hrs. (1982)
## 9272                                                                                      Affliction (1997)
## 9273                                                                                   Fugitive, The (1993)
## 9274                                                                     12 Monkeys (Twelve Monkeys) (1995)
## 9275                                                                                      Goodfellas (1990)
## 9276                                                                      Last King of Scotland, The (2006)
## 9277                                                                                           Alien (1979)
## 9278                                                                                          Psycho (1960)
## 9279                                                                                       Chinatown (1974)
## 9280                                                                                       King Kong (1976)
## 9281                                                                                  Godfather, The (1972)
## 9282                                                                                        Sin City (2005)
## 9283                                                                                Incredibles, The (2004)
## 9284                                                                         Matrix Revolutions, The (2003)
## 9285                                                               Monty Pythons The Meaning of Life (1983)
## 9286                                                                                  Godfather, The (1972)
## 9287                                                                                  Lion King, The (1994)
## 9288                                                                                      Waterworld (1995)
## 9289                                                                 Nightmare Before Christmas, The (1993)
## 9290                                                                                California Suite (1978)
## 9291                                                                                   Oceans Eleven (2001)
## 9292                                                                                       GoldenEye (1995)
## 9293                                                                     12 Monkeys (Twelve Monkeys) (1995)
## 9294                                                                              Fifth Element, The (1997)
## 9295                                                                              As Good As It Gets (1997)
## 9296                                                                     Monty Pythons Life of Brian (1979)
## 9297                                                                            Bourne Identity, The (2002)
## 9298                                                                            Boondock Saints, The (2000)
## 9299                                                                                   Batman Begins (2005)
## 9300                                                                                        Serenity (2005)
## 9301                                                                               Hero (Ying xiong) (2002)
## 9302                                                                               Kill Bill: Vol. 1 (2003)
## 9303                                                     City Slickers II: The Legend of Curlys Gold (1994)
## 9304                                                                                 Men in Black II (2002)
## 9305                                                                                     Others, The (2001)
## 9306                                                                                      Hollow Man (2000)
## 9307                                                                                     Tuxedo, The (2002)
## 9308                                                                                Crying Game, The (1992)
## 9309                                                                              Dances with Wolves (1990)
## 9310                                                                              Dead Poets Society (1989)
## 9311                                                                                Deer Hunter, The (1978)
## 9312                                                                           Eagle Has Landed, The (1976)
## 9313                                                                   Sunrise: A Song of Two Humans (1927)
## 9314                                                                                       Wild Hogs (2007)
## 9315                                                                                    Eating Raoul (1982)
## 9316                                                                             Edward Scissorhands (1990)
## 9317                                                                              For Your Eyes Only (1981)
## 9318                                                                                           Frida (2002)
## 9319                                                                                 Full Monty, The (1997)
## 9320                                                                                          Grease (1978)
## 9321                                                                                       Gunga Din (1939)
## 9322                                                       Harry Potter and the Order of the Phoenix (2007)
## 9323                                                                                          Willow (1988)
## 9324                                                                                      Panic Room (2002)
## 9325                                                                                         Memento (2000)
## 9326                                                                                   Batman Begins (2005)
## 9327                                                                                     Matrix, The (1999)
## 9328                                  Nausicaä of the Valley of the Winds (Kaze no tani no Naushika) (1984)
## 9329                                                                                       Dark City (1998)
## 9330                                                                                    Time Bandits (1981)
## 9331           Harry Potter and the Sorcerers Stone (a.k.a. Harry Potter and the Philosophers Stone) (2001)
## 9332                                 Chronicles of Narnia: The Lion, the Witch and the Wardrobe, The (2005)
## 9333                                                               Charlie and the Chocolate Factory (2005)
## 9334                                                                        Who Framed Roger Rabbit? (1988)
## 9335                                                                           Underworld: Evolution (2006)
## 9336                                                                               L.A. Confidential (1997)
## 9337                                                                                   Prestige, The (2006)
## 9338                                                                                   Casino Royale (2006)
## 9339                                                                              Christmas Story, A (1983)
## 9340                                                                                        Rain Man (1988)
## 9341                                                                                      Thing, The (1982)
## 9342                                                                                    Dog Soldiers (2002)
## 9343                                                                                        Identity (2003)
## 9344                                                           Jesus of Montreal (Jésus de Montréal) (1989)
## 9345                                                                             Killing Fields, The (1984)
## 9346                                                                                       King Kong (1933)
## 9347                                                         Pans Labyrinth (El Laberinto del fauno) (2006)
## 9348                                                                                      Braveheart (1995)
## 9349                                                                                  Little Big Man (1970)
## 9350                                                                                     Love Affair (1939)
## 9351                                                                              Enemy at the Gates (2001)
## 9352                                                                                 Terminator, The (1984)
## 9353                                                                                 Minority Report (2002)
## 9354                                                                   Star Trek IV: The Voyage Home (1986)
## 9355                                                                      Chronicles of Riddick, The (2004)
## 9356                                                                         Matrix Revolutions, The (2003)
## 9357                                                                           Angry Red Planet, The (1959)
## 9358                                                                           Hellraiser: Bloodline (1996)
## 9359                                                                                  Producers, The (1968)
## 9360                                                                    Mr. Smith Goes to Washington (1939)
## 9361                                                            Mrs. Brown (Her Majesty, Mrs. Brown) (1997)
## 9362                                                                                Sixth Sense, The (1999)
## 9363                                                                      Die Hard: With a Vengeance (1995)
## 9364                                                                               L.A. Confidential (1997)
## 9365                                                                                     Toy Story 2 (1999)
## 9366                                                                                         Network (1976)
## 9367                                                                                  Never Cry Wolf (1983)
## 9368                                                                                       Norma Rae (1979)
## 9369                                                                                    Notting Hill (1999)
## 9370                                                                                 Odd Couple, The (1968)
## 9371                                                                                      Old Yeller (1957)
## 9372                                                                            Being John Malkovich (1999)
## 9373                                                                             Princess Bride, The (1987)
## 9374                                                                                     Patch Adams (1998)
## 9375                                                                                    Philadelphia (1993)
## 9376                                                                    Planes, Trains & Automobiles (1987)
## 9377                                                                               Shirley Valentine (1989)
## 9378                                                                                           Speed (1994)
## 9379                                                                            Little Miss Sunshine (2006)
## 9380                                                                                 Erin Brockovich (2000)
## 9381                                                                                       Game, The (1997)
## 9382                                                                                        Serenity (2005)
## 9383                                                      Star Wars: Episode VI - Return of the Jedi (1983)
## 9384                                                                          Star Trek: Generations (1994)
## 9385                                                                                        Die Hard (1988)
## 9386                                                                                           Water (2005)
## 9387                                                                                   Walk the Line (2005)
## 9388                                                                                         Vertigo (1958)
## 9389                                                                              Its All About Love (2003)
## 9390                                                             Star Trek III: The Search for Spock (1984)
## 9391                                                                                      Sting, The (1973)
## 9392                                                                          Trip to Bountiful, The (1985)
## 9393                                                                            Truly, Madly, Deeply (1991)
## 9394                                                                                         Missing (1982)
## 9395                                                                                        Dead Man (1995)
## 9396                                                                                           Ronin (1998)
## 9397                                                                                To Catch a Thief (1955)
## 9398                                                                                    12 Angry Men (1957)
## 9399                                                                        Man Who Wasnt There, The (2001)
## 9400                                                                             Night at the Museum (2006)
## 9401                                                                                   Lost in Space (1998)
## 9402                                                                          Magnificent Seven, The (1960)
## 9403                                                                                           Bound (1996)
## 9404                                                                                    Office Space (1999)
## 9405                                                                            Little Miss Sunshine (2006)
## 9406                                                              Close Encounters of the Third Kind (1977)
## 9407                                                                                          Scream (1996)
## 9408                                                                                    Finding Nemo (2003)
## 9409                                                                                Italian Job, The (2003)
## 9410                                                                                        Superman (1978)
## 9411                                                                             Little Mermaid, The (1989)
## 9412                                                                                    Waynes World (1992)
## 9413                                                               Lock, Stock & Two Smoking Barrels (1998)
## 9414                                                                                      Collateral (2004)
## 9415                                                                               Full Metal Jacket (1987)
## 9416                                                                                       Game, The (1997)
## 9417                                                                                        Outbreak (1995)
## 9418                                                                                          Batman (1989)
## 9419                                                                 Bill & Teds Excellent Adventure (1989)
## 9420                                                                                  American Pie 2 (2001)
## 9421                                                                                  Legally Blonde (2001)
## 9422                                                                          League of Their Own, A (1992)
## 9423                                                                                        Swingers (1996)
## 9424                                                                         Godfather: Part II, The (1974)
## 9425                                                                                      Grindhouse (2007)
## 9426                                                                             Usual Suspects, The (1995)
## 9427                                                                                 Erin Brockovich (2000)
## 9428                                                                                  Before Sunrise (1995)
## 9429                                                                                    Donnie Darko (2001)
## 9430                                                                               Finding Neverland (2004)
## 9431                                                                               Kill Bill: Vol. 1 (2003)
## 9432                                                                                         Ed Wood (1994)
## 9433                                                                                 Blazing Saddles (1974)
## 9434                                                                                        Dogville (2003)
## 9435                                                           Eternal Sunshine of the Spotless Mind (2004)
## 9436                                                                                           Fargo (1996)
## 9437                                                                                         Twister (1996)
## 9438                                                                     Four Weddings and a Funeral (1994)
## 9439                                                                                   Birdcage, The (1996)
## 9440                                                                                       Gladiator (2000)
## 9441                                                     Austin Powers: International Man of Mystery (1997)
## 9442                                                                        Blair Witch Project, The (1999)
## 9443                                                                                          Psycho (1960)
## 9444                                                                               Santa Clause, The (1994)
## 9445                                                                                         Ed Wood (1994)
## 9446                                                                                          Scream (1996)
## 9447                                                                                         Con Air (1997)
## 9448                                                                        Thomas Crown Affair, The (1999)
## 9449                                                                             Lost in Translation (2003)
## 9450                                                                                    Spider-Man 2 (2004)
## 9451                                                                           Royal Tenenbaums, The (2001)
## 9452                                                                         My Best Friends Wedding (1997)
## 9453                                                                                      Craft, The (1996)
## 9454                                                                             Lucky Number Slevin (2006)
## 9455                                                                                   Reign Over Me (2007)
## 9456                                                                                       Bowfinger (1999)
## 9457                                                       Fantastic Four: Rise of the Silver Surfer (2007)
## 9458                                                                                         Holiday (1938)
## 9459                                                                  Rocky Horror Picture Show, The (1975)
## 9460                                                                                       Manhattan (1979)
## 9461                                                                                        Scarface (1983)
## 9462                                                                                Army of Darkness (1993)
## 9463                                                            Indiana Jones and the Temple of Doom (1984)
## 9464                                                                          French Connection, The (1971)
## 9465                                                       Pirates of the Caribbean: Dead Mans Chest (2006)
## 9466                                                                                   Jacobs Ladder (1990)
## 9467                                                                               Dark Crystal, The (1982)
## 9468                                                                                           Alien (1979)
## 9469                                                           Eternal Sunshine of the Spotless Mind (2004)
## 9470                                                                                   Casino Royale (2006)
## 9471                                                                                        Sideways (2004)
## 9472                                                                                          Snatch (2000)
## 9473                                                                                         Memento (2000)
## 9474                                                                                      Annie Hall (1977)
## 9475                                                                 Monty Python and the Holy Grail (1975)
## 9476                                        Monty Pythons And Now for Something Completely Different (1971)
## 9477                                                                                Harold and Maude (1971)
## 9478                                                                     Monty Pythons Life of Brian (1979)
## 9479                                                                                   Flesh & Blood (1985)
## 9480                                                                                    Lost Highway (1997)
## 9481                                                                          Stranger Than Paradise (1984)
## 9482                                                                            Boondock Saints, The (2000)
## 9483                                                    Star Wars: Episode III - Revenge of the Sith (2005)
## 9484                                                                                   Departed, The (2006)
## 9485                                                                                     I Am Legend (2007)
## 9486                                                         Pans Labyrinth (El Laberinto del fauno) (2006)
## 9487                                                                                  V for Vendetta (2006)
## 9488                                                                                     Ratatouille (2007)
## 9489                                                                                   Sentinel, The (2006)
## 9490                                                                                          Oldboy (2005)
## 9491                                                    Lives of Others, The (Das Leben der Anderen) (2006)
## 9492                                                                   Amores Perros (Loves a Bitch) (2000)
## 9493                                                                                 Green Mile, The (1999)
## 9494                                                                   Road Warrior, The (Mad Max 2) (1981)
## 9495                                                                                           Akira (1988)
## 9496                                                                       Fast and the Furious, The (2001)
## 9497                                                                       Manchurian Candidate, The (1962)
## 9498                                                                                   Blood Diamond (2006)
## 9499                                                                                   Narrow Margin (1990)
## 9500                                                       Pirates of the Caribbean: Dead Mans Chest (2006)
## 9501                                                         Pirates of the Caribbean: At Worlds End (2007)
## 9502                                                             AVPR: Aliens vs. Predator - Requiem (2007)
## 9503                                          Pirates of the Caribbean: The Curse of the Black Pearl (2003)
## 9504                                                                             Glengarry Glen Ross (1992)
## 9505                                                                                        Sunshine (2007)
## 9506                                                                                          Lilies (1996)
## 9507                                                                                     Rear Window (1954)
## 9508                                                                             Requiem for a Dream (2000)
## 9509                                                                Wind That Shakes the Barley, The (2006)
## 9510                                                                                            Juno (2007)
## 9511                                                                              3 Ninjas Kick Back (1994)
## 9512                                                                                       Aeon Flux (2005)
## 9513                                                                             Alien: Resurrection (1997)
## 9514                                                                                          Aliens (1986)
## 9515                                                                               Alone in the Dark (2005)
## 9516                                                                               Kill Bill: Vol. 2 (2004)
## 9517                                                                                     Matrix, The (1999)
## 9518                                                                                      Fight Club (1999)
## 9519                                                                               Mr. Hollands Opus (1995)
## 9520                                                                                        Rain Man (1988)
## 9521                                                                                  Reservoir Dogs (1992)
## 9522                                                                                         Contact (1997)
## 9523                                                                             Clockwork Orange, A (1971)
## 9524                                                                                         Glitter (2001)
## 9525                                                                                   Departed, The (2006)
## 9526                                                                                    Donnie Darko (2001)
## 9527                                                                                        Hot Fuzz (2007)
## 9528                                 Chronicles of Narnia: The Lion, the Witch and the Wardrobe, The (2005)
## 9529                                                                                   High Fidelity (2000)
## 9530                                                                           Bowling for Columbine (2002)
## 9531                                                                                           Touch (1997)
## 9532                                                                        Valet, The (La Doublure) (2006)
## 9533                                                                                         RoboCop (1987)
## 9534                                                              Butch Cassidy and the Sundance Kid (1969)
## 9535                                                                                Dawn of the Dead (2004)
## 9536                                                                                    Galaxy Quest (1999)
## 9537                                                                            Bridget Joness Diary (2001)
## 9538                                                                                         Con Air (1997)
## 9539                                                                            Bourne Identity, The (2002)
## 9540                                                                              Mask of Zorro, The (1998)
## 9541                                                                                    Best in Show (2000)
## 9542                                                                                       Tombstone (1993)
## 9543                                                                                  Eyes Wide Shut (1999)
## 9544                                                                                Kite Runner, The (2007)
## 9545                                                                                     Cloverfield (2008)
## 9546                                                                      Good Night, and Good Luck. (2005)
## 9547                                                                                        Infamous (2006)
## 9548                                                                                    Greenfingers (2000)
## 9549                                                                                          Kinsey (2004)
## 9550                                                                                     Miss Potter (2006)
## 9551                                                                                     Others, The (2001)
## 9552                                                             Wild Strawberries (Smultronstället) (1957)
## 9553                                                                                           Laura (1944)
## 9554                                                                                       Ninotchka (1939)
## 9555                                                               Princess Mononoke (Mononoke-hime) (1997)
## 9556                                                                                  Big Sleep, The (1946)
## 9557                                                                                         Vertigo (1958)
## 9558                                                                                           Fargo (1996)
## 9559                                                                                Sixth Sense, The (1999)
## 9560                                                                                       Mask, The (1994)
## 9561                                                                               L.A. Confidential (1997)
## 9562                                                                                     August Rush (2007)
## 9563                                                     Spanish Apartment, The (Lauberge Espagnole) (2002)
## 9564                                                                                    Office Space (1999)
## 9565                                                                            Little Miss Sunshine (2006)
## 9566                                                                                      Invincible (2006)
## 9567                                                                                       Atonement (2007)
## 9568                                                                                   Gridiron Gang (2006)
## 9569                                                                                  Arlington Road (1999)
## 9570                                                                                   Arachnophobia (1990)
## 9571                                              Indiana Jones and the Kingdom of the Crystal Skull (2008)
## 9572                                                                                    Kingdom, The (2007)
## 9573                                                                                       Following (1998)
## 9574                                                                               Definitely, Maybe (2008)
## 9575                                                                        Clear and Present Danger (1994)
## 9576                                                                              Fifth Element, The (1997)
## 9577                                                                              As Good As It Gets (1997)
## 9578                                                                                   High Fidelity (2000)
## 9579                                                                              Star Trek: Nemesis (2002)
## 9580                                                                                  Eyes Wide Shut (1999)
## 9581                                                                                    Garden State (2004)
## 9582                                                                              Dead Poets Society (1989)
## 9583                                                                                          Willow (1988)
## 9584                                                                       James and the Giant Peach (1996)
## 9585                                                                     Father of the Bride Part II (1995)
## 9586                                                                                   Graduate, The (1967)
## 9587                                                                                     Re-Animator (1985)
## 9588                                                                                   All About Eve (1950)
## 9589                                                                  2010: The Year We Make Contact (1984)
## 9590                                                                          Assault on Precinct 13 (2005)
## 9591                                                                                       Manhattan (1979)
## 9592                                                                                           Zelig (1983)
## 9593                                                         Monty Python Live at the Hollywood Bowl (1982)
## 9594                                                                             Lost in Translation (2003)
## 9595                                                                             There Will Be Blood (2007)
## 9596                                                                                 Ghostbusters II (1989)
## 9597                                                                                    Forrest Gump (1994)
## 9598                                              Lord of the Rings: The Fellowship of the Ring, The (2001)
## 9599                                                                       Silence of the Lambs, The (1991)
## 9600                                                                           Bourne Ultimatum, The (2007)
## 9601                                                                            Seven (a.k.a. Se7en) (1995)
## 9602                                                                                        Outbreak (1995)
## 9603                                                                                Truman Show, The (1998)
## 9604                                                                                        Superbad (2007)
## 9605                                                                                       King Kong (2005)
## 9606                                                                             Simpsons Movie, The (2007)
## 9607                                                                                      Fight Club (1999)
## 9608                                                                                    Office Space (1999)
## 9609                                                                                   Boogie Nights (1997)
## 9610                                                                         Day After Tomorrow, The (2004)
## 9611                                                                                        Spy Game (2001)
## 9612                                                                                      Phenomenon (1996)
## 9613                                                                            Escape from New York (1981)
## 9614                                                                                Dirty Dozen, The (1967)
## 9615                                                                         AVP: Alien vs. Predator (2004)
## 9616                                                             Paris, I Love You (Paris, je taime) (2006)
## 9617                                                                             Clockwork Orange, A (1971)
## 9618                                                                                     Palindromes (2004)
## 9619                                                                                       Crossfire (1947)
## 9620                                                                                Enter the Dragon (1973)
## 9621                                                                             There Will Be Blood (2007)
## 9622                                                                             Charlie Wilsons War (2007)
## 9623                                                                                 Little Children (2006)
## 9624                                                                                   Walk the Line (2005)
## 9625                                                                                    Holiday, The (2006)
## 9626                                                       Frankenstein (Mary Shelleys Frankenstein) (1994)
## 9627                                                                          Devil Wears Prada, The (2006)
## 9628                                                                      Once Upon a Time in Mexico (2003)
## 9629                                                                                      Mean Girls (2004)
## 9630                                                            Hitchhikers Guide to the Galaxy, The (2005)
## 9631                                                                Superman IV: The Quest for Peace (1987)
## 9632                                                                 Crocodile Dundee in Los Angeles (2001)
## 9633                                                                           Butterfly Effect, The (2004)
## 9634                                                                          Little Shop of Horrors (1986)
## 9635                                                                                 West Side Story (1961)
## 9636                         Raiders of the Lost Ark (Indiana Jones and the Raiders of the Lost Ark) (1981)
## 9637                                                                               Perfect Murder, A (1998)
## 9638                                                                                   Terminal, The (2004)
## 9639                                                       Pirates of the Caribbean: Dead Mans Chest (2006)
## 9640                                                                               Finding Neverland (2004)
## 9641                                                                  Breathless (À bout de souffle) (1960)
## 9642                                                   Black Cat, White Cat (Crna macka, beli macor) (1998)
## 9643                                                                                     Underground (1995)
## 9644                                                                                   Swimming Pool (2003)
## 9645                                                         400 Blows, The (Les Quatre cents coups) (1959)
## 9646                                                                                        Sideways (2004)
## 9647                                                                                    Lost Highway (1997)
## 9648                                                                                    Citizen Kane (1941)
## 9649                                                                         Bad Guy (Nabbeun namja) (2001)
## 9650                                                                                      Fight Club (1999)
## 9651                                                                                     Matrix, The (1999)
## 9652                                                                      O Brother, Where Art Thou? (2000)
## 9653                                                                                Big Mommas House (2000)
## 9654                                                                                   Terminal, The (2004)
## 9655                                                                                    Mean Machine (2001)
## 9656                                                                                      Cinderella (1950)
## 9657                                                                                    Time Bandits (1981)
## 9658                                                                        Welcome to the Dollhouse (1995)
## 9659                                                                     Dracula: Dead and Loving It (1995)
## 9660                                                                 I Know What You Did Last Summer (1997)
## 9661                                                                                          Hamlet (1996)
## 9662                                                                                         Titanic (1953)
## 9663                                                                                 American Beauty (1999)
## 9664                                                                                 Aristocats, The (1970)
## 9665                                                                             Bone Collector, The (1999)
## 9666                                                                                     Ratatouille (2007)
## 9667                                                                                  Lion King, The (1994)
## 9668                                                                     Legend of Bagger Vance, The (2000)
## 9669                                                             Harold and Kumar Go to White Castle (2004)
## 9670                                                                                Cruel Intentions (1999)
## 9671                                                                                     Unbreakable (2000)
## 9672                                                                               Kill Bill: Vol. 1 (2003)
## 9673                                                                               Napoleon Dynamite (2004)
## 9674                                                                            Bend It Like Beckham (2002)
## 9675                                                                                Truman Show, The (1998)
## 9676                                                                                       Liar Liar (1997)
## 9677                                                    Star Wars: Episode II - Attack of the Clones (2002)
## 9678                                                                                 Family Man, The (2000)
## 9679                                                                      Terminator 2: Judgment Day (1991)
## 9680                                                                                Sixth Sense, The (1999)
## 9681                                                                                         Titanic (1997)
## 9682                                                                                           X-Men (2000)
## 9683                                                                                 American Beauty (1999)
## 9684                                                                                    Garden State (2004)
## 9685                                                                                    Donnie Darko (2001)
## 9686                                                                                       Excalibur (1981)
## 9687                                                                     Hellboy II: The Golden Army (2008)
## 9688                                                                   Amores Perros (Loves a Bitch) (2000)
## 9689                                                                               Beautiful Mind, A (2001)
## 9690                                                                               Kill Bill: Vol. 2 (2004)
## 9691                                                                                    Finding Nemo (2003)
## 9692                                                                                           X-Men (2000)
## 9693                                                                       Ong-Bak: The Thai Warrior (2003)
## 9694                                                                               National Treasure (2004)
## 9695                                                                                          Batman (1989)
## 9696                                                                                       Desperado (1995)
## 9697                                                       Star Wars: Episode I - The Phantom Menace (1999)
## 9698                                                                      E.T. the Extra-Terrestrial (1982)
## 9699                                                                                Some Like It Hot (1959)
## 9700                                                                                  Lion King, The (1994)
## 9701                                                     Austin Powers: International Man of Mystery (1997)
## 9702                                                                      Terminator 2: Judgment Day (1991)
## 9703                                                                                        Big Fish (2003)
## 9704                                                                                    Finding Nemo (2003)
## 9705                                                                                       True Lies (1994)
## 9706                                                                                       Gladiator (2000)
## 9707                                                          Lord of the Rings: The Two Towers, The (2002)
## 9708                                                                                    Men in Black (1997)
## 9709                                                                                      Fight Club (1999)
## 9710                                          Pirates of the Caribbean: The Curse of the Black Pearl (2003)
## 9711                                                       Pirates of the Caribbean: Dead Mans Chest (2006)
## 9712                                                                                         Aladdin (1992)
## 9713                                                                            Little Miss Sunshine (2006)
## 9714                                                                                    Bugs Life, A (1998)
## 9715                                                                                Truman Show, The (1998)
## 9716                                                                                 Erin Brockovich (2000)
## 9717                                                                           2001: A Space Odyssey (1968)
## 9718                                                                                    Time Bandits (1981)
## 9719                                                                                     Blue Velvet (1986)
## 9720                                                                                       Cell, The (2000)
## 9721                                                                                Dirty Dozen, The (1967)
## 9722                                                                               Waking Ned Devine (1998)
## 9723                                                                                           Shrek (2001)
## 9724                                                          Lord of the Rings: The Two Towers, The (2002)
## 9725                                                  Lord of the Rings: The Return of the King, The (2003)
## 9726                                                                      Terminator 2: Judgment Day (1991)
## 9727                                                                                     Matrix, The (1999)
## 9728                                                                                Ladykillers, The (2004)
## 9729                                                                      Die Hard: With a Vengeance (1995)
## 9730                                                                                         Twister (1996)
## 9731                                                       Star Wars: Episode I - The Phantom Menace (1999)
## 9732                                                             Ghostbusters (a.k.a. Ghost Busters) (1984)
## 9733                                                           Austin Powers: The Spy Who Shagged Me (1999)
## 9734                                                                                           X-Men (2000)
## 9735                                                                           2001: A Space Odyssey (1968)
## 9736                                                                                   Jerry Maguire (1996)
## 9737                                                     Austin Powers: International Man of Mystery (1997)
## 9738                                                                             Legends of the Fall (1994)
## 9739                                                                                       Liar Liar (1997)
## 9740                                                                                 Green Mile, The (1999)
## 9741                                                                                  Love and Death (1975)
## 9742                                                                                      Radio Days (1987)
## 9743                                                                                 My Cousin Vinny (1992)
## 9744                                                                                    True Romance (1993)
## 9745                                                                             From Dusk Till Dawn (1996)
## 9746                                                                                    12 Angry Men (1957)
## 9747                                                                                          Oldboy (2005)
## 9748                                                                  Devil and Daniel Johnston, The (2005)
## 9749                                                      Howls Moving Castle (Hauru no ugoku shiro) (2004)
## 9750                                                                                        Wordplay (2006)
## 9751                                                                            Little Miss Sunshine (2006)
## 9752                                                               Lock, Stock & Two Smoking Barrels (1998)
## 9753                                                                                   Roman Holiday (1953)
## 9754                                                                                 Children of Men (2006)
## 9755                                                                          Man for All Seasons, A (1966)
## 9756                                                                               Finding Neverland (2004)
## 9757                                                                                   Donnie Brasco (1997)
## 9758                                                                                    Garden State (2004)
## 9759                                                                     Guess Whos Coming to Dinner (1967)
## 9760                                                                            Boat, The (Das Boot) (1981)
## 9761                                                                                     Three Kings (1999)
## 9762                                                                       James and the Giant Peach (1996)
## 9763                                                                                Some Like It Hot (1959)
## 9764                                                                   Throne of Blood (Kumonosu jô) (1957)
## 9765                                                                              North by Northwest (1959)
## 9766                                                                                       Adams Rib (1949)
## 9767                                                            Life and Death of Colonel Blimp, The (1943)
## 9768                                                                             Anatomy of a Murder (1959)
## 9769                                                                                       Chinatown (1974)
## 9770                                                                          Day of the Jackal, The (1973)
## 9771                                                                                    Modern Times (1936)
## 9772                                                           Pandoras Box (Die Büchse der Pandora) (1929)
## 9773                                                              Rififi (Du rififi chez les hommes) (1955)
## 9774                                                                                    12 Angry Men (1957)
## 9775                                                                                Awful Truth, The (1937)
## 9776                                                                             Day at the Races, A (1937)
## 9777                                                                               Foreign Affair, A (1948)
## 9778                                                                        Kind Hearts and Coronets (1949)
## 9779                                                                       Manchurian Candidate, The (1962)
## 9780                                                                                   All About Eve (1950)
## 9781                                                                               L.A. Confidential (1997)
## 9782                                                                                    Mean Streets (1973)
## 9783                                                                                         Memento (2000)
## 9784                                                                                         Serpico (1973)
## 9785                                                                           It Happened One Night (1934)
## 9786                                                                  X-Files: Fight the Future, The (1998)
## 9787                                                                          Magnificent Seven, The (1960)
## 9788                                                                   Independence Day (a.k.a. ID4) (1996)
## 9789                                                                                       Toy Story (1995)
## 9790                                                                                      Braveheart (1995)
## 9791                                                                       Shawshank Redemption, The (1994)
## 9792                                                                                        Vacation (1983)
## 9793                                                                                            Jack (1996)
## 9794                                                                               Perfect Murder, A (1998)
## 9795                                                                                        Predator (1987)
## 9796                                                                                 Men in Black II (2002)
## 9797                                                                                    Forrest Gump (1994)
## 9798                                                                                     Match Point (2005)
## 9799                                                                           First Wives Club, The (1996)
## 9800                                                                                     Matrix, The (1999)
## 9801                                                                         Godfather: Part II, The (1974)
## 9802                                                                           Living Daylights, The (1987)
## 9803                                                                            Bourne Identity, The (2002)
## 9804                                                                                     Others, The (2001)
## 9805                                                                   Sea Inside, The (Mar adentro) (2004)
## 9806                                                                    United States of Leland, The (2003)
## 9807                                                                           Good Morning, Vietnam (1987)
## 9808                                                                 Return of the Pink Panther, The (1975)
## 9809                                                                                  Fahrenheit 451 (1966)
## 9810                                                                                  Pokémon Heroes (2003)
## 9811                                                              Police Academy 6: City Under Siege (1989)
## 9812                                                                                        Jaws 3-D (1983)
## 9813                                                                                    Superman III (1983)
## 9814                                                                              Back to the Future (1985)
## 9815                                                                                         Twister (1996)
## 9816                                                                                    Pretty Woman (1990)
## 9817                                                                                           Ghost (1990)
## 9818                                                                                        Die Hard (1988)
## 9819                                                             Ghostbusters (a.k.a. Ghost Busters) (1984)
## 9820                                                                                    Blade Runner (1982)
## 9821                                                                                          Clerks (1994)
## 9822                                                     Austin Powers: International Man of Mystery (1997)
## 9823                                                                                     Beetlejuice (1988)
## 9824                                                Lost World: Jurassic Park, The (Jurassic Park 2) (1997)
## 9825                                                                                          Cocoon (1985)
## 9826                                                                                       Bowfinger (1999)
## 9827                                                                                       Cape Fear (1991)
## 9828                                                                      Spiderwick Chronicles, The (2008)
## 9829                                                                         AVP: Alien vs. Predator (2004)
## 9830                                                                                          Aliens (1986)
## 9831                                                      Star Wars: Episode VI - Return of the Jedi (1983)
## 9832                                                                                       Cast Away (2000)
## 9833                                                                                    American Pie (1999)
## 9834                                                                         Flight of the Navigator (1986)
## 9835                                                                                Sixth Sense, The (1999)
## 9836                                                              Indiana Jones and the Last Crusade (1989)
## 9837                                                                               American Gangster (2007)
## 9838                                                             Life Is Beautiful (La Vita è bella) (1997)
## 9839                                                                                    Home Alone 3 (1997)
## 9840                                                                            Boondock Saints, The (2000)
## 9841                                                                                     Equilibrium (2002)
## 9842                                                                                        Vacation (1983)
## 9843                                                                         Ferris Buellers Day Off (1986)
## 9844                                                                                   Groundhog Day (1993)
## 9845                                                                        Blair Witch Project, The (1999)
## 9846                                                                          Muppet Treasure Island (1996)
## 9847                                                                                         Michael (1996)
## 9848                                                                                   Walk the Line (2005)
## 9849                                                                       Pursuit of Happyness, The (2006)
## 9850                                                                                         Top Gun (1986)
## 9851                                                                               Kill Bill: Vol. 2 (2004)
## 9852                                                                             Blues Brothers, The (1980)
## 9853                                                                               Kramer Vs. Kramer (1979)
## 9854                                                                              Dead Poets Society (1989)
## 9855                                                                             Wedding Singer, The (1998)
## 9856                                                                          All the Presidents Men (1976)
## 9857                                                                                     Others, The (2001)
## 9858                                                                         40 Year Old Virgin, The (2005)
## 9859                                                                                Crocodile Dundee (1986)
## 9860                                                                               13th Warrior, The (1999)
## 9861                                                                                    Mariachi, El (1992)
## 9862                                                                                        I, Robot (2004)
## 9863                                                                                    Spider-Man 2 (2004)
## 9864                                                                                   Shanghai Noon (2000)
## 9865                                                                                  Animatrix, The (2003)
## 9866                                                                                           Speed (1994)
## 9867                                                                            Matrix Reloaded, The (2003)
## 9868                                                                                       Cell, The (2000)
## 9869                                                                Unleashed (a.k.a. Danny The Dog) (2005)
## 9870                                                                                     Stand by Me (1986)
## 9871                                                                          Bang, Bang, Youre Dead (2002)
## 9872                                                                               Scanner Darkly, A (2006)
## 9873                                                                                       Excalibur (1981)
## 9874                                                                                  Reservoir Dogs (1992)
## 9875                                                                       Silence of the Lambs, The (1991)
## 9876                                                                      Terminator 2: Judgment Day (1991)
## 9877                                                                                  Mrs. Doubtfire (1993)
## 9878                                                                                 Terminator, The (1984)
## 9879                                                              National Treasure: Book of Secrets (2007)
## 9880                                                                                     Jackal, The (1997)
## 9881                                                                                         Gattaca (1997)
## 9882                                                                                       Rock, The (1996)
## 9883                                       Cowboy Bebop: The Movie (Cowboy Bebop: Tengoku no Tobira) (2001)
## 9884                                                                                Superman Returns (2006)
## 9885                                                                             Conan the Barbarian (1982)
## 9886                                                                                            Hulk (2003)
## 9887                                                                                      Grindhouse (2007)
## 9888                                                                Superman IV: The Quest for Peace (1987)
## 9889                                                                           Thank You for Smoking (2006)
## 9890                                                             Ghost in the Shell (Kôkaku kidôtai) (1995)
## 9891                                                                                      Powaqqatsi (1988)
## 9892                                              Interview with the Vampire: The Vampire Chronicles (1994)
## 9893                                                                                       Dark City (1998)
## 9894                                                                     Monty Pythons Life of Brian (1979)
## 9895                                                                                           Shrek (2001)
## 9896                                                         Pans Labyrinth (El Laberinto del fauno) (2006)
## 9897                                                                               Big Lebowski, The (1998)
## 9898                                                                                 Terminator, The (1984)
## 9899                                                                            Bridget Joness Diary (2001)
## 9900                                                                    A.I. Artificial Intelligence (2001)
## 9901                                                                                         Ben-Hur (1959)
## 9902                                                                                     Mystery Men (1999)
## 9903                                                    Battle of Algiers, The (Bataille dAlger, La) (1966)
## 9904                                                                  Ace Ventura: When Nature Calls (1995)
## 9905                                                                                         Ice Age (2002)
## 9906                                                                                        Insomnia (2002)
## 9907                                                                                          Closer (2004)
## 9908                                                                                   Oceans Twelve (2004)
## 9909                                                                                 Oceans Thirteen (2007)
## 9910                                                                                      Caddyshack (1980)
## 9911                                                                                       Big Daddy (1999)
## 9912                                                                                     Death Proof (2007)
## 9913                                                                                      Hollow Man (2000)
## 9914                                                                              Enemy at the Gates (2001)
## 9915                                                                                  50 First Dates (2004)
## 9916                                                           Anchorman: The Legend of Ron Burgundy (2004)
## 9917                                                                                              Pi (1998)
## 9918                                                                                 Starsky & Hutch (2004)
## 9919                                                                                Anger Management (2003)
## 9920                                                                          Brady Bunch Movie, The (1995)
## 9921                                                                                  Grumpy Old Men (1993)
## 9922                                                                                         Beowulf (2007)
## 9923                                                                             Night at the Museum (2006)
## 9924                                                                                   Event Horizon (1997)
## 9925                                                                               Kingdom of Heaven (2005)
## 9926                                                                                 Southland Tales (2006)
## 9927                                                                          Miracle on 34th Street (1994)
## 9928                                                                                         Shooter (2007)
## 9929                                                                                   Son of Rambow (2007)
## 9930                                                                                          Aliens (1986)
## 9931                                                                               Full Metal Jacket (1987)
## 9932                                                                                            Juno (2007)
## 9933                                                                         Speed 2: Cruise Control (1997)
## 9934                                                                                    Jackie Brown (1997)
## 9935                                                                     Futurama: Benders Big Score (2007)
## 9936                                                                  Dracula (Bram Stokers Dracula) (1992)
## 9937                                                                                  Libertine, The (2004)
## 9938                                                                                    Forrest Gump (1994)
## 9939                                                                        Godfather: Part III, The (1990)
## 9940                                                                             Alien: Resurrection (1997)
## 9941                                                                                   Resident Evil (2002)
## 9942                                                                                     Shoot Em Up (2007)
## 9943                                                                                  Meet Joe Black (1998)
## 9944                                                                                       Antitrust (2001)
## 9945                                                                    Texas Chainsaw Massacre, The (2003)
## 9946                                                                             Freddy Got Fingered (2001)
## 9947                                              Indiana Jones and the Kingdom of the Crystal Skull (2008)
## 9948                                                                                        Rounders (1998)
## 9949                                                                                         Con Air (1997)
## 9950                                                                                         Redbelt (2008)
## 9951                                         Spirit of the Beehive, The (Espíritu de la colmena, El) (1973)
## 9952                                                                     Hellboy II: The Golden Army (2008)
## 9953                                                                             Shakespeare in Love (1998)
## 9954                                                            Indiana Jones and the Temple of Doom (1984)
## 9955                                                                                   28 Days Later (2002)
## 9956                                                                                     Peeping Tom (1960)
## 9957                                                                                          Batman (1989)
## 9958                                                                   Independence Day (a.k.a. ID4) (1996)
## 9959                                                                                       Guru, The (2002)
## 9960                                                                                     Hammer, The (2007)
## 9961                                                                                           Rocky (1976)
## 9962                                                                                    Rocky Balboa (2006)
## 9963                                                          Where in the World Is Osama Bin Laden? (2008)
## 9964             Borat: Cultural Learnings of America for Make Benefit Glorious Nation of Kazakhstan (2006)
## 9965                                                                                 This Is England (2006)
## 9966                                                                                     Lord of War (2005)
## 9967                                                                                      Casablanca (1942)
## 9968                                                                                          Volver (2006)
## 9969                                                                                    Delicatessen (1991)
## 9970                                                                                    Blade Runner (1982)
## 9971                                                                                    Visitor, The (2007)
## 9972                                                                                        Vacation (1983)
## 9973                                                                                      Casablanca (1942)
## 9974                                                                             Charlie Wilsons War (2007)
## 9975                                                                                  Tropic Thunder (2008)
## 9976                                                                                   Into the Wild (2007)
## 9977                                                                                       Secretary (2002)
## 9978                                                                            Seven Year Itch, The (1955)
## 9979                                                                                    Out of Sight (1998)
## 9980                                                                                        WarGames (1983)
## 9981                                                                     Four Weddings and a Funeral (1994)
## 9982                                                                                  28 Weeks Later (2007)
## 9983                                                                               King of Kong, The (2007)
## 9984                                                                              Enemy of the State (1998)
## 9985                                                                                  Apocalypse Now (1979)
## 9986                                                                                Dark Knight, The (2008)
## 9987                                                                                            Milk (2008)
## 9988                                                                                Dark Knight, The (2008)
## 9989                                                                                    Babylon A.D. (2008)
## 9990                                                                                       Eagle Eye (2008)
## 9991                                                                                         Hancock (2008)
## 9992                                                                                 Sure Thing, The (1985)
## 9993                                                                                     Fathers Day (1997)
## 9994                                                                              Brewsters Millions (1985)
## 9995                                                                                    Men of Honor (2000)
## 9996                                                                                  Happening, The (2008)
## 9997                                                                              Christmas Story, A (1983)
## 9998                                                                                  Monsters, Inc. (2001)
## 9999                                                                                  Trading Places (1983)
## 10000                                                                           Me, Myself and Irene (2000)
##                                                          Genres UserID Rating
## 1                                                  Drama|Horror   2113    5.0
## 2                                         Action|Crime|Thriller   2113    4.0
## 3                    Animation|Children|Fantasy|Musical|Romance   2113    3.0
## 4                                               Adventure|Drama   2113    5.0
## 5                                            Drama|Thriller|War   2113    4.0
## 6                                          Action|Drama|Western   2113    3.0
## 7                                                 Drama|Romance   2506    5.0
## 8                   Adventure|Animation|Children|Comedy|Fantasy   2506    5.0
## 9                                          Comedy|Drama|Romance   2506    5.0
## 10                                    Action|Adventure|Thriller   2472    3.0
## 11                                      Action|Adventure|Sci-Fi   2378    3.0
## 12                                Action|Adventure|Drama|Sci-Fi   2378    3.0
## 13                                      Action|Adventure|Sci-Fi   2378    2.0
## 14                                        Action|Crime|Thriller   2378    2.0
## 15                                               Comedy|Romance   2478    4.0
## 16                                 Action|Drama|Sci-Fi|Thriller   2478    3.0
## 17                                                        Drama   2478    3.0
## 18                                                       Comedy   2569    2.0
## 19                                                        Drama   2569    5.0
## 20                                                 Comedy|Drama   2569    3.0
## 21                     Action|Adventure|Comedy|Romance|Thriller   2278    5.0
## 22                                                       Comedy   2278    3.0
## 23                                    Action|Adventure|Thriller   2375    2.0
## 24                                               Comedy|Romance   2375    1.0
## 25                                                        Drama   2375    4.0
## 26                                                  Crime|Drama   2375    4.0
## 27                                               Comedy|Romance   2375    2.0
## 28                                                  Documentary   2473    5.0
## 29                                      Adventure|Drama|Western   2565    5.0
## 30                                      Action|Adventure|Sci-Fi   2565    3.0
## 31                                               Drama|Thriller   2565    3.0
## 32                                    Action|Adventure|Thriller   2674    5.0
## 33                                      Action|Adventure|Sci-Fi   2674    3.0
## 34                                                        Drama   2674    5.0
## 35                                               Comedy|Romance   2674    4.0
## 36                                                        Drama   2781    4.0
## 37                                                       Comedy   2781    5.0
## 38                                 Action|Crime|Sci-Fi|Thriller   2144    3.0
## 39                                           Comedy|Crime|Drama   2436    3.0
## 40                                           Drama|Thriller|War   2436    4.0
## 41                                             Action|Drama|War   2436    4.0
## 42                           Animation|Children|Fantasy|Musical   2144    5.0
## 43                                                 Comedy|Drama   2436    3.0
## 44                                                       Comedy   2144    3.0
## 45                                 Action|Crime|Sci-Fi|Thriller   2640    3.0
## 46                                        Crime|Horror|Thriller   2640    4.0
## 47                                               Fantasy|Horror   2640    3.0
## 48                                              Adventure|Drama   2845    5.0
## 49                                               Drama|Thriller   2538    5.0
## 50                                         Comedy|Drama|Fantasy   2845    1.0
## 51                                                       Comedy   2845    4.0
## 52                                 Comedy|Drama|Fantasy|Romance   2845    5.0
## 53                                           Drama|Thriller|War   2538    5.0
## 54                                       Horror|Sci-Fi|Thriller   2538    3.0
## 55                                          Action|Crime|Horror   2538    3.0
## 56                             Crime|Film-Noir|Mystery|Thriller   2845    4.0
## 57                                           Adventure|Children   2547    3.0
## 58                          Crime|Drama|Horror|Mystery|Thriller   2547    2.0
## 59                                        Action|Crime|Thriller   2547    2.0
## 60                                               Comedy|Romance   2547    3.0
## 61                                      Action|Adventure|Sci-Fi   2547    3.0
## 62                                             Comedy|Drama|War   2547    4.0
## 63                                            Drama|Romance|War   2547    4.0
## 64                                Action|Adventure|Comedy|Crime   2656    3.0
## 65                  Adventure|Animation|Children|Comedy|Musical   2656    3.0
## 66                                    Action|Adventure|Thriller   2656    3.0
## 67                                 Action|Crime|Sci-Fi|Thriller   2856    3.0
## 68                                                       Comedy   2856    4.0
## 69                                      Action|Adventure|Sci-Fi   2856    3.0
## 70                                 Action|Drama|Sci-Fi|Thriller   2856    4.0
## 71                                      Adventure|Drama|Western   2677    3.0
## 72                                        Action|Crime|Thriller   2677    3.0
## 73                                         Comedy|Drama|Fantasy   2615    3.0
## 74                                Crime|Horror|Mystery|Thriller   2677    2.0
## 75                                                       Comedy   2615    2.0
## 76                                        Action|Comedy|Romance   2615    3.0
## 77                                      Adventure|Drama|Western   2751    3.0
## 78                   Animation|Children|Fantasy|Musical|Romance   2751    4.0
## 79                                               Comedy|Romance   2751    5.0
## 80                                        Comedy|Drama|Thriller   2615    4.0
## 81                                                Drama|Musical   2615    3.0
## 82                                                Drama|Romance   2751    4.0
## 83                                         Crime|Drama|Thriller   2615    3.0
## 84                                                       Action   2833    3.0
## 85                                                Drama|Romance   2833    5.0
## 86                                                        Drama   2833    4.0
## 87                                                       Action   2833    4.0
## 88                                                        Drama   2751    4.0
## 89                                                       Comedy   2833    3.0
## 90                                                       Comedy   2833    3.0
## 91                                                Drama|Romance   2833    4.0
## 92                                              Adventure|Drama   2173    3.0
## 93                                Action|Adventure|Drama|Sci-Fi   2173    4.0
## 94                                                       Comedy   2173    1.0
## 95                                           Drama|Thriller|War   2173    5.0
## 96                                                        Drama   2173    4.0
## 97                                                 Drama|Horror   2173    3.0
## 98                                Children|Comedy|Drama|Fantasy   2173    4.0
## 99                                    Drama|Romance|War|Western   2173    3.0
## 100                                              Comedy|Romance   2173    3.0
## 101                                      Drama|Mystery|Thriller   2173    3.0
## 102                                               Drama|Romance   2173    5.0
## 103                                                      Comedy   2173    4.0
## 104                                Action|Crime|Sci-Fi|Thriller   2442    3.0
## 105                                Action|Crime|Sci-Fi|Thriller   2541    3.0
## 106                                                      Comedy   2541    3.0
## 107                                   Action|Adventure|Thriller   2541    3.0
## 108                                Action|Drama|Sci-Fi|Thriller   2541    1.0
## 109                                               Comedy|Sci-Fi   2442    3.0
## 110                          Animation|Children|Musical|Romance   2442    3.0
## 111                                               Comedy|Sci-Fi   2541    1.0
## 112                                                      Action   2541    1.0
## 113                                     Action|Adventure|Comedy   2442    3.0
## 114                                                       Drama   2541    5.0
## 115                                              Comedy|Romance   2541    3.0
## 116                                                Comedy|Drama   2541    5.0
## 117                                                       Drama   2541    5.0
## 118                               Action|Crime|Fantasy|Thriller   2541    1.0
## 119                                                Drama|Sci-Fi   2541    3.0
## 120                   Adventure|Drama|Film-Noir|Sci-Fi|Thriller   2173    4.0
## 121                                          Comedy|Crime|Drama   2142    5.0
## 122                                     Adventure|Drama|Western   2142    3.0
## 123                                                      Comedy   2142    3.0
## 124                                                      Comedy   2132    5.0
## 125                                            Action|Drama|War   2132    5.0
## 126                                                    Thriller   2132    5.0
## 127                               Children|Comedy|Drama|Fantasy   2132    3.0
## 128                                       Action|Crime|Thriller   2142    4.0
## 129                                  Adventure|Animation|Comedy   2142    4.0
## 130                               Action|Crime|Fantasy|Thriller   2142    3.0
## 131                                  Adventure|Children|Fantasy   2132    5.0
## 132                                      Action|Sci-Fi|Thriller   2132    3.0
## 133                          Animation|Children|Fantasy|Musical   2142    3.0
## 134                                     Action|Romance|Thriller   2142    3.0
## 135                 Adventure|Animation|Children|Comedy|Musical   2169    4.0
## 136                                                      Comedy   2169    3.0
## 137                                                       Drama   2169    5.0
## 138                  Animation|Children|Fantasy|Musical|Romance   2169    4.0
## 139                                          Animation|Children   2132    4.0
## 140                                          Drama|Thriller|War   2169    4.0
## 141                                       Action|Crime|Thriller   2169    3.0
## 142                                     Children|Comedy|Fantasy   2142    2.0
## 143                   Adventure|Children|Comedy|Fantasy|Romance   2132    4.0
## 144                                                      Comedy   2169    3.0
## 145                                    Action|Adventure|Fantasy   2132    5.0
## 146                    Action|Adventure|Comedy|Romance|Thriller   2194    3.0
## 147                                                      Comedy   2194    3.0
## 148                          Animation|Children|Fantasy|Musical   2194    3.0
## 149                                                      Comedy   2194    3.0
## 150                                        Comedy|Drama|Romance   2194    3.0
## 151                 Adventure|Animation|Children|Comedy|Musical   2225    5.0
## 152                                   Action|Adventure|Thriller   2225    3.0
## 153                                              Comedy|Romance   2225    4.0
## 154                          Animation|Children|Fantasy|Musical   2225    5.0
## 155                              Children|Drama|Fantasy|Mystery   2225    4.0
## 156                                          Animation|Children   2225    3.0
## 157                                                       Drama   2236    4.0
## 158                                      Drama|Mystery|Thriller   2225    3.0
## 159                                             Action|Thriller   2225    4.0
## 160                                              Comedy|Romance   2225    3.0
## 161                  Animation|Children|Fantasy|Musical|Romance   2246    4.0
## 162                                                       Drama   2246    5.0
## 163                                          Drama|Thriller|War   2246    4.0
## 164                                              Comedy|Romance   2246    3.0
## 165                                       Crime|Horror|Thriller   2246    5.0
## 166                                          Adventure|Children   2225    3.0
## 167                                                      Comedy   2272    3.0
## 168                               Action|Adventure|Drama|Sci-Fi   2272    3.0
## 169                                          Drama|Thriller|War   2272    4.0
## 170                                                Comedy|Drama   2246    4.0
## 171                                             Action|Thriller   2246    4.0
## 172                                                 Crime|Drama   2246    4.0
## 173                                     Action|Adventure|Sci-Fi   2272    3.0
## 174                                                      Comedy   2246    4.0
## 175                             Action|Adventure|Comedy|Fantasy   2246    3.0
## 176                                                       Drama   2246    4.0
## 177                                              Comedy|Romance   2246    3.0
## 178                                Action|Drama|Sci-Fi|Thriller   2288    3.0
## 179                                 Comedy|Crime|Drama|Thriller   2327    5.0
## 180                                              Comedy|Romance   2288    4.0
## 181                           Action|Adventure|Mystery|Thriller   2327    3.0
## 182                                             Adventure|Drama   2362    3.0
## 183                                                       Drama   2362    5.0
## 184                    Action|Adventure|Comedy|Romance|Thriller   2370    3.0
## 185                                             Adventure|Drama   2370    3.0
## 186                               Action|Adventure|Drama|Sci-Fi   2370    3.0
## 187                                       Crime|Horror|Thriller   2352    5.0
## 188                                       Crime|Horror|Thriller   2370    4.0
## 189                               Crime|Horror|Mystery|Thriller   2370    3.0
## 190                                                       Drama   2370    3.0
## 191                                              Comedy|Romance   2370    3.0
## 192                                               Action|Sci-Fi   2370    3.0
## 193                                     Action|Adventure|Sci-Fi   2370    3.0
## 194                                                Comedy|Drama   2370    3.0
## 195                                       Action|Crime|Thriller   2393    5.0
## 196                               Action|Adventure|Drama|Sci-Fi   2393    3.0
## 197                                   Action|Adventure|Thriller   2393    4.0
## 198                                          Drama|Thriller|War   2393    4.0
## 199                                       Crime|Horror|Thriller   2422    3.0
## 200                                     Action|Adventure|Sci-Fi   2415    4.0
## 201                                       Action|Crime|Thriller   2445    3.0
## 202                                             Adventure|Drama   2457    4.0
## 203                                     Adventure|Drama|Western   2457    3.0
## 204                                   Action|Adventure|Thriller   2457    3.0
## 205                                                       Drama   2497    5.0
## 206                                       Action|Comedy|Romance   2488    4.0
## 207                                                Drama|Horror   2457    4.0
## 208                                        Action|Drama|Romance   2488    4.0
## 209                                               Drama|Romance   2488    4.0
## 210                  Adventure|Animation|Children|Drama|Musical   2457    4.0
## 211                                    Adventure|Comedy|Western   2488    5.0
## 212                                               Drama|Romance   2497    4.0
## 213                                        Comedy|Drama|Romance   2457    3.0
## 214                                           Action|Comedy|War   2488    3.0
## 215                                     Action|Romance|Thriller   2497    3.0
## 216                                              Comedy|Romance   2457    3.0
## 217                                               Comedy|Sci-Fi   2457    3.0
## 218                                             Adventure|Drama   2511    5.0
## 219                                                 Documentary   2457    5.0
## 220                                                 Crime|Drama   2457    4.0
## 221                                                      Action   2457    3.0
## 222                                                       Drama   2518    5.0
## 223                  Animation|Children|Fantasy|Musical|Romance   2518    3.0
## 224                                               Drama|Romance   2457    4.0
## 225                                                 Crime|Drama   2457    3.0
## 226                                              Comedy|Romance   2497    3.0
## 227                                                       Drama   2457    4.0
## 228                                    Adventure|Children|Drama   2497    1.0
## 229                                                       Drama   2497    5.0
## 230                                                       Drama   2497    2.0
## 231                                        Comedy|Drama|Romance   2537    4.0
## 232                                             Action|Thriller   2537    3.0
## 233                                                 Crime|Drama   2497    4.0
## 234                                                       Drama   2457    3.0
## 235                                   Action|Adventure|Thriller   2543    2.0
## 236                                       Action|Crime|Thriller   2543    3.0
## 237                                              Drama|Thriller   2497    3.0
## 238                                        Crime|Drama|Thriller   2543    4.0
## 239                               Action|Adventure|Comedy|Crime   2549    2.0
## 240                                                      Comedy   2549    1.0
## 241                               Action|Adventure|Drama|Sci-Fi   2549    4.0
## 242                                                Comedy|Drama   2543    4.0
## 243                                              Comedy|Romance   2543    3.0
## 244                                Action|Comedy|Musical|Sci-Fi   2543    3.0
## 245                               Action|Adventure|Comedy|Crime   2543    4.0
## 246                             Action|Adventure|Crime|Thriller   2543    4.0
## 247                                       Drama|Mystery|Western   2457    3.0
## 248                                     Adventure|Drama|Western   2559    2.0
## 249                                                       Drama   2457    5.0
## 250                                      Crime|Mystery|Thriller   2559    4.0
## 251                                     Action|Romance|Thriller   2559    3.0
## 252                            Crime|Film-Noir|Mystery|Thriller   2457    3.0
## 253                                                Comedy|Drama   2457    4.0
## 254                                               Drama|Romance   2559    4.0
## 255                                                       Drama   2559    5.0
## 256                              Children|Drama|Fantasy|Mystery   2457    4.0
## 257                                                       Drama   2457    3.0
## 258                                                       Drama   2457    3.0
## 259                  Animation|Children|Fantasy|Musical|Romance   2607    3.0
## 260                                               Drama|Romance   2607    5.0
## 261                                                      Comedy   2607    3.0
## 262                                          Animation|Children   2607    3.0
## 263                                                Comedy|Drama   2607    5.0
## 264                                               Drama|Romance   2607    5.0
## 265                                                       Drama   2607    3.0
## 266                                                Comedy|Drama   2457    4.0
## 267                                              Comedy|Romance   2457    2.0
## 268                                   Action|Adventure|Thriller   2614    4.0
## 269                    Action|Adventure|Comedy|Romance|Thriller   2628    4.0
## 270                                                       Drama   2457    4.0
## 271                                    Comedy|Drama|Romance|War   2614    5.0
## 272                                     Action|Adventure|Sci-Fi   2614    4.0
## 273                                                   Drama|War   2614    5.0
## 274                                      Drama|Mystery|Thriller   2628    3.0
## 275                                               Action|Sci-Fi   2628    4.0
## 276                                   Action|Adventure|Thriller   2648    3.0
## 277                 Adventure|Animation|Children|Comedy|Musical   2648    3.0
## 278                                              Comedy|Romance   2648    4.0
## 279                                      Action|Sci-Fi|Thriller   2648    2.0
## 280                                      Drama|Mystery|Thriller   2648    3.0
## 281                                               Drama|Romance   2648    4.0
## 282                                              Comedy|Romance   2648    5.0
## 283                                     Action|Adventure|Sci-Fi   2659    5.0
## 284                                Action|Drama|Sci-Fi|Thriller   2666    3.0
## 285                             Action|Adventure|Mystery|Sci-Fi   2659    3.0
## 286                                       Action|Crime|Thriller   2666    4.0
## 287                  Adventure|Animation|Children|Drama|Musical   2659    4.0
## 288                           Adventure|Children|Comedy|Musical   2659    5.0
## 289                                       Action|Crime|Thriller   2700    4.0
## 290                               Action|Adventure|Comedy|Crime   2700    3.0
## 291                                   Action|Adventure|Thriller   2700    4.0
## 292                                       Crime|Sci-Fi|Thriller   2659    3.0
## 293                                              Comedy|Romance   2700    4.0
## 294                                                Comedy|Drama   2700    4.0
## 295                  Animation|Children|Fantasy|Musical|Romance   2725    5.0
## 296                                       Action|Crime|Thriller   2725    3.0
## 297                                              Comedy|Romance   2725    1.0
## 298                                              Comedy|Romance   2725    4.0
## 299                                  Adventure|Children|Fantasy   2725    3.0
## 300                                           Action|Comedy|War   2725    4.0
## 301                                     Adventure|Drama|Western   2737    4.0
## 302                                              Drama|Thriller   2737    4.0
## 303                               Action|Adventure|Comedy|Crime   2767    2.0
## 304                                     Action|Adventure|Sci-Fi   2767    3.0
## 305                                Action|Drama|Sci-Fi|Thriller   2767    2.0
## 306                                              Children|Drama   2767    4.0
## 307                                                Drama|Horror   2787    5.0
## 308                 Adventure|Animation|Children|Comedy|Fantasy   2787    5.0
## 309                                    Comedy|Drama|Romance|War   2787    4.0
## 310                                                Comedy|Drama   2787    2.0
## 311                                                      Action   2787    5.0
## 312                                      Drama|Mystery|Thriller   2787    3.0
## 313                                               Action|Sci-Fi   2787    3.0
## 314                                    Action|Adventure|Fantasy   2787    3.0
## 315                                                       Drama   2787    5.0
## 316                                                       Drama   2787    4.0
## 317                 Adventure|Animation|Children|Comedy|Musical   2803    4.0
## 318                  Animation|Children|Fantasy|Musical|Romance   2803    4.0
## 319                                       Action|Crime|Thriller   2803    3.0
## 320                                                    Thriller   2803    4.0
## 321                                    Comedy|Drama|Romance|War   2803    5.0
## 322                                   Action|Adventure|Thriller   2825    5.0
## 323                                       Action|Crime|Thriller   2825    4.0
## 324                                       Crime|Horror|Thriller   2825    4.0
## 325                                             Adventure|Drama   2830    5.0
## 326                                     Adventure|Drama|Western   2843    4.0
## 327                                               Drama|Romance   2825    5.0
## 328                                                       Drama   2825    4.0
## 329                                                       Drama   2825    5.0
## 330                                               Drama|Romance   2825    3.0
## 331                                     Action|Romance|Thriller   2825    4.0
## 332                                               Drama|Romance   2825    3.0
## 333                                              Drama|Thriller   2825    3.0
## 334                                                       Drama   2825    3.0
## 335                                                       Drama   2825    3.0
## 336                           Action|Adventure|Romance|Thriller   2825    5.0
## 337                                               Drama|Romance   2825    3.0
## 338                                       Action|Crime|Thriller   2849    2.0
## 339                                              Drama|Thriller   2849    3.0
## 340                                Action|Comedy|Crime|Thriller   2849    3.0
## 341                                        Crime|Drama|Thriller   2849    3.0
## 342                                               Comedy|Sci-Fi   2849    3.0
## 343                  Adventure|Animation|Children|Drama|Musical   2849    4.0
## 344                                          Comedy|Crime|Drama   2849    3.0
## 345                                Action|Crime|Sci-Fi|Thriller   2868    3.0
## 346                                          Comedy|Crime|Drama   2868    2.0
## 347                                     Action|Adventure|Sci-Fi   2868    3.0
## 348                  Animation|Children|Fantasy|Musical|Romance   2868    4.0
## 349                                    Comedy|Drama|Romance|War   2749    5.0
## 350                           Action|Adventure|Mystery|Thriller   2749    3.0
## 351                                 Action|Comedy|Crime|Fantasy   2749    5.0
## 352                                              Drama|Thriller   2749    3.0
## 353                                             Adventure|Drama   2176    4.0
## 354                                        Comedy|Drama|Romance   2352    5.0
## 355                                        Comedy|Drama|Romance   2352    4.0
## 356                                                      Action   2362    3.0
## 357                                              Comedy|Romance   2787    4.0
## 358                                                 Crime|Drama   2787    4.0
## 359                                              Drama|Thriller   2787    5.0
## 360                                       Comedy|Drama|Thriller   2787    2.0
## 361                                Action|Comedy|Musical|Sci-Fi   2787    3.0
## 362                                                       Drama   2787    4.0
## 363                                              Comedy|Romance   2787    4.0
## 364                                               Drama|Romance   2787    4.0
## 365                                                      Comedy   2787    3.0
## 366                                                      Comedy   2787    4.0
## 367                                               Drama|Romance   2787    4.0
## 368                                               Action|Sci-Fi   2787    3.0
## 369                                                Comedy|Drama   2787    2.0
## 370                                                      Comedy   2787    3.0
## 371                                                       Drama   2751    5.0
## 372                                     Action|Romance|Thriller   2751    4.0
## 373                                 Action|Adventure|Sci-Fi|War   2787    5.0
## 374                                                 Crime|Drama   2787    3.0
## 375                                              Children|Drama   2787    3.0
## 376                                    Action|Adventure|Fantasy   2787    3.0
## 377                                                      Comedy   2787    3.0
## 378                                                       Drama   2787    3.0
## 379                                               Comedy|Horror   2787    3.0
## 380                                                   Drama|War   2787    3.0
## 381                                                      Comedy   2787    3.0
## 382                                        Comedy|Drama|Romance   2787    4.0
## 383                                        Comedy|Drama|Romance   2787    3.0
## 384                                                       Drama   2787    3.0
## 385                        Crime|Drama|Fantasy|Romance|Thriller   2787    2.0
## 386                                               Drama|Western   2787    3.0
## 387                                                 Crime|Drama   2787    3.0
## 388                                                   Drama|War   2787    3.0
## 389                                               Drama|Romance   2787    5.0
## 390                                   Action|Adventure|Thriller   2640    3.0
## 391                                       Action|Crime|Thriller   2628    1.0
## 392                                                    Thriller   2628    3.0
## 393                                 Action|Adventure|Sci-Fi|War   2628    4.0
## 394                                              Crime|Thriller   2628    3.0
## 395                                   Action|Adventure|Thriller   2472    4.0
## 396                                Action|Drama|Sci-Fi|Thriller   2472    4.0
## 397                                     Action|Romance|Thriller   2472    5.0
## 398                             Action|Adventure|Comedy|Fantasy   2472    3.0
## 399                    Action|Adventure|Comedy|Romance|Thriller   2138    2.0
## 400                                                      Comedy   2138    1.0
## 401                                              Drama|Thriller   2138    4.0
## 402                                                       Drama   2138    3.0
## 403                                       Action|Crime|Thriller   2138    3.0
## 404                               Action|Crime|Fantasy|Thriller   2148    3.0
## 405                                             Comedy|Thriller   2148    3.0
## 406                                   Action|Adventure|Thriller   2159    4.0
## 407                                     Action|Adventure|Sci-Fi   2159    4.0
## 408                                       Crime|Horror|Thriller   2159    5.0
## 409                                                Drama|Horror   2159    3.0
## 410                                   Action|Adventure|Thriller   2172    4.0
## 411                               Action|Adventure|Drama|Sci-Fi   2172    5.0
## 412                                            Action|Drama|War   2172    5.0
## 413                                              Comedy|Romance   2187    3.0
## 414                                                      Comedy   2187    3.0
## 415                                        Comedy|Drama|Romance   2187    3.0
## 416                                     Action|Adventure|Sci-Fi   2201    5.0
## 417                                   Action|Adventure|Thriller   2201    4.0
## 418                                                       Drama   2201    5.0
## 419                                   Action|Adventure|Thriller   2201    3.0
## 420                                                      Comedy   2201    1.0
## 421                                Action|Comedy|Crime|Thriller   2201    1.0
## 422                                             Sci-Fi|Thriller   2201    3.0
## 423                       Comedy|Drama|Fantasy|Romance|Thriller   2201    3.0
## 424                          Animation|Children|Fantasy|Musical   2187    3.0
## 425                                             Children|Comedy   2201    3.0
## 426                                    Action|Adventure|Fantasy   2201    3.0
## 427                                     Comedy|Romance|Thriller   2187    4.0
## 428                                                       Drama   2201    3.0
## 429                                              Comedy|Romance   2230    4.0
## 430                               Action|Adventure|Comedy|Crime   2259    3.0
## 431                                   Action|Adventure|Thriller   2259    2.0
## 432                                       Action|Crime|Thriller   2259    5.0
## 433                                     Action|Adventure|Sci-Fi   2266    4.0
## 434                                    Comedy|Drama|Romance|War   2266    3.0
## 435                                Action|Crime|Sci-Fi|Thriller   2285    4.0
## 436                  Adventure|Animation|Children|Drama|Musical   2266    3.0
## 437                                       Crime|Horror|Thriller   2285    5.0
## 438                                              Comedy|Romance   2285    4.0
## 439                                                Drama|Horror   2285    4.0
## 440                                       Action|Drama|Thriller   2285    3.0
## 441                                      Drama|Mystery|Thriller   2285    4.0
## 442                                         Action|Crime|Sci-Fi   2266    3.0
## 443                                             Adventure|Drama   2292    4.0
## 444                                                      Comedy   2292    3.0
## 445                               Action|Crime|Fantasy|Thriller   2285    4.0
## 446                                               Horror|Sci-Fi   2266    5.0
## 447                                                       Drama   2266    3.0
## 448                                        Comedy|Drama|Romance   2285    3.0
## 449                                        Comedy|Drama|Fantasy   2292    3.0
## 450                                                       Drama   2292    5.0
## 451                                                      Comedy   2266    3.0
## 452                                      Horror|Sci-Fi|Thriller   2266    5.0
## 453                                                Drama|Sci-Fi   2266    4.0
## 454                                    Action|Adventure|Fantasy   2266    3.0
## 455                                              Comedy|Romance   2230    4.0
## 456                                               Horror|Sci-Fi   2266    3.0
## 457                               Action|Adventure|Drama|Sci-Fi   2311    3.0
## 458                                                      Comedy   2311    2.0
## 459                            Action|Adventure|Sci-Fi|Thriller   2311    3.0
## 460                    Action|Adventure|Comedy|Romance|Thriller   2321    2.0
## 461                                                    Thriller   2321    4.0
## 462                                              Drama|Thriller   2321    3.0
## 463                                       Action|Comedy|Romance   2321    4.0
## 464                                                       Drama   2321    4.0
## 465                                                      Comedy   2321    4.0
## 466                                                      Comedy   2321    3.0
## 467                                                      Comedy   2321    4.0
## 468                                       Action|Crime|Thriller   2389    4.0
## 469                                   Action|Adventure|Thriller   2389    4.0
## 470                                              Comedy|Romance   2389    3.0
## 471                                Action|Drama|Sci-Fi|Thriller   2411    5.0
## 472                                                      Action   2411    2.0
## 473                                Action|Crime|Sci-Fi|Thriller   2441    3.0
## 474                           Action|Adventure|Romance|Thriller   2441    1.0
## 475                                                      Comedy   2464    4.0
## 476                                    Comedy|Drama|Romance|War   2464    5.0
## 477                                     Action|Romance|Thriller   2464    5.0
## 478                                     Action|Romance|Thriller   2441    1.0
## 479                                      Action|Sci-Fi|Thriller   2441    2.0
## 480                                 Action|Comedy|Crime|Fantasy   2441    4.0
## 481                             Action|Adventure|Mystery|Sci-Fi   2441    3.0
## 482                                Action|Crime|Sci-Fi|Thriller   2482    2.0
## 483                                   Action|Adventure|Thriller   2482    3.0
## 484                                              Comedy|Romance   2482    3.0
## 485                                       Action|Comedy|Romance   2482    3.0
## 486                                                       Drama   2482    5.0
## 487                                                Comedy|Drama   2482    4.0
## 488                  Animation|Children|Fantasy|Musical|Romance   2493    4.0
## 489                                             Comedy|Thriller   2482    3.0
## 490                 Adventure|Animation|Children|Comedy|Musical   2525    4.0
## 491                                                Action|Crime   2441    4.0
## 492                                          Comedy|Crime|Drama   2609    4.0
## 493                                Action|Crime|Sci-Fi|Thriller   2635    4.0
## 494                           Action|Adventure|Mystery|Thriller   2609    4.0
## 495                                       Action|Crime|Thriller   2609    4.0
## 496                                       Action|Drama|Thriller   2609    4.0
## 497                             Action|Adventure|Mystery|Sci-Fi   2635    3.0
## 498                                                Drama|Horror   2635    2.0
## 499                                       Action|Crime|Thriller   2646    4.0
## 500                                              Comedy|Romance   2646    4.0
## 501                            Action|Adventure|Sci-Fi|Thriller   2635    3.0
## 502                                       Action|Crime|Thriller   2646    4.0
## 503                                   Action|Adventure|Thriller   2635    4.0
## 504                                                      Action   2635    3.0
## 505                                      Action|Sci-Fi|Thriller   2635    3.0
## 506                                          Comedy|Crime|Drama   2635    5.0
## 507                                       Crime|Horror|Thriller   2655    4.0
## 508                                Action|Drama|Sci-Fi|Thriller   2655    3.0
## 509                  Animation|Children|Fantasy|Musical|Romance   2663    3.0
## 510                                 Action|Comedy|Crime|Fantasy   2655    3.0
## 511                                   Action|Adventure|Thriller   2663    2.0
## 512                       Comedy|Drama|Fantasy|Romance|Thriller   2663    3.0
## 513                                      Drama|Mystery|Thriller   2682    4.0
## 514                                                 Crime|Drama   2682    4.0
## 515                               Action|Adventure|Drama|Sci-Fi   2694    4.0
## 516                                                      Comedy   2682    5.0
## 517                                                      Action   2682    3.0
## 518                                       Action|Drama|Thriller   2682    5.0
## 519                                              Comedy|Romance   2694    3.0
## 520                                         Action|Crime|Horror   2682    3.0
## 521                                     Action|Adventure|Sci-Fi   2694    4.0
## 522                                               Comedy|Horror   2682    4.0
## 523                                             Adventure|Drama   2718    5.0
## 524                                Action|Crime|Sci-Fi|Thriller   2718    3.0
## 525                                             Children|Comedy   2718    4.0
## 526                                               Drama|Romance   2718    3.0
## 527                                    Action|Drama|Romance|War   2718    2.0
## 528                                                      Comedy   2733    3.0
## 529                                       Crime|Horror|Thriller   2733    4.0
## 530                                       Action|Crime|Thriller   2733    3.0
## 531                                    Comedy|Drama|Romance|War   2733    5.0
## 532                                             Children|Comedy   2733    4.0
## 533                  Adventure|Animation|Children|Drama|Musical   2762    3.0
## 534                                        Comedy|Drama|Romance   2762    5.0
## 535                                     Action|Adventure|Sci-Fi   2754    4.0
## 536                                    Action|Adventure|Fantasy   2754    4.0
## 537                                              Comedy|Romance   2762    4.0
## 538                    Animation|Children|Drama|Fantasy|Musical   2762    3.0
## 539                                   Action|Adventure|Thriller   2772    3.0
## 540                                     Action|Adventure|Sci-Fi   2772    3.0
## 541                    Action|Adventure|Comedy|Romance|Thriller   2797    3.0
## 542                                Action|Drama|Sci-Fi|Thriller   2807    3.0
## 543                                    Comedy|Drama|Romance|War   2807    3.0
## 544                            Action|Adventure|Sci-Fi|Thriller   2797    4.0
## 545                                Action|Drama|Sci-Fi|Thriller   2797    5.0
## 546                                     Action|Adventure|Sci-Fi   2797    5.0
## 547                                    Adventure|Comedy|Western   2797    4.0
## 548                             Action|Adventure|Crime|Thriller   2797    4.0
## 549                                Action|Comedy|Crime|Thriller   2797    4.0
## 550                                                 Documentary   2797    2.0
## 551                                                 Crime|Drama   2817    4.0
## 552                                                   Drama|War   2817    4.0
## 553                                              Drama|Thriller   2817    3.0
## 554                                      Crime|Mystery|Thriller   2817    4.0
## 555                    Animation|Children|Drama|Fantasy|Musical   2817    3.0
## 556                                         Action|Comedy|Drama   2817    3.0
## 557                             Action|Adventure|Crime|Thriller   2797    3.0
## 558                                   Action|Adventure|Thriller   2817    3.0
## 559                                                   Drama|War   2817    4.0
## 560                                                      Comedy   2817    2.0
## 561                                        Comedy|Drama|Romance   2817    3.0
## 562                                              Drama|Thriller   2817    3.0
## 563                                                       Drama   2817    3.0
## 564                                                Comedy|Drama   2797    3.0
## 565                                                       Drama   2817    3.0
## 566                                    Action|Adventure|Fantasy   2797    1.0
## 567                                                      Action   2797    3.0
## 568                                               Drama|Romance   2751    5.0
## 569                                                      Comedy   2845    4.0
## 570                                                Comedy|Drama   2845    5.0
## 571                                     Comedy|Romance|Thriller   2845    4.0
## 572                                       Action|Crime|Thriller   2614    3.0
## 573                                       Comedy|Drama|Thriller   2614    2.0
## 574                                                     Musical   2288    1.0
## 575                                               Drama|Romance   2288    3.0
## 576                                                      Comedy   2288    3.0
## 577                                             Musical|Romance   2288    5.0
## 578                                  Adventure|Children|Fantasy   2845    3.0
## 579                                          Comedy|Crime|Drama   2845    4.0
## 580                                            Action|Drama|War   2123    5.0
## 581                                              Drama|Thriller   2123    3.0
## 582                                   Drama|Romance|War|Western   2123    4.0
## 583                                                      Comedy   2123    4.0
## 584                                               Drama|Romance   2123    4.0
## 585                                        Comedy|Drama|Romance   2123    3.0
## 586                                 Action|Adventure|Sci-Fi|War   2123    3.0
## 587                                                Drama|Horror   2123    4.0
## 588                                                      Action   2123    3.0
## 589                                             Adventure|Drama   2143    5.0
## 590                                             Action|Children   2123    2.0
## 591                                    Adventure|Children|Drama   2123    3.0
## 592                                                Comedy|Drama   2123    3.0
## 593                                                      Comedy   2123    1.0
## 594                                                       Drama   2123    5.0
## 595                                                      Comedy   2123    3.0
## 596                                              Children|Drama   2123    3.0
## 597                            Crime|Film-Noir|Mystery|Thriller   2123    4.0
## 598                                                    Thriller   2123    3.0
## 599                              Children|Drama|Fantasy|Mystery   2123    4.0
## 600                                              Comedy|Romance   2123    3.0
## 601                                      Fantasy|Horror|Mystery   2123    3.0
## 602                                                      Comedy   2123    3.0
## 603                                               Drama|Romance   2123    1.0
## 604                                                       Drama   2123    3.0
## 605                                                       Drama   2123    3.0
## 606                                                       Drama   2123    5.0
## 607                                                   Drama|War   2123    3.0
## 608                                    Animation|Children|Drama   2123    5.0
## 609                                          Comedy|Crime|Drama   2207    3.0
## 610                                             Adventure|Drama   2207    5.0
## 611                                                Drama|Horror   2207    3.0
## 612                                               Action|Sci-Fi   2207    5.0
## 613                                              Comedy|Romance   2207    2.0
## 614                                             Adventure|Drama   2216    3.0
## 615                                   Action|Adventure|Thriller   2216    3.0
## 616                                    Comedy|Drama|Romance|War   2216    4.0
## 617                  Adventure|Animation|Children|Drama|Musical   2216    4.0
## 618                               Action|Adventure|Comedy|Crime   2221    3.0
## 619                               Action|Adventure|Drama|Sci-Fi   2221    5.0
## 620                                     Action|Adventure|Sci-Fi   2221    5.0
## 621                                                Drama|Horror   2226    2.0
## 622                                Action|Drama|Sci-Fi|Thriller   2221    4.0
## 623                               Crime|Horror|Mystery|Thriller   2226    4.0
## 624                                              Comedy|Romance   2221    3.0
## 625                                                 Crime|Drama   2226    4.0
## 626                                               Comedy|Sci-Fi   2221    4.0
## 627                                     Action|Adventure|Sci-Fi   2221    5.0
## 628                                                       Drama   2221    5.0
## 629                                       Comedy|Drama|Thriller   2226    3.0
## 630                                        Comedy|Drama|Romance   2226    5.0
## 631                                        Comedy|Drama|Romance   2226    2.0
## 632                                Comedy|Drama|Fantasy|Romance   2226    5.0
## 633                                                       Drama   2226    2.0
## 634                                                      Comedy   2221    3.0
## 635                                               Action|Comedy   2221    3.0
## 636                                     Children|Comedy|Fantasy   2221    3.0
## 637                                          Animation|Children   2221    3.0
## 638                                                       Drama   2247    4.0
## 639                               Crime|Horror|Mystery|Thriller   2247    4.0
## 640                                             Children|Comedy   2247    3.0
## 641                                              Comedy|Romance   2247    3.0
## 642                                Action|Crime|Sci-Fi|Thriller   2263    3.0
## 643                                             Adventure|Drama   2263    5.0
## 644                               Action|Adventure|Comedy|Crime   2263    3.0
## 645                                   Action|Adventure|Thriller   2263    4.0
## 646                                          Drama|Thriller|War   2263    5.0
## 647                       Comedy|Drama|Fantasy|Romance|Thriller   2263    4.0
## 648                               Action|Adventure|Comedy|Crime   2273    3.0
## 649                                 Comedy|Crime|Drama|Thriller   2247    5.0
## 650                                Action|Crime|Sci-Fi|Thriller   2296    3.0
## 651                                  Animation|Children|Musical   2257    4.0
## 652                                             Children|Comedy   2273    3.0
## 653                                             Action|Thriller   2263    3.0
## 654                                        Comedy|Drama|Fantasy   2273    3.0
## 655                                                   Drama|War   2273    5.0
## 656                            Action|Adventure|Sci-Fi|Thriller   2296    4.0
## 657                           Action|Adventure|Romance|Thriller   2273    5.0
## 658                                               Action|Sci-Fi   2296    3.0
## 659                                              Comedy|Romance   2296    3.0
## 660                                             Action|Thriller   2257    3.0
## 661                                             Children|Comedy   2296    3.0
## 662                                       Action|Crime|Thriller   2317    4.0
## 663                  Animation|Children|Fantasy|Musical|Romance   2317    3.0
## 664                                               Drama|Romance   2296    5.0
## 665                                          Comedy|Crime|Drama   2347    5.0
## 666                                 Action|Comedy|Crime|Fantasy   2317    3.0
## 667                                                    Thriller   2347    4.0
## 668                                            Action|Drama|War   2347    4.0
## 669                                      Drama|Mystery|Thriller   2317    3.0
## 670                                   Action|Adventure|Thriller   2347    2.0
## 671                                 Action|Comedy|Crime|Fantasy   2347    3.0
## 672                                              Comedy|Romance   2347    3.0
## 673                                              Comedy|Romance   2337    3.0
## 674                                                Comedy|Drama   2328    3.0
## 675                                       Action|Drama|Thriller   2337    3.0
## 676                            Action|Adventure|Sci-Fi|Thriller   2257    3.0
## 677                                               Drama|Romance   2347    4.0
## 678                                                      Comedy   2347    3.0
## 679                                        Comedy|Drama|Romance   2347    4.0
## 680                                               Comedy|Sci-Fi   2347    2.0
## 681                                               Drama|Romance   2347    4.0
## 682                                          Adventure|Children   2317    5.0
## 683                                      Action|Sci-Fi|Thriller   2328    3.0
## 684                                          Comedy|Crime|Drama   2371    5.0
## 685                                                       Drama   2317    3.0
## 686                               Action|Adventure|Drama|Sci-Fi   2371    3.0
## 687                                              Drama|Thriller   2347    3.0
## 688                                                       Drama   2371    5.0
## 689                            Action|Adventure|Sci-Fi|Thriller   2387    3.0
## 690                                               Action|Sci-Fi   2371    5.0
## 691                                        Comedy|Drama|Romance   2347    5.0
## 692                                                Comedy|Drama   2347    3.0
## 693                                                       Drama   2399    5.0
## 694                  Adventure|Animation|Children|Drama|Musical   2399    5.0
## 695                                    Adventure|Children|Drama   2317    3.0
## 696                                                      Comedy   2387    2.0
## 697                                    Adventure|Comedy|Western   2387    4.0
## 698                                        Comedy|Drama|Romance   2387    3.0
## 699                             Action|Adventure|Mystery|Sci-Fi   2387    3.0
## 700                                       Action|Drama|Thriller   2289    3.0
## 701                                      Drama|Mystery|Thriller   2399    3.0
## 702                                                       Drama   2289    2.0
## 703                                             Action|Thriller   2289    2.0
## 704                                                      Action   2387    3.0
## 705                  Animation|Children|Fantasy|Musical|Romance   2399    5.0
## 706                                      Action|Sci-Fi|Thriller   2387    3.0
## 707                                    Adventure|Comedy|Western   2387    3.0
## 708                                   Drama|Romance|War|Western   2416    3.0
## 709                                                       Drama   2416    1.0
## 710                           Action|Adventure|Romance|Thriller   2263    5.0
## 711                                             Action|Thriller   2263    3.0
## 712                  Animation|Children|Fantasy|Musical|Romance   2458    2.0
## 713                                                      Comedy   2458    2.0
## 714                                          Drama|Thriller|War   2458    5.0
## 715                                      Drama|Mystery|Thriller   2458    4.0
## 716                                                       Drama   2458    3.0
## 717                                   Action|Adventure|Thriller   2498    5.0
## 718                                                       Drama   2489    2.0
## 719                            Action|Adventure|Sci-Fi|Thriller   2498    5.0
## 720                                             Sci-Fi|Thriller   2498    4.0
## 721                                              Comedy|Romance   2498    3.0
## 722                                               Comedy|Sci-Fi   2498    3.0
## 723                                          Adventure|Children   2498    4.0
## 724                                    Action|Adventure|Fantasy   2498    1.0
## 725                                                       Drama   2498    4.0
## 726                                                      Action   2498    3.0
## 727                                     Action|Romance|Thriller   2498    3.0
## 728                                             Action|Thriller   2498    3.0
## 729                                                      Comedy   2498    4.0
## 730                                              Comedy|Romance   2498    3.0
## 731             Action|Adventure|Children|Comedy|Fantasy|Sci-Fi   2498    2.0
## 732                                    Adventure|Children|Drama   2498    3.0
## 733                                   Action|Adventure|Thriller   2560    3.0
## 734                                              Drama|Thriller   2560    3.0
## 735                                                Comedy|Drama   2560    3.0
## 736                                                      Comedy   2498    3.0
## 737                                         Action|Comedy|Drama   2560    3.0
## 738                                 Action|Adventure|Sci-Fi|War   2560    5.0
## 739                                             Action|Thriller   2498    3.0
## 740                                          Action|Crime|Drama   2498    3.0
## 741                                               Drama|Romance   2498    4.0
## 742                                          Adventure|Children   2498    4.0
## 743                                             Children|Comedy   2498    4.0
## 744                                            Mystery|Thriller   2498    3.0
## 745                               Action|Adventure|Drama|Sci-Fi   2575    3.0
## 746                                 Adventure|Drama|Romance|War   2498    3.0
## 747                                                Comedy|Drama   2575    3.0
## 748                                                      Comedy   2498    3.0
## 749                                             Children|Comedy   2575    3.0
## 750                                Action|Comedy|Crime|Thriller   2575    3.0
## 751                                                       Drama   2498    3.0
## 752                             Children|Comedy|Fantasy|Musical   2498    4.0
## 753                                        Comedy|Drama|Romance   2575    1.0
## 754                 Adventure|Animation|Children|Comedy|Musical   2575    5.0
## 755                                              Comedy|Romance   2585    4.0
## 756                                                Comedy|Crime   2498    3.0
## 757                                       Action|Crime|Thriller   2575    4.0
## 758                                     Children|Comedy|Romance   2585    5.0
## 759                                                       Drama   2585    3.0
## 760                                              Comedy|Romance   2629    2.0
## 761                                        Comedy|Drama|Fantasy   2629    3.0
## 762                                      Drama|Mystery|Thriller   2629    3.0
## 763                                     Action|Adventure|Sci-Fi   2629    3.0
## 764                                       Crime|Horror|Thriller   2660    5.0
## 765                                              Comedy|Romance   2629    3.0
## 766                                   Action|Adventure|Thriller   2660    5.0
## 767                                                       Drama   2660    5.0
## 768                                   Action|Adventure|Thriller   2660    5.0
## 769                                              Comedy|Romance   2660    3.0
## 770                                       Crime|Horror|Thriller   2667    4.0
## 771                                                      Comedy   2667    3.0
## 772                                          Comedy|Crime|Drama   2688    1.0
## 773                                                Comedy|Drama   2660    4.0
## 774                                                       Drama   2660    2.0
## 775                                             Children|Comedy   2660    3.0
## 776                                        Comedy|Drama|Romance   2660    3.0
## 777                                       Action|Crime|Thriller   2667    5.0
## 778                                        Comedy|Drama|Romance   2660    3.0
## 779                                                      Comedy   2667    4.0
## 780                                Crime|Drama|Romance|Thriller   2660    5.0
## 781                                         Action|Comedy|Drama   2667    3.0
## 782                                   Action|Adventure|Thriller   2660    4.0
## 783                                                       Drama   2660    4.0
## 784                                        Comedy|Drama|Romance   2667    4.0
## 785                                        Action|Drama|Romance   2660    3.0
## 786                                                   Drama|War   2667    4.0
## 787                                       Action|Comedy|Romance   2667    3.0
## 788                                       Action|Crime|Thriller   2660    5.0
## 789                                          Adventure|Children   2667    4.0
## 790                                                       Drama   2667    3.0
## 791                                 Action|Adventure|Sci-Fi|War   2667    5.0
## 792                         Crime|Drama|Horror|Mystery|Thriller   2667    3.0
## 793                    Action|Adventure|Comedy|Romance|Thriller   2701    5.0
## 794                                   Action|Adventure|Thriller   2701    3.0
## 795                                    Comedy|Drama|Romance|War   2701    5.0
## 796                                          Animation|Children   2667    4.0
## 797                                             Children|Comedy   2667    3.0
## 798                               Action|Horror|Sci-Fi|Thriller   2498    3.0
## 799                                            Adventure|Comedy   2498    3.0
## 800                                      Action|Sci-Fi|Thriller   2667    3.0
## 801                                              Comedy|Romance   2701    4.0
## 802                                     Action|Mystery|Thriller   2667    4.0
## 803                                         Action|Crime|Sci-Fi   2701    3.0
## 804                        Adventure|Animation|Children|Musical   2498    4.0
## 805                                     Action|Adventure|Sci-Fi   2701    3.0
## 806                                               Horror|Sci-Fi   2701    3.0
## 807                                                      Action   2701    3.0
## 808                                 Action|Adventure|Comedy|War   2667    3.0
## 809                    Animation|Children|Drama|Fantasy|Musical   2701    4.0
## 810                                   Action|Adventure|Thriller   2701    4.0
## 811                                                    Thriller   2701    2.0
## 812                                       Action|Crime|Thriller   2712    4.0
## 813                                       Crime|Horror|Thriller   2712    4.0
## 814                                               Action|Comedy   2701    3.0
## 815                                          Drama|Thriller|War   2738    3.0
## 816                                        Comedy|Drama|Romance   2712    3.0
## 817                                               Action|Sci-Fi   2738    3.0
## 818                                         Action|Comedy|Drama   2738    4.0
## 819                                             Action|Thriller   2712    3.0
## 820                                     Action|Adventure|Sci-Fi   2712    3.0
## 821                                        Action|Drama|Western   2712    3.0
## 822                                         Action|Crime|Sci-Fi   2738    3.0
## 823                                        Action|Drama|Western   2738    3.0
## 824                                               Drama|Romance   2738    4.0
## 825                                                       Drama   2738    4.0
## 826                             Action|Adventure|Comedy|Fantasy   2738    2.0
## 827                                        Comedy|Drama|Romance   2738    3.0
## 828                                              Drama|Thriller   2768    3.0
## 829                            Action|Adventure|Sci-Fi|Thriller   2758    5.0
## 830                                  Adventure|Children|Fantasy   2768    3.0
## 831                                    Action|Adventure|Romance   2738    3.0
## 832                                       Crime|Horror|Thriller   2794    5.0
## 833                                             Adventure|Drama   2804    3.0
## 834                 Adventure|Animation|Children|Comedy|Musical   2804    4.0
## 835                                   Action|Adventure|Thriller   2794    4.0
## 836                                                    Thriller   2804    5.0
## 837                                     Action|Adventure|Sci-Fi   2794    3.0
## 838                                     Action|Adventure|Sci-Fi   2804    3.0
## 839                                              Drama|Thriller   2804    3.0
## 840                                              Drama|Thriller   2794    4.0
## 841                                               Action|Sci-Fi   2804    4.0
## 842                                             Children|Comedy   2794    3.0
## 843                                        Action|Drama|Western   2804    4.0
## 844                                                       Drama   2804    3.0
## 845                                             Action|Children   2804    3.0
## 846                                    Adventure|Children|Drama   2804    3.0
## 847                                                      Comedy   2804    3.0
## 848                                                       Drama   2794    3.0
## 849                                    Action|Adventure|Fantasy   2804    3.0
## 850                  Animation|Children|Fantasy|Musical|Romance   2804    3.0
## 851                                     Children|Comedy|Western   2768    3.0
## 852                                           Adventure|Western   2768    3.0
## 853                                                Comedy|Drama   2804    3.0
## 854                                                       Drama   2768    4.0
## 855                                         Adventure|Drama|War   2768    4.0
## 856                                            Action|Adventure   2804    3.0
## 857                                               Action|Sci-Fi   2804    3.0
## 858                                                Comedy|Crime   2804    3.0
## 859                           Adventure|Children|Fantasy|Sci-Fi   2768    4.0
## 860                                             Action|Children   2804    2.0
## 861                                                      Comedy   2826    4.0
## 862                                            Action|Drama|War   2826    3.0
## 863                            Action|Adventure|Sci-Fi|Thriller   2826    3.0
## 864                                       Action|Crime|Thriller   2826    4.0
## 865                                       Action|Crime|Thriller   2826    1.0
## 866                  Adventure|Animation|Children|Drama|Musical   2826    3.0
## 867                               Action|Adventure|Drama|Sci-Fi   2831    4.0
## 868                                              Drama|Thriller   2826    4.0
## 869                                     Action|Adventure|Sci-Fi   2831    3.0
## 870                                      Drama|Mystery|Thriller   2826    4.0
## 871                                         Action|Crime|Sci-Fi   2826    2.0
## 872                                        Action|Drama|Western   2826    5.0
## 873                                                      Action   2826    5.0
## 874                               Action|Crime|Fantasy|Thriller   2826    1.0
## 875                                    Action|Adventure|Fantasy   2826    2.0
## 876                                               Action|Comedy   2826    4.0
## 877                                             Action|Thriller   2826    4.0
## 878                                     Action|Romance|Thriller   2844    4.0
## 879                                            Mystery|Thriller   2826    3.0
## 880                                              Drama|Thriller   2844    3.0
## 881                                   Action|Adventure|Thriller   2826    5.0
## 882                                                    Thriller   2850    4.0
## 883                                    Comedy|Drama|Romance|War   2850    5.0
## 884                                                Comedy|Drama   2826    3.0
## 885                                              Drama|Thriller   2850    4.0
## 886                               Crime|Horror|Mystery|Thriller   2850    4.0
## 887                                                      Comedy   2826    1.0
## 888                          Action|Comedy|Crime|Drama|Thriller   2826    2.0
## 889                       Comedy|Drama|Fantasy|Romance|Thriller   2850    5.0
## 890                                             Children|Comedy   2850    3.0
## 891                                     Adventure|Drama|Western   2860    4.0
## 892                               Action|Adventure|Comedy|Crime   2860    3.0
## 893                                       Crime|Horror|Thriller   2860    5.0
## 894                                        Comedy|Drama|Romance   2850    4.0
## 895                                                      Comedy   2860    3.0
## 896                                       Action|Comedy|Romance   2850    3.0
## 897                                              Comedy|Romance   2850    4.0
## 898                            Action|Adventure|Sci-Fi|Thriller   2860    5.0
## 899                                              Comedy|Romance   2860    4.0
## 900                           Action|Adventure|Mystery|Thriller   2850    3.0
## 901                                               Action|Sci-Fi   2826    3.0
## 902                                                   Drama|War   2826    3.0
## 903                                             Children|Comedy   2826    4.0
## 904                                       Drama|Musical|Romance   2826    5.0
## 905                                                      Comedy   2826    5.0
## 906                                          Adventure|Children   2826    3.0
## 907                                               Drama|Romance   2860    4.0
## 908                                               Drama|Romance   2860    3.0
## 909                                             Comedy|Thriller   2826    3.0
## 910                                Action|Drama|Sci-Fi|Thriller   2869    4.0
## 911                                             Children|Comedy   2869    5.0
## 912                                                      Comedy   2869    1.0
## 913                                                   Drama|War   2869    4.0
## 914                           Action|Adventure|Romance|Thriller   2758    5.0
## 915                                               Drama|Romance   2257    3.0
## 916                                   Drama|Romance|War|Western   2758    1.0
## 917                                             Action|Thriller   2758    5.0
## 918                                              Comedy|Romance   2614    2.0
## 919                                              Comedy|Romance   2614    4.0
## 920                                       Children|Drama|Sci-Fi   2614    4.0
## 921                   Adventure|Drama|Film-Noir|Sci-Fi|Thriller   2845    5.0
## 922                                            Action|Adventure   2845    4.0
## 923                                      Comedy|Fantasy|Romance   2845    3.0
## 924                            Action|Adventure|Sci-Fi|Thriller   2804    3.0
## 925                                Comedy|Drama|Fantasy|Romance   2804    4.0
## 926                                        Crime|Drama|Thriller   2804    3.0
## 927                                               Drama|Romance   2845    5.0
## 928                                        Comedy|Drama|Romance   2804    3.0
## 929                                          Action|Crime|Drama   2804    3.0
## 930                                                      Comedy   2139    3.0
## 931                                               Action|Sci-Fi   2139    4.0
## 932                               Crime|Horror|Mystery|Thriller   2139    3.0
## 933                                                   Drama|War   2139    5.0
## 934                           Action|Adventure|Mystery|Thriller   2149    4.0
## 935                                                 Crime|Drama   2149    3.0
## 936                             Children|Comedy|Fantasy|Musical   2149    5.0
## 937                            Action|Adventure|Sci-Fi|Thriller   2149    5.0
## 938                                             Children|Comedy   2252    4.0
## 939                           Action|Adventure|Mystery|Thriller   2260    4.0
## 940                                                Comedy|Drama   2260    5.0
## 941                                             Adventure|Drama   2260    3.0
## 942                  Adventure|Animation|Children|Drama|Musical   2252    5.0
## 943                                  Adventure|Children|Fantasy   2252    4.0
## 944                                    Comedy|Drama|Romance|War   2252    5.0
## 945                                     Adventure|Drama|Western   2252    3.0
## 946                                                       Drama   2252    4.0
## 947                                                       Drama   2252    5.0
## 948                                     Action|Adventure|Sci-Fi   2252    5.0
## 949                                     Action|Romance|Thriller   2252    5.0
## 950                                              Comedy|Romance   2252    5.0
## 951                                     Action|Adventure|Sci-Fi   2252    5.0
## 952                                          Adventure|Children   2252    3.0
## 953                                         Action|Crime|Sci-Fi   2252    4.0
## 954                                 Action|Adventure|Sci-Fi|War   2312    3.0
## 955                                          Comedy|Crime|Drama   2312    4.0
## 956                                                       Drama   2312    3.0
## 957                                               Drama|Romance   2312    5.0
## 958                          Animation|Children|Fantasy|Musical   2312    4.0
## 959                          Animation|Children|Fantasy|Musical   2312    3.0
## 960                                                       Drama   2312    4.0
## 961                               Action|Adventure|Comedy|Crime   2312    4.0
## 962                           Action|Adventure|Mystery|Thriller   2332    2.0
## 963                                               Drama|Romance   2358    5.0
## 964                                              Comedy|Romance   2358    3.0
## 965                                              Comedy|Romance   2383    3.0
## 966                                                       Drama   2383    4.0
## 967                                               Drama|Romance   2430    5.0
## 968                                              Drama|Thriller   2430    5.0
## 969                                                      Comedy   2430    3.0
## 970                                               Drama|Romance   2430    4.0
## 971                                   Adventure|Children|Comedy   2383    4.0
## 972                           Action|Adventure|Mystery|Thriller   2450    3.0
## 973                                   Action|Adventure|Thriller   2450    3.0
## 974                                       Action|Drama|Thriller   2450    3.0
## 975                                              Comedy|Romance   2450    4.0
## 976                                 Comedy|Crime|Drama|Thriller   2483    4.0
## 977                                                       Drama   2483    4.0
## 978                                        Comedy|Drama|Romance   2494    4.0
## 979                                                      Comedy   2483    3.0
## 980                          Animation|Children|Fantasy|Musical   2494    3.0
## 981                    Animation|Children|Drama|Fantasy|Musical   2483    3.0
## 982                                      Action|Sci-Fi|Thriller   2494    3.0
## 983                                      Action|Sci-Fi|Thriller   2494    4.0
## 984                 Adventure|Animation|Children|Comedy|Fantasy   2508    3.0
## 985                                                      Action   2508    3.0
## 986                                                      Comedy   2508    5.0
## 987                               Comedy|Fantasy|Romance|Sci-Fi   2508    5.0
## 988                                      Action|Sci-Fi|Thriller   2508    3.0
## 989                                                      Action   2508    2.0
## 990                                       Action|Drama|Thriller   2494    3.0
## 991                                            Action|Adventure   2494    3.0
## 992                                               Drama|Romance   2533    3.0
## 993                                        Comedy|Drama|Romance   2533    3.0
## 994                               Crime|Horror|Mystery|Thriller   2572    5.0
## 995                  Action|Crime|Drama|Mystery|Sci-Fi|Thriller   2572    5.0
## 996                               Action|Crime|Romance|Thriller   2572    5.0
## 997                                             Action|Thriller   2581    3.0
## 998                                       Crime|Horror|Thriller   2598    3.0
## 999                                         Action|Comedy|Drama   2598    3.0
## 1000                         Animation|Children|Fantasy|Musical   2598    4.0
## 1001                                                     Comedy   2581    1.0
## 1002                                                   Thriller   2598    3.0
## 1003                            Action|Adventure|Mystery|Sci-Fi   2581    3.0
## 1004                              Action|Horror|Sci-Fi|Thriller   2581    4.0
## 1005                                           Adventure|Comedy   2598    4.0
## 1006                          Action|Adventure|Mystery|Thriller   2581    3.0
## 1007                                             Comedy|Romance   2581    2.0
## 1008                                     Action|Sci-Fi|Thriller   2581    1.0
## 1009                                                     Comedy   2572    5.0
## 1010                                                      Drama   2581    3.0
## 1011                              Action|Crime|Romance|Thriller   2598    4.0
## 1012                                      Crime|Horror|Thriller   2450    5.0
## 1013                                    Comedy|Mystery|Thriller   2450    3.0
## 1014                           Action|Adventure|Sci-Fi|Thriller   2450    5.0
## 1015                                       Crime|Drama|Thriller   2450    2.0
## 1016                                   Action|Adventure|Fantasy   2450    5.0
## 1017                                           Mystery|Thriller   2450    5.0
## 1018                   Animation|Children|Drama|Fantasy|Musical   2581    3.0
## 1019                                             Action|Romance   2581    3.0
## 1020                                    Adventure|Comedy|Sci-Fi   2450    3.0
## 1021                                     Action|Sci-Fi|Thriller   2598    3.0
## 1022                                             Comedy|Romance   2450    3.0
## 1023                                             Comedy|Romance   2450    5.0
## 1024                                             Comedy|Romance   2450    5.0
## 1025                              Action|Horror|Sci-Fi|Thriller   2598    3.0
## 1026                                              Drama|Romance   2450    4.0
## 1027                                      Action|Comedy|Romance   2450    3.0
## 1028                                             Comedy|Romance   2450    4.0
## 1029                                  Action|Adventure|Thriller   2636    3.0
## 1030                                  Action|Adventure|Thriller   2636    4.0
## 1031                                                     Comedy   2636    3.0
## 1032                                              Action|Sci-Fi   2260    3.0
## 1033                                               Comedy|Drama   2260    3.0
## 1034                                              Drama|Romance   2260    3.0
## 1035                      Comedy|Drama|Fantasy|Romance|Thriller   2260    3.0
## 1036                                                      Drama   2260    3.0
## 1037                                              Drama|Romance   2572    4.0
## 1038                          Action|Adventure|Mystery|Thriller   2744    4.0
## 1039                                Comedy|Crime|Drama|Thriller   2836    4.0
## 1040                                      Crime|Horror|Thriller   2836    5.0
## 1041                                                     Comedy   2836    3.0
## 1042                                             Comedy|Romance   2836    4.0
## 1043                                                     Comedy   2836    4.0
## 1044                                            Sci-Fi|Thriller   2855    4.0
## 1045                                              Drama|Romance   2855    3.0
## 1046                                   Action|Adventure|Fantasy   2855    4.0
## 1047                                     Action|Sci-Fi|Thriller   2855    4.0
## 1048                              Comedy|Fantasy|Romance|Sci-Fi   2864    1.0
## 1049                                             Comedy|Romance   2483    3.0
## 1050                                      Action|Comedy|Western   2483    4.0
## 1051                                     Adventure|Comedy|Drama   2483    5.0
## 1052                                           Mystery|Thriller   2483    4.0
## 1053                                             Comedy|Romance   2483    4.0
## 1054                                                  Drama|War   2483    5.0
## 1055                                             Comedy|Romance   2483    4.0
## 1056                               Comedy|Drama|Musical|Romance   2483    4.0
## 1057                                                      Drama   2483    4.0
## 1058                               Action|Comedy|Crime|Thriller   2804    3.0
## 1059                                                      Drama   2483    3.0
## 1060                                      Action|Comedy|Western   2483    3.0
## 1061                                 Adventure|Children|Musical   2483    3.0
## 1062                                               Drama|Horror   2581    1.0
## 1063                                      Action|Drama|Thriller   2581    3.0
## 1064                                                   Thriller   2581    3.0
## 1065                                             Comedy|Romance   2581    3.0
## 1066                                     Crime|Mystery|Thriller   2572    4.0
## 1067                                             Drama|Thriller   2483    2.0
## 1068                                     Action|Sci-Fi|Thriller   2581    3.0
## 1069                                             Comedy|Romance   2581    4.0
## 1070                         Adventure|Children|Fantasy|Musical   2581    3.0
## 1071                                      Action|Drama|Thriller   2581    5.0
## 1072                                           Action|Drama|War   2581    3.0
## 1073                                             Drama|Thriller   2159    3.0
## 1074                                    Action|Adventure|Sci-Fi   2614    4.0
## 1075                                           Action|Adventure   2614    5.0
## 1076                                   Animation|Children|Drama   2614    4.0
## 1077                                      Drama|Musical|Romance   2614    3.0
## 1078                                            Horror|Thriller   2614    3.0
## 1079                                       Comedy|Drama|Romance   2614    3.0
## 1080                                                  Drama|War   2581    3.0
## 1081                                       Comedy|Drama|Romance   2332    4.0
## 1082                                      Children|Drama|Sci-Fi   2332    4.0
## 1083                                       Crime|Drama|Thriller   2332    3.0
## 1084                                       Action|Comedy|Horror   2332    4.0
## 1085                                                  Drama|War   2332    3.0
## 1086                      Comedy|Drama|Fantasy|Romance|Thriller   2614    3.0
## 1087                                                      Drama   2614    3.0
## 1088                                Action|Crime|Drama|Thriller   2614    3.0
## 1089                                            Horror|Thriller   2332    3.0
## 1090                                             Comedy|Romance   2744    5.0
## 1091                                                  Drama|War   2744    5.0
## 1092                                     Drama|Mystery|Thriller   2744    3.0
## 1093                                             Comedy|Romance   2744    4.0
## 1094                                      Action|Crime|Thriller   2744    4.0
## 1095                                               Comedy|Crime   2744    4.0
## 1096                               Adventure|Comedy|Romance|War   2744    4.0
## 1097                                       Action|Comedy|Horror   2744    5.0
## 1098                                    Action|Adventure|Sci-Fi   2744    3.0
## 1099                                            Adventure|Drama   2744    5.0
## 1100                                             Comedy|Musical   2744    5.0
## 1101                              Comedy|Fantasy|Romance|Sci-Fi   2744    3.0
## 1102                Adventure|Animation|Children|Comedy|Musical   2744    4.0
## 1103                                            Action|Thriller   2614    3.0
## 1104                            Children|Comedy|Fantasy|Musical   2133    2.0
## 1105                                             Comedy|Romance   2133    5.0
## 1106                                              Drama|Romance   2133    5.0
## 1107                                            Action|Thriller   2155    2.0
## 1108                                    Action|Adventure|Sci-Fi   2155    4.0
## 1109                          Action|Adventure|Romance|Thriller   2163    4.0
## 1110                                           Action|Adventure   2163    3.0
## 1111                                  Animation|Children|Comedy   2155    5.0
## 1112                                Action|Adventure|Sci-Fi|War   2183    3.0
## 1113                          Action|Adventure|Mystery|Thriller   2183    3.0
## 1114                                                Crime|Drama   2183    3.0
## 1115                                      Action|Crime|Thriller   2183    4.0
## 1116                                               Comedy|Drama   2183    3.0
## 1117                                       Comedy|Drama|Romance   2183    4.0
## 1118                            Children|Comedy|Fantasy|Musical   2155    3.0
## 1119                                             Drama|Thriller   2195    3.0
## 1120                                  Action|Adventure|Thriller   2195    4.0
## 1121                                               Comedy|Drama   2155    4.0
## 1122                                Comedy|Crime|Drama|Thriller   2208    5.0
## 1123                                             Comedy|Romance   2208    3.0
## 1124                 Action|Crime|Drama|Mystery|Sci-Fi|Thriller   2155    4.0
## 1125                                                     Comedy   2155    5.0
## 1126                                                     Comedy   2217    4.0
## 1127                                       Comedy|Drama|Romance   2208    3.0
## 1128                                                     Comedy   2155    5.0
## 1129                                                     Comedy   2208    1.0
## 1130                           Action|Adventure|Sci-Fi|Thriller   2217    3.0
## 1131                                              Drama|Romance   2208    4.0
## 1132                              Crime|Horror|Mystery|Thriller   2155    5.0
## 1133                                              Drama|Romance   2248    3.0
## 1134                                      Action|Crime|Thriller   2248    4.0
## 1135                                  Action|Adventure|Thriller   2248    3.0
## 1136                                       Comedy|Drama|Romance   2248    4.0
## 1137                                      Comedy|Drama|Thriller   2248    2.0
## 1138                                  Action|Adventure|Thriller   2303    3.0
## 1139                                                     Comedy   2303    1.0
## 1140                                         Comedy|Crime|Drama   2303    3.0
## 1141                                              Drama|Romance   2303    3.0
## 1142                                     Action|Sci-Fi|Thriller   2303    2.0
## 1143                                            Adventure|Drama   2303    3.0
## 1144                                      Action|Crime|Thriller   2329    4.0
## 1145                                    Action|Adventure|Sci-Fi   2329    5.0
## 1146                                                     Comedy   2329    3.0
## 1147                                         Action|Crime|Drama   2329    4.0
## 1148                          Action|Adventure|Romance|Thriller   2353    4.0
## 1149                                            Comedy|Thriller   2353    3.0
## 1150                                     Action|Sci-Fi|Thriller   2353    5.0
## 1151                                  Adventure|Children|Comedy   2353    5.0
## 1152                                            Action|Thriller   2353    3.0
## 1153                                                  Drama|War   2353    4.0
## 1154                                               Comedy|Drama   2353    3.0
## 1155                                       Action|Comedy|Sci-Fi   2353    3.0
## 1156                                Comedy|Crime|Drama|Thriller   2363    5.0
## 1157                                                     Comedy   2353    4.0
## 1158                                         Comedy|Crime|Drama   2363    5.0
## 1159                                                     Comedy   2363    3.0
## 1160                               Comedy|Drama|Fantasy|Romance   2353    4.0
## 1161                                     Comedy|Fantasy|Musical   2353    3.0
## 1162                                            Action|Thriller   2372    4.0
## 1163                                    Action|Adventure|Sci-Fi   2372    4.0
## 1164                                              Drama|Romance   2353    3.0
## 1165                                            Action|Thriller   2353    4.0
## 1166                                                      Drama   2363    4.0
## 1167                                            Action|Thriller   2353    3.0
## 1168                                                      Drama   2363    4.0
## 1169                                  Action|Adventure|Thriller   2379    3.0
## 1170                               Comedy|Drama|Fantasy|Romance   2379    5.0
## 1171                                                      Drama   2379    4.0
## 1172                                  Drama|Romance|War|Western   2379    5.0
## 1173                                                      Drama   2379    5.0
## 1174                                             Comedy|Romance   2379    5.0
## 1175                                      Action|Crime|Thriller   2379    5.0
## 1176                                                     Comedy   2408    2.0
## 1177                          Action|Adventure|Mystery|Thriller   2423    5.0
## 1178                                Action|Adventure|Sci-Fi|War   2423    5.0
## 1179                                                     Action   2423    5.0
## 1180                                                  Drama|War   2423    3.0
## 1181                Adventure|Animation|Children|Comedy|Fantasy   2459    5.0
## 1182                                    Children|Comedy|Fantasy   2423    5.0
## 1183                            Action|Adventure|Drama|Thriller   2423    5.0
## 1184                                           Action|Adventure   2423    3.0
## 1185                                             Drama|Thriller   2490    5.0
## 1186                                              Drama|Romance   2490    5.0
## 1187                                                     Action   2490    1.0
## 1188                                       Comedy|Drama|Romance   2490    5.0
## 1189                                             Action|Romance   2490    5.0
## 1190                                  Action|Adventure|Thriller   2519    3.0
## 1191                                  Action|Adventure|Thriller   2519    3.0
## 1192                                                     Comedy   2519    3.0
## 1193                                      Action|Crime|Thriller   2550    5.0
## 1194                                      Action|Drama|Thriller   2550    3.0
## 1195                                      Comedy|Drama|Thriller   2550    3.0
## 1196                                                  Drama|War   2550    4.0
## 1197                              Crime|Horror|Mystery|Thriller   2550    4.0
## 1198                                                      Drama   2550    4.0
## 1199                                                      Drama   2550    4.0
## 1200                                                      Drama   2561    1.0
## 1201                          Action|Adventure|Mystery|Thriller   2561    2.0
## 1202                                Comedy|Crime|Drama|Thriller   2561    5.0
## 1203                                  Action|Adventure|Thriller   2594    5.0
## 1204                          Action|Adventure|Romance|Thriller   2594    4.0
## 1205                                             Comedy|Romance   2594    4.0
## 1206                                           Action|Adventure   2594    3.0
## 1207                          Action|Adventure|Romance|Thriller   2630    3.0
## 1208                                             Comedy|Romance   2630    3.0
## 1209                                    Action|Adventure|Sci-Fi   2630    2.0
## 1210         Adventure|Animation|Children|Comedy|Fantasy|Sci-Fi   2630    3.0
## 1211                                    Action|Romance|Thriller   2630    3.0
## 1212                                                     Comedy   2630    4.0
## 1213                          Action|Adventure|Romance|Thriller   2668    5.0
## 1214                                                Crime|Drama   2668    5.0
## 1215                           Action|Adventure|Sci-Fi|Thriller   2668    4.0
## 1216                                                      Drama   2702    5.0
## 1217                              Comedy|Fantasy|Romance|Sci-Fi   2702    3.0
## 1218                                   Action|Adventure|Fantasy   2702    4.0
## 1219                          Action|Adventure|Mystery|Thriller   2739    2.0
## 1220                                            Adventure|Drama   2739    5.0
## 1221                                            Action|Thriller   2739    3.0
## 1222                                              Drama|Romance   2739    5.0
## 1223                                    Action|Adventure|Sci-Fi   2739    4.0
## 1224                                    Adventure|Drama|Western   2739    3.0
## 1225                              Comedy|Fantasy|Romance|Sci-Fi   2759    3.0
## 1226                                Action|Crime|Drama|Thriller   2759    4.0
## 1227                                             Drama|Thriller   2759    3.0
## 1228                                                   Thriller   2759    3.0
## 1229                                              Comedy|Sci-Fi   2739    1.0
## 1230                                                      Drama   2769    3.0
## 1231                                             Comedy|Romance   2769    4.0
## 1232                         Animation|Children|Fantasy|Musical   2769    4.0
## 1233                                                     Comedy   2779    2.0
## 1234                                       Action|Comedy|Sci-Fi   2779    4.0
## 1235                                         Comedy|Crime|Drama   2814    5.0
## 1236                                             Drama|Thriller   2814    3.0
## 1237                                               Comedy|Crime   2814    5.0
## 1238                                                      Drama   2814    3.0
## 1239                                                      Drama   2814    1.0
## 1240                                           Action|Drama|War   2814    2.0
## 1241                                                     Action   2814    3.0
## 1242                                                      Drama   2814    2.0
## 1243                                    Action|Adventure|Sci-Fi   2814    3.0
## 1244                                    Action|Adventure|Sci-Fi   2814    3.0
## 1245                                                     Comedy   2814    3.0
## 1246                Adventure|Animation|Children|Comedy|Fantasy   2832    3.0
## 1247                                             Comedy|Fantasy   2814    1.0
## 1248                                  Action|Adventure|Thriller   2851    3.0
## 1249                Adventure|Animation|Children|Comedy|Fantasy   2851    3.0
## 1250                                   Action|Adventure|Fantasy   2851    3.0
## 1251                                Action|Adventure|Sci-Fi|War   2870    3.0
## 1252                                    Action|Adventure|Sci-Fi   2870    3.0
## 1253                                             Drama|Thriller   2870    3.0
## 1254                                      Drama|Mystery|Romance   2870    3.0
## 1255                                Action|Adventure|Sci-Fi|War   2751    5.0
## 1256                                            Action|Thriller   2758    3.0
## 1257                                      Action|Drama|Thriller   2572    3.0
## 1258                                              Comedy|Sci-Fi   2194    4.0
## 1259                                       Comedy|Drama|Romance   2194    4.0
## 1260                                                Crime|Drama   2194    5.0
## 1261                                      Action|Drama|Thriller   2194    4.0
## 1262                                                     Comedy   2194    5.0
## 1263                 Adventure|Animation|Children|Comedy|Sci-Fi   2194    4.0
## 1264                                       Action|Comedy|Horror   2194    4.0
## 1265                                       Comedy|Drama|Romance   2194    3.0
## 1266                                           Adventure|Sci-Fi   2194    3.0
## 1267                                                     Comedy   2194    4.0
## 1268                                     Comedy|Horror|Thriller   2194    3.0
## 1269                                                     Comedy   2194    3.0
## 1270                           Action|Adventure|Sci-Fi|Thriller   2194    4.0
## 1271                                       Crime|Drama|Thriller   2586    1.0
## 1272                                                Documentary   2845    5.0
## 1273                                             Comedy|Romance   2826    4.0
## 1274                                                   Thriller   2826    3.0
## 1275                                                     Comedy   2826    4.0
## 1276                                                     Comedy   2826    1.0
## 1277                Adventure|Animation|Children|Comedy|Fantasy   2826    5.0
## 1278                                            Horror|Thriller   2826    4.0
## 1279                                                  Drama|War   2826    3.0
## 1280                                            Action|Thriller   2826    4.0
## 1281                                             Comedy|Romance   2826    3.0
## 1282                                               Drama|Horror   2826    3.0
## 1283                                              Drama|Romance   2194    3.0
## 1284                Adventure|Animation|Children|Comedy|Fantasy   2125    4.0
## 1285                                    Action|Adventure|Sci-Fi   2125    5.0
## 1286                                                     Comedy   2140    4.0
## 1287                                                      Drama   2125    3.0
## 1288                                      Action|Drama|Thriller   2150    3.0
## 1289                       Comedy|Drama|Fantasy|Horror|Thriller   2150    3.0
## 1290                                            Action|Thriller   2150    3.0
## 1291                                       Comedy|Drama|Romance   2140    4.0
## 1292                                           Action|Adventure   2140    3.0
## 1293                                           Action|Adventure   2125    4.0
## 1294                               Comedy|Drama|Fantasy|Romance   2140    3.0
## 1295                                              Drama|Romance   2125    4.0
## 1296                                               Comedy|Drama   2125    4.0
## 1297                                    Action|Romance|Thriller   2150    2.0
## 1298                                               Comedy|Drama   2150    4.0
## 1299                                    Comedy|Romance|Thriller   2150    3.0
## 1300                                  Action|Crime|Drama|Sci-Fi   2150    3.0
## 1301                                             Comedy|Romance   2150    3.0
## 1302                                              Comedy|Sci-Fi   2150    3.0
## 1303                                   Comedy|Drama|Romance|War   2150    5.0
## 1304                                        Documentary|Musical   2150    3.0
## 1305                                      Crime|Horror|Thriller   2150    5.0
## 1306                                                   Thriller   2150    5.0
## 1307                                                   Thriller   2150    4.0
## 1308                                                     Comedy   2188    3.0
## 1309                                                Crime|Drama   2188    3.0
## 1310                                           Action|Drama|War   2188    4.0
## 1311                                               Comedy|Drama   2188    5.0
## 1312                                                      Drama   2188    3.0
## 1313                          Action|Adventure|Romance|Thriller   2202    3.0
## 1314                                            Comedy|Thriller   2202    3.0
## 1315                                                     Comedy   2202    2.0
## 1316                                       Comedy|Drama|Romance   2202    4.0
## 1317                                                     Comedy   2202    2.0
## 1318                                                      Drama   2202    5.0
## 1319                                            Crime|Film-Noir   2202    3.0
## 1320                                                      Drama   2202    5.0
## 1321                                                      Drama   2202    4.0
## 1322                            Children|Comedy|Fantasy|Musical   2231    5.0
## 1323                                                      Drama   2231    2.0
## 1324                                       Comedy|Drama|Romance   2231    3.0
## 1325                                              Drama|Romance   2240    5.0
## 1326                                  Action|Adventure|Thriller   2240    4.0
## 1327                                       Comedy|Drama|Romance   2240    5.0
## 1328                              Crime|Horror|Mystery|Thriller   2240    5.0
## 1329                                   Action|Adventure|Fantasy   2240    5.0
## 1330                                           Action|Adventure   2240    5.0
## 1331                              Action|Crime|Fantasy|Thriller   2240    5.0
## 1332                                  Action|Adventure|Thriller   2240    4.0
## 1333                                                     Action   2240    4.0
## 1334                          Action|Adventure|Romance|Thriller   2261    3.0
## 1335                                             Comedy|Romance   2261    4.0
## 1336                      Comedy|Drama|Fantasy|Romance|Thriller   2261    3.0
## 1337                                           Action|Drama|War   2261    4.0
## 1338                                  Action|Adventure|Thriller   2268    5.0
## 1339                Adventure|Animation|Children|Comedy|Musical   2261    2.0
## 1340                                       Crime|Drama|Thriller   2268    4.0
## 1341                                    Children|Comedy|Fantasy   2268    3.0
## 1342                               Comedy|Drama|Fantasy|Romance   2268    4.0
## 1343                                                     Comedy   2268    3.0
## 1344                                                     Comedy   2268    3.0
## 1345                                         Adventure|Children   2268    4.0
## 1346                            Children|Comedy|Fantasy|Musical   2268    4.0
## 1347                                                     Comedy   2268    4.0
## 1348                                             Comedy|Romance   2279    4.0
## 1349                                                Crime|Drama   2279    5.0
## 1350                                                      Drama   2286    3.0
## 1351                                      Action|Drama|Thriller   2286    2.0
## 1352                                      Action|Crime|Thriller   2286    4.0
## 1353                                 Adventure|Animation|Comedy   2286    5.0
## 1354                                       Crime|Drama|Thriller   2286    5.0
## 1355                                                      Drama   2286    5.0
## 1356                                       Comedy|Drama|Romance   2286    3.0
## 1357                                Crime|Drama|Sci-Fi|Thriller   2286    5.0
## 1358                                                     Comedy   2313    4.0
## 1359                                             Comedy|Romance   2313    5.0
## 1360                                  Adventure|Children|Comedy   2313    3.0
## 1361                                              Comedy|Sci-Fi   2313    3.0
## 1362                                         Adventure|Children   2313    3.0
## 1363                                                     Comedy   2313    3.0
## 1364                                    Children|Comedy|Fantasy   2313    2.0
## 1365                                             Comedy|Romance   2313    2.0
## 1366                                                      Drama   2333    3.0
## 1367                                  Action|Adventure|Thriller   2333    3.0
## 1368                                              Drama|Romance   2333    4.0
## 1369                                      Crime|Horror|Thriller   2333    5.0
## 1370                                          Drama|Romance|War   2390    4.0
## 1371                                            Action|Thriller   2396    4.0
## 1372                                             Drama|Thriller   2396    3.0
## 1373                                         Comedy|Crime|Drama   2396    5.0
## 1374                       Comedy|Drama|Fantasy|Horror|Thriller   2396    5.0
## 1375                                             Drama|Thriller   2396    3.0
## 1376                                                     Comedy   2396    4.0
## 1377                                                   Thriller   2396    5.0
## 1378                          Action|Adventure|Fantasy|Thriller   2396    4.0
## 1379                                                     Comedy   2403    1.0
## 1380                                                  Drama|War   2403    3.0
## 1381                                              Drama|Romance   2431    4.0
## 1382                                            Sci-Fi|Thriller   2431    4.0
## 1383                                      Action|Drama|Thriller   2431    3.0
## 1384                                         Comedy|Crime|Drama   2431    5.0
## 1385                                       Action|Comedy|Sci-Fi   2431    2.0
## 1386                                      Comedy|Drama|Thriller   2431    2.0
## 1387                                Action|Crime|Drama|Thriller   2431    2.0
## 1388                          Action|Adventure|Mystery|Thriller   2465    3.0
## 1389                           Action|Adventure|Sci-Fi|Thriller   2465    2.0
## 1390                                       Comedy|Drama|Romance   2465    4.0
## 1391                                             Comedy|Romance   2465    4.0
## 1392                                 Animation|Children|Musical   2465    5.0
## 1393                                  Adventure|Children|Comedy   2465    3.0
## 1394                                 Animation|Children|Musical   2465    2.0
## 1395                                Action|Adventure|Sci-Fi|War   2474    4.0
## 1396                                                      Drama   2474    4.0
## 1397                                              Drama|Romance   2474    2.0
## 1398                                                     Comedy   2474    3.0
## 1399                                       Crime|Drama|Thriller   2474    2.0
## 1400                                                   Thriller   2474    3.0
## 1401                                       Action|Comedy|Sci-Fi   2501    3.0
## 1402                                            Sci-Fi|Thriller   2540    3.0
## 1403                                                     Comedy   2540    3.0
## 1404                                      Action|Drama|Thriller   2540    3.0
## 1405                                             Comedy|Romance   2540    3.0
## 1406                              Comedy|Fantasy|Romance|Sci-Fi   2540    3.0
## 1407                       Comedy|Drama|Fantasy|Horror|Thriller   2540    3.0
## 1408                                                     Comedy   2540    3.0
## 1409                                            Adventure|Drama   2540    3.0
## 1410                                        Crime|Drama|Romance   2540    4.0
## 1411                                    Action|Adventure|Sci-Fi   2540    3.0
## 1412                                                Crime|Drama   2540    5.0
## 1413                                             Drama|Thriller   2540    2.0
## 1414                                             Drama|Thriller   2540    3.0
## 1415                          Action|Adventure|Romance|Thriller   2582    4.0
## 1416                                                     Comedy   2582    4.0
## 1417                            Children|Comedy|Fantasy|Musical   2582    5.0
## 1418                                              Drama|Romance   2582    5.0
## 1419                                              Drama|Romance   2582    5.0
## 1420                                                   Thriller   2582    4.0
## 1421                                             Comedy|Romance   2599    3.0
## 1422                                  Drama|Romance|War|Western   2620    3.0
## 1423                                                Crime|Drama   2620    3.0
## 1424                                  Action|Adventure|Children   2620    1.0
## 1425                          Action|Adventure|Romance|Thriller   2637    4.0
## 1426                                                     Comedy   2637    3.0
## 1427                                            Action|Thriller   2637    4.0
## 1428                                    Action|Adventure|Sci-Fi   2637    4.0
## 1429                                   Comedy|Drama|Romance|War   2637    5.0
## 1430                                                      Drama   2637    5.0
## 1431                                         Drama|Thriller|War   2637    3.0
## 1432                                            Action|Thriller   2637    4.0
## 1433                                           Action|Adventure   2637    5.0
## 1434                              Action|Horror|Sci-Fi|Thriller   2637    4.0
## 1435                            Action|Adventure|Comedy|Musical   2637    4.0
## 1436                                                     Comedy   2683    2.0
## 1437                                    Action|Adventure|Sci-Fi   2683    5.0
## 1438                                           Action|Drama|War   2637    3.0
## 1439                                               Comedy|Crime   2637    4.0
## 1440                                             Comedy|Romance   2637    4.0
## 1441                            Action|Adventure|Crime|Thriller   2637    3.0
## 1442                             Drama|Mystery|Romance|Thriller   2637    4.0
## 1443                            Children|Comedy|Fantasy|Musical   2695    4.0
## 1444                                    Action|Adventure|Sci-Fi   2695    5.0
## 1445                              Comedy|Crime|Romance|Thriller   2695    4.0
## 1446                                                      Drama   2695    5.0
## 1447                                                     Comedy   2695    4.0
## 1448                                                      Drama   2695    3.0
## 1449                                    Action|Adventure|Sci-Fi   2695    5.0
## 1450                                                     Comedy   2695    5.0
## 1451                                                   Thriller   2695    4.0
## 1452                    Action|Adventure|Comedy|Fantasy|Romance   2695    4.0
## 1453                                               Comedy|Drama   2695    5.0
## 1454                                     Action|Sci-Fi|Thriller   2695    4.0
## 1455                                Action|Adventure|Sci-Fi|War   2719    3.0
## 1456                            Children|Comedy|Fantasy|Musical   2719    3.0
## 1457                                                     Comedy   2719    4.0
## 1458                                                     Comedy   2755    4.0
## 1459                                               Comedy|Drama   2755    5.0
## 1460                                           Action|Drama|War   2755    4.0
## 1461                                            Sci-Fi|Thriller   2774    5.0
## 1462                                                     Comedy   2774    5.0
## 1463                                      Action|Drama|Thriller   2774    5.0
## 1464                                         Comedy|Crime|Drama   2774    3.0
## 1465                                              Drama|Romance   2808    2.0
## 1466                                            Action|Thriller   2808    3.0
## 1467                          Action|Adventure|Romance|Thriller   2837    4.0
## 1468                                                  Drama|War   2837    4.0
## 1469                                              Drama|Romance   2837    5.0
## 1470                           Adventure|Animation|Comedy|Crime   2837    2.0
## 1471                Adventure|Animation|Children|Comedy|Fantasy   2847    4.0
## 1472                                            Adventure|Drama   2875    3.0
## 1473                                           Action|Adventure   2875    5.0
## 1474                                            Action|Thriller   2847    2.0
## 1475                                   Action|Adventure|Fantasy   2847    1.0
## 1476                                       Action|Comedy|Sci-Fi   2847    3.0
## 1477                                                      Drama   2847    4.0
## 1478                               Comedy|Drama|Fantasy|Romance   2847    3.0
## 1479                                                      Drama   2847    4.0
## 1480                                      Crime|Horror|Thriller   2240    5.0
## 1481                                             Comedy|Romance   2847    4.0
## 1482                                               Comedy|Crime   2847    3.0
## 1483                                                      Drama   2847    4.0
## 1484                                             Comedy|Romance   2847    3.0
## 1485                                             Comedy|Romance   2847    3.0
## 1486                                                     Horror   2847    3.0
## 1487                                  Animation|Children|Comedy   2847    3.0
## 1488                            Action|Adventure|Comedy|Musical   2125    4.0
## 1489                               Action|Comedy|Crime|Thriller   2125    4.0
## 1490                                      Action|Crime|Thriller   2125    4.0
## 1491                                               Drama|Horror   2125    3.0
## 1492                                                Crime|Drama   2177    5.0
## 1493                                Comedy|Crime|Drama|Thriller   2177    5.0
## 1494                                                     Comedy   2177    5.0
## 1495                                               Drama|Horror   2177    4.0
## 1496                                               Comedy|Drama   2267    3.0
## 1497                                           Action|Drama|War   2267    4.0
## 1498                                                Crime|Drama   2267    5.0
## 1499                                      Drama|Sci-Fi|Thriller   2267    4.0
## 1500                               Action|Comedy|Fantasy|Horror   2267    3.0
## 1501                                   Comedy|Drama|Romance|War   2267    4.0
## 1502                                         Drama|Thriller|War   2267    3.0
## 1503                                             Comedy|Romance   2145    4.0
## 1504                                             Comedy|Romance   2145    5.0
## 1505                                          Drama|Romance|War   2145    5.0
## 1506                                       Comedy|Drama|Romance   2145    2.0
## 1507                                             Comedy|Romance   2145    4.0
## 1508                                                     Comedy   2184    1.0
## 1509                                                     Comedy   2209    3.0
## 1510                                                     Comedy   2184    4.0
## 1511                                      Action|Crime|Thriller   2209    3.0
## 1512                                              Comedy|Sci-Fi   2209    2.0
## 1513                                                     Comedy   2209    1.0
## 1514                                    Adventure|Drama|Western   2209    3.0
## 1515                                  Action|Crime|Drama|Sci-Fi   2209    3.0
## 1516                                             Comedy|Romance   2237    3.0
## 1517                                             Comedy|Romance   2237    2.0
## 1518                                    Action|Romance|Thriller   2237    4.0
## 1519                                    Action|Romance|Thriller   2237    3.0
## 1520                                      Action|Mystery|Sci-Fi   2237    3.0
## 1521                          Adventure|Children|Comedy|Musical   2237    4.0
## 1522              Action|Crime|Fantasy|Mystery|Romance|Thriller   2237    2.0
## 1523                                 Adventure|Children|Fantasy   2264    4.0
## 1524                          Animation|Children|Comedy|Musical   2264    4.0
## 1525                                 Adventure|Animation|Comedy   2264    5.0
## 1526                                   Animation|Children|Drama   2264    4.0
## 1527                           Animation|Children|Drama|Musical   2264    4.0
## 1528                                             Comedy|Romance   2264    3.0
## 1529                                    Action|Adventure|Sci-Fi   2274    5.0
## 1530                  Adventure|Drama|Film-Noir|Sci-Fi|Thriller   2274    4.0
## 1531                                          Drama|Romance|War   2264    3.0
## 1532                                      Action|Mystery|Sci-Fi   2274    3.0
## 1533                           Action|Adventure|Sci-Fi|Thriller   2274    4.0
## 1534                                                      Drama   2297    3.0
## 1535                                             Comedy|Musical   2297    5.0
## 1536                                                      Drama   2297    4.0
## 1537                                               Comedy|Drama   2297    3.0
## 1538                                                  Drama|War   2297    4.0
## 1539                                       Comedy|Drama|Romance   2297    3.0
## 1540                                                      Drama   2297    2.0
## 1541                                               Comedy|Drama   2297    5.0
## 1542                                      Action|Crime|Thriller   2304    1.0
## 1543                                      Crime|Horror|Thriller   2304    5.0
## 1544                                                     Horror   2304    2.0
## 1545                                     Horror|Sci-Fi|Thriller   2304    1.0
## 1546                                        Action|Crime|Horror   2304    1.0
## 1547                                       Action|Horror|Sci-Fi   2304    1.0
## 1548                                                     Horror   2304    1.0
## 1549                                     Action|Sci-Fi|Thriller   2304    2.0
## 1550                Adventure|Fantasy|Film-Noir|Sci-Fi|Thriller   2304    3.0
## 1551                       Action|Crime|Mystery|Sci-Fi|Thriller   2304    4.0
## 1552                                 Adventure|Children|Fantasy   2304    1.0
## 1553                                    Action|Adventure|Sci-Fi   2304    3.0
## 1554                              Action|Horror|Sci-Fi|Thriller   2304    3.0
## 1555                                              Comedy|Sci-Fi   2304    3.0
## 1556                            Action|Adventure|Mystery|Sci-Fi   2304    2.0
## 1557                                              Comedy|Sci-Fi   2304    2.0
## 1558                                  Action|Adventure|Thriller   2304    2.0
## 1559                               Action|Crime|Sci-Fi|Thriller   2304    4.0
## 1560                                    Action|Romance|Thriller   2304    3.0
## 1561                                      Action|Drama|Thriller   2304    3.0
## 1562                                                     Action   2304    2.0
## 1563                          Adventure|Children|Comedy|Musical   2304    1.0
## 1564                                          Action|Comedy|War   2304    3.0
## 1565                                      Action|Drama|Thriller   2304    1.0
## 1566                                           Action|Adventure   2304    1.0
## 1567                          Action|Adventure|Fantasy|Thriller   2304    2.0
## 1568                                 Adventure|Children|Fantasy   2304    3.0
## 1569                              Children|Comedy|Drama|Fantasy   2304    1.0
## 1570                              Comedy|Crime|Mystery|Thriller   2304    2.0
## 1571                                               Comedy|Drama   2304    4.0
## 1572                      Comedy|Drama|Fantasy|Romance|Thriller   2304    2.0
## 1573                                               Comedy|Drama   2304    1.0
## 1574                                             Comedy|Western   2304    3.0
## 1575                                                     Comedy   2304    2.0
## 1576                                                     Comedy   2304    4.0
## 1577                                                     Comedy   2304    1.0
## 1578                                                     Comedy   2304    3.0
## 1579                                            Children|Comedy   2304    1.0
## 1580                                                     Comedy   2304    1.0
## 1581                                            Children|Comedy   2304    3.0
## 1582                             Drama|Mystery|Romance|Thriller   2373    4.0
## 1583                                 Adventure|Mystery|Thriller   2373    4.0
## 1584                                                      Drama   2373    5.0
## 1585                                      Children|Drama|Sci-Fi   2373    5.0
## 1586                                       Comedy|Drama|Romance   2373    4.0
## 1587                                               Comedy|Drama   2237    2.0
## 1588                                                     Comedy   2237    5.0
## 1589                         Animation|Children|Fantasy|Musical   2237    3.0
## 1590                                               Comedy|Drama   2237    4.0
## 1591                                               Comedy|Crime   2237    2.0
## 1592                                                     Comedy   2237    2.0
## 1593                                                     Comedy   2304    2.0
## 1594                                              Drama|Romance   2304    2.0
## 1595                                                      Drama   2304    2.0
## 1596                                             Comedy|Romance   2304    2.0
## 1597                                                      Drama   2304    1.0
## 1598                                                      Drama   2304    1.0
## 1599                                       Comedy|Drama|Romance   2304    2.0
## 1600                                               Comedy|Drama   2417    2.0
## 1601                                            Action|Thriller   2424    4.0
## 1602                                     Comedy|Fantasy|Romance   2417    4.0
## 1603                                             Comedy|Romance   2417    4.0
## 1604                Adventure|Animation|Children|Comedy|Fantasy   2417    4.0
## 1605                                                  Drama|War   2424    5.0
## 1606                                         Comedy|Documentary   2424    5.0
## 1607                                             Comedy|Mystery   2417    4.0
## 1608                                       Crime|Drama|Thriller   2424    4.0
## 1609                                   Comedy|Drama|Romance|War   2424    5.0
## 1610                                     Crime|Mystery|Thriller   2424    5.0
## 1611                                               Comedy|Crime   2424    4.0
## 1612                                                   Thriller   2424    4.0
## 1613                                     Drama|Romance|Thriller   2424    4.0
## 1614                                    Adventure|Drama|Western   2424    5.0
## 1615                                                      Drama   2424    2.0
## 1616                Adventure|Animation|Children|Comedy|Fantasy   2437    2.0
## 1617                                           Adventure|Sci-Fi   2424    4.0
## 1618                                      Action|Crime|Thriller   2424    2.0
## 1619                                Action|Adventure|Sci-Fi|War   2424    4.0
## 1620                                             Comedy|Romance   2437    4.0
## 1621                                               Comedy|Drama   2437    4.0
## 1622                                             Comedy|Romance   2437    2.0
## 1623                                       Action|Adventure|War   2424    1.0
## 1624                                      Drama|Fantasy|Romance   2424    5.0
## 1625                         Animation|Children|Fantasy|Musical   2424    4.0
## 1626                              Drama|Fantasy|Horror|Thriller   2424    4.0
## 1627                                              Comedy|Horror   2424    4.0
## 1628                  Animation|Children|Comedy|Musical|Romance   2424    4.0
## 1629                              Crime|Horror|Mystery|Thriller   2424    5.0
## 1630                                  Action|Adventure|Thriller   2424    2.0
## 1631                               Crime|Drama|Romance|Thriller   2424    1.0
## 1632                                  Action|Adventure|Thriller   2424    2.0
## 1633                                           Mystery|Thriller   2424    4.0
## 1634                                      Action|Crime|Thriller   2424    4.0
## 1635                                              Drama|Romance   2424    5.0
## 1636                                     Comedy|Fantasy|Romance   2424    4.0
## 1637                   Action|Adventure|Comedy|Romance|Thriller   2424    2.0
## 1638                                              Drama|Romance   2424    5.0
## 1639                                                      Drama   2424    4.0
## 1640                                             Children|Drama   2424    4.0
## 1641                                                     Comedy   2424    1.0
## 1642                                               Comedy|Drama   2424    4.0
## 1643                                                     Comedy   2424    4.0
## 1644                                      Drama|Horror|Thriller   2479    3.0
## 1645                              Action|Comedy|Horror|Thriller   2479    3.0
## 1646                        Adventure|Animation|Children|Comedy   2551    5.0
## 1647                                    Action|Adventure|Sci-Fi   2551    5.0
## 1648                                    Action|Adventure|Sci-Fi   2551    5.0
## 1649                                 Adventure|Children|Fantasy   2551    5.0
## 1650                                           Adventure|Sci-Fi   2551    5.0
## 1651                                       Comedy|Drama|Romance   2551    5.0
## 1652                                   Action|Adventure|Fantasy   2576    4.0
## 1653                                   Action|Adventure|Romance   2576    4.0
## 1654                                           Action|Drama|War   2576    4.0
## 1655                                            Adventure|Drama   2576    4.0
## 1656                                                Crime|Drama   2576    4.0
## 1657                             Action|Adventure|Drama|Romance   2576    3.0
## 1658                                  Action|Adventure|Thriller   2576    4.0
## 1659                                Crime|Drama|Sci-Fi|Thriller   2576    4.0
## 1660                                      Drama|Sci-Fi|Thriller   2576    4.0
## 1661                     Action|Adventure|Comedy|Fantasy|Horror   2576    5.0
## 1662                                              Action|Sci-Fi   2576    5.0
## 1663                             Action|Romance|Sci-Fi|Thriller   2576    4.0
## 1664                                Action|Adventure|Sci-Fi|War   2576    5.0
## 1665                              Action|Horror|Sci-Fi|Thriller   2576    5.0
## 1666                                       Action|Horror|Sci-Fi   2576    5.0
## 1667                                            Children|Comedy   2595    3.0
## 1668                                               Comedy|Drama   2595    1.0
## 1669                                     Comedy|Horror|Thriller   2595    1.0
## 1670                                                     Comedy   2608    4.0
## 1671                                             Horror|Mystery   2551    1.0
## 1672                                            Horror|Thriller   2551    1.0
## 1673                                   Adventure|Comedy|Western   2608    3.0
## 1674                                       Action|Horror|Sci-Fi   2551    3.0
## 1675                                            Horror|Thriller   2551    1.0
## 1676                                              Horror|Sci-Fi   2551    1.0
## 1677                                     Horror|Sci-Fi|Thriller   2551    4.0
## 1678                                    Fantasy|Horror|Thriller   2551    1.0
## 1679                                                     Horror   2551    1.0
## 1680                                                     Horror   2551    1.0
## 1681                                                     Horror   2551    1.0
## 1682                                            Horror|Thriller   2551    1.0
## 1683                                              Comedy|Horror   2551    1.0
## 1684                                              Horror|Sci-Fi   2551    1.0
## 1685                                            Children|Comedy   2649    2.0
## 1686                                              Comedy|Sci-Fi   2649    5.0
## 1687                                      Action|Crime|Thriller   2649    1.0
## 1688                                     Children|Comedy|Sci-Fi   2649    1.0
## 1689                           Action|Adventure|Sci-Fi|Thriller   2649    3.0
## 1690                                              Action|Sci-Fi   2649    1.0
## 1691                                  Action|Comedy|Crime|Drama   2649    3.0
## 1692                                         Comedy|Crime|Drama   2649    5.0
## 1693                Adventure|Animation|Children|Comedy|Fantasy   2649    4.0
## 1694                                     Comedy|Fantasy|Romance   2649    4.0
## 1695                                             Comedy|Romance   2649    4.0
## 1696                              Comedy|Crime|Romance|Thriller   2649    4.0
## 1697                                               Comedy|Drama   2649    4.0
## 1698                                            Adventure|Drama   2649    4.0
## 1699                                   Action|Adventure|Romance   2649    3.0
## 1700                                      Action|Drama|Thriller   2649    3.0
## 1701                                      Action|Crime|Thriller   2649    4.0
## 1702                                     Comedy|Horror|Thriller   2649    3.0
## 1703                                  Action|Adventure|Thriller   2649    1.0
## 1704                                               Comedy|Crime   2703    1.0
## 1705                                    Horror|Mystery|Thriller   2703    1.0
## 1706                                                  Drama|War   2703    5.0
## 1707                         Adventure|Children|Fantasy|Musical   2703    5.0
## 1708                                                      Drama   2703    5.0
## 1709                                       Crime|Drama|Thriller   2703    1.0
## 1710                             Action|Adventure|Drama|Romance   2703    5.0
## 1711                                               Comedy|Crime   2703    2.0
## 1712                                                     Comedy   2703    1.0
## 1713                                             Comedy|Romance   2703    5.0
## 1714                                                      Drama   2703    3.0
## 1715                       Adventure|Animation|Children|Fantasy   2703    4.0
## 1716                                  Adventure|Children|Comedy   2703    4.0
## 1717                                    Drama|Film-Noir|Romance   2703    1.0
## 1718                             Drama|Mystery|Romance|Thriller   2703    5.0
## 1719                                            Adventure|Drama   2703    4.0
## 1720                                               Comedy|Crime   2703    5.0
## 1721                                           Adventure|Comedy   2703    1.0
## 1722                                               Comedy|Drama   2703    5.0
## 1723                                                     Comedy   2703    1.0
## 1724                                                     Comedy   2703    5.0
## 1725                                       Action|Horror|Sci-Fi   2703    2.0
## 1726                                               Comedy|Drama   2703    5.0
## 1727                                                     Comedy   2703    5.0
## 1728                                           Mystery|Thriller   2703    1.0
## 1729                               Action|Comedy|Crime|Thriller   2713    5.0
## 1730                          Animation|Children|Comedy|Musical   2713    3.0
## 1731                                               Comedy|Drama   2713    4.0
## 1732                                                      Drama   2740    3.0
## 1733                                      Crime|Horror|Thriller   2740    1.0
## 1734                                                      Drama   2740    4.0
## 1735                                            Action|Thriller   2780    3.0
## 1736                                                 Comedy|War   2780    3.0
## 1737                                            Children|Comedy   2780    2.0
## 1738                                               Comedy|Drama   2780    3.0
## 1739                                           Adventure|Comedy   2780    3.0
## 1740                                           Comedy|Drama|War   2780    4.0
## 1741                                                     Comedy   2780    3.0
## 1742                                     Adventure|Comedy|Drama   2780    4.0
## 1743                                              Comedy|Sci-Fi   2780    3.0
## 1744                                     Comedy|Mystery|Romance   2780    3.0
## 1745                                            Children|Comedy   2780    2.0
## 1746                               Action|Comedy|Musical|Sci-Fi   2780    2.0
## 1747                                    Action|Adventure|Comedy   2780    3.0
## 1748                            Action|Adventure|Comedy|Romance   2780    3.0
## 1749                               Drama|Horror|Sci-Fi|Thriller   2780    5.0
## 1750                                    Action|Adventure|Sci-Fi   2780    5.0
## 1751                           Action|Adventure|Sci-Fi|Thriller   2780    3.0
## 1752                                      Children|Drama|Sci-Fi   2780    4.0
## 1753                                Comedy|Crime|Drama|Thriller   2780    5.0
## 1754                                       Crime|Drama|Thriller   2780    5.0
## 1755                                     Crime|Mystery|Thriller   2780    5.0
## 1756                                             Drama|Thriller   2780    4.0
## 1757                                Action|Crime|Drama|Thriller   2780    5.0
## 1758                                           Action|Adventure   2780    5.0
## 1759                                            Adventure|Drama   2780    5.0
## 1760                                                  Drama|War   2780    4.0
## 1761                           Crime|Film-Noir|Mystery|Thriller   2780    4.0
## 1762                           Action|Adventure|Sci-Fi|Thriller   2669    4.0
## 1763                                  Action|Adventure|Thriller   2669    4.0
## 1764                                   Action|Adventure|Romance   2669    4.0
## 1765                               Action|Comedy|Crime|Thriller   2669    3.0
## 1766                                               Comedy|Drama   2871    4.0
## 1767                                     Comedy|Fantasy|Romance   2871    3.0
## 1768                                                   Thriller   2871    5.0
## 1769                                                      Drama   2871    4.0
## 1770                                                      Drama   2871    5.0
## 1771                                  Action|Comedy|Crime|Drama   2871    4.0
## 1772                             Drama|Mystery|Romance|Thriller   2871    4.0
## 1773                                        Action|Comedy|Drama   2871    3.0
## 1774                                              Drama|Romance   2871    5.0
## 1775                                                     Sci-Fi   2871    5.0
## 1776                                             Comedy|Romance   2871    4.0
## 1777                                 Adventure|Children|Fantasy   2871    4.0
## 1778                                           Adventure|Sci-Fi   2871    5.0
## 1779                                                     Comedy   2871    3.0
## 1780                          Action|Adventure|Mystery|Thriller   2871    4.0
## 1781                                      Comedy|Sci-Fi|Western   2871    4.0
## 1782                                    Children|Comedy|Fantasy   2871    4.0
## 1783                                       Comedy|Drama|Romance   2196    2.0
## 1784                                               Comedy|Drama   2196    2.0
## 1785                                                      Drama   2196    3.0
## 1786                                       Crime|Drama|Thriller   2196    4.0
## 1787                                        Action|Crime|Sci-Fi   2196    1.0
## 1788                                      Action|Crime|Thriller   2196    1.0
## 1789                           Action|Adventure|Sci-Fi|Thriller   2196    4.0
## 1790                                             Action|Western   2196    3.0
## 1791                                                      Drama   2424    1.0
## 1792                                                      Drama   2424    5.0
## 1793                                              Drama|Musical   2424    4.0
## 1794                                               Comedy|Drama   2424    3.0
## 1795                                                     Comedy   2424    1.0
## 1796                               Comedy|Drama|Fantasy|Romance   2354    5.0
## 1797                                              Drama|Romance   2354    4.0
## 1798                                            Action|Thriller   2354    4.0
## 1799                                              Drama|Mystery   2354    3.0
## 1800                                       Action|Horror|Sci-Fi   2354    4.0
## 1801                                 Adventure|Children|Fantasy   2354    2.0
## 1802                                    Action|Adventure|Sci-Fi   2354    3.0
## 1803                                            Adventure|Drama   2354    3.0
## 1804                                            Action|Thriller   2354    3.0
## 1805                                                Crime|Drama   2780    3.0
## 1806                                    Mystery|Sci-Fi|Thriller   2780    5.0
## 1807                                                      Drama   2780    2.0
## 1808                                  Action|Adventure|Thriller   2780    4.0
## 1809                            Action|Adventure|Comedy|Musical   2184    4.0
## 1810                                      Comedy|Crime|Thriller   2184    3.0
## 1811                                       Comedy|Drama|Romance   2424    4.0
## 1812                                               Comedy|Drama   2424    3.0
## 1813                                                      Drama   2424    4.0
## 1814                                     Action|Sci-Fi|Thriller   2209    4.0
## 1815                        Action|Crime|Drama|Mystery|Thriller   2424    3.0
## 1816                                 Film-Noir|Mystery|Thriller   2424    5.0
## 1817                                             Comedy|Musical   2424    3.0
## 1818                                            Horror|Thriller   2424    5.0
## 1819                                                    Romance   2424    1.0
## 1820                                    Action|Mystery|Thriller   2424    2.0
## 1821                                               Comedy|Drama   2424    4.0
## 1822                                                      Drama   2424    4.0
## 1823                                    Fantasy|Horror|Thriller   2424    1.0
## 1824                                          Drama|Romance|War   2424    3.0
## 1825                         Action|Comedy|Crime|Drama|Thriller   2424    1.0
## 1826                                                     Comedy   2424    4.0
## 1827                                                      Drama   2118    5.0
## 1828                                                      Drama   2118    4.0
## 1829                                                     Comedy   2118    3.0
## 1830                                             Comedy|Romance   2118    2.0
## 1831                                                      Drama   2126    5.0
## 1832                                                     Comedy   2126    2.0
## 1833                                               Comedy|Drama   2126    3.0
## 1834                                      Crime|Horror|Thriller   2118    5.0
## 1835                                                Crime|Drama   2118    5.0
## 1836                                             Comedy|Romance   2126    2.0
## 1837                                               Comedy|Drama   2126    3.0
## 1838                                             Comedy|Romance   2151    4.0
## 1839                                             Comedy|Romance   2151    2.0
## 1840                               Action|Comedy|Fantasy|Sci-Fi   2151    5.0
## 1841                                             Comedy|Romance   2151    3.0
## 1842                                     Drama|Mystery|Thriller   2165    5.0
## 1843                                       Action|Crime|Romance   2165    4.0
## 1844                                  Action|Adventure|Thriller   2165    4.0
## 1845                                  Action|Adventure|Thriller   2165    4.0
## 1846                          Action|Adventure|Mystery|Thriller   2165    5.0
## 1847                                           Action|Drama|War   2165    3.0
## 1848                              Action|Crime|Mystery|Thriller   2165    3.0
## 1849                                                      Drama   2219    4.0
## 1850                                              Drama|Romance   2165    4.0
## 1851                                                      Drama   2219    5.0
## 1852                                           Mystery|Thriller   2165    4.0
## 1853                                      Drama|Mystery|Romance   2165    4.0
## 1854                                                      Drama   2219    4.0
## 1855                                                     Comedy   2219    3.0
## 1856                                    Action|Adventure|Comedy   2232    3.0
## 1857                               Comedy|Horror|Musical|Sci-Fi   2232    4.0
## 1858                           Action|Adventure|Sci-Fi|Thriller   2232    5.0
## 1859                           Action|Adventure|Sci-Fi|Thriller   2232    4.0
## 1860                                                      Drama   2241    5.0
## 1861                            Children|Comedy|Fantasy|Musical   2299    4.0
## 1862                                             Comedy|Romance   2299    5.0
## 1863                                                Crime|Drama   2241    4.0
## 1864                                             Drama|Thriller   2253    4.0
## 1865                                              Drama|Romance   2241    3.0
## 1866                                Comedy|Crime|Drama|Thriller   2241    5.0
## 1867                                   Comedy|Drama|Romance|War   2293    5.0
## 1868                           Action|Adventure|Sci-Fi|Thriller   2293    3.0
## 1869                                                      Drama   2241    3.0
## 1870                                                     Comedy   2299    4.0
## 1871                                                      Drama   2241    4.0
## 1872                                                      Drama   2241    5.0
## 1873                                                Crime|Drama   2253    4.0
## 1874                                    Action|Romance|Thriller   2322    3.0
## 1875                                       Comedy|Drama|Romance   2241    4.0
## 1876                                      Drama|Fantasy|Romance   2334    3.0
## 1877                                              Drama|Mystery   2280    4.0
## 1878                                               Comedy|Drama   2334    4.0
## 1879                                       Comedy|Drama|Romance   2334    5.0
## 1880                               Comedy|Drama|Fantasy|Romance   2334    3.0
## 1881                               Crime|Drama|Romance|Thriller   2322    5.0
## 1882                                       Comedy|Drama|Romance   2241    3.0
## 1883                               Crime|Drama|Mystery|Thriller   2322    5.0
## 1884                              Action|Crime|Fantasy|Thriller   2322    5.0
## 1885                                         Action|Crime|Drama   2241    4.0
## 1886                                                      Drama   2241    4.0
## 1887                               Comedy|Drama|Fantasy|Romance   2241    4.0
## 1888                                              Drama|Romance   2241    4.0
## 1889                                  Action|Adventure|Thriller   2322    5.0
## 1890                 Adventure|Animation|Children|Drama|Fantasy   2241    4.0
## 1891                                               Drama|Horror   2241    3.0
## 1892                                              Drama|Romance   2367    4.0
## 1893                                         Comedy|Crime|Drama   2367    5.0
## 1894                                                  Drama|War   2367    4.0
## 1895                                   Comedy|Drama|Romance|War   2367    4.0
## 1896                                                      Drama   2367    4.0
## 1897                                            Action|Thriller   2391    4.0
## 1898                                                      Drama   2404    4.0
## 1899                    Action|Adventure|Comedy|Fantasy|Romance   2391    2.0
## 1900                            Action|Adventure|Comedy|Musical   2241    4.0
## 1901                                     Action|Sci-Fi|Thriller   2404    5.0
## 1902                                       Crime|Drama|Thriller   2241    5.0
## 1903                                             Drama|Thriller   2466    4.0
## 1904                                               Comedy|Drama   2466    5.0
## 1905                                   Comedy|Drama|Romance|War   2466    3.0
## 1906                                              Drama|Fantasy   2466    5.0
## 1907                                            Adventure|Drama   2466    5.0
## 1908                         Animation|Children|Fantasy|Musical   2466    2.0
## 1909                                                      Drama   2466    2.0
## 1910                                                      Drama   2466    4.0
## 1911                                                      Drama   2466    5.0
## 1912                                             Crime|Thriller   2466    4.0
## 1913                                            Adventure|Drama   2466    4.0
## 1914                                             Horror|Western   2466    4.0
## 1915                                    Action|Adventure|Comedy   2475    3.0
## 1916                                                     Comedy   2466    3.0
## 1917                               Action|Comedy|Musical|Sci-Fi   2466    4.0
## 1918                                                     Comedy   2466    3.0
## 1919                                                      Drama   2502    2.0
## 1920  Adventure|Animation|Children|Comedy|Crime|Fantasy|Mystery   2502    3.0
## 1921                                             Comedy|Romance   2466    3.0
## 1922                                                     Comedy   2466    4.0
## 1923                                              Drama|Fantasy   2502    3.0
## 1924                                                      Drama   2515    4.0
## 1925                                    Action|Adventure|Sci-Fi   2515    5.0
## 1926                                           Action|Adventure   2515    3.0
## 1927                  Animation|Children|Comedy|Musical|Romance   2502    5.0
## 1928  Adventure|Animation|Children|Comedy|Crime|Fantasy|Mystery   2515    3.0
## 1929                                               Comedy|Crime   2515    4.0
## 1930                                  Action|Comedy|Crime|Drama   2515    3.0
## 1931                                            Horror|Thriller   2515    4.0
## 1932                                                     Comedy   2502    4.0
## 1933                                               Comedy|Drama   2515    4.0
## 1934                           Action|Adventure|Sci-Fi|Thriller   2515    2.0
## 1935                                                      Drama   2502    4.0
## 1936                                                  Drama|War   2515    4.0
## 1937                                              Drama|Mystery   2515    4.0
## 1938                                            Children|Comedy   2502    2.0
## 1939                                                     Horror   2466    4.0
## 1940                                          Adventure|Fantasy   2515    4.0
## 1941                                             Drama|Thriller   2484    4.0
## 1942                                                     Comedy   2484    4.0
## 1943                                                      Drama   2526    5.0
## 1944                                                 Comedy|War   2526    5.0
## 1945                                                      Drama   2526    3.0
## 1946                                      Crime|Drama|Film-Noir   2515    3.0
## 1947                                            Horror|Thriller   2526    5.0
## 1948                                                  Drama|War   2526    5.0
## 1949                                              Drama|Romance   2466    3.0
## 1950                                                Crime|Drama   2526    4.0
## 1951                               Adventure|Comedy|Romance|War   2466    5.0
## 1952                                                    Western   2526    4.0
## 1953                                       Comedy|Horror|Sci-Fi   2515    4.0
## 1954                                             Children|Drama   2466    5.0
## 1955                          Adventure|Children|Fantasy|Sci-Fi   2466    4.0
## 1956                                                      Drama   2466    5.0
## 1957                                                      Drama   2526    4.0
## 1958                                     Crime|Mystery|Thriller   2526    4.0
## 1959                                       Comedy|Drama|Romance   2466    5.0
## 1960                                          Drama|Romance|War   2526    4.0
## 1961                                                Documentary   2526    3.0
## 1962                                                Crime|Drama   2466    4.0
## 1963                                     Comedy|Musical|Romance   2466    5.0
## 1964                                                     Comedy   2466    3.0
## 1965                                              Horror|Sci-Fi   2466    3.0
## 1966                                              Comedy|Sci-Fi   2534    5.0
## 1967                                        Action|Drama|Sci-Fi   2534    4.0
## 1968                              Action|Horror|Sci-Fi|Thriller   2534    3.0
## 1969                                    Action|Adventure|Sci-Fi   2534    4.0
## 1970                                              Comedy|Sci-Fi   2534    5.0
## 1971                                    Action|Adventure|Sci-Fi   2534    1.0
## 1972                  Adventure|Drama|Film-Noir|Sci-Fi|Thriller   2466    3.0
## 1973                           Action|Adventure|Sci-Fi|Thriller   2534    1.0
## 1974                                              Drama|Romance   2466    3.0
## 1975                                    Adventure|Comedy|Sci-Fi   2534    4.0
## 1976                                            Sci-Fi|Thriller   2534    3.0
## 1977                                     Action|Adventure|Drama   2466    3.0
## 1978                             Action|Comedy|Romance|Thriller   2466    1.0
## 1979                                Action|Adventure|Sci-Fi|War   2534    4.0
## 1980                                                     Horror   2466    3.0
## 1981                                                     Horror   2466    2.0
## 1982                                              Comedy|Sci-Fi   2466    4.0
## 1983                                               Comedy|Crime   2466    3.0
## 1984                                              Comedy|Sci-Fi   2534    4.0
## 1985                                                     Comedy   2466    3.0
## 1986                                    Horror|Mystery|Thriller   2466    3.0
## 1987                                                  Film-Noir   2534    5.0
## 1988                           Crime|Film-Noir|Mystery|Thriller   2534    4.0
## 1989                            Drama|Film-Noir|Mystery|Romance   2534    4.0
## 1990                       Crime|Drama|Fantasy|Romance|Thriller   2534    4.0
## 1991                                             Comedy|Mystery   2534    3.0
## 1992                                 Adventure|Mystery|Thriller   2534    4.0
## 1993                          Action|Adventure|Mystery|Thriller   2534    3.0
## 1994                                                     Comedy   2534    4.0
## 1995                                             Comedy|Musical   2534    5.0
## 1996                                           Adventure|Comedy   2534    5.0
## 1997                                       Comedy|Drama|Romance   2534    4.0
## 1998                                           Action|Adventure   2534    4.0
## 1999                                              Drama|Romance   2534    5.0
## 2000                                              Drama|Romance   2534    5.0
## 2001                                   Comedy|Drama|Romance|War   2534    2.0
## 2002                                     Action|Sci-Fi|Thriller   2566    5.0
## 2003                                            Adventure|Drama   2566    3.0
## 2004                                             Drama|Thriller   2566    5.0
## 2005                                                     Comedy   2566    3.0
## 2006                                       Action|Crime|Romance   2566    5.0
## 2007                                           Action|Drama|War   2566    3.0
## 2008                                         Comedy|Crime|Drama   2566    4.0
## 2009                               Comedy|Drama|Fantasy|Romance   2566    5.0
## 2010                                            Sci-Fi|Thriller   2573    5.0
## 2011                                   Crime|Film-Noir|Thriller   2583    5.0
## 2012                              Crime|Horror|Mystery|Thriller   2583    5.0
## 2013                                                      Drama   2573    5.0
## 2014                             Drama|Mystery|Romance|Thriller   2583    5.0
## 2015                              Action|Crime|Romance|Thriller   2573    4.0
## 2016                                                     Comedy   2600    4.0
## 2017                                              Drama|Fantasy   2566    4.0
## 2018                                             Comedy|Romance   2566    3.0
## 2019                                              Action|Sci-Fi   2583    2.0
## 2020                              Action|Crime|Romance|Thriller   2583    3.0
## 2021                                         Animation|Children   2566    3.0
## 2022                                               Comedy|Drama   2566    3.0
## 2023                                              Drama|Romance   2566    3.0
## 2024                                               Comedy|Drama   2566    4.0
## 2025                                       Comedy|Drama|Musical   2566    4.0
## 2026                                  Animation|Children|Comedy   2566    3.0
## 2027                                   Action|Drama|Romance|War   2484    3.0
## 2028                                               Comedy|Drama   2566    4.0
## 2029                                             Drama|Thriller   2566    3.0
## 2030                                     Comedy|Fantasy|Romance   2610    4.0
## 2031                                              Comedy|Sci-Fi   2610    4.0
## 2032                                                     Comedy   2610    3.0
## 2033                                              Drama|Romance   2566    4.0
## 2034                                               Comedy|Drama   2610    4.0
## 2035                       Comedy|Drama|Fantasy|Horror|Thriller   2566    4.0
## 2036                                            Sci-Fi|Thriller   2566    4.0
## 2037                                                     Comedy   2566    3.0
## 2038                           Action|Adventure|Sci-Fi|Thriller   2566    4.0
## 2039                              Action|Horror|Sci-Fi|Thriller   2566    3.0
## 2040                                       Action|Drama|Western   2566    4.0
## 2041                                       Comedy|Drama|Romance   2566    3.0
## 2042                                               Comedy|Drama   2566    2.0
## 2043                                             Comedy|Musical   2566    5.0
## 2044                                     Comedy|Fantasy|Romance   2566    3.0
## 2045                                       Comedy|Drama|Romance   2566    5.0
## 2046                                       Comedy|Drama|Romance   2566    3.0
## 2047                                           Adventure|Comedy   2566    3.0
## 2048                                                     Comedy   2566    1.0
## 2049                                       Comedy|Drama|Romance   2566    5.0
## 2050                             Action|Adventure|Comedy|Sci-Fi   2566    3.0
## 2051                          Animation|Children|Comedy|Musical   2566    5.0
## 2052                                             Comedy|Romance   2566    3.0
## 2053                                             Comedy|Romance   2610    3.0
## 2054                                            Comedy|Thriller   2610    3.0
## 2055                                                     Comedy   2566    4.0
## 2056                                                     Comedy   2610    4.0
## 2057                                                     Comedy   2566    2.0
## 2058                                                     Comedy   2566    1.0
## 2059                                                     Comedy   2566    1.0
## 2060                                      Comedy|Horror|Musical   2566    3.0
## 2061                                        Action|Drama|Sci-Fi   2566    3.0
## 2062                              Comedy|Fantasy|Romance|Sci-Fi   2566    4.0
## 2063                           Action|Adventure|Sci-Fi|Thriller   2566    3.0
## 2064                          Action|Adventure|Animation|Sci-Fi   2566    4.0
## 2065                                    Action|Adventure|Sci-Fi   2566    3.0
## 2066                           Action|Adventure|Sci-Fi|Thriller   2566    3.0
## 2067                                    Action|Adventure|Sci-Fi   2566    4.0
## 2068                                     Comedy|Musical|Romance   2566    4.0
## 2069                             Drama|Mystery|Romance|Thriller   2566    4.0
## 2070                                       Action|Drama|Romance   2566    1.0
## 2071                                           Action|Drama|War   2621    4.0
## 2072                              Comedy|Crime|Mystery|Thriller   2621    3.0
## 2073                                              Drama|Romance   2675    4.0
## 2074                                                     Comedy   2675    3.0
## 2075                                             Drama|Thriller   2675    5.0
## 2076                               Comedy|Drama|Fantasy|Romance   2675    4.0
## 2077                                   Comedy|Drama|Romance|War   2675    4.0
## 2078                                               Comedy|Drama   2675    3.0
## 2079                                       Crime|Drama|Thriller   2675    5.0
## 2080                                       Comedy|Drama|Romance   2675    4.0
## 2081                                                     Comedy   2675    4.0
## 2082                                              Drama|Romance   2675    4.0
## 2083                                                      Drama   2675    5.0
## 2084                                             Comedy|Romance   2675    4.0
## 2085                                                     Comedy   2675    4.0
## 2086                                        Adventure|Drama|War   2675    5.0
## 2087                                                      Drama   2707    4.0
## 2088                                              Drama|Romance   2707    2.0
## 2089                                             Drama|Thriller   2707    5.0
## 2090                                              Drama|Romance   2707    3.0
## 2091                                                      Drama   2707    5.0
## 2092                                       Comedy|Drama|Romance   2707    5.0
## 2093                                                      Drama   2707    5.0
## 2094                               Crime|Drama|Romance|Thriller   2707    5.0
## 2095                                                  Drama|War   2707    5.0
## 2096                                          Drama|Romance|War   2707    4.0
## 2097                                          Drama|Romance|War   2707    1.0
## 2098                                          Drama|Romance|War   2707    4.0
## 2099                                       Comedy|Drama|Romance   2707    5.0
## 2100                          Action|Adventure|Comedy|Drama|War   2720    2.0
## 2101                                                      Drama   2707    4.0
## 2102                                              Drama|Romance   2707    4.0
## 2103                                                      Drama   2707    2.0
## 2104                                       Comedy|Drama|Romance   2707    3.0
## 2105                             Action|Adventure|Drama|Romance   2707    5.0
## 2106                                                      Drama   2707    4.0
## 2107                              Comedy|Fantasy|Romance|Sci-Fi   2573    5.0
## 2108                                              Drama|Romance   2707    2.0
## 2109                                       Crime|Drama|Thriller   2707    3.0
## 2110                                   Comedy|Drama|Romance|War   2573    3.0
## 2111                                       Comedy|Drama|Romance   2720    3.0
## 2112                                                      Drama   2707    3.0
## 2113                                       Comedy|Drama|Romance   2720    3.0
## 2114                                       Comedy|Drama|Romance   2720    4.0
## 2115                                                      Drama   2707    5.0
## 2116                                             Comedy|Romance   2720    4.0
## 2117                                       Crime|Drama|Thriller   2707    3.0
## 2118                                                      Drama   2707    4.0
## 2119                                                     Comedy   2720    1.0
## 2120                                     Drama|Mystery|Thriller   2707    5.0
## 2121                                                 Comedy|War   2573    1.0
## 2122                                             Drama|Thriller   2707    5.0
## 2123                                              Drama|Mystery   2720    5.0
## 2124                                                      Drama   2573    1.0
## 2125                                                     Comedy   2293    2.0
## 2126                                                      Drama   2720    5.0
## 2127                                                  Drama|War   2763    5.0
## 2128                                                     Comedy   2763    3.0
## 2129                                                      Drama   2763    4.0
## 2130                                                      Drama   2763    4.0
## 2131                                                      Drama   2763    5.0
## 2132                                                      Drama   2782    5.0
## 2133                            Fantasy|Horror|Romance|Thriller   2573    1.0
## 2134                Adventure|Animation|Children|Comedy|Fantasy   2763    4.0
## 2135                                        Documentary|Musical   2573    1.0
## 2136                                             Comedy|Musical   2763    2.0
## 2137                                       Comedy|Drama|Romance   2782    5.0
## 2138                                     Crime|Mystery|Thriller   2782    5.0
## 2139                                   Comedy|Drama|Romance|War   2782    4.0
## 2140                                                Crime|Drama   2553    5.0
## 2141                                               Comedy|Drama   2553    5.0
## 2142                               Action|Comedy|Fantasy|Sci-Fi   2553    4.0
## 2143                                       Comedy|Drama|Romance   2553    5.0
## 2144                                      Action|Comedy|Western   2553    5.0
## 2145                                             Comedy|Romance   2553    3.0
## 2146                  Animation|Children|Comedy|Musical|Romance   2553    3.0
## 2147                                             Drama|Thriller   2293    5.0
## 2148                             Drama|Mystery|Romance|Thriller   2293    5.0
## 2149                                                      Drama   2790    3.0
## 2150                                                      Drama   2848    4.0
## 2151                            Animation|Children|Comedy|Crime   2848    4.0
## 2152                                               Comedy|Drama   2848    3.0
## 2153                                           Documentary|IMAX   2790    5.0
## 2154                              Comedy|Crime|Mystery|Thriller   2848    3.0
## 2155  Adventure|Animation|Children|Comedy|Crime|Fantasy|Mystery   2293    4.0
## 2156                                             Comedy|Romance   2293    5.0
## 2157                                       Comedy|Drama|Romance   2293    5.0
## 2158                                      Drama|Fantasy|Romance   2720    5.0
## 2159                                      Crime|Horror|Thriller   2720    4.0
## 2160                                         Crime|Thriller|War   2848    4.0
## 2161                           Crime|Film-Noir|Mystery|Thriller   2848    4.0
## 2162                                           Action|Adventure   2720    5.0
## 2163                                            Adventure|Drama   2720    5.0
## 2164                                                Crime|Drama   2720    5.0
## 2165                               Comedy|Drama|Fantasy|Romance   2848    3.0
## 2166                                             Comedy|Musical   2848    5.0
## 2167                                     Horror|Sci-Fi|Thriller   2848    4.0
## 2168                                        Drama|Horror|Sci-Fi   2848    3.0
## 2169                                                Crime|Drama   2583    3.0
## 2170                                       Crime|Drama|Thriller   2583    3.0
## 2171                                               Action|Crime   2583    2.0
## 2172                          Action|Adventure|Fantasy|Thriller   2583    1.0
## 2173                                               Comedy|Crime   2583    1.0
## 2174                          Action|Adventure|Animation|Sci-Fi   2573    3.0
## 2175                     Action|Adventure|Comedy|Fantasy|Horror   2573    3.0
## 2176                                              Comedy|Horror   2573    1.0
## 2177                           Action|Adventure|Sci-Fi|Thriller   2573    2.0
## 2178                                               Drama|Sci-Fi   2573    5.0
## 2179                                          Action|Sci-Fi|War   2573    3.0
## 2180                                                  Drama|War   2573    4.0
## 2181                                           Action|Adventure   2573    2.0
## 2182                                                     Horror   2573    1.0
## 2183                                                     Comedy   2573    1.0
## 2184                                                 Action|War   2573    1.0
## 2185                Adventure|Animation|Children|Comedy|Fantasy   2573    3.0
## 2186                                              Drama|Romance   2573    1.0
## 2187                                          Drama|Romance|War   2553    5.0
## 2188                                                     Horror   2573    1.0
## 2189                           Action|Adventure|Sci-Fi|Thriller   2573    2.0
## 2190                              Drama|Fantasy|Mystery|Romance   2573    1.0
## 2191                                                     Horror   2573    1.0
## 2192                                      Crime|Sci-Fi|Thriller   2573    1.0
## 2193                                           Adventure|Sci-Fi   2573    4.0
## 2194                                  Adventure|Children|Comedy   2573    1.0
## 2195                                               Comedy|Crime   2610    3.0
## 2196                                           Adventure|Comedy   2610    2.0
## 2197                                             Comedy|Romance   2610    3.0
## 2198                                       Comedy|Drama|Romance   2675    5.0
## 2199                                      Action|Crime|Thriller   2675    4.0
## 2200                                     Action|Adventure|Drama   2675    4.0
## 2201                                               Comedy|Drama   2675    4.0
## 2202                                        Action|Comedy|Drama   2675    5.0
## 2203                                                Documentary   2675    5.0
## 2204                                                Crime|Drama   2675    5.0
## 2205                                            Horror|Thriller   2675    5.0
## 2206                                               Comedy|Crime   2675    4.0
## 2207                                Action|Crime|Drama|Thriller   2675    4.0
## 2208                                                      Drama   2675    5.0
## 2209                                                      Drama   2675    5.0
## 2210                                             Comedy|Romance   2675    4.0
## 2211                                    Action|Adventure|Sci-Fi   2675    4.0
## 2212                                  Action|Comedy|Crime|Drama   2675    4.0
## 2213                                         Comedy|Documentary   2675    4.0
## 2214                                            Musical|Romance   2675    5.0
## 2215                                            Action|Thriller   2675    5.0
## 2216                                     Drama|Mystery|Thriller   2675    4.0
## 2217                                              Drama|Romance   2675    4.0
## 2218                         Animation|Children|Fantasy|Musical   2675    5.0
## 2219                                  Animation|Children|Comedy   2675    4.0
## 2220                                             Drama|Thriller   2675    4.0
## 2221                                                      Drama   2675    4.0
## 2222                             Adventure|Comedy|Drama|Western   2675    4.0
## 2223                                Action|Adventure|Sci-Fi|War   2675    4.0
## 2224                                              Action|Horror   2675    5.0
## 2225                                              Drama|Romance   2675    5.0
## 2226                                            Crime|Film-Noir   2675    4.0
## 2227                                                      Drama   2675    3.0
## 2228                                                   Thriller   2675    5.0
## 2229                               Action|Comedy|Fantasy|Sci-Fi   2720    3.0
## 2230                                    Action|Adventure|Sci-Fi   2720    5.0
## 2231                                               Comedy|Crime   2720    5.0
## 2232                                                      Drama   2553    5.0
## 2233                                                      Drama   2553    4.0
## 2234                                                      Drama   2553    5.0
## 2235                                              Drama|Romance   2553    4.0
## 2236                               Crime|Drama|Mystery|Thriller   2553    2.0
## 2237                                                      Drama   2553    4.0
## 2238                                              Drama|Romance   2553    4.0
## 2239                                               Comedy|Drama   2553    5.0
## 2240                                        Action|Comedy|Drama   2553    4.0
## 2241                                                  Drama|War   2553    5.0
## 2242                                         Comedy|Crime|Drama   2553    4.0
## 2243                                             Action|Western   2566    4.0
## 2244                                       Action|Drama|Romance   2566    4.0
## 2245                                           Action|Drama|War   2566    5.0
## 2246                                      Action|Crime|Thriller   2566    4.0
## 2247                                               Action|Drama   2566    4.0
## 2248                                          Film-Noir|Mystery   2404    5.0
## 2249                                               Comedy|Crime   2404    4.0
## 2250                                                      Drama   2566    4.0
## 2251                                           Comedy|Drama|War   2404    3.0
## 2252                                                     Comedy   2404    4.0
## 2253                                         Animation|Children   2566    5.0
## 2254                                                      Drama   2515    4.0
## 2255                           Action|Adventure|Sci-Fi|Thriller   2404    3.0
## 2256                   Action|Adventure|Comedy|Romance|Thriller   2404    3.0
## 2257                                                     Comedy   2484    1.0
## 2258                                              Comedy|Sci-Fi   2484    2.0
## 2259                                               Drama|Horror   2484    1.0
## 2260                                  Animation|Children|Comedy   2475    5.0
## 2261                                             Comedy|Romance   2475    4.0
## 2262                               Comedy|Drama|Fantasy|Romance   2475    5.0
## 2263                                                Crime|Drama   2583    4.0
## 2264                                                      Drama   2583    3.0
## 2265                                               Comedy|Drama   2583    3.0
## 2266                                                      Drama   2583    3.0
## 2267                                             Comedy|Musical   2583    3.0
## 2268                                      Crime|Horror|Thriller   2404    4.0
## 2269                                               Comedy|Drama   2404    5.0
## 2270                               Crime|Drama|Romance|Thriller   2404    4.0
## 2271                               Crime|Drama|Romance|Thriller   2404    5.0
## 2272                                              Drama|Romance   2404    4.0
## 2273                           Crime|Film-Noir|Mystery|Thriller   2404    5.0
## 2274                                      Action|Crime|Thriller   2404    4.0
## 2275                                Comedy|Crime|Drama|Thriller   2404    5.0
## 2276                                       Comedy|Drama|Romance   2404    3.0
## 2277                                             Comedy|Fantasy   2404    5.0
## 2278                       Action|Crime|Mystery|Sci-Fi|Thriller   2404    5.0
## 2279                                   Comedy|Drama|Romance|War   2720    2.0
## 2280                  Adventure|Animation|Children|Comedy|Drama   2404    5.0
## 2281                                 Action|Romance|War|Western   2404    2.0
## 2282                                    Action|Adventure|Sci-Fi   2404    5.0
## 2283                                              Drama|Romance   2404    3.0
## 2284                                       Comedy|Drama|Romance   2404    3.0
## 2285                                     Comedy|Musical|Romance   2404    1.0
## 2286                                                      Drama   2675    4.0
## 2287                                              Drama|Romance   2675    4.0
## 2288                                     Horror|Sci-Fi|Thriller   2424    4.0
## 2289                                              Drama|Romance   2790    3.0
## 2290                                             Comedy|Romance   2299    5.0
## 2291                                          Drama|Romance|War   2583    4.0
## 2292                                        Adventure|Drama|War   2583    3.0
## 2293                                          Action|Sci-Fi|War   2583    2.0
## 2294                           Action|Adventure|Sci-Fi|Thriller   2583    3.0
## 2295                                                     Horror   2566    2.0
## 2296                                            Horror|Thriller   2566    4.0
## 2297                                            Horror|Thriller   2566    3.0
## 2298                               Crime|Drama|Romance|Thriller   2515    5.0
## 2299                                                Crime|Drama   2534    5.0
## 2300                                        Comedy|Crime|Horror   2534    4.0
## 2301                                            Crime|Film-Noir   2534    4.0
## 2302                             Crime|Mystery|Romance|Thriller   2534    5.0
## 2303                                                     Comedy   2534    5.0
## 2304                                               Comedy|Drama   2534    4.0
## 2305                                     Comedy|Musical|Romance   2534    4.0
## 2306                                                      Drama   2534    5.0
## 2307                                               Comedy|Drama   2534    5.0
## 2308                                               Comedy|Drama   2534    5.0
## 2309                                                      Drama   2534    4.0
## 2310                                                      Drama   2534    4.0
## 2311                                                      Drama   2534    2.0
## 2312                                                      Drama   2534    4.0
## 2313                                              Drama|Romance   2534    5.0
## 2314                                                      Drama   2534    4.0
## 2315                                                      Drama   2534    3.0
## 2316                                                      Drama   2534    4.0
## 2317                                             Comedy|Romance   2583    4.0
## 2318                                   Action|Adventure|Romance   2515    5.0
## 2319                                    Adventure|Drama|Western   2515    5.0
## 2320                              Action|Crime|Romance|Thriller   2534    4.0
## 2321                        Action|Crime|Drama|Mystery|Thriller   2534    3.0
## 2322                                              Drama|Romance   2515    4.0
## 2323                                              Drama|Romance   2515    4.0
## 2324                                       Comedy|Drama|Fantasy   2566    4.0
## 2325                           Action|Adventure|Sci-Fi|Thriller   2720    5.0
## 2326                                    Action|Adventure|Sci-Fi   2720    3.0
## 2327                                             Comedy|Romance   2189    4.0
## 2328                                                      Drama   2189    3.0
## 2329                   Action|Adventure|Fantasy|Horror|Thriller   2189    3.0
## 2330                                             Comedy|Romance   2189    2.0
## 2331                                            Action|Thriller   2189    2.0
## 2332                                Action|Crime|Drama|Thriller   2189    2.0
## 2333                                                Documentary   2189    4.0
## 2334                                              Drama|Romance   2404    1.0
## 2335                                               Action|Drama   2119    4.0
## 2336                                     Comedy|Fantasy|Romance   2127    4.0
## 2337                                    Drama|Film-Noir|Romance   2127    4.0
## 2338                                                     Comedy   2127    5.0
## 2339                                           Action|Adventure   2127    5.0
## 2340                                                      Drama   2127    5.0
## 2341                                           Action|Drama|War   2127    3.0
## 2342                                     Comedy|Fantasy|Romance   2127    5.0
## 2343                                             Comedy|Musical   2127    3.0
## 2344                                          Adventure|Fantasy   2127    3.0
## 2345                           Action|Adventure|Sci-Fi|Thriller   2127    5.0
## 2346                            Action|Adventure|Comedy|Musical   2127    3.0
## 2347                                Action|Crime|Drama|Thriller   2119    3.0
## 2348                                                      Drama   2119    4.0
## 2349                                                     Comedy   2119    2.0
## 2350                                             Comedy|Romance   2119    4.0
## 2351                  Animation|Children|Comedy|Musical|Romance   2119    4.0
## 2352                                            Children|Comedy   2180    4.0
## 2353                                                      Drama   2203    4.0
## 2354                                             Comedy|Romance   2180    4.0
## 2355                                          Drama|Romance|War   2203    4.0
## 2356                          Action|Adventure|Comedy|Drama|War   2203    4.0
## 2357                                       Drama|Romance|Sci-Fi   2203    3.0
## 2358                           Crime|Film-Noir|Mystery|Thriller   2242    4.0
## 2359                                                  Drama|War   2242    5.0
## 2360                                       Comedy|Drama|Romance   2242    5.0
## 2361                               Crime|Drama|Mystery|Thriller   2269    2.0
## 2362                                            Action|Thriller   2269    4.0
## 2363                Adventure|Fantasy|Film-Noir|Sci-Fi|Thriller   2269    4.0
## 2364                                    Action|Adventure|Sci-Fi   2269    2.0
## 2365                                                     Horror   2300    2.0
## 2366                                    Action|Adventure|Comedy   2269    3.0
## 2367                              Action|Horror|Sci-Fi|Thriller   2300    4.0
## 2368                                               Comedy|Drama   2242    5.0
## 2369                                              Horror|Sci-Fi   2300    4.0
## 2370                              Action|Adventure|Drama|Sci-Fi   2300    5.0
## 2371                                    Action|Adventure|Sci-Fi   2300    3.0
## 2372                                    Action|Adventure|Sci-Fi   2300    5.0
## 2373                              Action|Horror|Sci-Fi|Thriller   2300    3.0
## 2374                                  Action|Adventure|Thriller   2269    4.0
## 2375                                  Action|Adventure|Thriller   2269    5.0
## 2376                                                   Thriller   2343    3.0
## 2377                                  Action|Adventure|Thriller   2343    3.0
## 2378                              Action|Adventure|Comedy|Crime   2343    3.0
## 2379                                    Action|Adventure|Sci-Fi   2343    3.0
## 2380                                        Action|Drama|Sci-Fi   2343    4.0
## 2381                                   Action|Adventure|Romance   2343    3.0
## 2382                                     Comedy|Fantasy|Romance   2300    3.0
## 2383                            Action|Adventure|Comedy|Romance   2300    3.0
## 2384                                             Horror|Romance   2300    4.0
## 2385                                      Crime|Horror|Thriller   2384    4.0
## 2386                      Comedy|Drama|Fantasy|Romance|Thriller   2300    3.0
## 2387                                            Children|Comedy   2384    4.0
## 2388                                  Adventure|Fantasy|Romance   2300    2.0
## 2389                                      Drama|Fantasy|Romance   2300    4.0
## 2390                                                      Drama   2384    3.0
## 2391                           Crime|Film-Noir|Mystery|Thriller   2384    5.0
## 2392                                           Mystery|Thriller   2384    5.0
## 2393                                       Action|Drama|Romance   2300    5.0
## 2394                                                Crime|Drama   2397    5.0
## 2395                                       Comedy|Drama|Romance   2397    4.0
## 2396                                 Adventure|Mystery|Thriller   2384    4.0
## 2397                                                     Comedy   2392    3.0
## 2398                                       Comedy|Drama|Romance   2392    3.0
## 2399                                     Adventure|Comedy|Drama   2300    5.0
## 2400                                                Documentary   2384    4.0
## 2401                                             Comedy|Romance   2397    5.0
## 2402                           Crime|Film-Noir|Mystery|Thriller   2397    4.0
## 2403                                                Crime|Drama   2392    4.0
## 2404                                       Action|Crime|Romance   2397    2.0
## 2405                                 Film-Noir|Mystery|Thriller   2397    4.0
## 2406                                                      Drama   2392    3.0
## 2407                                   Action|Adventure|Fantasy   2300    5.0
## 2408                                    Action|Adventure|Sci-Fi   2392    4.0
## 2409                   Action|Adventure|Comedy|Romance|Thriller   2300    5.0
## 2410                                                  Drama|War   2392    5.0
## 2411                                                Documentary   2397    3.0
## 2412                                                      Drama   2392    5.0
## 2413                                   Action|Adventure|Fantasy   2300    3.0
## 2414                                             Comedy|Romance   2397    5.0
## 2415                                  Adventure|Children|Comedy   2300    5.0
## 2416                                         Film-Noir|Thriller   2397    5.0
## 2417                                Action|Adventure|Comedy|War   2300    3.0
## 2418                                       Comedy|Drama|Romance   2397    5.0
## 2419                                             Comedy|Romance   2397    3.0
## 2420                                             Drama|Thriller   2397    4.0
## 2421                                              Action|Horror   2397    4.0
## 2422                       Adventure|Animation|Children|Musical   2300    3.0
## 2423                                         Animation|Children   2300    3.0
## 2424                                                     Comedy   2397    4.0
## 2425                                         Animation|Children   2300    4.0
## 2426                                         Animation|Children   2300    4.0
## 2427                              Drama|Fantasy|Horror|Thriller   2300    3.0
## 2428                                     Comedy|Horror|Thriller   2300    3.0
## 2429                                            Horror|Thriller   2300    4.0
## 2430                                                     Horror   2300    3.0
## 2431                                                     Horror   2300    3.0
## 2432                                              Horror|Sci-Fi   2300    2.0
## 2433                                     Comedy|Fantasy|Romance   2485    2.0
## 2434                                            Horror|Thriller   2451    2.0
## 2435                                 Adventure|Mystery|Thriller   2485    3.0
## 2436                                    Adventure|Comedy|Sci-Fi   2467    3.0
## 2437                                              Drama|Romance   2485    4.0
## 2438                                                 Comedy|War   2485    4.0
## 2439                                                  Drama|War   2485    5.0
## 2440                                                     Comedy   2485    2.0
## 2441                                                     Comedy   2485    3.0
## 2442                                                     Comedy   2485    3.0
## 2443                                       Crime|Drama|Thriller   2467    3.0
## 2444                                                     Comedy   2485    4.0
## 2445                                                     Comedy   2485    3.0
## 2446                                                Crime|Drama   2467    3.0
## 2447                                           Adventure|Comedy   2485    4.0
## 2448                                     Drama|Mystery|Thriller   2451    4.0
## 2449                                                     Comedy   2485    3.0
## 2450                                             Comedy|Romance   2467    2.0
## 2451                               Comedy|Drama|Fantasy|Romance   2467    1.0
## 2452                                                     Comedy   2503    1.0
## 2453                                                     Horror   2451    3.0
## 2454                                    Action|Adventure|Sci-Fi   2467    4.0
## 2455                                    Action|Adventure|Horror   2485    3.0
## 2456                                           Adventure|Sci-Fi   2485    4.0
## 2457                              Comedy|Fantasy|Romance|Sci-Fi   2467    1.0
## 2458                                   Comedy|Drama|Romance|War   2467    4.0
## 2459                                     Action|Adventure|Drama   2503    1.0
## 2460                                                      Drama   2503    5.0
## 2461                                                      Drama   2485    4.0
## 2462                                                      Drama   2451    1.0
## 2463                           Crime|Film-Noir|Mystery|Thriller   2503    2.0
## 2464                                       Comedy|Horror|Sci-Fi   2516    3.0
## 2465                             Action|Adventure|Drama|Romance   2516    2.0
## 2466                                                      Drama   2516    2.0
## 2467                                             Drama|Thriller   2516    1.0
## 2468                              Comedy|Crime|Mystery|Thriller   2485    4.0
## 2469                                                  Drama|War   2485    5.0
## 2470                                                 Comedy|War   2503    3.0
## 2471                                           Action|Drama|War   2503    2.0
## 2472                                     Crime|Mystery|Thriller   2503    4.0
## 2473                                             Comedy|Romance   2503    4.0
## 2474                                                    Western   2485    5.0
## 2475                                                  Drama|War   2503    2.0
## 2476                                          Drama|Romance|War   2503    5.0
## 2477                                                     Comedy   2503    3.0
## 2478                                             Comedy|Romance   2503    4.0
## 2479                                              Drama|Romance   2503    5.0
## 2480                                                     Comedy   2567    4.0
## 2481                                   Comedy|Drama|Romance|War   2554    3.0
## 2482                                                     Comedy   2554    3.0
## 2483                 Adventure|Animation|Comedy|Fantasy|Musical   2503    4.0
## 2484                                             Comedy|Romance   2554    3.0
## 2485                                     Action|Sci-Fi|Thriller   2554    4.0
## 2486                                             Comedy|Romance   2503    3.0
## 2487                   Animation|Children|Drama|Fantasy|Musical   2503    5.0
## 2488                                     Action|Adventure|Drama   2567    4.0
## 2489             Action|Adventure|Comedy|Fantasy|Sci-Fi|Western   2567    3.0
## 2490                Adventure|Animation|Children|Comedy|Fantasy   2567    5.0
## 2491                                       Comedy|Drama|Romance   2503    2.0
## 2492                           Crime|Film-Noir|Mystery|Thriller   2567    4.0
## 2493                               Action|Crime|Sci-Fi|Thriller   2451    5.0
## 2494                                                      Drama   2503    5.0
## 2495                                       Comedy|Drama|Romance   2591    5.0
## 2496                                               Drama|Sci-Fi   2503    3.0
## 2497                                       Comedy|Drama|Romance   2503    4.0
## 2498                                     Comedy|Musical|Romance   2503    4.0
## 2499                                                Crime|Drama   2567    4.0
## 2500                                   Animation|Children|Drama   2467    2.0
## 2501                                                      Drama   2567    4.0
## 2502                                              Drama|Romance   2601    4.0
## 2503                                   Crime|Film-Noir|Thriller   2611    3.0
## 2504                                                   Thriller   2611    2.0
## 2505                                         Animation|Children   2467    4.0
## 2506                         Animation|Children|Fantasy|Musical   2467    2.0
## 2507                                                     Horror   2503    3.0
## 2508                         Animation|Children|Fantasy|Musical   2467    1.0
## 2509                                              Drama|Romance   2567    4.0
## 2510                                         Adventure|Children   2467    2.0
## 2511                                            Children|Comedy   2467    2.0
## 2512                                   Action|Adventure|Western   2567    4.0
## 2513                                                Crime|Drama   2611    5.0
## 2514                                                 Comedy|War   2611    5.0
## 2515                               Crime|Drama|Romance|Thriller   2467    4.0
## 2516                             Drama|Mystery|Romance|Thriller   2611    5.0
## 2517                                    Action|Adventure|Sci-Fi   2591    4.0
## 2518                                    Children|Comedy|Romance   2503    4.0
## 2519                                    Action|Adventure|Sci-Fi   2622    5.0
## 2520                             Action|Adventure|Drama|Western   2611    5.0
## 2521                                                      Drama   2503    2.0
## 2522                                             Comedy|Musical   2467    2.0
## 2523                                                    Western   2611    4.0
## 2524                           Action|Adventure|Children|Comedy   2622    4.0
## 2525                                                      Drama   2622    4.0
## 2526                                             Crime|Thriller   2622    3.0
## 2527                                               Comedy|Drama   2467    2.0
## 2528                                                     Comedy   2503    4.0
## 2529                                               Action|Crime   2622    1.0
## 2530                                                      Drama   2503    3.0
## 2531                                       Comedy|Drama|Romance   2467    2.0
## 2532                                                     Comedy   2467    2.0
## 2533                                                      Drama   2503    3.0
## 2534                                   Adventure|Comedy|Romance   2467    2.0
## 2535                                         Comedy|Crime|Drama   2127    4.0
## 2536                     Action|Adventure|Comedy|Fantasy|Horror   2622    5.0
## 2537                                    Action|Adventure|Sci-Fi   2451    3.0
## 2538                                                Documentary   2503    4.0
## 2539                                                      Drama   2127    4.0
## 2540                                                      Drama   2467    4.0
## 2541                                           Adventure|Sci-Fi   2451    1.0
## 2542                                    Children|Comedy|Romance   2503    4.0
## 2543                                           Mystery|Thriller   2467    3.0
## 2544                                                      Drama   2503    3.0
## 2545                           Action|Adventure|Children|Comedy   2601    3.0
## 2546                                          Drama|Romance|War   2127    4.0
## 2547                           Action|Adventure|Sci-Fi|Thriller   2503    1.0
## 2548                   Animation|Children|Drama|Fantasy|Musical   2127    3.0
## 2549                                                      Drama   2127    4.0
## 2550                                               Comedy|Crime   2127    3.0
## 2551                                        Action|Drama|Sci-Fi   2503    2.0
## 2552                                     Comedy|Fantasy|Romance   2503    4.0
## 2553                                             Comedy|Romance   2503    4.0
## 2554                                      Action|Drama|Thriller   2127    3.0
## 2555                               Crime|Drama|Mystery|Thriller   2127    3.0
## 2556                                  Action|Adventure|Thriller   2127    3.0
## 2557                                   Animation|Children|Drama   2127    2.0
## 2558                                                     Sci-Fi   2503    2.0
## 2559                                  Action|Adventure|Thriller   2503    4.0
## 2560                                                      Drama   2127    3.0
## 2561                                                  Drama|War   2127    3.0
## 2562                                    Action|Adventure|Sci-Fi   2503    4.0
## 2563                                               Drama|Horror   2127    2.0
## 2564                                              Action|Sci-Fi   2127    1.0
## 2565                                                      Drama   2503    3.0
## 2566                                  Action|Comedy|Crime|Drama   2127    3.0
## 2567                            Action|Adventure|Crime|Thriller   2503    2.0
## 2568                                               Comedy|Drama   2127    3.0
## 2569                                Action|Crime|Drama|Thriller   2127    3.0
## 2570                                  Action|Adventure|Thriller   2127    4.0
## 2571                           Action|Adventure|Sci-Fi|Thriller   2127    5.0
## 2572                                    Action|Adventure|Sci-Fi   2127    5.0
## 2573                                   Action|Adventure|Romance   2127    2.0
## 2574                                                     Comedy   2684    4.0
## 2575                                                     Comedy   2684    5.0
## 2576                                       Comedy|Drama|Romance   2684    3.0
## 2577                                       Comedy|Drama|Romance   2684    3.0
## 2578                                  Action|Adventure|Thriller   2548    1.0
## 2579                                             Comedy|Romance   2684    2.0
## 2580                                           Action|Drama|War   2548    3.0
## 2581                                                     Horror   2548    2.0
## 2582                                             Drama|Thriller   2548    2.0
## 2583                                             Comedy|Romance   2684    3.0
## 2584                                                     Comedy   2684    4.0
## 2585                                       Comedy|Drama|Romance   2684    4.0
## 2586                                            Comedy|Thriller   2684    4.0
## 2587                                                Crime|Drama   2548    5.0
## 2588                                                  Drama|War   2548    3.0
## 2589                                             Drama|Thriller   2696    4.0
## 2590                                               Comedy|Drama   2708    4.0
## 2591                                      Action|Comedy|Romance   2684    3.0
## 2592                                               Comedy|Drama   2684    3.0
## 2593                                    Action|Adventure|Sci-Fi   2708    5.0
## 2594                           Crime|Film-Noir|Mystery|Thriller   2684    5.0
## 2595                                     Action|Sci-Fi|Thriller   2696    5.0
## 2596                            Animation|Children|Comedy|Crime   2708    5.0
## 2597                    Action|Adventure|Comedy|Fantasy|Romance   2721    5.0
## 2598                                     Action|Sci-Fi|Thriller   2696    5.0
## 2599                                      Drama|Sci-Fi|Thriller   2696    5.0
## 2600                                        Action|Crime|Sci-Fi   2708    5.0
## 2601                  Adventure|Drama|Film-Noir|Sci-Fi|Thriller   2721    5.0
## 2602                              Action|Horror|Sci-Fi|Thriller   2721    4.0
## 2603                                     Horror|Sci-Fi|Thriller   2721    4.0
## 2604                              Action|Horror|Sci-Fi|Thriller   2721    5.0
## 2605                                               Comedy|Drama   2708    4.0
## 2606                                            Sci-Fi|Thriller   2721    3.0
## 2607                                                     Horror   2721    5.0
## 2608                                    Fantasy|Horror|Thriller   2708    2.0
## 2609                                              Comedy|Sci-Fi   2708    4.0
## 2610                 Action|Crime|Drama|Mystery|Sci-Fi|Thriller   2708    5.0
## 2611                           Action|Adventure|Sci-Fi|Thriller   2745    4.0
## 2612                                   Action|Adventure|Western   2721    4.0
## 2613                              Action|Horror|Sci-Fi|Thriller   2708    4.0
## 2614                                                      Drama   2745    4.0
## 2615                                              Action|Sci-Fi   2708    3.0
## 2616                                     Horror|Sci-Fi|Thriller   2708    3.0
## 2617                           Action|Adventure|Sci-Fi|Thriller   2708    3.0
## 2618                                              Horror|Sci-Fi   2708    4.0
## 2619                                             Comedy|Fantasy   2745    3.0
## 2620                                                  Drama|War   2745    3.0
## 2621                                                      Drama   2745    5.0
## 2622                                                Crime|Drama   2745    4.0
## 2623                                           Action|Drama|War   2745    5.0
## 2624                                      Action|Drama|Thriller   2745    4.0
## 2625                                               Comedy|Crime   2764    5.0
## 2626                               Comedy|Drama|Fantasy|Romance   2764    5.0
## 2627                                      Action|Comedy|Western   2764    4.0
## 2628                        Adventure|Animation|Children|Comedy   2764    4.0
## 2629                             Drama|Mystery|Romance|Thriller   2775    4.0
## 2630                                            Adventure|Drama   2745    5.0
## 2631                                               Comedy|Drama   2745    4.0
## 2632                                               Comedy|Crime   2764    4.0
## 2633                                    Comedy|Mystery|Thriller   2775    4.0
## 2634                                                Documentary   2745    4.0
## 2635                                       Action|Drama|Mystery   2775    4.0
## 2636                                       Crime|Drama|Thriller   2548    3.0
## 2637                                               Action|Crime   2548    3.0
## 2638                                     Drama|Mystery|Thriller   2745    2.0
## 2639                                      Crime|Drama|Film-Noir   2548    3.0
## 2640                                               Comedy|Drama   2764    5.0
## 2641                                  Action|Comedy|Crime|Drama   2548    3.0
## 2642                            Children|Comedy|Fantasy|Musical   2764    3.0
## 2643                            Action|Adventure|Crime|Thriller   2548    4.0
## 2644                                             Comedy|Musical   2764    3.0
## 2645                                      Action|Comedy|Western   2775    5.0
## 2646                                           Mystery|Thriller   2745    3.0
## 2647                                  Action|Adventure|Thriller   2745    4.0
## 2648                                            Action|Thriller   2745    3.0
## 2649                            Action|Adventure|Crime|Thriller   2548    2.0
## 2650                Adventure|Animation|Children|Comedy|Musical   2764    5.0
## 2651                                   Adventure|Comedy|Western   2775    3.0
## 2652                                        Crime|Drama|Western   2775    3.0
## 2653                                             Comedy|Romance   2745    4.0
## 2654                  Animation|Children|Comedy|Musical|Romance   2775    4.0
## 2655                                            Musical|Romance   2775    5.0
## 2656                    Action|Adventure|Drama|Fantasy|Thriller   2548    4.0
## 2657                                              Drama|Romance   2745    3.0
## 2658         Adventure|Animation|Children|Comedy|Fantasy|Sci-Fi   2745    3.0
## 2659                                           Action|Adventure   2745    3.0
## 2660                                                     Comedy   2764    5.0
## 2661                                                Documentary   2775    4.0
## 2662                                           Adventure|Comedy   2764    5.0
## 2663                                                     Comedy   2764    4.0
## 2664                                                Documentary   2775    4.0
## 2665                                              Comedy|Horror   2764    4.0
## 2666                                  Action|Comedy|Crime|Drama   2764    5.0
## 2667                   Adventure|Children|Comedy|Fantasy|Sci-Fi   2764    4.0
## 2668                                                Crime|Drama   2775    3.0
## 2669                                Action|Crime|Drama|Thriller   2775    5.0
## 2670                                              Comedy|Sci-Fi   2764    5.0
## 2671                                              Drama|Fantasy   2775    5.0
## 2672                                    Crime|Film-Noir|Mystery   2775    5.0
## 2673                                                     Comedy   2764    4.0
## 2674                                        Adventure|Drama|War   2775    4.0
## 2675                        Action|Comedy|Fantasy|Horror|Sci-Fi   2764    4.0
## 2676                                                     Comedy   2764    5.0
## 2677                                                     Comedy   2764    2.0
## 2678                             Comedy|Horror|Romance|Thriller   2764    4.0
## 2679                                                     Comedy   2764    4.0
## 2680                                                     Comedy   2764    5.0
## 2681                                   Adventure|Comedy|Western   2764    3.0
## 2682                                            Children|Comedy   2764    4.0
## 2683                                                Crime|Drama   2798    4.0
## 2684                                                  Drama|War   2798    5.0
## 2685                                             Drama|Thriller   2798    5.0
## 2686                               Comedy|Drama|Fantasy|Romance   2798    3.0
## 2687                                               Comedy|Drama   2798    5.0
## 2688                                         Comedy|Crime|Drama   2798    4.0
## 2689                                               Comedy|Drama   2798    4.0
## 2690                                       Comedy|Drama|Romance   2798    5.0
## 2691                                               Comedy|Drama   2798    3.0
## 2692                                                     Comedy   2798    5.0
## 2693                                             Comedy|Romance   2798    1.0
## 2694                                             Comedy|Fantasy   2798    4.0
## 2695                                                     Comedy   2798    4.0
## 2696                                              Comedy|Sci-Fi   2798    4.0
## 2697                                Comedy|Crime|Drama|Thriller   2798    5.0
## 2698                                                      Drama   2397    3.0
## 2699                           Crime|Film-Noir|Mystery|Thriller   2821    3.0
## 2700                                Action|Crime|Drama|Thriller   2821    4.0
## 2701                                           Action|Drama|War   2821    2.0
## 2702                                             Comedy|Romance   2397    4.0
## 2703                                              Drama|Romance   2397    4.0
## 2704                                              Drama|Romance   2397    4.0
## 2705                                      Crime|Horror|Thriller   2828    5.0
## 2706                                                      Drama   2828    3.0
## 2707                               Comedy|Drama|Fantasy|Romance   2828    4.0
## 2708                                             Comedy|Romance   2828    3.0
## 2709                                      Drama|Mystery|Romance   2828    2.0
## 2710                                           Adventure|Comedy   2821    4.0
## 2711                                             Comedy|Romance   2821    4.0
## 2712                                   Adventure|Comedy|Western   2821    5.0
## 2713                                             Comedy|Western   2821    5.0
## 2714                                      Action|Comedy|Western   2821    5.0
## 2715                 Animation|Children|Fantasy|Musical|Romance   2821    2.0
## 2716                  Animation|Children|Comedy|Musical|Romance   2821    4.0
## 2717                                                      Drama   2828    2.0
## 2718                                              Drama|Musical   2828    3.0
## 2719                                                      Drama   2828    3.0
## 2720                                       Comedy|Drama|Romance   2828    5.0
## 2721                                      Comedy|Drama|Thriller   2828    4.0
## 2722                                                      Drama   2828    3.0
## 2723                                             Comedy|Romance   2821    5.0
## 2724                                               Comedy|Drama   2821    1.0
## 2725                                               Comedy|Drama   2821    3.0
## 2726                                                     Comedy   2821    4.0
## 2727                                             Comedy|Romance   2821    3.0
## 2728                                               Comedy|Drama   2821    1.0
## 2729                                                     Comedy   2821    5.0
## 2730                                             Comedy|Romance   2821    4.0
## 2731                                                     Comedy   2821    3.0
## 2732                                               Comedy|Drama   2821    5.0
## 2733                                      Action|Comedy|Romance   2821    5.0
## 2734                                                     Comedy   2821    1.0
## 2735                                       Comedy|Drama|Fantasy   2821    4.0
## 2736                                              Comedy|Horror   2821    3.0
## 2737                                                     Comedy   2821    2.0
## 2738                                             Comedy|Romance   2821    2.0
## 2739                                               Comedy|Drama   2821    3.0
## 2740                                                     Comedy   2821    4.0
## 2741                                              Action|Comedy   2821    2.0
## 2742                                              Comedy|Horror   2821    4.0
## 2743                                             Comedy|Fantasy   2821    1.0
## 2744                                                     Comedy   2821    1.0
## 2745                                                     Comedy   2821    2.0
## 2746                                                     Comedy   2821    3.0
## 2747                                     Action|Horror|Thriller   2821    3.0
## 2748                                              Action|Comedy   2821    4.0
## 2749                                           Action|Adventure   2821    4.0
## 2750                                      Action|Crime|Thriller   2821    2.0
## 2751                                  Action|Adventure|Thriller   2821    5.0
## 2752                                                     Action   2821    4.0
## 2753                                  Action|Adventure|Thriller   2821    3.0
## 2754                                      Action|Crime|Thriller   2821    2.0
## 2755                                            Action|Thriller   2821    4.0
## 2756                                                 Action|War   2821    3.0
## 2757                                           Action|Adventure   2821    2.0
## 2758                              Action|Crime|Mystery|Thriller   2821    2.0
## 2759                                     Action|Sci-Fi|Thriller   2821    3.0
## 2760                                   Action|Adventure|Mystery   2821    3.0
## 2761                                 Adventure|Children|Fantasy   2821    3.0
## 2762                                         Comedy|Crime|Drama   2821    5.0
## 2763                                                Crime|Drama   2821    3.0
## 2764                                            Crime|Film-Noir   2821    4.0
## 2765                                               Drama|Horror   2821    2.0
## 2766                                                   Thriller   2821    4.0
## 2767                            Action|Adventure|Mystery|Sci-Fi   2821    1.0
## 2768                                                     Comedy   2857    3.0
## 2769                         Adventure|Children|Fantasy|Musical   2857    4.0
## 2770                                             Comedy|Romance   2857    2.0
## 2771                                             Comedy|Romance   2876    4.0
## 2772                                       Action|Comedy|Sci-Fi   2720    2.0
## 2773                                                  Drama|War   2720    5.0
## 2774                                                Crime|Drama   2720    5.0
## 2775                                               Comedy|Crime   2720    5.0
## 2776                                       Crime|Drama|Thriller   2601    4.0
## 2777                                     Comedy|Horror|Thriller   2601    4.0
## 2778                                     Comedy|Horror|Thriller   2601    2.0
## 2779                                           Action|Adventure   2601    4.0
## 2780                                                  Drama|War   2601    5.0
## 2781                                  Animation|Children|Comedy   2857    5.0
## 2782                                                Crime|Drama   2857    4.0
## 2783                 Adventure|Animation|Children|Comedy|Sci-Fi   2857    5.0
## 2784                                      Comedy|Fantasy|Sci-Fi   2764    5.0
## 2785                                             Crime|Thriller   2857    2.0
## 2786                                               Comedy|Drama   2720    3.0
## 2787                                               Comedy|Drama   2720    5.0
## 2788                                                      Drama   2720    4.0
## 2789                                               Comedy|Drama   2720    4.0
## 2790                                       Comedy|Drama|Romance   2720    5.0
## 2791                                   Adventure|Children|Drama   2720    5.0
## 2792                                             Crime|Thriller   2397    4.0
## 2793                                            Children|Comedy   2720    3.0
## 2794                                            Children|Comedy   2720    5.0
## 2795                                Action|Comedy|Crime|Fantasy   2269    3.0
## 2796                                        Documentary|Musical   2720    4.0
## 2797                             Drama|Mystery|Romance|Thriller   2720    5.0
## 2798                                                      Drama   2720    1.0
## 2799                                  Action|Adventure|Thriller   2720    2.0
## 2800                                    Action|Adventure|Comedy   2720    1.0
## 2801                                   Crime|Film-Noir|Thriller   2119    4.0
## 2802                       Crime|Drama|Fantasy|Romance|Thriller   2119    3.0
## 2803                Adventure|Animation|Children|Comedy|Musical   2119    4.0
## 2804                                              Action|Comedy   2591    4.0
## 2805                                             Comedy|Romance   2591    4.0
## 2806                                           Comedy|Drama|War   2503    3.0
## 2807                                                      Drama   2503    4.0
## 2808                                                  Drama|War   2503    3.0
## 2809                                                      Drama   2503    3.0
## 2810                                                   Thriller   2503    2.0
## 2811                                                      Drama   2503    4.0
## 2812                                              Drama|Romance   2503    4.0
## 2813                                   Adventure|Comedy|Fantasy   2424    5.0
## 2814                                                     Comedy   2583    3.0
## 2815                                                     Comedy   2857    4.0
## 2816                  Adventure|Drama|Film-Noir|Sci-Fi|Thriller   2467    3.0
## 2817                                    Action|Adventure|Comedy   2467    3.0
## 2818                                                     Comedy   2467    3.0
## 2819                                            Horror|Thriller   2467    5.0
## 2820                                       Comedy|Drama|Fantasy   2828    5.0
## 2821                                                     Comedy   2828    4.0
## 2822                                               Comedy|Drama   2828    5.0
## 2823                                               Comedy|Drama   2828    5.0
## 2824                                       Comedy|Drama|Romance   2828    3.0
## 2825                                      Action|Comedy|Romance   2828    3.0
## 2826                                                     Comedy   2828    3.0
## 2827                                                 Comedy|War   2828    3.0
## 2828                                    Action|Adventure|Comedy   2828    5.0
## 2829                                            Children|Comedy   2828    2.0
## 2830                                                     Comedy   2828    2.0
## 2831                              Action|Comedy|Horror|Thriller   2828    3.0
## 2832                                               Comedy|Drama   2828    3.0
## 2833                                                     Comedy   2828    2.0
## 2834                                   Adventure|Comedy|Musical   2828    2.0
## 2835                                         Comedy|Crime|Drama   2828    2.0
## 2836                            Children|Comedy|Fantasy|Musical   2828    3.0
## 2837                   Animation|Children|Drama|Fantasy|Musical   2828    4.0
## 2838                                 Adventure|Children|Fantasy   2828    3.0
## 2839                                           Mystery|Thriller   2828    4.0
## 2840                             Fantasy|Horror|Mystery|Romance   2573    3.0
## 2841                                               Drama|Sci-Fi   2573    4.0
## 2842                                                      Drama   2484    4.0
## 2843                                                      Drama   2484    4.0
## 2844                                      Drama|Musical|Romance   2484    4.0
## 2845                                                      Drama   2601    4.0
## 2846                                  Action|Adventure|Thriller   2601    3.0
## 2847                           Adventure|Animation|Comedy|Crime   2857    2.0
## 2848                                Action|Crime|Drama|Thriller   2828    3.0
## 2849                                              Comedy|Horror   2828    2.0
## 2850                                Action|Crime|Drama|Thriller   2467    3.0
## 2851                                               Comedy|Drama   2467    2.0
## 2852                                               Comedy|Drama   2467    3.0
## 2853                                             Comedy|Romance   2467    2.0
## 2854                                             Comedy|Romance   2467    2.0
## 2855                    Action|Adventure|Horror|Sci-Fi|Thriller   2467    1.0
## 2856                                            Sci-Fi|Thriller   2467    2.0
## 2857                                                Documentary   2467    2.0
## 2858                                                     Comedy   2467    3.0
## 2859                                                     Comedy   2467    1.0
## 2860                                               Comedy|Drama   2467    2.0
## 2861                                                   Thriller   2467    2.0
## 2862                                                      Drama   2467    3.0
## 2863                                               Comedy|Drama   2720    4.0
## 2864                                                Crime|Drama   2720    2.0
## 2865                                                      Drama   2720    3.0
## 2866                                                      Drama   2720    4.0
## 2867                                                      Drama   2720    3.0
## 2868                                                      Drama   2720    4.0
## 2869                                     Action|Sci-Fi|Thriller   2720    3.0
## 2870                                                     Comedy   2720    4.0
## 2871                                                      Drama   2503    4.0
## 2872                                    Action|Adventure|Sci-Fi   2114    4.0
## 2873                                                Crime|Drama   2114    3.0
## 2874                                                      Drama   2114    3.0
## 2875                                                      Drama   2114    5.0
## 2876                                                      Drama   2134    2.0
## 2877                                           Action|Drama|War   2156    5.0
## 2878                                             Comedy|Mystery   2146    3.0
## 2879                                 Film-Noir|Mystery|Thriller   2146    5.0
## 2880                                    Action|Adventure|Sci-Fi   2156    5.0
## 2881                                                      Drama   2156    5.0
## 2882                              Comedy|Crime|Mystery|Thriller   2146    3.0
## 2883                                  Action|Adventure|Thriller   2156    5.0
## 2884                                                  Drama|War   2146    4.0
## 2885                                                      Drama   2146    4.0
## 2886                                    Action|Adventure|Sci-Fi   2156    4.0
## 2887                                      Crime|Horror|Thriller   2146    4.0
## 2888                                                      Drama   2146    5.0
## 2889                                 Adventure|Mystery|Thriller   2146    5.0
## 2890                                       Comedy|Drama|Romance   2156    3.0
## 2891                                                Crime|Drama   2146    4.0
## 2892                                                     Comedy   2156    3.0
## 2893                                             Comedy|Romance   2156    3.0
## 2894                                                     Comedy   2156    2.0
## 2895                Adventure|Animation|Children|Comedy|Fantasy   2156    4.0
## 2896                       Crime|Drama|Fantasy|Romance|Thriller   2146    4.0
## 2897                                    Adventure|Comedy|Sci-Fi   2156    5.0
## 2898                                                     Comedy   2156    5.0
## 2899                                      Drama|Horror|Thriller   2146    5.0
## 2900                                           Action|Drama|War   2156    5.0
## 2901                                                      Drama   2197    5.0
## 2902                                               Comedy|Drama   2210    3.0
## 2903                                             Comedy|Romance   2210    3.0
## 2904                                      Crime|Horror|Thriller   2210    3.0
## 2905                         Action|Comedy|Crime|Drama|Thriller   2227    2.0
## 2906                               Comedy|Drama|Fantasy|Romance   2227    4.0
## 2907                 Animation|Children|Fantasy|Musical|Romance   2227    5.0
## 2908  Adventure|Animation|Children|Comedy|Crime|Fantasy|Mystery   2227    5.0
## 2909                Adventure|Animation|Children|Comedy|Musical   2227    5.0
## 2910                                           Animation|Sci-Fi   2227    5.0
## 2911                   Action|Adventure|Animation|Horror|Sci-Fi   2227    5.0
## 2912                        Adventure|Animation|Children|Sci-Fi   2227    4.0
## 2913                                           Action|Adventure   2227    5.0
## 2914                                 Action|Adventure|Drama|War   2227    4.0
## 2915                                  Action|Adventure|Thriller   2227    5.0
## 2916                                            Adventure|Drama   2227    4.0
## 2917                                   Action|Adventure|Romance   2227    5.0
## 2918                                Action|Adventure|Comedy|War   2227    3.0
## 2919                                    Action|Adventure|Sci-Fi   2227    5.0
## 2920                                  Action|Adventure|Thriller   2227    3.0
## 2921                              Action|Horror|Sci-Fi|Thriller   2227    5.0
## 2922                                     Comedy|Horror|Thriller   2227    5.0
## 2923                                       Action|Horror|Sci-Fi   2227    4.0
## 2924                                                     Horror   2227    4.0
## 2925                                              Comedy|Horror   2227    4.0
## 2926                                                     Horror   2227    4.0
## 2927                        Action|Comedy|Fantasy|Horror|Sci-Fi   2227    4.0
## 2928                                            Horror|Thriller   2227    3.0
## 2929                                                      Drama   2227    5.0
## 2930                                              Drama|Romance   2275    4.0
## 2931                                            Crime|Film-Noir   2275    5.0
## 2932                                                      Drama   2275    5.0
## 2933                                                  Drama|War   2275    4.0
## 2934                                                      Drama   2275    4.0
## 2935                                           Comedy|Drama|War   2275    5.0
## 2936                                    Adventure|Comedy|Sci-Fi   2275    5.0
## 2937                               Crime|Drama|Romance|Thriller   2275    4.0
## 2938                                                   Thriller   2275    5.0
## 2939                                                      Drama   2275    5.0
## 2940                                  Action|Adventure|Thriller   2275    4.0
## 2941                                       Comedy|Drama|Romance   2290    3.0
## 2942                                                     Comedy   2275    5.0
## 2943                                             Comedy|Romance   2275    4.0
## 2944                                       Crime|Drama|Thriller   2275    4.0
## 2945                                            Action|Thriller   2275    4.0
## 2946                                               Comedy|Drama   2290    5.0
## 2947                                   Comedy|Drama|Romance|War   2275    1.0
## 2948                                                      Drama   2298    1.0
## 2949                                               Comedy|Drama   2275    4.0
## 2950                                                      Drama   2275    4.0
## 2951                                                      Drama   2290    5.0
## 2952                                                     Comedy   2275    4.0
## 2953                                                      Drama   2290    5.0
## 2954                                                      Drama   2290    5.0
## 2955                                    Action|Adventure|Comedy   2298    4.0
## 2956                                            Action|Thriller   2298    4.0
## 2957                                                      Drama   2290    5.0
## 2958                                     Crime|Mystery|Thriller   2305    3.0
## 2959                                           Action|Drama|War   2305    5.0
## 2960                         Animation|Children|Fantasy|Musical   2305    4.0
## 2961                                                      Drama   2305    3.0
## 2962                                   Animation|Comedy|Musical   2305    4.0
## 2963                                               Action|Drama   2305    3.0
## 2964                                                      Drama   2275    4.0
## 2965                                              Drama|Romance   2305    2.0
## 2966                                             Comedy|Romance   2305    3.0
## 2967                                             Comedy|Romance   2275    3.0
## 2968                                      Comedy|Sci-Fi|Western   2275    2.0
## 2969                                             Comedy|Romance   2275    5.0
## 2970                                       Comedy|Drama|Fantasy   2305    5.0
## 2971                Adventure|Animation|Children|Comedy|Fantasy   2305    5.0
## 2972                                                      Drama   2305    5.0
## 2973                                                     Comedy   2275    3.0
## 2974                                              Drama|Musical   2275    4.0
## 2975                                         Adventure|Children   2275    5.0
## 2976                                            Horror|Thriller   2305    4.0
## 2977                                                  Drama|War   2305    5.0
## 2978                                     Action|Sci-Fi|Thriller   2305    4.0
## 2979                                    Action|Romance|Thriller   2298    4.0
## 2980                                             Comedy|Musical   2305    5.0
## 2981                                       Crime|Drama|Thriller   2305    4.0
## 2982                       Crime|Drama|Fantasy|Romance|Thriller   2305    5.0
## 2983                                                  Drama|War   2318    4.0
## 2984                                                      Drama   2298    5.0
## 2985                                             Comedy|Romance   2318    5.0
## 2986                                                      Drama   2305    4.0
## 2987                                Comedy|Crime|Drama|Thriller   2318    5.0
## 2988                                     Drama|Mystery|Thriller   2298    4.0
## 2989                                               Comedy|Drama   2318    3.0
## 2990                    Action|Adventure|Comedy|Fantasy|Mystery   2318    3.0
## 2991                                  Action|Adventure|Thriller   2298    5.0
## 2992                                  Action|Adventure|Thriller   2298    4.0
## 2993                   Action|Adventure|Comedy|Romance|Thriller   2298    3.0
## 2994                              Action|Adventure|Comedy|Crime   2298    4.0
## 2995                                            Action|Thriller   2298    2.0
## 2996                                               Comedy|Drama   2318    3.0
## 2997                                              Drama|Romance   2318    4.0
## 2998                                            Children|Comedy   2318    4.0
## 2999                                             Comedy|Fantasy   2318    4.0
## 3000                                                 Comedy|War   2318    4.0
## 3001                                                      Drama   2338    4.0
## 3002                                         Comedy|Crime|Drama   2338    4.0
## 3003                                                      Drama   2338    3.0
## 3004                                                      Drama   2338    5.0
## 3005                                             Comedy|Romance   2338    4.0
## 3006                                              Drama|Romance   2355    4.0
## 3007                                 Action|Romance|War|Western   2364    2.0
## 3008                                  Action|Adventure|Thriller   2364    4.0
## 3009                                  Action|Adventure|Thriller   2364    4.0
## 3010                                    Action|Adventure|Sci-Fi   2364    3.0
## 3011                                               Drama|Sci-Fi   2364    1.0
## 3012                Adventure|Animation|Children|Comedy|Fantasy   2355    3.0
## 3013                              Action|Horror|Sci-Fi|Thriller   2364    3.0
## 3014                                       Drama|Romance|Sci-Fi   2364    1.0
## 3015                                         Animation|Children   2364    1.0
## 3016                                  Adventure|Children|Sci-Fi   2364    4.0
## 3017                                 Adventure|Children|Fantasy   2364    3.0
## 3018                          Animation|Children|Comedy|Romance   2364    3.0
## 3019                            Adventure|Children|Comedy|Drama   2364    4.0
## 3020                                                     Comedy   2380    3.0
## 3021                               Action|Comedy|Fantasy|Sci-Fi   2380    4.0
## 3022                                              Horror|Sci-Fi   2380    3.0
## 3023                                                     Comedy   2394    2.0
## 3024                                             Comedy|Fantasy   2380    5.0
## 3025                                               Comedy|Drama   2380    5.0
## 3026                                             Comedy|Romance   2380    3.0
## 3027             Action|Adventure|Comedy|Fantasy|Sci-Fi|Western   2394    3.0
## 3028                               Adventure|Comedy|Romance|War   2394    4.0
## 3029                                       Comedy|Drama|Romance   2394    3.0
## 3030                                                      Drama   2394    3.0
## 3031                                           Mystery|Thriller   2394    3.0
## 3032                                    Adventure|Drama|Western   2394    4.0
## 3033                                              Drama|Romance   2394    4.0
## 3034                           Action|Adventure|Sci-Fi|Thriller   2394    3.0
## 3035                                                      Drama   2394    2.0
## 3036                                            Children|Comedy   2394    3.0
## 3037                                                  Adventure   2394    4.0
## 3038                                  Action|Comedy|Crime|Drama   2394    4.0
## 3039                                       Comedy|Drama|Romance   2394    4.0
## 3040                                    Action|Adventure|Sci-Fi   2394    4.0
## 3041                                     Horror|Sci-Fi|Thriller   2394    4.0
## 3042                               Comedy|Horror|Musical|Sci-Fi   2394    3.0
## 3043                                       Action|Horror|Sci-Fi   2394    4.0
## 3044                                 Adventure|Children|Fantasy   2394    4.0
## 3045                             Animation|Children|Fantasy|War   2394    2.0
## 3046                                         Action|Crime|Drama   2400    3.0
## 3047                                                      Drama   2400    3.0
## 3048                                               Comedy|Drama   2418    3.0
## 3049                                                Crime|Drama   2425    4.0
## 3050                                                Crime|Drama   2425    4.0
## 3051                             Drama|Mystery|Romance|Thriller   2425    4.0
## 3052                                        Adventure|Drama|War   2425    4.0
## 3053                                    Action|Adventure|Sci-Fi   2425    3.0
## 3054                                       Comedy|Drama|Musical   2425    3.0
## 3055                                                  Drama|War   2425    4.0
## 3056                                                      Drama   2425    4.0
## 3057                                               Comedy|Drama   2425    4.0
## 3058                                                 Comedy|War   2467    1.0
## 3059                                                      Drama   2460    5.0
## 3060                                                      Drama   2460    4.0
## 3061                                           Action|Drama|War   2460    5.0
## 3062                                                      Drama   2460    3.0
## 3063                      Action|Drama|Mystery|Romance|Thriller   2460    5.0
## 3064                                             Comedy|Romance   2460    5.0
## 3065                                     Adventure|Comedy|Drama   2460    4.0
## 3066                                              Action|Horror   2460    4.0
## 3067                       Comedy|Drama|Fantasy|Horror|Thriller   2460    2.0
## 3068                                    Horror|Mystery|Thriller   2460    3.0
## 3069                               Adventure|Comedy|Romance|War   2460    5.0
## 3070                                              Drama|Romance   2460    4.0
## 3071                              Action|Drama|Romance|Thriller   2460    3.0
## 3072                                             Comedy|Romance   2460    4.0
## 3073                                     Action|Adventure|Drama   2460    2.0
## 3074                               Action|Comedy|Crime|Thriller   2520    2.0
## 3075                                    Adventure|Comedy|Sci-Fi   2520    4.0
## 3076                                             Drama|Thriller   2520    4.0
## 3077                Adventure|Animation|Children|Comedy|Fantasy   2520    5.0
## 3078                        Adventure|Animation|Children|Comedy   2520    4.0
## 3079                                                      Drama   2520    4.0
## 3080                                              Drama|Romance   2539    5.0
## 3081                                Action|Crime|Drama|Thriller   2539    3.0
## 3082                                             Comedy|Romance   2539    4.0
## 3083                                    Action|Adventure|Comedy   2539    4.0
## 3084                                             Comedy|Fantasy   2539    5.0
## 3085                                             Comedy|Musical   2539    3.0
## 3086                                                     Comedy   2539    5.0
## 3087                                   Comedy|Drama|Romance|War   2587    5.0
## 3088                                           Action|Drama|War   2587    4.0
## 3089                                              Drama|Romance   2587    4.0
## 3090                                    Drama|Film-Noir|Romance   2651    5.0
## 3091                                    Action|Adventure|Sci-Fi   2704    5.0
## 3092                                                     Comedy   2704    4.0
## 3093                                         Adventure|Children   2731    4.0
## 3094                                                     Comedy   2731    3.0
## 3095                                              Drama|Romance   2731    4.0
## 3096                           Crime|Film-Noir|Mystery|Thriller   2731    5.0
## 3097                                             Comedy|Fantasy   2587    1.0
## 3098                                                     Comedy   2275    4.0
## 3099                                            Horror|Thriller   2587    3.0
## 3100                                               Comedy|Drama   2275    5.0
## 3101                                             Crime|Thriller   2760    3.0
## 3102                                              Comedy|Sci-Fi   2275    1.0
## 3103                                               Comedy|Drama   2275    3.0
## 3104                                                     Comedy   2275    3.0
## 3105                                               Comedy|Drama   2275    4.0
## 3106                                                      Drama   2760    3.0
## 3107                                                      Drama   2805    2.0
## 3108                                             Comedy|Musical   2815    2.0
## 3109                                                     Comedy   2815    3.0
## 3110                                             Drama|Thriller   2805    3.0
## 3111                                          Drama|Romance|War   2805    4.0
## 3112                                                     Horror   2805    4.0
## 3113                                     Drama|Mystery|Thriller   2805    3.0
## 3114                                       Comedy|Drama|Romance   2815    1.0
## 3115                                             Comedy|Romance   2815    3.0
## 3116                              Action|Horror|Sci-Fi|Thriller   2827    3.0
## 3117                                         Drama|Thriller|War   2827    5.0
## 3118                                  Action|Adventure|Thriller   2827    5.0
## 3119                                     Action|Sci-Fi|Thriller   2827    5.0
## 3120                                             Crime|Thriller   2827    4.0
## 3121                                     Horror|Sci-Fi|Thriller   2827    2.0
## 3122                                     Action|Sci-Fi|Thriller   2827    3.0
## 3123                                Comedy|Crime|Drama|Thriller   2275    5.0
## 3124                                                      Drama   2275    4.0
## 3125                                                      Drama   2275    3.0
## 3126                                             Comedy|Romance   2834    5.0
## 3127                                           Adventure|Sci-Fi   2834    5.0
## 3128                                    Action|Adventure|Sci-Fi   2834    5.0
## 3129                                               Comedy|Drama   2731    5.0
## 3130                                                     Comedy   2731    3.0
## 3131                                        Action|Comedy|Crime   2731    5.0
## 3132                                              Action|Sci-Fi   2731    3.0
## 3133                                                      Drama   2731    5.0
## 3134                                                      Drama   2834    2.0
## 3135                         Animation|Children|Fantasy|Musical   2704    4.0
## 3136                                                      Drama   2338    3.0
## 3137                                                     Comedy   2338    5.0
## 3138                                                     Comedy   2338    5.0
## 3139                                                     Comedy   2275    4.0
## 3140                                               Drama|Sci-Fi   2827    4.0
## 3141                                                Documentary   2815    5.0
## 3142                                                      Drama   2815    3.0
## 3143                             Children|Drama|Fantasy|Mystery   2566    4.0
## 3144                                           Adventure|Comedy   2815    3.0
## 3145                                         Action|Crime|Drama   2815    1.0
## 3146                                       Comedy|Drama|Romance   2815    5.0
## 3147                                       Action|Crime|Romance   2515    4.0
## 3148                                              Drama|Romance   2790    4.0
## 3149                                       Comedy|Drama|Romance   2275    4.0
## 3150                                         Animation|Children   2275    3.0
## 3151                                            Children|Comedy   2275    4.0
## 3152                Adventure|Animation|Children|Comedy|Fantasy   2601    5.0
## 3153                               Crime|Drama|Romance|Thriller   2275    4.0
## 3154                                          Drama|Romance|War   2275    3.0
## 3155                                       Comedy|Drama|Romance   2275    5.0
## 3156                                              Drama|Romance   2275    1.0
## 3157                                    Crime|Film-Noir|Mystery   2275    5.0
## 3158                                                Documentary   2275    5.0
## 3159                                                      Drama   2275    5.0
## 3160                                                     Comedy   2467    3.0
## 3161                   Action|Adventure|Fantasy|Horror|Thriller   2583    2.0
## 3162                                             Comedy|Romance   2583    2.0
## 3163                                Action|Crime|Drama|Thriller   2650    4.0
## 3164                                                Crime|Drama   2650    3.0
## 3165                                       Crime|Drama|Thriller   2650    2.0
## 3166                                                Crime|Drama   2650    4.0
## 3167                                                Crime|Drama   2650    4.0
## 3168                  Adventure|Drama|Film-Noir|Sci-Fi|Thriller   2134    4.0
## 3169                           Crime|Film-Noir|Mystery|Thriller   2134    4.0
## 3170                                    Comedy|Mystery|Thriller   2134    3.0
## 3171                                       Comedy|Drama|Romance   2134    4.0
## 3172                                     Adventure|Comedy|Drama   2134    3.0
## 3173                                               Comedy|Drama   2134    3.0
## 3174                                             Comedy|Fantasy   2134    3.0
## 3175                                     Action|Sci-Fi|Thriller   2134    4.0
## 3176                                   Mystery|Romance|Thriller   2134    3.0
## 3177                                    Action|Romance|Thriller   2134    3.0
## 3178                                             Drama|Thriller   2134    3.0
## 3179                                                      Drama   2548    3.0
## 3180                                   Action|Adventure|Western   2548    4.0
## 3181                                            Horror|Thriller   2134    3.0
## 3182                                               Drama|Horror   2134    3.0
## 3183                                            Horror|Thriller   2134    4.0
## 3184                                     Action|Horror|Thriller   2134    1.0
## 3185                                                     Horror   2134    1.0
## 3186                                                     Horror   2134    1.0
## 3187                               Comedy|Drama|Fantasy|Romance   2134    3.0
## 3188                                     Action|Adventure|Drama   2134    3.0
## 3189                                  Drama|Romance|War|Western   2134    2.0
## 3190                                Action|Adventure|Sci-Fi|War   2134    3.0
## 3191                                              Drama|Western   2134    4.0
## 3192                                                  Drama|War   2134    3.0
## 3193                                                 Action|War   2134    2.0
## 3194                                       Crime|Drama|Thriller   2134    4.0
## 3195                               Action|Crime|Sci-Fi|Thriller   2134    4.0
## 3196                                Action|Crime|Drama|Thriller   2134    3.0
## 3197                                  Action|Adventure|Thriller   2134    2.0
## 3198                                                      Drama   2134    4.0
## 3199                                                      Drama   2134    3.0
## 3200                                                      Drama   2134    3.0
## 3201                                              Action|Horror   2134    1.0
## 3202                                     Comedy|Musical|Romance   2815    4.0
## 3203                                           Comedy|Drama|War   2834    5.0
## 3204                                                      Drama   2834    4.0
## 3205                             Crime|Mystery|Romance|Thriller   2834    4.0
## 3206                                               Comedy|Drama   2834    2.0
## 3207                                       Comedy|Drama|Romance   2275    4.0
## 3208                                                     Comedy   2418    4.0
## 3209                                                     Comedy   2418    3.0
## 3210                                                      Drama   2418    2.0
## 3211                                                      Drama   2418    3.0
## 3212                                               Comedy|Crime   2418    3.0
## 3213                                            Horror|Thriller   2566    3.0
## 3214                                       Comedy|Drama|Romance   2566    3.0
## 3215                                                     Comedy   2566    5.0
## 3216                                                      Drama   2566    4.0
## 3217                               Comedy|Drama|Fantasy|Romance   2515    4.0
## 3218                              Action|Crime|Thriller|Western   2119    5.0
## 3219                              Action|Crime|Thriller|Western   2675    4.0
## 3220                                                      Drama   2675    5.0
## 3221                                        Documentary|Musical   2675    5.0
## 3222                                                      Drama   2675    5.0
## 3223                                                      Drama   2675    4.0
## 3224                           Action|Adventure|Sci-Fi|Thriller   2675    4.0
## 3225                                             Drama|Thriller   2675    4.0
## 3226  Adventure|Animation|Children|Comedy|Crime|Fantasy|Mystery   2425    1.0
## 3227                            Action|Adventure|Comedy|Musical   2425    2.0
## 3228                                      Drama|Musical|Romance   2425    2.0
## 3229                                        Action|Crime|Sci-Fi   2425    5.0
## 3230                                      Comedy|Crime|Thriller   2425    4.0
## 3231                                       Action|Crime|Romance   2425    4.0
## 3232                                           Mystery|Thriller   2425    3.0
## 3233                                                      Drama   2425    5.0
## 3234                                       Comedy|Drama|Romance   2425    4.0
## 3235                                              Drama|Romance   2425    4.0
## 3236                                                     Comedy   2425    1.0
## 3237                                    Drama|Film-Noir|Romance   2146    4.0
## 3238                                     Action|Sci-Fi|Thriller   2425    3.0
## 3239                                Action|Crime|Drama|Thriller   2425    2.0
## 3240                          Action|Adventure|Romance|Thriller   2425    2.0
## 3241                                                      Drama   2425    5.0
## 3242                                   Comedy|Drama|Romance|War   2180    5.0
## 3243                                   Comedy|Drama|Romance|War   2180    5.0
## 3244                                       Comedy|Drama|Romance   2180    4.0
## 3245                                           Comedy|Drama|War   2180    4.0
## 3246                                                     Comedy   2180    2.0
## 3247                                                Crime|Drama   2180    5.0
## 3248                                               Comedy|Drama   2790    4.0
## 3249                           Crime|Film-Noir|Mystery|Thriller   2745    4.0
## 3250                                                      Drama   2745    5.0
## 3251                                       Action|Comedy|Horror   2745    5.0
## 3252                                                     Comedy   2745    4.0
## 3253                                        Action|Crime|Sci-Fi   2745    3.0
## 3254                                            Adventure|Drama   2745    4.0
## 3255                                           Adventure|Comedy   2745    3.0
## 3256                          Adventure|Children|Comedy|Musical   2745    2.0
## 3257                                  Action|Comedy|Crime|Drama   2745    4.0
## 3258                                                     Horror   2745    5.0
## 3259                                                     Horror   2745    4.0
## 3260                                                     Horror   2745    4.0
## 3261                Adventure|Animation|Children|Comedy|Musical   2745    4.0
## 3262                                             Comedy|Musical   2745    3.0
## 3263                                          Drama|Musical|War   2745    4.0
## 3264                                          Drama|Romance|War   2745    4.0
## 3265                                       Action|Drama|Western   2745    3.0
## 3266                                              Drama|Western   2745    3.0
## 3267                                          Adventure|Western   2745    3.0
## 3268                                                  Drama|War   2745    4.0
## 3269                                                  Drama|War   2745    5.0
## 3270                                                 Action|War   2745    2.0
## 3271                                Action|Crime|Drama|Thriller   2160    5.0
## 3272                              Action|Horror|Sci-Fi|Thriller   2160    4.0
## 3273                   Action|Adventure|Comedy|Romance|Thriller   2160    5.0
## 3274                               Action|Drama|Sci-Fi|Thriller   2160    4.0
## 3275                   Action|Adventure|Animation|Horror|Sci-Fi   2160    4.0
## 3276                                    Action|Adventure|Comedy   2160    4.0
## 3277                                       Action|Comedy|Sci-Fi   2160    3.0
## 3278                                    Action|Adventure|Sci-Fi   2160    4.0
## 3279                                    Action|Children|Fantasy   2160    2.0
## 3280                                              Action|Comedy   2160    5.0
## 3281                                     Comedy|Horror|Thriller   2160    4.0
## 3282                              Action|Crime|Romance|Thriller   2160    5.0
## 3283                                            Adventure|Drama   2418    4.0
## 3284                                       Comedy|Horror|Sci-Fi   2708    1.0
## 3285                          Adventure|Children|Comedy|Fantasy   2708    3.0
## 3286                              Action|Comedy|Horror|Thriller   2708    3.0
## 3287                                      Action|Crime|Thriller   2708    4.0
## 3288                                      Drama|Fantasy|Musical   2708    5.0
## 3289                                                     Comedy   2601    3.0
## 3290                                     Comedy|Horror|Thriller   2424    3.0
## 3291                                     Comedy|Horror|Thriller   2805    4.0
## 3292                                           Action|Drama|War   2467    4.0
## 3293                         Animation|Children|Musical|Romance   2467    1.0
## 3294                                                Musical|War   2790    5.0
## 3295                                             Comedy|Romance   2467    3.0
## 3296                Action|Adventure|Comedy|Crime|Drama|Romance   2515    4.0
## 3297                                               Action|Drama   2515    4.0
## 3298                                                     Horror   2460    4.0
## 3299                                     Adventure|Drama|Sci-Fi   2460    4.0
## 3300                                       Comedy|Drama|Romance   2460    5.0
## 3301                                         Adventure|Children   2460    4.0
## 3302                                                      Drama   2460    5.0
## 3303                                       Comedy|Drama|Romance   2460    5.0
## 3304                                               Comedy|Drama   2460    4.0
## 3305                                                     Comedy   2460    5.0
## 3306                             Action|Romance|Sci-Fi|Thriller   2534    2.0
## 3307                                              Drama|Romance   2534    4.0
## 3308                                                      Drama   2400    4.0
## 3309                                             Drama|Thriller   2400    3.0
## 3310                                                     Sci-Fi   2573    1.0
## 3311                                                      Drama   2573    4.0
## 3312                                    Action|Adventure|Sci-Fi   2573    2.0
## 3313                                             Drama|Thriller   2418    4.0
## 3314                           Action|Adventure|Sci-Fi|Thriller   2418    4.0
## 3315                      Drama|Fantasy|Horror|Mystery|Thriller   2134    2.0
## 3316                                                      Drama   2134    3.0
## 3317                                                      Drama   2134    3.0
## 3318                                                      Drama   2134    2.0
## 3319                                        Crime|Drama|Romance   2134    3.0
## 3320                                                     Comedy   2134    2.0
## 3321                                                      Drama   2134    4.0
## 3322                                       Comedy|Drama|Romance   2134    4.0
## 3323                                                      Drama   2134    4.0
## 3324                                     Drama|Mystery|Thriller   2134    4.0
## 3325                                                  Drama|War   2484    4.0
## 3326                                             Comedy|Romance   2160    3.0
## 3327                                                     Comedy   2112    5.0
## 3328                                                      Drama   2128    4.0
## 3329                           Crime|Film-Noir|Mystery|Thriller   2152    4.0
## 3330                                             Comedy|Romance   2152    3.0
## 3331                                                Crime|Drama   2161    5.0
## 3332                                               Comedy|Drama   2152    5.0
## 3333                                    Action|Adventure|Sci-Fi   2161    5.0
## 3334                         Adventure|Children|Fantasy|Musical   2161    4.0
## 3335                                   Adventure|Comedy|Fantasy   2152    4.0
## 3336                                        Adventure|Drama|War   2161    4.0
## 3337                               Adventure|Comedy|Romance|War   2161    4.0
## 3338                                       Comedy|Drama|Romance   2152    4.0
## 3339                                          Drama|Romance|War   2152    4.0
## 3340                                                      Drama   2152    5.0
## 3341                                 Adventure|Mystery|Thriller   2161    5.0
## 3342                                  Adventure|Fantasy|Romance   2152    5.0
## 3343                                               Comedy|Drama   2128    3.0
## 3344                              Drama|Fantasy|Horror|Thriller   2152    4.0
## 3345                                             Drama|Thriller   2152    4.0
## 3346                                                      Drama   2152    3.0
## 3347                                              Drama|Romance   2152    5.0
## 3348                                                      Drama   2152    3.0
## 3349                                                     Comedy   2152    4.0
## 3350                                                     Comedy   2152    4.0
## 3351                                            Action|Thriller   2152    4.0
## 3352                                                     Comedy   2190    4.0
## 3353                                             Crime|Thriller   2190    2.0
## 3354                                              Horror|Sci-Fi   2190    3.0
## 3355                                             Action|Mystery   2190    2.0
## 3356                                                Documentary   2213    5.0
## 3357                                       Action|Drama|Romance   2213    2.0
## 3358                                      Action|Crime|Thriller   2213    3.0
## 3359                                               Action|Drama   2213    5.0
## 3360                                  Action|Adventure|Thriller   2213    3.0
## 3361                                        Action|Crime|Sci-Fi   2213    3.0
## 3362                             Action|Romance|Sci-Fi|Thriller   2213    1.0
## 3363                                               Action|Drama   2213    2.0
## 3364                              Crime|Horror|Mystery|Thriller   2213    3.0
## 3365                                               Comedy|Drama   2213    3.0
## 3366                                               Comedy|Drama   2213    4.0
## 3367                                             Comedy|Romance   2213    4.0
## 3368                                             Comedy|Western   2213    4.0
## 3369                                       Comedy|Drama|Romance   2213    1.0
## 3370                                                Crime|Drama   2213    4.0
## 3371                                                      Drama   2213    3.0
## 3372                                                      Drama   2213    3.0
## 3373                                           Action|Drama|War   2213    4.0
## 3374                                                      Drama   2213    4.0
## 3375                                          Drama|Romance|War   2220    5.0
## 3376                                    Drama|Film-Noir|Romance   2220    4.0
## 3377                                           Adventure|Comedy   2220    2.0
## 3378                               Comedy|Drama|Musical|Romance   2220    2.0
## 3379                                               Comedy|Drama   2220    4.0
## 3380                                      Drama|Fantasy|Romance   2220    4.0
## 3381                                    Action|Adventure|Sci-Fi   2224    3.0
## 3382                           Action|Adventure|Sci-Fi|Thriller   2224    4.0
## 3383                           Action|Adventure|Sci-Fi|Thriller   2224    3.0
## 3384                                           Adventure|Sci-Fi   2224    2.0
## 3385                                               Drama|Sci-Fi   2224    2.0
## 3386                 Action|Adventure|Animation|Sci-Fi|Thriller   2224    4.0
## 3387                            Action|Adventure|Fantasy|Sci-Fi   2224    1.0
## 3388             Action|Adventure|Comedy|Fantasy|Sci-Fi|Western   2224    2.0
## 3389                      Action|Drama|Mystery|Romance|Thriller   2224    5.0
## 3390                                                   Thriller   2224    4.0
## 3391                                                  Drama|War   2233    5.0
## 3392                                                     Comedy   2233    3.0
## 3393                                       Comedy|Drama|Fantasy   2243    5.0
## 3394                                                     Comedy   2233    3.0
## 3395                                       Comedy|Drama|Romance   2233    3.0
## 3396                                     Drama|Mystery|Thriller   2233    3.0
## 3397                                             Action|Mystery   2233    3.0
## 3398                Adventure|Animation|Children|Comedy|Fantasy   2233    4.0
## 3399                                                     Comedy   2243    3.0
## 3400                        Comedy|Crime|Drama|Romance|Thriller   2233    5.0
## 3401                                        Action|Drama|Sci-Fi   2233    3.0
## 3402                                    Action|Romance|Thriller   2233    2.0
## 3403                                       Action|Horror|Sci-Fi   2233    3.0
## 3404                                            Action|Thriller   2233    3.0
## 3405                                       Action|Crime|Romance   2233    4.0
## 3406                                 Action|Romance|War|Western   2233    3.0
## 3407                           Action|Adventure|Comedy|Thriller   2233    3.0
## 3408                                   Action|Adventure|Fantasy   2233    2.0
## 3409                                     Action|Sci-Fi|Thriller   2233    2.0
## 3410                                    Action|Adventure|Sci-Fi   2233    3.0
## 3411                                      Drama|Sci-Fi|Thriller   2233    1.0
## 3412                              Action|Adventure|Drama|Sci-Fi   2233    3.0
## 3413                                          Action|Comedy|War   2233    2.0
## 3414                               Action|Comedy|Crime|Thriller   2233    2.0
## 3415                                      Action|Comedy|Western   2233    2.0
## 3416                             Drama|Mystery|Romance|Thriller   2233    3.0
## 3417                          Action|Adventure|Romance|Thriller   2233    1.0
## 3418                                              Action|Sci-Fi   2233    2.0
## 3419                                               Action|Drama   2233    3.0
## 3420                          Adventure|Children|Comedy|Fantasy   2243    4.0
## 3421                                                 Action|War   2233    1.0
## 3422                                             Action|Western   2233    1.0
## 3423                                            Action|Thriller   2233    3.0
## 3424                                       Crime|Drama|Thriller   2243    3.0
## 3425                                               Action|Drama   2233    3.0
## 3426                                       Action|Drama|Romance   2233    1.0
## 3427                                    Action|Adventure|Sci-Fi   2233    2.0
## 3428                                                 Comedy|War   2243    5.0
## 3429                                            Action|Thriller   2233    1.0
## 3430                                     Action|Adventure|Drama   2233    1.0
## 3431                                      Action|Comedy|Fantasy   2233    1.0
## 3432                                     Action|Sci-Fi|Thriller   2233    1.0
## 3433                                              Action|Sci-Fi   2233    2.0
## 3434                                              Action|Comedy   2233    1.0
## 3435                                     Adventure|Comedy|Drama   2233    5.0
## 3436                                               Comedy|Crime   2243    2.0
## 3437                                           Adventure|Comedy   2233    3.0
## 3438                                   Adventure|Drama|Thriller   2233    4.0
## 3439                                Action|Comedy|Crime|Fantasy   2243    2.0
## 3440                                   Adventure|Children|Drama   2233    2.0
## 3441                                                     Comedy   2243    1.0
## 3442                   Adventure|Children|Comedy|Fantasy|Sci-Fi   2233    3.0
## 3443                                 Adventure|Children|Fantasy   2233    2.0
## 3444                                 Adventure|Children|Musical   2233    3.0
## 3445                                    Action|Adventure|Sci-Fi   2233    3.0
## 3446                                           Adventure|Sci-Fi   2233    2.0
## 3447                                    Action|Adventure|Sci-Fi   2233    1.0
## 3448                                   Adventure|Comedy|Fantasy   2233    2.0
## 3449                                Comedy|Crime|Drama|Thriller   2243    4.0
## 3450                                 Adventure|Animation|Comedy   2233    3.0
## 3451                         Animation|Children|Fantasy|Musical   2233    3.0
## 3452                          Action|Adventure|Comedy|Drama|War   2254    5.0
## 3453                Adventure|Animation|Children|Comedy|Musical   2233    1.0
## 3454                         Adventure|Children|Fantasy|Musical   2233    4.0
## 3455                 Comedy|Crime|Drama|Horror|Mystery|Thriller   2254    5.0
## 3456                                             Children|Drama   2233    2.0
## 3457                                 Adventure|Children|Fantasy   2233    3.0
## 3458                            Adventure|Children|Comedy|Drama   2233    3.0
## 3459                                              Action|Sci-Fi   2254    1.0
## 3460                                   Children|Fantasy|Musical   2233    2.0
## 3461                           Action|Adventure|Sci-Fi|Thriller   2254    4.0
## 3462                                            Children|Comedy   2233    1.0
## 3463                                                Documentary   2243    2.0
## 3464                                      Comedy|Crime|Thriller   2254    5.0
## 3465                                                Crime|Drama   2254    4.0
## 3466                                              Action|Sci-Fi   2254    5.0
## 3467                                                      Drama   2254    4.0
## 3468                        Adventure|Animation|Children|Comedy   2254    4.0
## 3469                                       Comedy|Drama|Fantasy   2254    4.0
## 3470                Adventure|Fantasy|Film-Noir|Sci-Fi|Thriller   2254    4.0
## 3471                                 Adventure|Animation|Comedy   2243    5.0
## 3472                                        Crime|Drama|Romance   2243    4.0
## 3473                                                  Drama|War   2243    4.0
## 3474                                       Comedy|Drama|Romance   2254    3.0
## 3475                                                      Drama   2243    3.0
## 3476                                     Action|Sci-Fi|Thriller   2243    4.0
## 3477                               Comedy|Drama|Fantasy|Romance   2243    4.0
## 3478                                Action|Adventure|Sci-Fi|War   2254    5.0
## 3479                                   Action|Drama|Romance|War   2243    3.0
## 3480                                    Action|Adventure|Comedy   2254    5.0
## 3481                 Action|Crime|Drama|Mystery|Sci-Fi|Thriller   2254    4.0
## 3482                               Comedy|Drama|Fantasy|Romance   2243    3.0
## 3483                           Action|Adventure|Comedy|Thriller   2254    4.0
## 3484                                              Drama|Fantasy   2243    4.0
## 3485                      Drama|Fantasy|Horror|Mystery|Thriller   2243    4.0
## 3486                                               Comedy|Drama   2254    3.0
## 3487                                       Comedy|Drama|Romance   2233    4.0
## 3488                                       Action|Drama|Western   2243    3.0
## 3489                                              Drama|Romance   2254    5.0
## 3490                                         Comedy|Documentary   2233    4.0
## 3491                                               Comedy|Drama   2254    4.0
## 3492                                             Comedy|Romance   2254    4.0
## 3493                                     Comedy|Fantasy|Romance   2233    4.0
## 3494                                           Action|Adventure   2254    4.0
## 3495                                             Drama|Thriller   2254    3.0
## 3496                                      Action|Drama|Thriller   2254    4.0
## 3497                                                     Comedy   2233    3.0
## 3498                                             Comedy|Romance   2233    2.0
## 3499                                       Action|Horror|Sci-Fi   2254    4.0
## 3500                                                     Comedy   2254    4.0
## 3501                                                     Comedy   2233    3.0
## 3502                              Action|Adventure|Drama|Sci-Fi   2254    4.0
## 3503                                              Drama|Romance   2254    4.0
## 3504                                          Action|Sci-Fi|War   2254    4.0
## 3505                                       Comedy|Drama|Romance   2254    3.0
## 3506                               Comedy|Horror|Musical|Sci-Fi   2233    2.0
## 3507                                       Comedy|Drama|Romance   2254    4.0
## 3508                                               Action|Drama   2254    4.0
## 3509                                       Comedy|Drama|Romance   2233    3.0
## 3510                                      Action|Comedy|Musical   2233    1.0
## 3511                                     Drama|Mystery|Thriller   2254    4.0
## 3512                                              Drama|Romance   2254    4.0
## 3513                                             Comedy|Romance   2254    4.0
## 3514                                                     Comedy   2233    3.0
## 3515                                                     Comedy   2233    3.0
## 3516                                             Comedy|Romance   2254    4.0
## 3517                                     Horror|Sci-Fi|Thriller   2254    3.0
## 3518                                     Action|Sci-Fi|Thriller   2254    3.0
## 3519                                               Comedy|Drama   2233    1.0
## 3520                                               Comedy|Drama   2254    3.0
## 3521                                                     Comedy   2254    4.0
## 3522                                                     Comedy   2233    2.0
## 3523                                                     Comedy   2233    2.0
## 3524                                                     Comedy   2233    2.0
## 3525                                                     Comedy   2233    3.0
## 3526                                                     Comedy   2233    2.0
## 3527                                                     Comedy   2233    1.0
## 3528                                        Documentary|Musical   2233    3.0
## 3529                                                      Drama   2233    4.0
## 3530                                                      Drama   2233    4.0
## 3531                                                      Drama   2233    3.0
## 3532                                              Drama|Romance   2233    3.0
## 3533                                                      Drama   2233    4.0
## 3534                                                      Drama   2233    3.0
## 3535                                     Drama|Mystery|Thriller   2233    4.0
## 3536                                               Comedy|Drama   2233    3.0
## 3537                                              Drama|Romance   2233    3.0
## 3538                               Comedy|Drama|Fantasy|Romance   2233    1.0
## 3539                                              Drama|Romance   2233    1.0
## 3540                                                      Drama   2233    4.0
## 3541                                          Drama|Romance|War   2233    1.0
## 3542                                                      Drama   2233    2.0
## 3543                                                      Drama   2233    2.0
## 3544                                              Drama|Romance   2233    2.0
## 3545                                                Crime|Drama   2233    2.0
## 3546                                              Drama|Musical   2233    1.0
## 3547                                   Children|Fantasy|Musical   2233    2.0
## 3548                  Adventure|Drama|Film-Noir|Sci-Fi|Thriller   2233    4.0
## 3549                              Drama|Fantasy|Horror|Thriller   2233    2.0
## 3550                              Drama|Fantasy|Horror|Thriller   2233    4.0
## 3551                                                     Horror   2233    2.0
## 3552                                                     Horror   2233    1.0
## 3553                                            Horror|Thriller   2233    1.0
## 3554                                                     Horror   2233    1.0
## 3555                                             Comedy|Romance   2233    3.0
## 3556                                               Drama|Sci-Fi   2233    3.0
## 3557                                             Drama|Thriller   2233    3.0
## 3558                                                  Drama|War   2233    4.0
## 3559                                              Drama|Romance   2335    4.0
## 3560                                              Drama|Romance   2335    4.0
## 3561                         Adventure|Children|Fantasy|Musical   2335    4.0
## 3562                                               Comedy|Drama   2335    2.0
## 3563                                                Crime|Drama   2335    4.0
## 3564                                                      Drama   2335    4.0
## 3565                                             Children|Drama   2335    4.0
## 3566                                    Action|Adventure|Sci-Fi   2344    5.0
## 3567                                     Action|Adventure|Drama   2335    4.0
## 3568                                             Comedy|Romance   2335    5.0
## 3569                      Comedy|Drama|Fantasy|Romance|Thriller   2335    5.0
## 3570                                         Adventure|Children   2335    4.0
## 3571                                         Adventure|Children   2335    4.0
## 3572                                  Adventure|Children|Comedy   2335    3.0
## 3573                                         Adventure|Children   2335    4.0
## 3574                  Animation|Children|Comedy|Musical|Romance   2335    4.0
## 3575                                    Children|Comedy|Fantasy   2335    3.0
## 3576                                         Animation|Children   2335    3.0
## 3577                                            Children|Comedy   2335    4.0
## 3578                         Animation|Children|Fantasy|Musical   2335    2.0
## 3579                Action|Adventure|Comedy|Crime|Drama|Romance   2335    4.0
## 3580                                             Comedy|Western   2335    3.0
## 3581                                                      Drama   2335    5.0
## 3582                                Comedy|Crime|Drama|Thriller   2385    4.0
## 3583                                      Comedy|Crime|Thriller   2385    5.0
## 3584                                                Crime|Drama   2385    5.0
## 3585                               Crime|Drama|Romance|Thriller   2385    4.0
## 3586                        Action|Crime|Drama|Mystery|Thriller   2385    3.0
## 3587                                   Action|Adventure|Western   2161    2.0
## 3588                                Action|Crime|Drama|Thriller   2443    5.0
## 3589                                           Action|Drama|War   2452    4.0
## 3590                                Action|Crime|Drama|Thriller   2452    5.0
## 3591                                            Action|Thriller   2452    4.0
## 3592                                            Action|Thriller   2452    5.0
## 3593                                      Action|Crime|Thriller   2452    5.0
## 3594                                     Action|Sci-Fi|Thriller   2452    5.0
## 3595                           Action|Adventure|Sci-Fi|Thriller   2452    4.0
## 3596                                            Action|Thriller   2452    5.0
## 3597                                       Action|Comedy|Sci-Fi   2452    5.0
## 3598                                  Action|Adventure|Thriller   2452    5.0
## 3599                                           Action|Drama|War   2452    4.0
## 3600                                  Action|Adventure|Thriller   2452    4.0
## 3601                                                     Action   2452    4.0
## 3602                                Action|Adventure|Comedy|War   2452    3.0
## 3603                                                      Drama   2443    5.0
## 3604                                             Comedy|Romance   2443    4.0
## 3605                                                     Comedy   2443    2.0
## 3606                                               Comedy|Drama   2443    1.0
## 3607                                     Drama|Mystery|Thriller   2233    2.0
## 3608                                                      Drama   2233    3.0
## 3609                                                   Thriller   2602    4.0
## 3610                                       Comedy|Drama|Romance   2602    5.0
## 3611                                          Adventure|Western   2602    4.0
## 3612                           Action|Adventure|Sci-Fi|Thriller   2602    5.0
## 3613                                 Action|Adventure|Drama|War   2602    4.0
## 3614                                           Action|Adventure   2602    5.0
## 3615                                 Adventure|Children|Fantasy   2602    3.0
## 3616                                             Comedy|Romance   2602    4.0
## 3617                                             Comedy|Romance   2602    4.0
## 3618                                                     Comedy   2602    4.0
## 3619                                                      Drama   2623    5.0
## 3620                                         Comedy|Crime|Drama   2602    3.0
## 3621                               Comedy|Drama|Fantasy|Romance   2602    4.0
## 3622                                                     Comedy   2602    3.0
## 3623                             Adventure|Comedy|Drama|Western   2602    5.0
## 3624                                                      Drama   2623    5.0
## 3625                                           Action|Adventure   2623    4.0
## 3626                                                     Comedy   2385    5.0
## 3627                               Comedy|Drama|Fantasy|Romance   2385    3.0
## 3628                       Action|Crime|Mystery|Sci-Fi|Thriller   2385    4.0
## 3629                            Action|Adventure|Fantasy|Sci-Fi   2385    3.0
## 3630                               Drama|Horror|Sci-Fi|Thriller   2385    2.0
## 3631                             Action|Romance|Sci-Fi|Thriller   2385    3.0
## 3632                                      Action|Crime|Thriller   2385    2.0
## 3633                                                Crime|Drama   2385    4.0
## 3634                                                      Drama   2385    4.0
## 3635                                                    Western   2385    5.0
## 3636                            Action|Adventure|Crime|Thriller   2385    4.0
## 3637                              Action|Adventure|Comedy|Crime   2385    2.0
## 3638                                    Action|Adventure|Sci-Fi   2385    3.0
## 3639                    Action|Adventure|Drama|Fantasy|Thriller   2385    4.0
## 3640                                   Adventure|Comedy|Romance   2385    3.0
## 3641                                         Animation|Children   2746    4.0
## 3642                                                      Drama   2746    5.0
## 3643                                      Crime|Horror|Thriller   2746    5.0
## 3644                                       Comedy|Drama|Romance   2746    3.0
## 3645                                                     Comedy   2746    5.0
## 3646                                     Adventure|Drama|Sci-Fi   2746    3.0
## 3647                                       Comedy|Drama|Romance   2746    3.0
## 3648                                    Adventure|Comedy|Sci-Fi   2746    5.0
## 3649                                           Comedy|Drama|War   2746    2.0
## 3650                                               Comedy|Drama   2746    5.0
## 3651                                              Action|Sci-Fi   2746    4.0
## 3652                                      Children|Drama|Sci-Fi   2746    5.0
## 3653                                             Comedy|Romance   2746    3.0
## 3654                            Children|Comedy|Fantasy|Musical   2746    5.0
## 3655                                                     Comedy   2746    5.0
## 3656                Adventure|Animation|Children|Comedy|Musical   2746    5.0
## 3657                                                      Drama   2746    5.0
## 3658                                                     Comedy   2746    5.0
## 3659                                    Action|Adventure|Comedy   2233    1.0
## 3660                                      Drama|Fantasy|Romance   2746    4.0
## 3661                                           Adventure|Comedy   2746    4.0
## 3662                                       Comedy|Drama|Romance   2233    2.0
## 3663                                              Drama|Romance   2746    4.0
## 3664                                                      Drama   2746    5.0
## 3665                                                     Comedy   2233    3.0
## 3666                                     Drama|Mystery|Thriller   2233    4.0
## 3667                                Action|Crime|Drama|Thriller   2134    3.0
## 3668                                               Drama|Horror   2134    3.0
## 3669                                              Drama|Romance   2134    4.0
## 3670                                    Horror|Mystery|Thriller   2134    4.0
## 3671                                            Children|Comedy   2233    2.0
## 3672                                                     Comedy   2134    3.0
## 3673                                                     Comedy   2233    2.0
## 3674                                                     Comedy   2233    2.0
## 3675                                       Crime|Drama|Thriller   2134    4.0
## 3676                                            Horror|Thriller   2233    1.0
## 3677                                                     Horror   2233    1.0
## 3678                                                     Comedy   2134    1.0
## 3679                                     Action|Adventure|Drama   2791    5.0
## 3680                                              Drama|Romance   2791    4.0
## 3681                           Action|Adventure|Sci-Fi|Thriller   2791    4.0
## 3682                                      Action|Mystery|Sci-Fi   2791    3.0
## 3683                                               Action|Drama   2799    5.0
## 3684                                                   Thriller   2799    3.0
## 3685                                  Action|Adventure|Thriller   2799    2.0
## 3686                                    Action|Adventure|Horror   2799    2.0
## 3687                                   Action|Adventure|Western   2799    4.0
## 3688                           Action|Adventure|Sci-Fi|Thriller   2799    3.0
## 3689                           Action|Adventure|Sci-Fi|Thriller   2799    3.0
## 3690                                  Action|Adventure|Thriller   2799    3.0
## 3691                                           Action|Drama|War   2799    4.0
## 3692                                     Action|Sci-Fi|Thriller   2799    1.0
## 3693                                    Action|Adventure|Sci-Fi   2799    4.0
## 3694                            Action|Adventure|Drama|Thriller   2799    2.0
## 3695                                  Action|Adventure|Thriller   2799    1.0
## 3696                                              Comedy|Horror   2799    1.0
## 3697                                Action|Crime|Drama|Thriller   2799    3.0
## 3698                                            Action|Thriller   2799    2.0
## 3699                            Children|Comedy|Fantasy|Musical   2799    3.0
## 3700                                   Action|Adventure|Fantasy   2799    3.0
## 3701                                       Crime|Drama|Thriller   2799    1.0
## 3702                                                      Drama   2799    5.0
## 3703                                                      Drama   2809    4.0
## 3704                                          Drama|Romance|War   2809    5.0
## 3705                                             Comedy|Romance   2809    5.0
## 3706                                              Drama|Romance   2809    5.0
## 3707                                               Comedy|Drama   2809    5.0
## 3708                                              Drama|Romance   2809    4.0
## 3709                                             Comedy|Romance   2809    5.0
## 3710                                                      Drama   2809    4.0
## 3711                                                      Drama   2809    2.0
## 3712                                                      Drama   2809    2.0
## 3713                                       Comedy|Drama|Romance   2809    3.0
## 3714                                       Comedy|Drama|Romance   2809    5.0
## 3715                                     Adventure|Comedy|Drama   2809    5.0
## 3716                              Children|Comedy|Drama|Fantasy   2809    5.0
## 3717                                               Comedy|Drama   2809    4.0
## 3718                                                     Comedy   2809    5.0
## 3719                                             Comedy|Romance   2809    4.0
## 3720                                                      Drama   2809    2.0
## 3721                                                      Drama   2809    4.0
## 3722                                                      Drama   2809    4.0
## 3723                                                      Drama   2809    3.0
## 3724                                               Comedy|Drama   2809    4.0
## 3725                                            Horror|Thriller   2809    4.0
## 3726                                    Action|Adventure|Comedy   2809    5.0
## 3727                                                      Drama   2809    3.0
## 3728                                     Drama|Mystery|Thriller   2838    4.0
## 3729                                                      Drama   2838    4.0
## 3730                                                     Comedy   2838    3.0
## 3731                                                      Drama   2858    3.0
## 3732                                                      Drama   2858    4.0
## 3733                                             Comedy|Western   2865    4.0
## 3734                   Action|Adventure|Animation|Drama|Fantasy   2838    5.0
## 3735                                            Action|Thriller   2858    4.0
## 3736                                                Documentary   2865    4.0
## 3737                                  Action|Adventure|Thriller   2858    5.0
## 3738                           Action|Adventure|Sci-Fi|Thriller   2858    4.0
## 3739                 Action|Crime|Drama|Mystery|Sci-Fi|Thriller   2858    5.0
## 3740                                  Action|Adventure|Thriller   2858    3.0
## 3741                                      Action|Mystery|Sci-Fi   2858    4.0
## 3742                          Action|Adventure|Mystery|Thriller   2858    5.0
## 3743                                      Action|Comedy|Western   2858    2.0
## 3744                   Action|Adventure|Fantasy|Horror|Thriller   2858    5.0
## 3745                               Action|Drama|Sci-Fi|Thriller   2858    3.0
## 3746                             Action|Romance|Sci-Fi|Thriller   2858    1.0
## 3747                              Action|Horror|Sci-Fi|Thriller   2858    2.0
## 3748                                             Action|Western   2858    1.0
## 3749                                       Action|Drama|Romance   2858    1.0
## 3750                                    Action|Adventure|Sci-Fi   2858    1.0
## 3751                              Children|Comedy|Drama|Fantasy   2865    5.0
## 3752                                                      Drama   2865    3.0
## 3753             Action|Adventure|Comedy|Fantasy|Sci-Fi|Western   2858    3.0
## 3754                Action|Adventure|Comedy|Crime|Drama|Romance   2865    4.0
## 3755                                                      Drama   2865    4.0
## 3756                                         Comedy|Crime|Drama   2858    5.0
## 3757                                    Adventure|Comedy|Sci-Fi   2858    3.0
## 3758                                               Comedy|Drama   2865    3.0
## 3759                                       Comedy|Drama|Romance   2858    4.0
## 3760                                      Comedy|Crime|Thriller   2858    4.0
## 3761                                     Comedy|Fantasy|Romance   2858    5.0
## 3762                                                     Comedy   2858    5.0
## 3763                                              Drama|Romance   2858    3.0
## 3764                                                     Comedy   2858    4.0
## 3765                                                     Comedy   2858    4.0
## 3766                                               Comedy|Drama   2858    3.0
## 3767                                                     Comedy   2858    4.0
## 3768                  Animation|Children|Comedy|Musical|Romance   2858    3.0
## 3769                                      Comedy|Fantasy|Horror   2858    3.0
## 3770                                               Comedy|Drama   2858    4.0
## 3771                                               Comedy|Drama   2858    4.0
## 3772                                             Comedy|Romance   2858    3.0
## 3773                                       Comedy|Drama|Romance   2858    4.0
## 3774                                       Comedy|Drama|Romance   2858    3.0
## 3775                                       Comedy|Drama|Romance   2858    3.0
## 3776                                                     Comedy   2858    4.0
## 3777                                             Comedy|Romance   2858    5.0
## 3778                                      Comedy|Fantasy|Sci-Fi   2858    3.0
## 3779                                   Adventure|Comedy|Romance   2858    3.0
## 3780                               Action|Comedy|Crime|Thriller   2858    3.0
## 3781                                           Adventure|Sci-Fi   2865    4.0
## 3782                                                      Drama   2865    4.0
## 3783                                              Drama|Romance   2865    4.0
## 3784                                              Drama|Romance   2865    3.0
## 3785                                                     Comedy   2865    4.0
## 3786                                         Comedy|Crime|Drama   2865    5.0
## 3787                               Comedy|Drama|Fantasy|Romance   2865    4.0
## 3788                                                     Comedy   2865    4.0
## 3789                                               Action|Drama   2865    4.0
## 3790                                    Action|Adventure|Sci-Fi   2865    1.0
## 3791                                             Crime|Thriller   2865    3.0
## 3792                               Comedy|Drama|Fantasy|Romance   2865    3.0
## 3793                                                      Drama   2865    4.0
## 3794                               Drama|Horror|Sci-Fi|Thriller   2865    2.0
## 3795                                              Drama|Romance   2865    4.0
## 3796                                         Drama|Thriller|War   2865    4.0
## 3797                                   Comedy|Drama|Romance|War   2865    3.0
## 3798                                  Animation|Children|Comedy   2865    5.0
## 3799                                                      Drama   2602    4.0
## 3800                                                  Drama|War   2602    3.0
## 3801                                Comedy|Crime|Drama|Thriller   2602    4.0
## 3802                                       Comedy|Drama|Romance   2602    4.0
## 3803                                                      Drama   2602    3.0
## 3804                                            Adventure|Drama   2602    4.0
## 3805                              Action|Horror|Sci-Fi|Thriller   2602    2.0
## 3806                                              Comedy|Horror   2602    3.0
## 3807                                       Crime|Drama|Thriller   2467    4.0
## 3808                                               Comedy|Drama   2424    4.0
## 3809                                        Adventure|Drama|War   2424    2.0
## 3810                                            Action|Thriller   2573    2.0
## 3811                                                      Drama   2515    4.0
## 3812                                   Adventure|Comedy|Fantasy   2515    3.0
## 3813                                       Comedy|Drama|Fantasy   2515    3.0
## 3814                                                      Drama   2467    2.0
## 3815                          Action|Adventure|Animation|Sci-Fi   2573    3.0
## 3816                                              Drama|Romance   2425    4.0
## 3817                                               Comedy|Drama   2425    2.0
## 3818                                                      Drama   2425    3.0
## 3819                                                     Comedy   2425    1.0
## 3820                                             Drama|Thriller   2425    2.0
## 3821                                                    Romance   2425    1.0
## 3822                                       Crime|Drama|Thriller   2534    4.0
## 3823                                             Drama|Thriller   2484    3.0
## 3824                                           Action|Adventure   2425    4.0
## 3825                                                  Drama|War   2425    4.0
## 3826                                                     Comedy   2425    3.0
## 3827                                                      Drama   2425    4.0
## 3828                Action|Adventure|Comedy|Crime|Drama|Romance   2425    4.0
## 3829                                                      Drama   2425    4.0
## 3830                                                      Drama   2425    3.0
## 3831                                              Drama|Romance   2425    4.0
## 3832                                             Comedy|Romance   2425    2.0
## 3833                                             Comedy|Romance   2425    4.0
## 3834                                             Horror|Mystery   2425    2.0
## 3835                                                     Comedy   2425    2.0
## 3836                                  Action|Adventure|Thriller   2425    3.0
## 3837                                                     Comedy   2425    1.0
## 3838                                             Action|Romance   2425    2.0
## 3839                                        Action|Drama|Sci-Fi   2425    4.0
## 3840                                                     Horror   2425    2.0
## 3841                                                     Comedy   2425    1.0
## 3842                                    Action|Adventure|Sci-Fi   2233    3.0
## 3843                                                     Comedy   2160    5.0
## 3844                                    Action|Adventure|Comedy   2160    4.0
## 3845                                                     Comedy   2160    3.0
## 3846                                         Animation|Children   2160    4.0
## 3847                                     Action|Adventure|Drama   2160    4.0
## 3848                                              Comedy|Horror   2160    3.0
## 3849                                               Comedy|Crime   2160    5.0
## 3850                                            Action|Thriller   2160    4.0
## 3851                                             Drama|Thriller   2160    4.0
## 3852                                Action|Crime|Drama|Thriller   2160    4.0
## 3853                                       Comedy|Drama|Romance   2484    4.0
## 3854                                                     Comedy   2815    4.0
## 3855                                                     Comedy   2233    3.0
## 3856                        Comedy|Crime|Drama|Mystery|Thriller   2591    5.0
## 3857                                         Action|Crime|Drama   2385    4.0
## 3858                                                      Drama   2484    3.0
## 3859                                                Documentary   2548    5.0
## 3860                                       Comedy|Drama|Fantasy   2548    3.0
## 3861                                              Comedy|Horror   2548    3.0
## 3862                                               Drama|Horror   2548    3.0
## 3863                           Action|Adventure|Sci-Fi|Thriller   2548    2.0
## 3864                                              Drama|Musical   2548    3.0
## 3865                                            Horror|Thriller   2548    1.0
## 3866                                               Comedy|Drama   2548    5.0
## 3867                                                     Comedy   2548    2.0
## 3868                                               Comedy|Drama   2548    3.0
## 3869                                                     Comedy   2424    5.0
## 3870                                             Comedy|Mystery   2515    5.0
## 3871                             Crime|Drama|Film-Noir|Thriller   2515    5.0
## 3872                                                Crime|Drama   2515    4.0
## 3873                                                Documentary   2815    5.0
## 3874                                               Comedy|Drama   2790    3.0
## 3875                                                 Comedy|War   2385    4.0
## 3876                                       Comedy|Drama|Romance   2385    4.0
## 3877                                      Action|Crime|Thriller   2425    3.0
## 3878                                                  Drama|War   2425    3.0
## 3879                                 Adventure|Mystery|Thriller   2385    4.0
## 3880                                          Adventure|Western   2385    3.0
## 3881                                      Drama|Musical|Romance   2385    4.0
## 3882                               Comedy|Drama|Fantasy|Romance   2385    5.0
## 3883                                                      Drama   2233    4.0
## 3884                                                     Comedy   2160    4.0
## 3885                                             Comedy|Romance   2385    4.0
## 3886                                                   Thriller   2548    1.0
## 3887                                              Action|Sci-Fi   2198    4.0
## 3888                             Drama|Mystery|Romance|Thriller   2198    3.0
## 3889                        Comedy|Crime|Drama|Romance|Thriller   2198    3.0
## 3890                                  Action|Adventure|Thriller   2276    4.0
## 3891                                    Action|Adventure|Sci-Fi   2276    3.0
## 3892                               Action|Comedy|Fantasy|Sci-Fi   2276    4.0
## 3893                                             Comedy|Romance   2276    3.0
## 3894                                           Action|Adventure   2306    3.0
## 3895                                     Crime|Mystery|Thriller   2276    4.0
## 3896                                 Adventure|Children|Fantasy   2306    4.0
## 3897                                    Action|Adventure|Comedy   2306    3.0
## 3898                                           Action|Adventure   2306    1.0
## 3899                                                  Drama|War   2306    5.0
## 3900  Adventure|Animation|Children|Comedy|Crime|Fantasy|Mystery   2306    4.0
## 3901                                       Comedy|Drama|Romance   2306    4.0
## 3902                                                      Drama   2306    4.0
## 3903                                                      Drama   2306    4.0
## 3904                                             Drama|Thriller   2306    4.0
## 3905                                       Comedy|Drama|Romance   2306    4.0
## 3906                                              Drama|Fantasy   2276    5.0
## 3907                                    Action|Adventure|Sci-Fi   2339    3.0
## 3908                                       Action|Comedy|Sci-Fi   2339    4.0
## 3909                                                     Comedy   2339    4.0
## 3910                               Crime|Drama|Mystery|Thriller   2276    5.0
## 3911                                                      Drama   2348    3.0
## 3912                                                      Drama   2348    5.0
## 3913                                        Action|Comedy|Drama   2339    4.0
## 3914                                            Children|Comedy   2348    3.0
## 3915                                           Adventure|Comedy   2339    5.0
## 3916                                                     Comedy   2339    3.0
## 3917                                                      Drama   2365    4.0
## 3918                                    Adventure|Comedy|Sci-Fi   2374    5.0
## 3919                                              Comedy|Sci-Fi   2374    5.0
## 3920                                              Action|Sci-Fi   2374    5.0
## 3921                                Comedy|Crime|Drama|Thriller   2426    2.0
## 3922                                           Adventure|Sci-Fi   2512    3.0
## 3923                                          Action|Sci-Fi|War   2512    1.0
## 3924                                                     Comedy   2512    5.0
## 3925                                                Crime|Drama   2512    5.0
## 3926                                           Action|Adventure   2512    5.0
## 3927                                  Action|Adventure|Thriller   2512    4.0
## 3928                                      Drama|Musical|Romance   2512    5.0
## 3929                                            Action|Thriller   2616    2.0
## 3930                                              Drama|Romance   2616    5.0
## 3931                                 Adventure|Mystery|Thriller   2616    5.0
## 3932                                                     Comedy   2631    4.0
## 3933                                    Action|Romance|Thriller   2616    2.0
## 3934                                       Comedy|Drama|Fantasy   2631    5.0
## 3935                                                      Drama   2641    5.0
## 3936                                              Drama|Romance   2616    4.0
## 3937                                             Comedy|Romance   2616    2.0
## 3938                             Drama|Mystery|Romance|Thriller   2616    1.0
## 3939                                               Comedy|Drama   2631    3.0
## 3940                                       Comedy|Drama|Fantasy   2641    5.0
## 3941                                               Comedy|Drama   2631    3.0
## 3942                                    Action|Adventure|Comedy   2631    2.0
## 3943                               Comedy|Drama|Fantasy|Romance   2631    1.0
## 3944                                                     Comedy   2641    4.0
## 3945                                               Drama|Horror   2641    3.0
## 3946                                                      Drama   2652    4.0
## 3947                                                     Sci-Fi   2652    4.0
## 3948                               Action|Comedy|Fantasy|Sci-Fi   2641    4.0
## 3949                                           Action|Drama|War   2661    5.0
## 3950                                              Action|Horror   2661    4.0
## 3951                                                      Drama   2652    4.0
## 3952                                                     Horror   2652    4.0
## 3953                                                     Comedy   2641    4.0
## 3954                                               Comedy|Drama   2670    3.0
## 3955           Adventure|Animation|Children|Crime|Drama|Fantasy   2652    4.0
## 3956                               Comedy|Drama|Fantasy|Romance   2670    3.0
## 3957                                               Comedy|Drama   2670    5.0
## 3958                                       Action|Drama|Romance   2652    5.0
## 3959                                              Comedy|Sci-Fi   2670    4.0
## 3960                                               Comedy|Drama   2652    4.0
## 3961                                              Drama|Mystery   2641    4.0
## 3962                                               Comedy|Drama   2641    4.0
## 3963                   Action|Adventure|Comedy|Romance|Thriller   2661    3.0
## 3964                                               Comedy|Drama   2670    5.0
## 3965                               Action|Comedy|Crime|Thriller   2661    4.0
## 3966                                              Drama|Romance   2670    4.0
## 3967                                               Drama|Sci-Fi   2641    3.0
## 3968                                               Comedy|Drama   2670    3.0
## 3969                             Drama|Mystery|Romance|Thriller   2661    4.0
## 3970                                    Action|Adventure|Sci-Fi   2689    5.0
## 3971                                               Action|Drama   2661    4.0
## 3972                                           Adventure|Sci-Fi   2641    5.0
## 3973                                           Adventure|Sci-Fi   2641    4.0
## 3974                              Action|Horror|Sci-Fi|Thriller   2641    5.0
## 3975                   Action|Adventure|Fantasy|Horror|Thriller   2661    3.0
## 3976                              Children|Comedy|Drama|Fantasy   2276    3.0
## 3977                                    Action|Adventure|Sci-Fi   2661    4.0
## 3978                                  Action|Adventure|Thriller   2689    4.0
## 3979                                           Action|Drama|War   2689    5.0
## 3980                  Adventure|Drama|Film-Noir|Sci-Fi|Thriller   2641    5.0
## 3981                                       Action|Crime|Romance   2652    4.0
## 3982                               Action|Comedy|Crime|Thriller   2661    4.0
## 3983                                           Adventure|Sci-Fi   2641    2.0
## 3984                   Adventure|Children|Comedy|Fantasy|Sci-Fi   2641    3.0
## 3985                                 Action|Romance|War|Western   2689    4.0
## 3986                                    Action|Romance|Thriller   2689    3.0
## 3987                                              Action|Sci-Fi   2641    3.0
## 3988                              Action|Horror|Sci-Fi|Thriller   2641    3.0
## 3989                                Action|Adventure|Sci-Fi|War   2689    3.0
## 3990                           Crime|Film-Noir|Mystery|Thriller   2652    4.0
## 3991                                            Sci-Fi|Thriller   2641    4.0
## 3992                               Action|Drama|Sci-Fi|Thriller   2689    3.0
## 3993                           Action|Adventure|Sci-Fi|Thriller   2641    5.0
## 3994                                     Action|Sci-Fi|Thriller   2641    4.0
## 3995                                      Action|Crime|Thriller   2689    4.0
## 3996                                           Action|Adventure   2689    3.0
## 3997                                             Comedy|Romance   2661    3.0
## 3998                                Action|Drama|Romance|Sci-Fi   2641    4.0
## 3999                              Action|Horror|Sci-Fi|Thriller   2641    3.0
## 4000                                              Horror|Sci-Fi   2641    3.0
## 4001                                              Action|Sci-Fi   2641    3.0
## 4002                             Action|Romance|Sci-Fi|Thriller   2641    3.0
## 4003                                      Action|Drama|Thriller   2689    2.0
## 4004                                                  Drama|War   2714    5.0
## 4005                                     Children|Comedy|Sci-Fi   2641    3.0
## 4006                                    Action|Adventure|Sci-Fi   2726    4.0
## 4007                                                  Drama|War   2689    5.0
## 4008                         Action|Comedy|Crime|Drama|Thriller   2689    5.0
## 4009                                                     Comedy   2661    4.0
## 4010                                              Drama|Mystery   2689    4.0
## 4011                                     Horror|Sci-Fi|Thriller   2641    3.0
## 4012                                      Comedy|Horror|Musical   2661    3.0
## 4013                                     Horror|Sci-Fi|Thriller   2726    3.0
## 4014                                Action|Crime|Drama|Thriller   2641    4.0
## 4015                            Action|Adventure|Drama|Thriller   2641    3.0
## 4016                                           Action|Drama|War   2726    5.0
## 4017                                           Action|Drama|War   2641    4.0
## 4018                                                      Drama   2741    3.0
## 4019                              Action|Adventure|Comedy|Crime   2641    4.0
## 4020                                                     Comedy   2661    4.0
## 4021                                               Comedy|Drama   2661    2.0
## 4022                                    Action|Adventure|Sci-Fi   2741    5.0
## 4023                                              Action|Horror   2726    4.0
## 4024                                    Action|Adventure|Sci-Fi   2741    5.0
## 4025                                            Children|Comedy   2661    1.0
## 4026                                  Action|Comedy|Crime|Drama   2726    4.0
## 4027                                    Action|Adventure|Sci-Fi   2741    3.0
## 4028                             Action|Comedy|Romance|Thriller   2641    3.0
## 4029                              Action|Adventure|Drama|Sci-Fi   2741    4.0
## 4030                                        Action|Comedy|Drama   2641    4.0
## 4031                                            Action|Thriller   2641    5.0
## 4032                   Adventure|Children|Comedy|Fantasy|Sci-Fi   2741    3.0
## 4033                                           Action|Adventure   2641    4.0
## 4034                      Comedy|Drama|Fantasy|Romance|Thriller   2726    4.0
## 4035                                     Action|Sci-Fi|Thriller   2741    3.0
## 4036                                  Action|Adventure|Thriller   2641    4.0
## 4037                                        Action|Crime|Sci-Fi   2741    4.0
## 4038                                        Action|Crime|Sci-Fi   2741    1.0
## 4039            Action|Adventure|Children|Comedy|Fantasy|Sci-Fi   2741    1.0
## 4040                                  Action|Adventure|Thriller   2641    5.0
## 4041                                                     Action   2641    4.0
## 4042                                      Action|Drama|Thriller   2641    4.0
## 4043                                      Action|Drama|Thriller   2641    4.0
## 4044                                            Action|Thriller   2641    4.0
## 4045                                            Children|Comedy   2641    3.0
## 4046                                    Children|Comedy|Romance   2641    4.0
## 4047                                            Children|Comedy   2641    4.0
## 4048                                 Action|Adventure|Drama|War   2641    5.0
## 4049                                           Adventure|Comedy   2641    4.0
## 4050                                             Comedy|Musical   2641    3.0
## 4051                                                     Comedy   2641    3.0
## 4052                                             Comedy|Romance   2641    4.0
## 4053                                                     Comedy   2641    3.0
## 4054                                  Adventure|Sci-Fi|Thriller   2661    2.0
## 4055                                               Comedy|Crime   2641    4.0
## 4056                                              Drama|Western   2846    5.0
## 4057                                               Comedy|Drama   2641    4.0
## 4058                                             Comedy|Romance   2641    3.0
## 4059                                     Adventure|Drama|Sci-Fi   2661    5.0
## 4060                                               Comedy|Drama   2641    5.0
## 4061                                                      Drama   2641    4.0
## 4062                                                     Comedy   2641    4.0
## 4063                                               Comedy|Crime   2641    4.0
## 4064                                                     Comedy   2641    4.0
## 4065                                                      Crime   2641    4.0
## 4066                                                Crime|Drama   2641    4.0
## 4067                                Comedy|Crime|Drama|Thriller   2641    5.0
## 4068                                         Comedy|Crime|Drama   2641    5.0
## 4069                                Action|Crime|Drama|Thriller   2641    4.0
## 4070                                                   Thriller   2641    4.0
## 4071                                      Drama|Horror|Thriller   2641    4.0
## 4072                                       Crime|Drama|Thriller   2641    4.0
## 4073                        Comedy|Crime|Drama|Mystery|Thriller   2641    4.0
## 4074                                               Comedy|Drama   2641    4.0
## 4075                                              Drama|Romance   2641    3.0
## 4076                                                  Drama|War   2641    5.0
## 4077                                                      Drama   2641    4.0
## 4078                               Crime|Drama|Mystery|Thriller   2641    4.0
## 4079                                             Drama|Thriller   2641    4.0
## 4080                                        Crime|Drama|Fantasy   2641    4.0
## 4081                                              Drama|Romance   2641    5.0
## 4082                                                  Drama|War   2641    3.0
## 4083                                                      Drama   2641    5.0
## 4084                                                      Drama   2641    4.0
## 4085                                     Drama|Mystery|Thriller   2641    4.0
## 4086                                            Adventure|Drama   2641    3.0
## 4087                                             Drama|Thriller   2641    3.0
## 4088                               Action|Drama|Sci-Fi|Thriller   2641    4.0
## 4089                                             Children|Drama   2641    5.0
## 4090                                Comedy|Crime|Drama|Thriller   2339    4.0
## 4091                            Children|Comedy|Fantasy|Musical   2339    5.0
## 4092                                    Adventure|Drama|Western   2339    4.0
## 4093                                             Comedy|Western   2339    3.0
## 4094                                                      Drama   2339    2.0
## 4095                                  Action|Adventure|Thriller   2339    4.0
## 4096                                     Action|Adventure|Drama   2521    4.0
## 4097                           Crime|Film-Noir|Mystery|Thriller   2521    5.0
## 4098                                       Crime|Drama|Thriller   2521    5.0
## 4099                                                      Drama   2521    4.0
## 4100                               Action|Comedy|Fantasy|Sci-Fi   2652    5.0
## 4101                                        Drama|Horror|Sci-Fi   2652    4.0
## 4102                                               Drama|Sci-Fi   2652    5.0
## 4103                                    Adventure|Comedy|Sci-Fi   2652    4.0
## 4104                             Adventure|Drama|Romance|Sci-Fi   2652    4.0
## 4105                                    Action|Adventure|Sci-Fi   2652    3.0
## 4106                                           Action|Drama|War   2652    5.0
## 4107                             Action|Adventure|Drama|Romance   2652    4.0
## 4108                                Action|Crime|Drama|Thriller   2652    4.0
## 4109                                  Action|Adventure|Thriller   2652    4.0
## 4110                                    Action|Romance|Thriller   2652    4.0
## 4111                                                      Drama   2652    4.0
## 4112                                               Comedy|Drama   2652    4.0
## 4113                                             Drama|Thriller   2652    4.0
## 4114                                            Adventure|Drama   2652    4.0
## 4115                                                      Drama   2652    5.0
## 4116                                               Comedy|Drama   2652    4.0
## 4117                         Adventure|Children|Fantasy|Musical   2652    4.0
## 4118                                     Adventure|Drama|Sci-Fi   2267    5.0
## 4119                                Crime|Drama|Sci-Fi|Thriller   2267    5.0
## 4120                          Adventure|Children|Comedy|Fantasy   2267    3.0
## 4121                                 Action|Adventure|Drama|War   2267    5.0
## 4122                                                      Drama   2267    4.0
## 4123                                             Comedy|Romance   2198    4.0
## 4124                                               Comedy|Crime   2267    5.0
## 4125                                  Action|Crime|Drama|Sci-Fi   2267    2.0
## 4126                                                     Horror   2641    2.0
## 4127                                            Horror|Thriller   2641    4.0
## 4128                                              Horror|Sci-Fi   2641    4.0
## 4129                            Fantasy|Horror|Romance|Thriller   2641    4.0
## 4130                                            Horror|Thriller   2641    4.0
## 4131                             Drama|Mystery|Romance|Thriller   2641    4.0
## 4132                                     Drama|Mystery|Thriller   2641    5.0
## 4133                               Crime|Drama|Mystery|Thriller   2641    4.0
## 4134                               Comedy|Drama|Fantasy|Romance   2641    4.0
## 4135                                                   Thriller   2641    5.0
## 4136                                         Comedy|Crime|Drama   2641    3.0
## 4137                                    Action|Adventure|Sci-Fi   2521    5.0
## 4138                               Comedy|Drama|Fantasy|Romance   2521    5.0
## 4139                          Adventure|Children|Comedy|Fantasy   2521    4.0
## 4140                              Comedy|Fantasy|Romance|Sci-Fi   2521    4.0
## 4141                                           Action|Drama|War   2521    5.0
## 4142                              Action|Horror|Sci-Fi|Thriller   2521    4.0
## 4143                                         Drama|Thriller|War   2521    5.0
## 4144                                   Comedy|Drama|Romance|War   2521    5.0
## 4145                                              Action|Comedy   2641    4.0
## 4146                             Crime|Drama|Film-Noir|Thriller   2521    4.0
## 4147                                               Comedy|Drama   2521    5.0
## 4148                                       Crime|Drama|Thriller   2652    4.0
## 4149                                             Drama|Thriller   2515    5.0
## 4150                                   Action|Adventure|Fantasy   2385    4.0
## 4151                                  Action|Adventure|Thriller   2385    3.0
## 4152                                               Action|Drama   2385    3.0
## 4153                                               Action|Drama   2385    5.0
## 4154                            Action|Adventure|Crime|Thriller   2385    2.0
## 4155                                           Action|Drama|War   2385    3.0
## 4156                                      Action|Comedy|Fantasy   2385    3.0
## 4157                                               Action|Drama   2385    3.0
## 4158                                     Action|Sci-Fi|Thriller   2385    3.0
## 4159                                            Action|Thriller   2385    2.0
## 4160                             Fantasy|Horror|Mystery|Romance   2385    3.0
## 4161                                               Drama|Horror   2385    4.0
## 4162                                               Drama|Horror   2385    4.0
## 4163                                         Adventure|Children   2385    4.0
## 4164                                      Drama|Sci-Fi|Thriller   2652    5.0
## 4165                                                     Comedy   2484    3.0
## 4166                                    Adventure|Comedy|Sci-Fi   2484    3.0
## 4167                                      Action|Drama|Thriller   2548    4.0
## 4168                                  Action|Adventure|Thriller   2548    3.0
## 4169                                            Action|Thriller   2548    3.0
## 4170                                  Action|Adventure|Thriller   2548    3.0
## 4171                                                     Comedy   2395    3.0
## 4172                                                      Drama   2484    4.0
## 4173                                           Adventure|Comedy   2484    3.0
## 4174                                       Crime|Drama|Thriller   2484    3.0
## 4175                                       Action|Drama|Romance   2484    3.0
## 4176                                                   Thriller   2484    3.0
## 4177                                             Drama|Thriller   2484    3.0
## 4178                                              Drama|Romance   2484    3.0
## 4179                                                      Drama   2484    3.0
## 4180                                                Crime|Drama   2484    3.0
## 4181                                     Action|Sci-Fi|Thriller   2484    2.0
## 4182                                                     Comedy   2484    2.0
## 4183                                       Comedy|Drama|Romance   2160    4.0
## 4184                             Adventure|Comedy|Drama|Musical   2180    4.0
## 4185                                       Comedy|Drama|Romance   2180    2.0
## 4186                                    Action|Romance|Thriller   2714    4.0
## 4187                                    Action|Adventure|Sci-Fi   2714    3.0
## 4188                                                      Drama   2714    3.0
## 4189                                                      Drama   2714    2.0
## 4190                                Action|Crime|Drama|Thriller   2714    1.0
## 4191                                    Action|Adventure|Sci-Fi   2418    3.0
## 4192                                           Action|Adventure   2134    3.0
## 4193                        Adventure|Animation|Children|Comedy   2521    4.0
## 4194  Adventure|Animation|Children|Comedy|Crime|Fantasy|Mystery   2521    5.0
## 4195                                            Action|Thriller   2652    4.0
## 4196                                                     Comedy   2134    4.0
## 4197                                                      Drama   2714    2.0
## 4198                                                     Comedy   2484    3.0
## 4199                                                      Drama   2720    4.0
## 4200                                              Action|Comedy   2573    2.0
## 4201                                    Action|Adventure|Sci-Fi   2484    4.0
## 4202                                    Adventure|Comedy|Sci-Fi   2484    4.0
## 4203                                               Comedy|Drama   2484    2.0
## 4204                                                      Drama   2424    5.0
## 4205                                             Drama|Thriller   2652    4.0
## 4206                                                     Comedy   2652    5.0
## 4207                                                     Comedy   2652    4.0
## 4208                           Action|Adventure|Sci-Fi|Thriller   2460    3.0
## 4209                                                Crime|Drama   2152    4.0
## 4210                 Adventure|Animation|Children|Comedy|Sci-Fi   2152    5.0
## 4211                                                      Drama   2152    4.0
## 4212                                             Drama|Thriller   2152    4.0
## 4213                                Action|Comedy|Crime|Romance   2152    4.0
## 4214                       Crime|Drama|Fantasy|Romance|Thriller   2152    5.0
## 4215                             Crime|Drama|Film-Noir|Thriller   2152    5.0
## 4216                                       Comedy|Drama|Romance   2152    5.0
## 4217                                         Animation|Children   2152    3.0
## 4218                                              Drama|Romance   2152    4.0
## 4219                                                      Drama   2233    4.0
## 4220                                             Comedy|Romance   2790    1.0
## 4221                                                     Comedy   2515    3.0
## 4222                                             Comedy|Romance   2385    5.0
## 4223                                              Drama|Romance   2385    3.0
## 4224                                              Action|Sci-Fi   2233    1.0
## 4225                  Adventure|Drama|Film-Noir|Sci-Fi|Thriller   2652    4.0
## 4226                                                      Drama   2601    4.0
## 4227                                       Comedy|Drama|Romance   2484    3.0
## 4228                                                      Drama   2484    4.0
## 4229                                         Action|Crime|Drama   2233    4.0
## 4230                                       Crime|Drama|Thriller   2197    4.0
## 4231                                Comedy|Crime|Drama|Thriller   2197    4.0
## 4232                                               Comedy|Drama   2197    4.0
## 4233                                             Comedy|Romance   2197    5.0
## 4234                                      Drama|Musical|Romance   2197    3.0
## 4235                                     Comedy|Musical|Romance   2197    3.0
## 4236                                             Comedy|Romance   2197    3.0
## 4237                                          Drama|Romance|War   2197    4.0
## 4238                                                      Drama   2601    3.0
## 4239                                              Drama|Romance   2714    4.0
## 4240                                    Adventure|Drama|Romance   2714    3.0
## 4241                                Action|Drama|Romance|Sci-Fi   2714    2.0
## 4242                                              Drama|Romance   2652    4.0
## 4243                                     Adventure|Comedy|Crime   2573    4.0
## 4244                                             Comedy|Romance   2515    4.0
## 4245                                Action|Crime|Drama|Thriller   2120    5.0
## 4246                                            Horror|Thriller   2120    5.0
## 4247                                             Comedy|Romance   2166    5.0
## 4248                                        Action|Comedy|Drama   2166    3.0
## 4249                                                     Horror   2191    1.0
## 4250                                    Action|Adventure|Sci-Fi   2191    4.0
## 4251                                              Drama|Mystery   2191    4.0
## 4252                                              Drama|Romance   2191    3.0
## 4253                                                      Drama   2191    5.0
## 4254                                                  Drama|War   2191    4.0
## 4255                                                     Comedy   2191    4.0
## 4256                                     Adventure|Comedy|Drama   2191    4.0
## 4257                                             Crime|Thriller   2191    3.0
## 4258                               Comedy|Drama|Fantasy|Romance   2191    4.0
## 4259                             Adventure|Drama|Romance|Sci-Fi   2191    4.0
## 4260                                                Documentary   2191    5.0
## 4261                                             Comedy|Romance   2191    3.0
## 4262                                                     Comedy   2191    3.0
## 4263                Adventure|Animation|Children|Comedy|Fantasy   2244    5.0
## 4264                                    Adventure|Comedy|Sci-Fi   2244    3.0
## 4265                           Action|Adventure|Sci-Fi|Thriller   2314    3.0
## 4266                                             Comedy|Fantasy   2314    5.0
## 4267                                             Comedy|Musical   2314    5.0
## 4268                              Children|Comedy|Drama|Fantasy   2323    5.0
## 4269                                               Comedy|Drama   2314    3.0
## 4270                      Comedy|Drama|Fantasy|Romance|Thriller   2323    5.0
## 4271                                           Action|Drama|War   2323    5.0
## 4272                                            Horror|Thriller   2314    1.0
## 4273                                             Comedy|Romance   2323    2.0
## 4274                                   Comedy|Drama|Romance|War   2412    3.0
## 4275                                                      Drama   2412    2.0
## 4276                          Action|Adventure|Romance|Thriller   2412    4.0
## 4277                                             Comedy|Romance   2412    4.0
## 4278                                                Documentary   2444    5.0
## 4279                                                      Drama   2444    4.0
## 4280                                                 Comedy|War   2444    3.0
## 4281                                              Drama|Mystery   2444    5.0
## 4282                                                  Drama|War   2444    3.0
## 4283                                Comedy|Crime|Drama|Thriller   2444    4.0
## 4284                                                Documentary   2444    5.0
## 4285                                                      Drama   2444    5.0
## 4286                                        Documentary|Musical   2444    4.0
## 4287                                               Comedy|Drama   2444    3.0
## 4288                                               Comedy|Drama   2444    4.0
## 4289                                       Comedy|Drama|Romance   2444    4.0
## 4290                                             Comedy|Romance   2444    3.0
## 4291                                             Comedy|Romance   2444    4.0
## 4292                                  Animation|Children|Comedy   2444    3.0
## 4293                                               Comedy|Drama   2444    3.0
## 4294                                               Comedy|Drama   2444    4.0
## 4295                             Adventure|Comedy|Crime|Romance   2444    4.0
## 4296                                     Adventure|Comedy|Crime   2444    3.0
## 4297                                               Comedy|Drama   2444    3.0
## 4298                                                      Drama   2453    2.0
## 4299                                                      Drama   2453    5.0
## 4300                                                      Drama   2453    4.0
## 4301                                                     Comedy   2453    5.0
## 4302                                            Horror|Thriller   2453    4.0
## 4303                                                     Comedy   2468    3.0
## 4304                                             Comedy|Romance   2468    3.0
## 4305                                                     Comedy   2468    2.0
## 4306                                  Animation|Children|Comedy   2468    4.0
## 4307                                Action|Crime|Drama|Thriller   2468    1.0
## 4308                                                     Comedy   2468    3.0
## 4309                                            Horror|Thriller   2468    4.0
## 4310                                                     Comedy   2468    4.0
## 4311                                                     Comedy   2468    2.0
## 4312                                                      Drama   2468    2.0
## 4313                                                Crime|Drama   2468    5.0
## 4314                              Crime|Horror|Mystery|Thriller   2468    5.0
## 4315                                                     Comedy   2468    3.0
## 4316                                                      Drama   2468    5.0
## 4317                               Comedy|Drama|Fantasy|Romance   2468    3.0
## 4318                           Action|Adventure|Sci-Fi|Thriller   2468    5.0
## 4319                                       Comedy|Drama|Romance   2468    5.0
## 4320                                             Comedy|Fantasy   2468    4.0
## 4321                                            Action|Thriller   2468    5.0
## 4322                                  Drama|Romance|War|Western   2468    5.0
## 4323                                               Comedy|Drama   2468    4.0
## 4324                              Action|Adventure|Drama|Sci-Fi   2468    4.0
## 4325                                             Comedy|Romance   2468    4.0
## 4326                                            Action|Thriller   2468    3.0
## 4327                                     Horror|Sci-Fi|Thriller   2468    3.0
## 4328                              Comedy|Fantasy|Romance|Sci-Fi   2468    5.0
## 4329                                      Action|Drama|Thriller   2468    4.0
## 4330                                    Children|Comedy|Fantasy   2468    3.0
## 4331                                                      Drama   2468    5.0
## 4332                                      Action|Crime|Thriller   2468    3.0
## 4333                                            Children|Comedy   2468    4.0
## 4334                                               Comedy|Drama   2468    3.0
## 4335                                                     Comedy   2495    3.0
## 4336                                              Comedy|Sci-Fi   2603    2.0
## 4337                                     Adventure|Comedy|Crime   2603    5.0
## 4338                           Action|Adventure|Sci-Fi|Thriller   2603    4.0
## 4339                                      Drama|Horror|Thriller   2603    3.0
## 4340                                  Action|Adventure|Thriller   2603    4.0
## 4341                                         Action|Crime|Drama   2603    4.0
## 4342                                      Action|Comedy|Western   2603    5.0
## 4343                                            Action|Thriller   2603    4.0
## 4344                                               Action|Drama   2603    5.0
## 4345  Adventure|Animation|Children|Comedy|Crime|Fantasy|Mystery   2624    4.0
## 4346                                      Children|Drama|Sci-Fi   2624    5.0
## 4347                                                      Drama   2624    5.0
## 4348                             Action|Adventure|Drama|Romance   2624    1.0
## 4349                                 Adventure|Children|Fantasy   2624    3.0
## 4350                                 Adventure|Children|Fantasy   2624    5.0
## 4351                               Action|Crime|Sci-Fi|Thriller   2624    5.0
## 4352                                    Action|Adventure|Sci-Fi   2624    5.0
## 4353                                    Action|Adventure|Sci-Fi   2624    5.0
## 4354                                    Action|Adventure|Sci-Fi   2624    3.0
## 4355                                   Comedy|Drama|Romance|War   2624    5.0
## 4356                                       Comedy|Drama|Romance   2624    5.0
## 4357                      Comedy|Drama|Fantasy|Romance|Thriller   2624    3.0
## 4358                                               Comedy|Drama   2624    5.0
## 4359                                                     Comedy   2624    4.0
## 4360                                      Action|Crime|Thriller   2624    3.0
## 4361                                                      Drama   2664    3.0
## 4362                                       Crime|Drama|Thriller   2685    5.0
## 4363                                               Action|Drama   2697    3.0
## 4364                                                      Drama   2685    3.0
## 4365                                    Action|Adventure|Sci-Fi   2685    4.0
## 4366                                      Crime|Horror|Thriller   2685    5.0
## 4367                                                Crime|Drama   2709    5.0
## 4368                                  Action|Comedy|Crime|Drama   2709    3.0
## 4369                        Comedy|Crime|Drama|Romance|Thriller   2709    5.0
## 4370                                               Comedy|Drama   2709    4.0
## 4371                                       Comedy|Drama|Romance   2709    4.0
## 4372                                                      Drama   2709    3.0
## 4373                                                Crime|Drama   2709    5.0
## 4374                       Crime|Drama|Fantasy|Romance|Thriller   2709    3.0
## 4375                                       Comedy|Drama|Romance   2709    4.0
## 4376                                                Crime|Drama   2709    3.0
## 4377                                                      Drama   2709    3.0
## 4378                              Action|Crime|Thriller|Western   2709    2.0
## 4379                                         Action|Crime|Drama   2709    3.0
## 4380                                      Action|Mystery|Sci-Fi   2709    2.0
## 4381                                    Action|Adventure|Sci-Fi   2709    4.0
## 4382                                            Action|Thriller   2709    3.0
## 4383                                  Action|Adventure|Thriller   2709    3.0
## 4384                                     Action|Sci-Fi|Thriller   2709    3.0
## 4385                                         Action|Crime|Drama   2709    3.0
## 4386                                           Adventure|Sci-Fi   2709    3.0
## 4387                                 Action|Adventure|Drama|War   2709    4.0
## 4388                             Adventure|Drama|Romance|Sci-Fi   2709    2.0
## 4389  Adventure|Animation|Children|Comedy|Crime|Fantasy|Mystery   2709    4.0
## 4390                                             Drama|Thriller   2709    4.0
## 4391                                           Adventure|Comedy   2709    3.0
## 4392                                   Action|Adventure|Fantasy   2709    3.0
## 4393                                             Comedy|Romance   2709    4.0
## 4394                                       Comedy|Drama|Romance   2709    4.0
## 4395                                       Comedy|Drama|Romance   2709    2.0
## 4396                                                     Comedy   2709    3.0
## 4397                                              Drama|Mystery   2709    3.0
## 4398                                      Action|Comedy|Western   2722    4.0
## 4399                                       Action|Comedy|Horror   2722    5.0
## 4400                                               Comedy|Drama   2722    4.0
## 4401                                             Comedy|Romance   2722    5.0
## 4402                                               Comedy|Drama   2722    3.0
## 4403                                                     Comedy   2722    5.0
## 4404                                    Action|Adventure|Sci-Fi   2729    5.0
## 4405                         Adventure|Children|Fantasy|Musical   2729    4.0
## 4406                                                Crime|Drama   2729    4.0
## 4407                                               Action|Drama   2729    5.0
## 4408                                     Action|Sci-Fi|Thriller   2729    4.0
## 4409                             Action|Adventure|Drama|Romance   2729    3.0
## 4410                                       Action|Drama|Romance   2729    3.0
## 4411                                    Adventure|Comedy|Sci-Fi   2729    4.0
## 4412                            Action|Adventure|Comedy|Romance   2729    2.0
## 4413                                Action|Adventure|Sci-Fi|War   2729    4.0
## 4414                                               Action|Drama   2729    3.0
## 4415                                  Action|Adventure|Thriller   2729    4.0
## 4416                                     Action|Adventure|Drama   2729    2.0
## 4417                          Adventure|Children|Comedy|Fantasy   2729    4.0
## 4418                                        Drama|Horror|Sci-Fi   2729    4.0
## 4419                                       Comedy|Drama|Romance   2729    4.0
## 4420                                                     Comedy   2729    4.0
## 4421                                                     Comedy   2729    3.0
## 4422                                       Comedy|Drama|Romance   2729    4.0
## 4423                                       Comedy|Drama|Romance   2729    5.0
## 4424                                       Comedy|Drama|Romance   2729    4.0
## 4425                                       Comedy|Drama|Romance   2729    3.0
## 4426                                                     Comedy   2729    5.0
## 4427                                       Comedy|Drama|Fantasy   2729    4.0
## 4428                                             Comedy|Romance   2729    5.0
## 4429                                                     Comedy   2729    2.0
## 4430                                                Crime|Drama   2729    4.0
## 4431                                     Horror|Sci-Fi|Thriller   2729    4.0
## 4432                                              Drama|Mystery   2729    5.0
## 4433                                        Adventure|Drama|War   2729    3.0
## 4434                                                      Drama   2729    3.0
## 4435                                                      Drama   2729    4.0
## 4436                                         Comedy|Crime|Drama   2729    5.0
## 4437                                              Drama|Romance   2729    5.0
## 4438                                               Comedy|Drama   2729    4.0
## 4439                                                Crime|Drama   2729    4.0
## 4440                                                      Drama   2729    5.0
## 4441                                                      Drama   2729    4.0
## 4442                                                      Drama   2734    4.0
## 4443                                             Comedy|Romance   2734    5.0
## 4444                                       Comedy|Drama|Fantasy   2685    5.0
## 4445                                             Comedy|Romance   2734    3.0
## 4446                                                      Drama   2685    4.0
## 4447                                              Drama|Romance   2747    4.0
## 4448                    Action|Adventure|Comedy|Fantasy|Romance   2747    5.0
## 4449                                     Adventure|Comedy|Drama   2747    5.0
## 4450                Action|Adventure|Comedy|Crime|Drama|Romance   2747    4.0
## 4451                                               Comedy|Drama   2685    3.0
## 4452                                                     Comedy   2747    3.0
## 4453                                               Comedy|Crime   2685    4.0
## 4454                                                Documentary   2685    4.0
## 4455                                    Action|Adventure|Sci-Fi   2685    4.0
## 4456                                                      Drama   2685    4.0
## 4457                                       Crime|Drama|Thriller   2685    4.0
## 4458                              Comedy|Crime|Mystery|Thriller   2685    4.0
## 4459                                                      Drama   2685    4.0
## 4460                                   Action|Adventure|Romance   2685    3.0
## 4461                                                      Drama   2685    3.0
## 4462                                     Action|Adventure|Drama   2685    5.0
## 4463                                              Drama|Romance   2765    4.0
## 4464                                              Drama|Romance   2765    4.0
## 4465                                           Comedy|Drama|War   2685    4.0
## 4466                                                Crime|Drama   2765    5.0
## 4467                                            Horror|Thriller   2765    5.0
## 4468                                                Crime|Drama   2765    5.0
## 4469                                           Comedy|Drama|War   2765    4.0
## 4470                                              Drama|Mystery   2765    4.0
## 4471                                               Comedy|Drama   2765    5.0
## 4472                                                     Comedy   2765    4.0
## 4473                        Comedy|Crime|Drama|Romance|Thriller   2765    4.0
## 4474                                                      Drama   2765    4.0
## 4475                                                      Drama   2765    4.0
## 4476                         Adventure|Children|Fantasy|Musical   2765    4.0
## 4477                                                Crime|Drama   2765    4.0
## 4478                                                      Drama   2765    5.0
## 4479                                              Action|Horror   2765    4.0
## 4480                                         Action|Crime|Drama   2765    4.0
## 4481                          Action|Adventure|Comedy|Drama|War   2765    4.0
## 4482                                            Horror|Thriller   2765    5.0
## 4483                            Action|Adventure|Comedy|Musical   2765    4.0
## 4484                                  Action|Comedy|Crime|Drama   2765    4.0
## 4485                                               Comedy|Crime   2765    2.0
## 4486                                  Action|Adventure|Thriller   2765    4.0
## 4487                                               Comedy|Drama   2765    1.0
## 4488                                              Action|Comedy   2685    3.0
## 4489                           Crime|Film-Noir|Mystery|Thriller   2765    5.0
## 4490                                      Drama|Horror|Thriller   2685    4.0
## 4491                                      Action|Comedy|Western   2765    5.0
## 4492                                                      Drama   2765    5.0
## 4493                                                     Comedy   2765    3.0
## 4494                                                     Comedy   2765    5.0
## 4495                                                      Drama   2765    4.0
## 4496                           Action|Adventure|Sci-Fi|Thriller   2765    4.0
## 4497                                              Drama|Romance   2765    4.0
## 4498                         Adventure|Animation|Children|Drama   2765    4.0
## 4499                                                      Drama   2765    4.0
## 4500                                     Action|Adventure|Drama   2765    4.0
## 4501                                             Comedy|Romance   2765    4.0
## 4502                                                      Drama   2765    4.0
## 4503                                     Drama|Mystery|Thriller   2765    4.0
## 4504                                   Adventure|Fantasy|Sci-Fi   2765    3.0
## 4505                                       Action|Crime|Romance   2765    4.0
## 4506                                       Comedy|Drama|Romance   2765    4.0
## 4507  Adventure|Animation|Children|Comedy|Crime|Fantasy|Mystery   2765    5.0
## 4508                                              Drama|Romance   2765    4.0
## 4509                                                   Thriller   2765    4.0
## 4510                                             Comedy|Romance   2765    4.0
## 4511                                               Comedy|Drama   2765    5.0
## 4512                                                      Drama   2765    4.0
## 4513                                                     Comedy   2818    5.0
## 4514                                  Animation|Children|Comedy   2818    3.0
## 4515                                     Action|Adventure|Drama   2818    5.0
## 4516                                                     Comedy   2818    4.0
## 4517                                                     Comedy   2818    3.0
## 4518                                                   Thriller   2810    3.0
## 4519                 Animation|Children|Fantasy|Musical|Romance   2810    3.0
## 4520                                  Animation|Children|Comedy   2810    2.0
## 4521                                                     Comedy   2810    4.0
## 4522                                               Comedy|Drama   2810    4.0
## 4523                                                     Comedy   2810    3.0
## 4524                                                      Drama   2810    5.0
## 4525                                    Adventure|Comedy|Horror   2810    3.0
## 4526                            Action|Adventure|Comedy|Fantasy   2810    3.0
## 4527                                                     Horror   2810    3.0
## 4528                                      Drama|Horror|Thriller   2810    3.0
## 4529                                            Horror|Thriller   2810    3.0
## 4530                                            Horror|Thriller   2810    3.0
## 4531                                              Comedy|Horror   2810    2.0
## 4532                                            Horror|Thriller   2810    3.0
## 4533                                    Horror|Mystery|Thriller   2810    3.0
## 4534                                            Horror|Thriller   2810    3.0
## 4535                                        Drama|Horror|Sci-Fi   2810    2.0
## 4536                                                     Horror   2810    3.0
## 4537                                                     Horror   2810    4.0
## 4538                             Comedy|Fantasy|Horror|Thriller   2810    3.0
## 4539                                                     Horror   2810    3.0
## 4540                                                   Thriller   2810    3.0
## 4541                                             Drama|Thriller   2810    3.0
## 4542                                     Drama|Mystery|Thriller   2810    2.0
## 4543                                            Horror|Thriller   2810    3.0
## 4544                                               Comedy|Drama   2839    4.0
## 4545                                                      Drama   2839    5.0
## 4546                                            Horror|Thriller   2839    1.0
## 4547                                                     Comedy   2839    4.0
## 4548                                              Drama|Romance   2810    3.0
## 4549                                                      Drama   2810    3.0
## 4550                                                      Drama   2810    4.0
## 4551                                   Animation|Comedy|Musical   2839    2.0
## 4552  Adventure|Animation|Children|Comedy|Crime|Fantasy|Mystery   2839    4.0
## 4553                                                  Drama|War   2839    5.0
## 4554                                                      Drama   2839    5.0
## 4555                                              Drama|Romance   2810    2.0
## 4556                                                Crime|Drama   2839    5.0
## 4557                                              Drama|Mystery   2839    3.0
## 4558                                               Action|Crime   2810    3.0
## 4559                            Action|Adventure|Mystery|Sci-Fi   2810    3.0
## 4560                                                     Comedy   2810    2.0
## 4561                                                     Comedy   2810    2.0
## 4562                                               Comedy|Drama   2810    3.0
## 4563                                       Comedy|Crime|Musical   2810    2.0
## 4564                                              Drama|Mystery   2877    4.0
## 4565                                      Drama|Mystery|Romance   2877    5.0
## 4566                                   Comedy|Drama|Romance|War   2877    4.0
## 4567                                Comedy|Crime|Drama|Thriller   2877    4.0
## 4568                                       Crime|Drama|Thriller   2877    4.0
## 4569                                    Action|Adventure|Sci-Fi   2877    5.0
## 4570                                                  Drama|War   2877    3.0
## 4571                                       Comedy|Drama|Fantasy   2877    5.0
## 4572                                                     Comedy   2877    4.0
## 4573                                                Crime|Drama   2877    3.0
## 4574                                                      Drama   2877    5.0
## 4575                               Crime|Drama|Mystery|Thriller   2877    4.0
## 4576                                                     Comedy   2877    2.0
## 4577                                            Adventure|Drama   2314    4.0
## 4578                                     Drama|Mystery|Thriller   2314    1.0
## 4579                               Comedy|Drama|Fantasy|Romance   2314    4.0
## 4580                                                     Comedy   2314    5.0
## 4581                                               Comedy|Drama   2314    1.0
## 4582                                            Drama|Film-Noir   2314    3.0
## 4583                                       Crime|Drama|Thriller   2314    3.0
## 4584                                      Comedy|Drama|Thriller   2314    3.0
## 4585                                          Action|Sci-Fi|War   2314    1.0
## 4586                                                Crime|Drama   2314    3.0
## 4587                                 Adventure|Mystery|Thriller   2314    3.0
## 4588                                                      Drama   2314    3.0
## 4589                           Action|Adventure|Sci-Fi|Thriller   2314    4.0
## 4590                                                      Drama   2314    2.0
## 4591                                      Drama|Horror|Thriller   2810    4.0
## 4592                                                     Horror   2810    4.0
## 4593                                                     Horror   2810    4.0
## 4594                                            Horror|Thriller   2810    2.0
## 4595                                                     Horror   2810    4.0
## 4596                                 Adventure|Children|Fantasy   2810    3.0
## 4597                                                     Comedy   2810    3.0
## 4598                                      Action|Crime|Thriller   2810    3.0
## 4599                                               Comedy|Crime   2810    4.0
## 4600                                       Comedy|Drama|Romance   2765    4.0
## 4601                                                      Drama   2765    2.0
## 4602                                                     Comedy   2765    4.0
## 4603                                    Action|Adventure|Sci-Fi   2765    4.0
## 4604                                    Action|Adventure|Sci-Fi   2765    4.0
## 4605                                Action|Crime|Drama|Thriller   2765    4.0
## 4606                                               Comedy|Drama   2765    4.0
## 4607                                    Action|Adventure|Sci-Fi   2765    4.0
## 4608                                     Horror|Sci-Fi|Thriller   2765    5.0
## 4609                                                     Comedy   2765    4.0
## 4610                                                      Drama   2765    4.0
## 4611                           Crime|Film-Noir|Mystery|Thriller   2765    4.0
## 4612                                               Comedy|Drama   2765    4.0
## 4613                                                     Comedy   2765    2.0
## 4614                                                      Drama   2765    4.0
## 4615                               Action|Comedy|Crime|Thriller   2765    2.0
## 4616                            Adventure|Crime|Sci-Fi|Thriller   2765    4.0
## 4617                        Adventure|Animation|Children|Comedy   2765    4.0
## 4618                                              Drama|Romance   2765    4.0
## 4619                                                 Comedy|War   2664    3.0
## 4620                                              Drama|Mystery   2664    3.0
## 4621                                                     Comedy   2664    4.0
## 4622                                  Action|Adventure|Thriller   2664    5.0
## 4623                                       Crime|Drama|Thriller   2765    4.0
## 4624                                                      Drama   2765    3.0
## 4625                                      Comedy|Crime|Thriller   2765    4.0
## 4626                                             Comedy|Romance   2765    4.0
## 4627                                    Children|Comedy|Fantasy   2765    5.0
## 4628                                     Comedy|Horror|Thriller   2765    4.0
## 4629                                                     Comedy   2765    3.0
## 4630                                 Adventure|Children|Musical   2765    3.0
## 4631                            Action|Adventure|Comedy|Romance   2765    4.0
## 4632                                                     Comedy   2765    3.0
## 4633                              Action|Horror|Sci-Fi|Thriller   2765    4.0
## 4634                                               Comedy|Crime   2765    4.0
## 4635                                            Horror|Thriller   2765    4.0
## 4636                                     Comedy|Musical|Romance   2765    5.0
## 4637                                  Adventure|Children|Comedy   2765    3.0
## 4638                                                     Horror   2765    3.0
## 4639                      Action|Children|Comedy|Fantasy|Sci-Fi   2765    2.0
## 4640                                              Horror|Sci-Fi   2765    3.0
## 4641                              Action|Horror|Sci-Fi|Thriller   2765    4.0
## 4642                                                 Action|War   2765    4.0
## 4643                                     Horror|Sci-Fi|Thriller   2765    2.0
## 4644                                                     Comedy   2765    3.0
## 4645                                                     Comedy   2765    4.0
## 4646                                     Action|Sci-Fi|Thriller   2765    3.0
## 4647         Adventure|Animation|Children|Comedy|Fantasy|Sci-Fi   2765    2.0
## 4648                                          Action|Sci-Fi|War   2765    1.0
## 4649                                 Adventure|Children|Fantasy   2765    3.0
## 4650                                            Sci-Fi|Thriller   2765    3.0
## 4651                                                     Horror   2765    3.0
## 4652                                     Comedy|Horror|Thriller   2765    1.0
## 4653                                            Children|Comedy   2765    2.0
## 4654                                           Action|Adventure   2765    2.0
## 4655                                      Crime|Drama|Film-Noir   2515    5.0
## 4656                                   Crime|Film-Noir|Thriller   2515    5.0
## 4657                                      Drama|Sci-Fi|Thriller   2720    4.0
## 4658                                             Comedy|Romance   2714    3.0
## 4659                                                      Drama   2747    4.0
## 4660                                                Crime|Drama   2747    4.0
## 4661                                                      Drama   2747    3.0
## 4662                                   Mystery|Romance|Thriller   2747    3.0
## 4663                                       Action|Crime|Romance   2747    4.0
## 4664                                    Action|Adventure|Sci-Fi   2747    4.0
## 4665                                              Action|Horror   2747    3.0
## 4666                                               Comedy|Drama   2747    4.0
## 4667                                  Animation|Children|Comedy   2747    5.0
## 4668                                                      Drama   2747    4.0
## 4669                                             Comedy|Romance   2233    2.0
## 4670                                              Action|Comedy   2233    3.0
## 4671                                                  Drama|War   2161    3.0
## 4672                                  Action|Adventure|Thriller   2877    3.0
## 4673                                       Action|Comedy|Sci-Fi   2877    3.0
## 4674                Adventure|Animation|Children|Comedy|Musical   2747    4.0
## 4675                         Adventure|Animation|Children|Drama   2747    4.0
## 4676                                 Animation|Children|Musical   2747    4.0
## 4677                Adventure|Animation|Children|Comedy|Musical   2747    3.0
## 4678                                  Animation|Children|Comedy   2747    3.0
## 4679                                         Animation|Children   2747    4.0
## 4680                                 Animation|Children|Musical   2747    3.0
## 4681                                                      Drama   2685    4.0
## 4682                           Crime|Film-Noir|Mystery|Thriller   2747    5.0
## 4683                                             Drama|Thriller   2747    3.0
## 4684                            Fantasy|Horror|Mystery|Thriller   2747    1.0
## 4685                                             Drama|Thriller   2747    2.0
## 4686                                            Horror|Thriller   2747    1.0
## 4687                                    Horror|Mystery|Thriller   2747    2.0
## 4688                                             Drama|Thriller   2747    1.0
## 4689                                    Action|Romance|Thriller   2747    1.0
## 4690                                                Documentary   2685    4.0
## 4691                                             Comedy|Romance   2197    5.0
## 4692                          Animation|Children|Comedy|Musical   2197    3.0
## 4693                                               Comedy|Drama   2650    3.0
## 4694                                             Comedy|Romance   2650    2.0
## 4695                                              Drama|Romance   2650    4.0
## 4696                                                     Comedy   2650    2.0
## 4697                                               Comedy|Drama   2650    3.0
## 4698                                    Adventure|Comedy|Sci-Fi   2650    1.0
## 4699                        Comedy|Crime|Drama|Romance|Thriller   2650    4.0
## 4700                                      Action|Comedy|Western   2650    2.0
## 4701                                 Action|Adventure|Drama|War   2650    4.0
## 4702                                                      Drama   2722    3.0
## 4703                                                     Horror   2722    4.0
## 4704                                     Drama|Fantasy|Thriller   2722    4.0
## 4705                                                    Western   2765    4.0
## 4706                                   Action|Drama|Romance|War   2765    4.0
## 4707                                    Action|Mystery|Thriller   2765    5.0
## 4708                                    Action|Mystery|Thriller   2765    2.0
## 4709                               Action|Comedy|Crime|Thriller   2765    3.0
## 4710                                    Action|Adventure|Horror   2765    3.0
## 4711                                             Drama|Thriller   2765    4.0
## 4712                                             Crime|Thriller   2765    3.0
## 4713                                    Horror|Mystery|Thriller   2765    3.0
## 4714                                       Comedy|Drama|Romance   2515    5.0
## 4715                                       Comedy|Drama|Romance   2747    5.0
## 4716                                                     Comedy   2233    1.0
## 4717                                             Comedy|Romance   2233    2.0
## 4718                                               Drama|Horror   2134    4.0
## 4719                        Comedy|Crime|Drama|Romance|Thriller   2857    4.0
## 4720                                                     Sci-Fi   2857    4.0
## 4721                                                     Comedy   2385    4.0
## 4722                                             Comedy|Romance   2233    2.0
## 4723                         Action|Crime|Drama|Horror|Thriller   2233    5.0
## 4724                                                  Drama|War   2233    3.0
## 4725                                                      Drama   2425    2.0
## 4726                                                     Comedy   2650    5.0
## 4727                                                      Drama   2385    4.0
## 4728                                                      Drama   2720    5.0
## 4729                                       Comedy|Drama|Romance   2134    3.0
## 4730                                             Comedy|Romance   2424    2.0
## 4731                                            Crime|Film-Noir   2424    2.0
## 4732                                            Action|Thriller   2385    5.0
## 4733                                                      Drama   2484    3.0
## 4734                                               Action|Drama   2484    3.0
## 4735                                              Drama|Romance   2484    1.0
## 4736                                          Documentary|Drama   2765    4.0
## 4737                                                     Comedy   2714    3.0
## 4738                                       Crime|Drama|Thriller   2685    5.0
## 4739                                             Drama|Thriller   2685    4.0
## 4740                               Crime|Drama|Romance|Thriller   2515    4.0
## 4741                                     Action|Sci-Fi|Thriller   2548    2.0
## 4742                                                     Comedy   2385    4.0
## 4743                   Action|Adventure|Fantasy|Horror|Thriller   2818    3.0
## 4744                                    Action|Adventure|Comedy   2818    4.0
## 4745                                Action|Crime|Drama|Thriller   2818    5.0
## 4746                                                     Comedy   2818    1.0
## 4747                                           Action|Adventure   2818    4.0
## 4748        Adventure|Animation|Children|Comedy|Fantasy|Romance   2818    5.0
## 4749                                             Drama|Thriller   2573    1.0
## 4750                                              Drama|Western   2237    4.0
## 4751                                                      Drama   2237    5.0
## 4752                                              Comedy|Horror   2237    1.0
## 4753                                                      Drama   2237    3.0
## 4754                                             Crime|Thriller   2237    4.0
## 4755                  Adventure|Animation|Children|Drama|Sci-Fi   2237    3.0
## 4756             Action|Adventure|Comedy|Fantasy|Sci-Fi|Western   2237    1.0
## 4757                                         Animation|Children   2237    4.0
## 4758                                 Animation|Children|Musical   2237    4.0
## 4759                        Adventure|Animation|Children|Comedy   2237    5.0
## 4760                             Animation|Children|Fantasy|War   2237    1.0
## 4761                                    Adventure|Comedy|Sci-Fi   2237    5.0
## 4762                                                     Comedy   2237    4.0
## 4763                                               Comedy|Crime   2484    2.0
## 4764                   Action|Adventure|Comedy|Romance|Thriller   2484    3.0
## 4765                                  Action|Adventure|Thriller   2237    4.0
## 4766                              Action|Horror|Sci-Fi|Thriller   2237    5.0
## 4767                                  Action|Adventure|Thriller   2237    3.0
## 4768                            Action|Adventure|Comedy|Musical   2237    5.0
## 4769                                  Action|Adventure|Thriller   2237    4.0
## 4770                                   Action|Adventure|Fantasy   2237    5.0
## 4771                                    Action|Adventure|Sci-Fi   2237    3.0
## 4772                                            Action|Thriller   2237    4.0
## 4773                                            Action|Thriller   2237    3.0
## 4774                               Action|Comedy|Crime|Thriller   2237    3.0
## 4775                                  Action|Adventure|Thriller   2237    3.0
## 4776                                               Action|Drama   2237    3.0
## 4777                                               Action|Drama   2237    3.0
## 4778                                                     Action   2237    3.0
## 4779                                    Action|Adventure|Sci-Fi   2237    3.0
## 4780                                Crime|Drama|Sci-Fi|Thriller   2237    5.0
## 4781                                            Sci-Fi|Thriller   2237    4.0
## 4782                               Comedy|Horror|Musical|Sci-Fi   2237    3.0
## 4783                                     Horror|Sci-Fi|Thriller   2237    4.0
## 4784                                               Drama|Sci-Fi   2237    3.0
## 4785                                       Action|Comedy|Sci-Fi   2237    1.0
## 4786                                                     Comedy   2237    5.0
## 4787                                              Comedy|Horror   2237    1.0
## 4788                                            Horror|Thriller   2237    4.0
## 4789                                    Horror|Mystery|Thriller   2237    3.0
## 4790                                            Horror|Thriller   2237    2.0
## 4791                                                     Horror   2237    1.0
## 4792                                                      Drama   2237    4.0
## 4793                                Comedy|Crime|Drama|Thriller   2237    1.0
## 4794                                             Comedy|Romance   2484    2.0
## 4795                                                     Comedy   2237    4.0
## 4796                                               Comedy|Crime   2237    3.0
## 4797                                    Children|Comedy|Musical   2237    5.0
## 4798                                                      Drama   2237    5.0
## 4799                                     Comedy|Horror|Thriller   2237    4.0
## 4800                                                     Comedy   2484    2.0
## 4801                                               Comedy|Drama   2515    3.0
## 4802                Adventure|Animation|Children|Comedy|Fantasy   2237    5.0
## 4803                                      Drama|Musical|Romance   2237    5.0
## 4804                                                      Drama   2765    5.0
## 4805                                               Comedy|Drama   2484    3.0
## 4806                                               Comedy|Drama   2197    4.0
## 4807                                               Comedy|Drama   2197    4.0
## 4808                                                      Drama   2197    5.0
## 4809                Adventure|Animation|Children|Comedy|Fantasy   2197    4.0
## 4810                                     Horror|Sci-Fi|Thriller   2134    2.0
## 4811                                    Adventure|Comedy|Sci-Fi   2134    3.0
## 4812                                           Action|Adventure   2134    2.0
## 4813                                     Adventure|Drama|Sci-Fi   2134    3.0
## 4814                                              Drama|Romance   2134    3.0
## 4815                               Action|Comedy|Crime|Thriller   2425    4.0
## 4816                                            Children|Comedy   2385    3.0
## 4817                                      Action|Crime|Thriller   2385    5.0
## 4818                               Comedy|Drama|Fantasy|Romance   2515    5.0
## 4819                              Comedy|Crime|Romance|Thriller   2515    5.0
## 4820                             Action|Adventure|Comedy|Sci-Fi   2714    3.0
## 4821                                                      Drama   2515    4.0
## 4822                                                      Drama   2484    2.0
## 4823                         Adventure|Animation|Fantasy|Sci-Fi   2233    3.0
## 4824                                                     Comedy   2765    2.0
## 4825                              Drama|Horror|Mystery|Thriller   2237    2.0
## 4826                                       Comedy|Crime|Musical   2675    4.0
## 4827                                                     Comedy   2675    5.0
## 4828                                                Crime|Drama   2675    5.0
## 4829                                       Crime|Drama|Thriller   2675    5.0
## 4830                                                     Comedy   2675    4.0
## 4831                                    Action|Adventure|Sci-Fi   2675    4.0
## 4832                                              Drama|Romance   2675    4.0
## 4833                                     Drama|Mystery|Thriller   2134    3.0
## 4834                                  Action|Adventure|Thriller   2134    4.0
## 4835                               Crime|Drama|Mystery|Thriller   2134    3.0
## 4836                                                      Drama   2134    2.0
## 4837                                                     Comedy   2134    4.0
## 4838                              Action|Horror|Sci-Fi|Thriller   2134    4.0
## 4839                                     Comedy|Musical|Romance   2134    4.0
## 4840                                                   Thriller   2810    3.0
## 4841                              Action|Adventure|Drama|Sci-Fi   2573    2.0
## 4842                                                      Drama   2573    3.0
## 4843                                    Action|Adventure|Sci-Fi   2573    2.0
## 4844                Adventure|Fantasy|Film-Noir|Sci-Fi|Thriller   2573    3.0
## 4845                                              Action|Sci-Fi   2573    3.0
## 4846                                              Comedy|Sci-Fi   2573    1.0
## 4847                             Drama|Mystery|Romance|Thriller   2573    3.0
## 4848                                    Action|Adventure|Horror   2573    2.0
## 4849                                           Action|Drama|War   2573    3.0
## 4850                                          Adventure|Fantasy   2573    2.0
## 4851                                             Action|Romance   2573    1.0
## 4852                                     Drama|Mystery|Thriller   2134    3.0
## 4853                                              Drama|Romance   2720    3.0
## 4854                                      Drama|Horror|Thriller   2237    2.0
## 4855                                                      Drama   2747    3.0
## 4856                                                     Comedy   2747    3.0
## 4857                                         Comedy|Crime|Drama   2747    3.0
## 4858                        Comedy|Crime|Drama|Romance|Thriller   2747    2.0
## 4859                                                      Drama   2747    4.0
## 4860                                              Drama|Romance   2747    4.0
## 4861                                                     Comedy   2747    3.0
## 4862                                             Comedy|Romance   2747    5.0
## 4863                                     Comedy|Fantasy|Romance   2747    2.0
## 4864                                                     Comedy   2747    5.0
## 4865                                             Comedy|Romance   2747    5.0
## 4866                                                     Comedy   2714    4.0
## 4867                                                     Comedy   2276    3.0
## 4868                       Adventure|Animation|Children|Fantasy   2237    2.0
## 4869                                                      Drama   2276    3.0
## 4870                                                      Drama   2418    2.0
## 4871                                             Comedy|Romance   2424    5.0
## 4872                                                      Drama   2484    5.0
## 4873                                              Drama|Mystery   2484    5.0
## 4874                                               Comedy|Drama   2134    4.0
## 4875                               Crime|Drama|Romance|Thriller   2591    4.0
## 4876                                            Horror|Thriller   2591    3.0
## 4877                                                      Drama   2515    3.0
## 4878                                                     Comedy   2164    4.0
## 4879                                              Action|Comedy   2170    5.0
## 4880                                                     Comedy   2164    1.0
## 4881                    Action|Adventure|Comedy|Fantasy|Romance   2164    4.0
## 4882                                              Drama|Romance   2164    3.0
## 4883                                         Comedy|Crime|Drama   2164    5.0
## 4884                                                      Drama   2164    2.0
## 4885                                                     Comedy   2164    5.0
## 4886                                             Comedy|Romance   2185    3.0
## 4887                         Adventure|Animation|Fantasy|Sci-Fi   2170    3.0
## 4888                                    Action|Adventure|Sci-Fi   2170    5.0
## 4889                              Action|Horror|Sci-Fi|Thriller   2170    5.0
## 4890                           Action|Adventure|Sci-Fi|Thriller   2170    3.0
## 4891                           Action|Adventure|Sci-Fi|Thriller   2170    5.0
## 4892                                      Drama|Sci-Fi|Thriller   2170    2.0
## 4893                                    Action|Adventure|Sci-Fi   2170    1.0
## 4894                                              Comedy|Sci-Fi   2170    5.0
## 4895                                                Documentary   2170    5.0
## 4896                           Crime|Film-Noir|Mystery|Thriller   2170    5.0
## 4897                             Drama|Mystery|Romance|Thriller   2249    3.0
## 4898                                           Action|Drama|War   2170    4.0
## 4899                                                      Drama   2170    5.0
## 4900                                                      Drama   2170    5.0
## 4901                                Action|Crime|Drama|Thriller   2170    5.0
## 4902                                             Comedy|Romance   2228    5.0
## 4903                            Children|Comedy|Fantasy|Musical   2211    5.0
## 4904                                           Action|Drama|War   2170    1.0
## 4905                                                      Drama   2170    4.0
## 4906                                                     Horror   2211    4.0
## 4907                                               Comedy|Crime   2228    3.0
## 4908                                                      Drama   2228    2.0
## 4909                                              Drama|Romance   2249    1.0
## 4910                                                   Thriller   2211    5.0
## 4911                   Action|Adventure|Fantasy|Horror|Thriller   2185    1.0
## 4912                                                      Drama   2185    5.0
## 4913                                                     Comedy   2185    3.0
## 4914                                               Drama|Horror   2185    3.0
## 4915                                             Drama|Thriller   2185    3.0
## 4916                                               Comedy|Drama   2307    4.0
## 4917                                                      Drama   2307    3.0
## 4918                                  Action|Adventure|Thriller   2307    3.0
## 4919                                                     Comedy   2307    1.0
## 4920                                              Drama|Romance   2307    5.0
## 4921                                Action|Crime|Drama|Thriller   2340    5.0
## 4922                                     Horror|Sci-Fi|Thriller   2340    1.0
## 4923                                             Comedy|Romance   2340    4.0
## 4924                                     Action|Sci-Fi|Thriller   2349    4.0
## 4925                                           Adventure|Sci-Fi   2349    5.0
## 4926                                    Children|Comedy|Fantasy   2349    2.0
## 4927                   Adventure|Children|Comedy|Fantasy|Sci-Fi   2349    2.0
## 4928                                              Drama|Romance   2349    2.0
## 4929                                      Action|Crime|Thriller   2349    4.0
## 4930                                           Action|Adventure   2349    4.0
## 4931                                 Action|Romance|War|Western   2349    4.0
## 4932                               Action|Crime|Sci-Fi|Thriller   2349    3.0
## 4933                                    Adventure|Drama|Western   2349    4.0
## 4934                                            Adventure|Drama   2349    3.0
## 4935                                    Action|Adventure|Sci-Fi   2349    5.0
## 4936                                              Drama|Romance   2427    4.0
## 4937                                                      Drama   2427    5.0
## 4938                Adventure|Animation|Children|Comedy|Musical   2419    2.0
## 4939                                           Action|Drama|War   2446    5.0
## 4940                                                Crime|Drama   2446    4.0
## 4941                                                Crime|Drama   2446    3.0
## 4942                                                     Comedy   2446    5.0
## 4943                                           Action|Drama|War   2446    5.0
## 4944                                                     Comedy   2446    4.0
## 4945                                     Action|Adventure|Drama   2446    5.0
## 4946                                       Crime|Drama|Thriller   2446    4.0
## 4947                                           Action|Drama|War   2446    5.0
## 4948                                           Action|Drama|War   2446    4.0
## 4949                                                  Drama|War   2446    3.0
## 4950                                                 Comedy|War   2446    2.0
## 4951                                                  Drama|War   2446    2.0
## 4952                                                 Comedy|War   2446    2.0
## 4953                           Action|Adventure|Sci-Fi|Thriller   2427    3.0
## 4954                                                   Thriller   2427    2.0
## 4955                                                      Drama   2427    4.0
## 4956                                                     Comedy   2427    4.0
## 4957                                   Animation|Comedy|Musical   2427    4.0
## 4958                                     Drama|Mystery|Thriller   2427    3.0
## 4959                                                  Drama|War   2588    5.0
## 4960                                   Comedy|Drama|Romance|War   2588    3.0
## 4961                     Action|Adventure|Comedy|Fantasy|Horror   2596    4.0
## 4962                    Action|Adventure|Comedy|Fantasy|Romance   2596    4.0
## 4963                                            Action|Thriller   2596    5.0
## 4964                           Action|Adventure|Sci-Fi|Thriller   2596    3.0
## 4965                                            Horror|Thriller   2596    5.0
## 4966                                                     Horror   2596    1.0
## 4967                                                     Horror   2596    5.0
## 4968                                      Crime|Horror|Thriller   2596    5.0
## 4969                                                     Comedy   2671    5.0
## 4970                             Children|Drama|Fantasy|Mystery   2678    4.0
## 4971                                                     Comedy   2671    5.0
## 4972                         Adventure|Animation|Fantasy|Sci-Fi   2678    1.0
## 4973                                               Action|Drama   2678    1.0
## 4974                              Action|Adventure|Drama|Sci-Fi   2678    1.0
## 4975                                                     Comedy   2671    5.0
## 4976                                      Action|Crime|Thriller   2671    3.0
## 4977                                              Horror|Sci-Fi   2596    3.0
## 4978                Adventure|Animation|Children|Comedy|Fantasy   2596    5.0
## 4979                                          Animation|Musical   2596    3.0
## 4980                 Adventure|Animation|Children|Drama|Musical   2596    3.0
## 4981                                         Animation|Children   2596    3.0
## 4982                          Animation|Children|Comedy|Musical   2596    5.0
## 4983                           Adventure|Animation|Comedy|Crime   2596    5.0
## 4984                         Action|Comedy|Crime|Drama|Thriller   2596    5.0
## 4985                                      Drama|Mystery|Western   2596    5.0
## 4986                                                    Western   2596    4.0
## 4987                                             Comedy|Western   2596    2.0
## 4988                                                  Drama|War   2596    5.0
## 4989                                                  Drama|War   2596    5.0
## 4990                                                  Drama|War   2596    5.0
## 4991                                         Drama|Thriller|War   2596    4.0
## 4992                                Crime|Drama|Sci-Fi|Thriller   2690    5.0
## 4993                                                     Comedy   2690    3.0
## 4994                           Action|Adventure|Sci-Fi|Thriller   2690    4.0
## 4995                                     Horror|Sci-Fi|Thriller   2690    4.0
## 4996                              Drama|Fantasy|Horror|Thriller   2690    4.0
## 4997                                              Comedy|Horror   2690    4.0
## 4998                                              Comedy|Sci-Fi   2596    5.0
## 4999                                       Action|Horror|Sci-Fi   2690    4.0
## 5000                                               Drama|Sci-Fi   2596    3.0
## 5001                          Adventure|Children|Comedy|Fantasy   2596    4.0
## 5002                                     Action|Sci-Fi|Thriller   2596    5.0
## 5003                                    Action|Adventure|Sci-Fi   2596    3.0
## 5004                                     Horror|Sci-Fi|Thriller   2596    3.0
## 5005                             Action|Romance|Sci-Fi|Thriller   2596    1.0
## 5006                                    Action|Adventure|Sci-Fi   2596    3.0
## 5007                                     Adventure|Drama|Sci-Fi   2596    5.0
## 5008                             Comedy|Fantasy|Horror|Thriller   2690    2.0
## 5009                                     Action|Sci-Fi|Thriller   2596    4.0
## 5010                   Action|Adventure|Romance|Sci-Fi|Thriller   2596    1.0
## 5011                                            Sci-Fi|Thriller   2596    2.0
## 5012                                                     Horror   2690    2.0
## 5013                                     Comedy|Musical|Romance   2596    5.0
## 5014                                             Comedy|Romance   2596    3.0
## 5015                                 Film-Noir|Romance|Thriller   2596    5.0
## 5016                               Comedy|Drama|Fantasy|Romance   2596    5.0
## 5017                                             Comedy|Romance   2596    3.0
## 5018                                              Drama|Romance   2596    3.0
## 5019                                              Drama|Romance   2596    2.0
## 5020                               Comedy|Drama|Fantasy|Romance   2596    5.0
## 5021                                     Comedy|Fantasy|Romance   2596    2.0
## 5022                                             Comedy|Romance   2596    4.0
## 5023                             Action|Adventure|Drama|Fantasy   2690    4.0
## 5024                                                    Romance   2596    2.0
## 5025                                              Drama|Romance   2596    5.0
## 5026                                       Comedy|Drama|Romance   2596    3.0
## 5027                                    Adventure|Drama|Romance   2596    1.0
## 5028                                    Action|Adventure|Sci-Fi   2690    5.0
## 5029                                       Comedy|Crime|Romance   2596    2.0
## 5030                                             Comedy|Romance   2596    1.0
## 5031                                            Fantasy|Romance   2596    1.0
## 5032                                             Comedy|Romance   2596    1.0
## 5033                            Action|Adventure|Comedy|Romance   2596    2.0
## 5034                                    Action|Romance|Thriller   2596    1.0
## 5035                      Drama|Fantasy|Horror|Mystery|Thriller   2596    2.0
## 5036                                     Crime|Mystery|Thriller   2596    5.0
## 5037                                         Comedy|Crime|Drama   2596    4.0
## 5038                                Comedy|Crime|Drama|Thriller   2596    5.0
## 5039                                         Comedy|Crime|Drama   2596    4.0
## 5040                                       Crime|Drama|Thriller   2596    5.0
## 5041                                            Crime|Film-Noir   2596    3.0
## 5042                              Comedy|Crime|Romance|Thriller   2596    4.0
## 5043                                  Action|Comedy|Crime|Drama   2596    4.0
## 5044                                      Action|Crime|Thriller   2596    2.0
## 5045                   Action|Adventure|Animation|Drama|Fantasy   2690    5.0
## 5046                                    Comedy|Mystery|Thriller   2690    5.0
## 5047                              Drama|Romance|Sci-Fi|Thriller   2690    5.0
## 5048                                             Crime|Thriller   2596    2.0
## 5049                                                Crime|Drama   2596    2.0
## 5050                                             Comedy|Mystery   2596    2.0
## 5051                                           Mystery|Thriller   2596    4.0
## 5052                                           Mystery|Thriller   2596    2.0
## 5053                              Comedy|Crime|Mystery|Thriller   2596    2.0
## 5054                                    Horror|Mystery|Thriller   2596    1.0
## 5055                                     Action|Sci-Fi|Thriller   2690    5.0
## 5056                                       Comedy|Drama|Romance   2690    2.0
## 5057                               Action|Crime|Sci-Fi|Thriller   2690    4.0
## 5058                                      Children|Drama|Sci-Fi   2690    3.0
## 5059                                               Comedy|Crime   2690    5.0
## 5060                                      Comedy|Horror|Musical   2596    2.0
## 5061                                             Horror|Mystery   2596    5.0
## 5062                                              Comedy|Horror   2596    2.0
## 5063                                            Horror|Thriller   2596    2.0
## 5064                                                     Horror   2596    2.0
## 5065                                                     Horror   2596    1.0
## 5066                                                     Horror   2596    2.0
## 5067                           Action|Adventure|Horror|Thriller   2596    1.0
## 5068                                               Comedy|Drama   2596    1.0
## 5069                              Drama|Fantasy|Mystery|Romance   2596    2.0
## 5070                                               Comedy|Drama   2596    5.0
## 5071                                                     Comedy   2596    4.0
## 5072                                               Comedy|Drama   2596    5.0
## 5073                                               Comedy|Drama   2596    5.0
## 5074                                               Comedy|Drama   2596    4.0
## 5075                                                     Comedy   2596    2.0
## 5076                                     Adventure|Comedy|Drama   2596    2.0
## 5077                                      Comedy|Drama|Thriller   2596    4.0
## 5078                                              Action|Comedy   2596    3.0
## 5079                                                     Comedy   2596    2.0
## 5080                                    Action|Adventure|Comedy   2596    3.0
## 5081                                                     Comedy   2596    2.0
## 5082                                                     Comedy   2596    2.0
## 5083                                    Adventure|Comedy|Sci-Fi   2596    1.0
## 5084                                                     Comedy   2596    2.0
## 5085                                               Comedy|Drama   2596    1.0
## 5086                       Adventure|Comedy|Crime|Drama|Fantasy   2596    4.0
## 5087                                                     Comedy   2596    1.0
## 5088                                                     Comedy   2596    1.0
## 5089                                              Action|Comedy   2596    1.0
## 5090                                        Action|Comedy|Crime   2596    1.0
## 5091                                                     Comedy   2596    1.0
## 5092                                                     Comedy   2596    2.0
## 5093                                      Crime|Horror|Thriller   2788    5.0
## 5094                                                     Comedy   2788    4.0
## 5095                         Adventure|Children|Fantasy|Musical   2795    4.0
## 5096                                    Action|Adventure|Sci-Fi   2795    3.0
## 5097                                             Drama|Thriller   2795    3.0
## 5098                               Action|Comedy|Crime|Thriller   2819    4.0
## 5099                                                   Thriller   2819    4.0
## 5100                                  Action|Adventure|Thriller   2819    4.0
## 5101                                     Action|Sci-Fi|Thriller   2819    4.0
## 5102                                        Action|Crime|Sci-Fi   2819    4.0
## 5103                                           Action|Drama|War   2819    2.0
## 5104                                              Action|Comedy   2819    5.0
## 5105                                            Comedy|Thriller   2852    2.0
## 5106                                     Comedy|Horror|Thriller   2852    4.0
## 5107                                         Action|Crime|Drama   2852    4.0
## 5108                                              Comedy|Horror   2852    3.0
## 5109                                       Comedy|Drama|Romance   2852    3.0
## 5110                                  Animation|Children|Comedy   2852    3.0
## 5111                                               Comedy|Drama   2852    4.0
## 5112                                                      Drama   2852    4.0
## 5113                                            Adventure|Drama   2852    3.0
## 5114                                                      Drama   2852    4.0
## 5115                       Adventure|Comedy|Crime|Drama|Fantasy   2852    2.0
## 5116                                              Drama|Romance   2852    4.0
## 5117                                    Horror|Mystery|Thriller   2852    3.0
## 5118                                Crime|Drama|Sci-Fi|Thriller   2852    4.0
## 5119                                    Action|Adventure|Sci-Fi   2588    4.0
## 5120                                          Drama|Romance|War   2588    5.0
## 5121                                      Drama|Musical|Romance   2588    5.0
## 5122                               Comedy|Drama|Musical|Romance   2588    5.0
## 5123                                             Comedy|Romance   2588    4.0
## 5124                                             Comedy|Romance   2588    5.0
## 5125                                       Comedy|Drama|Romance   2588    5.0
## 5126                                                     Comedy   2588    4.0
## 5127                                          Film-Noir|Mystery   2588    4.0
## 5128                                                     Comedy   2588    2.0
## 5129                                                     Comedy   2588    3.0
## 5130                                                Crime|Drama   2596    5.0
## 5131                                         Comedy|Crime|Drama   2596    5.0
## 5132                                                      Drama   2596    4.0
## 5133                                                      Drama   2596    3.0
## 5134                                                      Drama   2596    4.0
## 5135                                                      Drama   2596    5.0
## 5136                                                      Drama   2596    3.0
## 5137                                                      Drama   2596    4.0
## 5138                                               Comedy|Drama   2596    4.0
## 5139                                                      Drama   2596    4.0
## 5140                                             Drama|Thriller   2596    3.0
## 5141                                                      Drama   2596    3.0
## 5142                                                      Drama   2596    4.0
## 5143                                                      Drama   2596    4.0
## 5144                                            Action|Children   2596    1.0
## 5145                                                     Comedy   2596    2.0
## 5146                                      Comedy|Fantasy|Horror   2596    2.0
## 5147                                                     Horror   2596    1.0
## 5148                                             Drama|Thriller   2596    4.0
## 5149                                                   Children   2596    1.0
## 5150                                             Drama|Thriller   2596    3.0
## 5151                                             Horror|Western   2596    2.0
## 5152                                                      Drama   2596    2.0
## 5153                                              Comedy|Horror   2596    1.0
## 5154                                               Comedy|Crime   2596    2.0
## 5155                                     Drama|Romance|Thriller   2596    5.0
## 5156                                                      Drama   2852    3.0
## 5157                                               Drama|Sci-Fi   2872    1.0
## 5158                                      Drama|Horror|Thriller   2872    3.0
## 5159                                              Action|Sci-Fi   2872    4.0
## 5160                                    Action|Adventure|Sci-Fi   2872    4.0
## 5161                          Action|Adventure|Animation|Sci-Fi   2872    3.0
## 5162                                       Action|Horror|Sci-Fi   2872    3.0
## 5163                                        Action|Crime|Sci-Fi   2872    3.0
## 5164                                              Action|Sci-Fi   2872    1.0
## 5165                                              Action|Sci-Fi   2872    2.0
## 5166                                    Action|Romance|Thriller   2872    4.0
## 5167                                            Action|Thriller   2872    2.0
## 5168                                        Action|Comedy|Crime   2872    4.0
## 5169                                      Action|Drama|Thriller   2872    4.0
## 5170                                  Action|Adventure|Thriller   2872    3.0
## 5171                                            Action|Thriller   2872    3.0
## 5172              Action|Adventure|Crime|Drama|Romance|Thriller   2872    4.0
## 5173                                      Action|Comedy|Musical   2872    3.0
## 5174                                           Action|Adventure   2872    3.0
## 5175                                             Comedy|Romance   2872    3.0
## 5176                              Action|Crime|Romance|Thriller   2872    3.0
## 5177                                       Comedy|Drama|Romance   2872    3.0
## 5178                                              Drama|Romance   2872    3.0
## 5179                                             Comedy|Romance   2872    3.0
## 5180                                     Adventure|Comedy|Crime   2872    5.0
## 5181                              Comedy|Crime|Romance|Thriller   2872    4.0
## 5182                                 Comedy|Crime|Drama|Mystery   2872    2.0
## 5183                 Action|Adventure|Animation|Sci-Fi|Thriller   2872    2.0
## 5184                                               Comedy|Drama   2720    3.0
## 5185                                         Animation|Children   2852    4.0
## 5186                                                     Comedy   2852    4.0
## 5187                                                      Drama   2852    4.0
## 5188                         Animation|Children|Musical|Romance   2852    3.0
## 5189                                              Action|Comedy   2385    3.0
## 5190                          Action|Adventure|Animation|Sci-Fi   2161    3.0
## 5191                                               Comedy|Drama   2852    3.0
## 5192                                       Comedy|Drama|Romance   2134    3.0
## 5193                                            Comedy|Thriller   2852    3.0
## 5194                        Comedy|Crime|Drama|Romance|Thriller   2810    2.0
## 5195                                                   Thriller   2810    3.0
## 5196                                             Drama|Thriller   2400    2.0
## 5197                                                     Comedy   2400    4.0
## 5198                                                      Drama   2400    2.0
## 5199                  Adventure|Children|Comedy|Fantasy|Romance   2852    2.0
## 5200                               Crime|Drama|Mystery|Thriller   2446    1.0
## 5201                                    Action|Romance|Thriller   2446    5.0
## 5202                                   Action|Adventure|Romance   2446    4.0
## 5203                                              Adventure|War   2446    4.0
## 5204                                 Adventure|Children|Fantasy   2515    4.0
## 5205                              Action|Crime|Mystery|Thriller   2810    2.0
## 5206                                             Comedy|Romance   2424    4.0
## 5207                           Action|Adventure|Children|Comedy   2526    3.0
## 5208                                      Crime|Horror|Thriller   2696    5.0
## 5209                                                      Drama   2696    5.0
## 5210                                           Adventure|Sci-Fi   2696    4.0
## 5211                                Action|Drama|Romance|Sci-Fi   2696    4.0
## 5212                           Action|Adventure|Sci-Fi|Thriller   2696    5.0
## 5213                          Animation|Children|Comedy|Fantasy   2696    5.0
## 5214                                               Comedy|Drama   2696    2.0
## 5215                    Action|Adventure|Comedy|Fantasy|Romance   2696    5.0
## 5216                                                     Comedy   2696    4.0
## 5217                                             Comedy|Fantasy   2696    5.0
## 5218                                                 Comedy|War   2696    5.0
## 5219                                                     Comedy   2696    5.0
## 5220                                       Action|Comedy|Horror   2696    5.0
## 5221                                                     Comedy   2696    5.0
## 5222                                             Comedy|Romance   2696    5.0
## 5223                                   Adventure|Comedy|Fantasy   2696    4.0
## 5224                                    Adventure|Comedy|Sci-Fi   2696    5.0
## 5225                                       Comedy|Drama|Musical   2696    1.0
## 5226                                              Drama|Romance   2696    5.0
## 5227                                   Action|Adventure|Fantasy   2588    2.0
## 5228                                   Mystery|Romance|Thriller   2385    4.0
## 5229                                             Comedy|Romance   2134    1.0
## 5230                                           Comedy|Drama|War   2134    4.0
## 5231                         Adventure|Animation|Fantasy|Sci-Fi   2515    3.0
## 5232                                               Comedy|Drama   2852    5.0
## 5233                                      Drama|Mystery|Romance   2385    5.0
## 5234                                       Comedy|Drama|Romance   2602    4.0
## 5235                                    Children|Comedy|Fantasy   2602    4.0
## 5236                                             Comedy|Romance   2134    4.0
## 5237                         Action|Comedy|Crime|Drama|Thriller   2134    1.0
## 5238                                                     Comedy   2134    4.0
## 5239                                    Action|Adventure|Sci-Fi   2602    5.0
## 5240                                                Crime|Drama   2602    5.0
## 5241                                      Drama|Romance|Western   2161    2.0
## 5242                                           Action|Adventure   2161    3.0
## 5243                                           Adventure|Sci-Fi   2696    5.0
## 5244                                                      Drama   2484    4.0
## 5245                             Action|Adventure|Drama|Fantasy   2714    3.0
## 5246                                                      Drama   2385    4.0
## 5247                                     Drama|Romance|Thriller   2134    2.0
## 5248                                       Crime|Drama|Thriller   2763    5.0
## 5249                                              Drama|Mystery   2763    3.0
## 5250                                             Comedy|Romance   2848    2.0
## 5251                                         Comedy|Crime|Drama   2848    5.0
## 5252                                              Drama|Romance   2848    3.0
## 5253                                       Comedy|Drama|Romance   2848    4.0
## 5254                                             Comedy|Romance   2848    3.0
## 5255                                              Drama|Romance   2852    4.0
## 5256                                               Comedy|Drama   2573    3.0
## 5257                          Drama|Fantasy|Horror|Thriller|War   2573    5.0
## 5258                                    Action|Adventure|Sci-Fi   2134    4.0
## 5259                                                      Drama   2134    3.0
## 5260                                              Drama|Musical   2134    4.0
## 5261                           Action|Adventure|Sci-Fi|Thriller   2121    3.0
## 5262                     Crime|Drama|Film-Noir|Mystery|Thriller   2121    5.0
## 5263                                                  Drama|War   2121    4.0
## 5264                                             Drama|Thriller   2121    4.0
## 5265                                Action|Adventure|Sci-Fi|War   2121    4.0
## 5266                                    Mystery|Sci-Fi|Thriller   2121    3.0
## 5267                                               Comedy|Drama   2129    5.0
## 5268                                                     Comedy   2129    5.0
## 5269                                            Horror|Thriller   2129    3.0
## 5270                                            Horror|Thriller   2129    3.0
## 5271                                                     Comedy   2129    3.0
## 5272                                                      Drama   2129    5.0
## 5273                                       Comedy|Drama|Romance   2129    5.0
## 5274                Adventure|Animation|Children|Comedy|Fantasy   2129    4.0
## 5275                                                     Comedy   2167    5.0
## 5276                                       Comedy|Drama|Romance   2167    2.0
## 5277                                                      Drama   2174    3.0
## 5278                                    Adventure|Comedy|Sci-Fi   2204    4.0
## 5279                                    Action|Adventure|Sci-Fi   2204    2.0
## 5280                                                     Comedy   2204    3.0
## 5281                                  Animation|Children|Comedy   2192    4.0
## 5282                                                      Drama   2192    5.0
## 5283                                            Children|Comedy   2204    3.0
## 5284                                     Horror|Sci-Fi|Thriller   2204    4.0
## 5285                                              Drama|Mystery   2204    4.0
## 5286                                                      Drama   2174    4.0
## 5287                                              Drama|Romance   2204    2.0
## 5288                                              Drama|Romance   2204    4.0
## 5289                                       Crime|Drama|Thriller   2204    4.0
## 5290                                                Documentary   2174    4.0
## 5291                                               Drama|Horror   2204    4.0
## 5292                                       Comedy|Drama|Romance   2204    3.0
## 5293                         Adventure|Children|Fantasy|Musical   2204    4.0
## 5294                                                  Drama|War   2204    4.0
## 5295                                                     Comedy   2204    3.0
## 5296                                                      Drama   2174    5.0
## 5297                                                   Thriller   2192    5.0
## 5298                                                     Action   2204    4.0
## 5299                                                      Drama   2174    2.0
## 5300                                     Drama|Mystery|Thriller   2204    5.0
## 5301                                            Action|Thriller   2204    3.0
## 5302                               Crime|Drama|Mystery|Thriller   2174    4.0
## 5303                                               Comedy|Drama   2174    3.0
## 5304                                       Crime|Drama|Thriller   2174    4.0
## 5305                                      Action|Crime|Thriller   2204    5.0
## 5306                                               Comedy|Drama   2174    5.0
## 5307                    Action|Adventure|Comedy|Fantasy|Romance   2204    4.0
## 5308                                              Action|Comedy   2234    4.0
## 5309                             Action|Adventure|Drama|Fantasy   2204    3.0
## 5310        Adventure|Animation|Children|Comedy|Fantasy|Romance   2204    4.0
## 5311                                                      Drama   2204    4.0
## 5312                                                      Drama   2204    5.0
## 5313                                               Comedy|Crime   2262    3.0
## 5314                                                      Drama   2262    5.0
## 5315                                              Action|Comedy   2262    4.0
## 5316                               Crime|Drama|Mystery|Thriller   2262    4.0
## 5317                           Crime|Film-Noir|Mystery|Thriller   2262    4.0
## 5318                                                Crime|Drama   2350    5.0
## 5319                                          Drama|Romance|War   2350    3.0
## 5320                                   Comedy|Drama|Romance|War   2350    5.0
## 5321                                            Action|Thriller   2350    4.0
## 5322                                    Action|Romance|Thriller   2350    3.0
## 5323                                     Horror|Sci-Fi|Thriller   2350    3.0
## 5324                   Action|Adventure|Fantasy|Horror|Thriller   2350    3.0
## 5325                                     Action|Horror|Thriller   2350    4.0
## 5326                                    Action|Romance|Thriller   2350    3.0
## 5327                                  Action|Adventure|Thriller   2350    2.0
## 5328                          Action|Adventure|Mystery|Thriller   2350    3.0
## 5329                          Action|Adventure|Romance|Thriller   2350    3.0
## 5330                                          Action|Sci-Fi|War   2350    2.0
## 5331                                         Comedy|Crime|Drama   2350    3.0
## 5332                                      Crime|Horror|Thriller   2350    2.0
## 5333                                             Drama|Thriller   2350    3.0
## 5334                              Children|Comedy|Drama|Fantasy   2350    3.0
## 5335                          Action|Adventure|Comedy|Drama|War   2350    2.0
## 5336                                              Drama|Mystery   2350    3.0
## 5337                                   Action|Drama|Romance|War   2350    4.0
## 5338                                               Comedy|Drama   2350    3.0
## 5339                                                  Drama|War   2350    4.0
## 5340                                 Action|Romance|War|Western   2350    4.0
## 5341                                      Drama|Mystery|Romance   2350    5.0
## 5342             Action|Adventure|Comedy|Fantasy|Sci-Fi|Western   2359    3.0
## 5343                                     Comedy|Fantasy|Romance   2359    3.0
## 5344                                    Adventure|Comedy|Sci-Fi   2359    2.0
## 5345                                           Adventure|Sci-Fi   2359    3.0
## 5346                                             Comedy|Romance   2359    3.0
## 5347                                    Action|Adventure|Comedy   2359    5.0
## 5348                                            Horror|Thriller   2359    2.0
## 5349                                            Children|Comedy   2359    2.0
## 5350                                              Drama|Romance   2359    4.0
## 5351                                     Horror|Sci-Fi|Thriller   2359    3.0
## 5352                                    Action|Adventure|Sci-Fi   2359    1.0
## 5353                                             Comedy|Romance   2359    4.0
## 5354                                   Animation|Comedy|Musical   2359    5.0
## 5355                          Action|Adventure|Animation|Sci-Fi   2359    2.0
## 5356                                           Action|Drama|War   2406    3.0
## 5357                                                      Drama   2406    3.0
## 5358                                                     Comedy   2406    5.0
## 5359                               Action|Comedy|Crime|Thriller   2406    5.0
## 5360                              Action|Horror|Sci-Fi|Thriller   2432    3.0
## 5361                                     Horror|Sci-Fi|Thriller   2432    3.0
## 5362                           Action|Adventure|Sci-Fi|Thriller   2432    4.0
## 5363                               Action|Comedy|Crime|Thriller   2167    2.0
## 5364                                      Action|Crime|Thriller   2167    4.0
## 5365                                                      Drama   2167    5.0
## 5366                                 Comedy|Crime|Drama|Mystery   2167    3.0
## 5367                                   Comedy|Drama|Romance|War   2255    5.0
## 5368                                                    Romance   2255    5.0
## 5369                                              Action|Comedy   2454    3.0
## 5370                                                Crime|Drama   2454    5.0
## 5371                                                    Western   2454    3.0
## 5372                                             Drama|Thriller   2476    1.0
## 5373                           Crime|Film-Noir|Mystery|Thriller   2476    2.0
## 5374                                                      Drama   2486    5.0
## 5375                Adventure|Animation|Children|Comedy|Fantasy   2486    5.0
## 5376                                         Drama|Thriller|War   2192    4.0
## 5377                        Adventure|Animation|Children|Comedy   2486    5.0
## 5378                               Action|Comedy|Fantasy|Sci-Fi   2486    3.0
## 5379                                                     Comedy   2486    5.0
## 5380                                             Comedy|Romance   2192    3.0
## 5381                                                  Drama|War   2192    4.0
## 5382                    Action|Adventure|Comedy|Fantasy|Romance   2504    5.0
## 5383                                       Comedy|Drama|Romance   2504    5.0
## 5384                                                     Comedy   2504    5.0
## 5385                                     Adventure|Comedy|Drama   2504    3.0
## 5386                                     Adventure|Comedy|Crime   2504    4.0
## 5387                                                     Comedy   2504    5.0
## 5388                                                     Comedy   2504    4.0
## 5389                                            Horror|Thriller   2504    1.0
## 5390                                               Comedy|Crime   2504    5.0
## 5391                                     Drama|Mystery|Thriller   2504    3.0
## 5392                                                      Drama   2504    4.0
## 5393                                             Action|Mystery   2504    3.0
## 5394                                                   Thriller   2192    4.0
## 5395                               Crime|Drama|Mystery|Thriller   2192    3.0
## 5396                                                     Comedy   2454    4.0
## 5397                                    Adventure|Comedy|Sci-Fi   2454    3.0
## 5398                                                     Comedy   2454    1.0
## 5399                                             Fantasy|Horror   2454    4.0
## 5400                                                     Comedy   2454    5.0
## 5401                                       Comedy|Crime|Mystery   2454    4.0
## 5402                                           Action|Drama|War   2454    5.0
## 5403                                Action|Crime|Drama|Thriller   2454    4.0
## 5404                              Action|Horror|Sci-Fi|Thriller   2350    4.0
## 5405                                         Action|Crime|Drama   2350    4.0
## 5406                                  Action|Comedy|Crime|Drama   2350    3.0
## 5407                                     Drama|Romance|Thriller   2350    4.0
## 5408                              Action|Adventure|Comedy|Crime   2350    3.0
## 5409                                                     Comedy   2350    3.0
## 5410                                                Crime|Drama   2350    4.0
## 5411                                  Action|Adventure|Thriller   2350    4.0
## 5412                                           Action|Drama|War   2555    4.0
## 5413                                                     Comedy   2350    3.0
## 5414                                                     Comedy   2555    4.0
## 5415                             Drama|Mystery|Romance|Thriller   2555    4.0
## 5416                                           Mystery|Thriller   2555    4.0
## 5417                                         Adventure|Thriller   2555    4.0
## 5418                                                  Drama|War   2555    2.0
## 5419                                            Children|Comedy   2555    4.0
## 5420                                                      Drama   2555    4.0
## 5421                           Crime|Film-Noir|Mystery|Thriller   2555    1.0
## 5422                              Action|Horror|Sci-Fi|Thriller   2555    3.0
## 5423                                                      Drama   2555    4.0
## 5424                                                      Drama   2555    1.0
## 5425  Adventure|Animation|Children|Comedy|Crime|Fantasy|Mystery   2129    3.0
## 5426                                                      Drama   2129    4.0
## 5427                                              Comedy|Sci-Fi   2129    4.0
## 5428                                            Sci-Fi|Thriller   2129    3.0
## 5429                                           Action|Adventure   2592    4.0
## 5430                              Comedy|Fantasy|Romance|Sci-Fi   2129    4.0
## 5431                                     Action|Sci-Fi|Thriller   2592    2.0
## 5432                                                     Comedy   2592    4.0
## 5433                                    Action|Adventure|Comedy   2592    4.0
## 5434                              Action|Adventure|Drama|Sci-Fi   2592    5.0
## 5435                                             Drama|Thriller   2129    3.0
## 5436                             Action|Adventure|Drama|Fantasy   2592    4.0
## 5437                           Action|Adventure|Children|Comedy   2592    3.0
## 5438                             Action|Adventure|Comedy|Sci-Fi   2592    4.0
## 5439                                                      Drama   2592    1.0
## 5440                                      Action|Crime|Thriller   2592    3.0
## 5441                                       Comedy|Drama|Romance   2129    4.0
## 5442                                     Adventure|Comedy|Drama   2129    4.0
## 5443                                           Adventure|Comedy   2129    5.0
## 5444                                            Sci-Fi|Thriller   2612    5.0
## 5445                Action|Adventure|Comedy|Crime|Drama|Romance   2612    4.0
## 5446                                                   Thriller   2612    4.0
## 5447                                     Comedy|Horror|Thriller   2612    4.0
## 5448                                                     Comedy   2612    4.0
## 5449                                                     Comedy   2612    3.0
## 5450                                           Action|Drama|War   2592    4.0
## 5451                                              Action|Sci-Fi   2592    4.0
## 5452                                                     Comedy   2612    3.0
## 5453                                               Comedy|Drama   2612    3.0
## 5454                                                     Comedy   2612    3.0
## 5455                Adventure|Animation|Children|Comedy|Musical   2612    4.0
## 5456                                    Action|Adventure|Sci-Fi   2592    3.0
## 5457                                                  Drama|War   2612    4.0
## 5458                                                      Drama   2647    3.0
## 5459                                       Comedy|Drama|Romance   2710    2.0
## 5460                                       Crime|Drama|Thriller   2710    5.0
## 5461                             Adventure|Comedy|Drama|Musical   2192    4.0
## 5462                                          Drama|Romance|War   2192    4.0
## 5463                                           Comedy|Drama|War   2192    4.0
## 5464                                              Comedy|Sci-Fi   2192    4.0
## 5465                                                     Comedy   2192    4.0
## 5466                              Action|Adventure|Comedy|Crime   2192    4.0
## 5467                                               Comedy|Drama   2192    3.0
## 5468                                        Crime|Drama|Romance   2192    4.0
## 5469                                                      Drama   2192    3.0
## 5470                                               Comedy|Crime   2192    4.0
## 5471                              Drama|Fantasy|Horror|Thriller   2192    4.0
## 5472                                              Drama|Romance   2192    3.0
## 5473                                                      Drama   2776    3.0
## 5474                                                Crime|Drama   2800    5.0
## 5475                                                     Comedy   2811    4.0
## 5476                                       Action|Drama|Romance   2800    4.0
## 5477                          Action|Adventure|Animation|Sci-Fi   2800    5.0
## 5478                                       Comedy|Drama|Romance   2800    4.0
## 5479                                               Comedy|Drama   2800    4.0
## 5480                                             Drama|Thriller   2192    4.0
## 5481                                Action|Crime|Drama|Thriller   2192    3.0
## 5482                                      Action|Crime|Thriller   2192    4.0
## 5483                                                      Drama   2192    3.0
## 5484                                             Drama|Thriller   2192    4.0
## 5485                                                     Comedy   2192    3.0
## 5486                        Crime|Drama|Horror|Mystery|Thriller   2192    4.0
## 5487                                            Action|Thriller   2192    4.0
## 5488                                            Action|Thriller   2192    3.0
## 5489                                              Horror|Sci-Fi   2192    2.0
## 5490                                         Action|Crime|Drama   2192    3.0
## 5491                               Action|Comedy|Fantasy|Sci-Fi   2822    3.0
## 5492                                       Crime|Drama|Thriller   2822    3.0
## 5493                                              Horror|Sci-Fi   2822    2.0
## 5494                                                     Comedy   2822    3.0
## 5495                                               Comedy|Drama   2822    3.0
## 5496                                            Horror|Thriller   2612    5.0
## 5497                                                Crime|Drama   2612    5.0
## 5498                           Action|Adventure|Sci-Fi|Thriller   2192    4.0
## 5499                                     Horror|Sci-Fi|Thriller   2192    2.0
## 5500                                      Children|Drama|Sci-Fi   2192    4.0
## 5501                                           Action|Adventure   2192    3.0
## 5502                                           Action|Drama|War   2192    4.0
## 5503                                            Action|Thriller   2878    4.0
## 5504                                      Action|Drama|Thriller   2878    3.0
## 5505                     Crime|Drama|Film-Noir|Mystery|Thriller   2878    3.0
## 5506                                      Comedy|Crime|Thriller   2878    4.0
## 5507                           Action|Adventure|Sci-Fi|Thriller   2878    4.0
## 5508                                                      Drama   2878    4.0
## 5509                                                      Drama   2192    4.0
## 5510                                                 Action|War   2878    4.0
## 5511                                              Drama|Romance   2878    4.0
## 5512                                       Action|Adventure|War   2204    3.0
## 5513                                      Action|Crime|Thriller   2204    3.0
## 5514                                           Action|Adventure   2204    5.0
## 5515                                             Drama|Thriller   2204    2.0
## 5516                               Action|Comedy|Crime|Thriller   2204    2.0
## 5517                                           Mystery|Thriller   2192    5.0
## 5518                                      Drama|Fantasy|Romance   2192    5.0
## 5519                                       Comedy|Drama|Romance   2192    4.0
## 5520                                     Adventure|Drama|Sci-Fi   2192    4.0
## 5521                                                      Drama   2192    4.0
## 5522                            Children|Comedy|Fantasy|Musical   2192    4.0
## 5523                                     Drama|Mystery|Thriller   2192    4.0
## 5524                                       Action|Comedy|Horror   2192    5.0
## 5525                                             Comedy|Romance   2192    3.0
## 5526                                       Crime|Drama|Thriller   2192    3.0
## 5527                                                      Drama   2192    2.0
## 5528                                               Comedy|Crime   2192    1.0
## 5529                                 Animation|Children|Musical   2255    3.0
## 5530                                                     Comedy   2255    4.0
## 5531                                            Action|Thriller   2612    3.0
## 5532                                                     Comedy   2612    4.0
## 5533                                                     Horror   2612    2.0
## 5534                                       Comedy|Drama|Mystery   2810    3.0
## 5535                                                   Thriller   2810    5.0
## 5536                           Action|Adventure|Sci-Fi|Thriller   2425    3.0
## 5537                        Action|Crime|Drama|Mystery|Thriller   2425    4.0
## 5538                                     Drama|Romance|Thriller   2800    4.0
## 5539                                     Drama|Mystery|Thriller   2515    4.0
## 5540                                             Comedy|Romance   2612    4.0
## 5541                                                     Comedy   2612    4.0
## 5542                                             Comedy|Romance   2612    3.0
## 5543                                                     Comedy   2612    4.0
## 5544                                             Comedy|Romance   2612    4.0
## 5545                                    Children|Comedy|Fantasy   2612    3.0
## 5546                                       Comedy|Drama|Romance   2612    4.0
## 5547                                                     Comedy   2612    4.0
## 5548                                                     Comedy   2612    5.0
## 5549                                                     Comedy   2612    4.0
## 5550                                           Action|Drama|War   2350    4.0
## 5551                                              Drama|Romance   2174    5.0
## 5552                                 Adventure|Children|Fantasy   2174    3.0
## 5553                                              Drama|Mystery   2204    4.0
## 5554                                                     Comedy   2612    3.0
## 5555                                              Action|Sci-Fi   2612    4.0
## 5556                                   Adventure|Children|Drama   2612    4.0
## 5557                                    Children|Comedy|Fantasy   2612    5.0
## 5558                                    Children|Comedy|Mystery   2612    4.0
## 5559                Action|Adventure|Animation|Children|Fantasy   2612    3.0
## 5560                                            Children|Comedy   2612    4.0
## 5561                 Animation|Children|Fantasy|Musical|Romance   2612    4.0
## 5562                               Adventure|Animation|Children   2612    4.0
## 5563                                     Horror|Sci-Fi|Thriller   2612    4.0
## 5564                                                     Horror   2612    5.0
## 5565                        Action|Comedy|Fantasy|Horror|Sci-Fi   2612    2.0
## 5566                         Adventure|Children|Fantasy|Musical   2612    5.0
## 5567                                    Action|Adventure|Sci-Fi   2612    5.0
## 5568                                    Action|Adventure|Sci-Fi   2612    4.0
## 5569                                               Comedy|Drama   2763    5.0
## 5570                                     Action|Sci-Fi|Thriller   2852    2.0
## 5571                                              Drama|Romance   2515    5.0
## 5572                               Drama|Horror|Sci-Fi|Thriller   2204    5.0
## 5573                                                     Comedy   2204    3.0
## 5574                                      Comedy|Crime|Thriller   2515    5.0
## 5575                                       Comedy|Drama|Fantasy   2204    4.0
## 5576                                                     Comedy   2765    4.0
## 5577                                                     Action   2765    4.0
## 5578                                                      Drama   2765    4.0
## 5579                                              Drama|Romance   2385    5.0
## 5580                                      Action|Drama|Thriller   2385    4.0
## 5581                                           Action|Drama|War   2255    5.0
## 5582                                       Action|Comedy|Sci-Fi   2810    3.0
## 5583                       Action|Crime|Mystery|Sci-Fi|Thriller   2237    5.0
## 5584                Adventure|Animation|Children|Comedy|Musical   2385    3.0
## 5585                             Action|Adventure|Comedy|Sci-Fi   2852    3.0
## 5586                                      Comedy|Sci-Fi|Western   2852    4.0
## 5587                                    Adventure|Comedy|Sci-Fi   2255    3.0
## 5588                                                      Drama   2255    5.0
## 5589        Adventure|Animation|Children|Comedy|Fantasy|Romance   2255    5.0
## 5590                                             Comedy|Romance   2255    4.0
## 5591                                                      Drama   2878    4.0
## 5592                                             Comedy|Romance   2878    5.0
## 5593                                                      Drama   2878    4.0
## 5594                          Action|Adventure|Romance|Thriller   2878    4.0
## 5595                               Crime|Drama|Romance|Thriller   2878    5.0
## 5596                                              Drama|Romance   2878    4.0
## 5597                                      Drama|Mystery|Romance   2878    5.0
## 5598                                       Comedy|Drama|Romance   2878    3.0
## 5599                                                      Drama   2878    4.0
## 5600                                                      Drama   2878    4.0
## 5601                                               Comedy|Drama   2878    4.0
## 5602                                                      Drama   2515    4.0
## 5603                                         Adventure|Thriller   2765    4.0
## 5604                   Action|Adventure|Fantasy|Horror|Thriller   2765    4.0
## 5605                                                     Comedy   2765    3.0
## 5606                                                     Comedy   2765    3.0
## 5607                                       Comedy|Drama|Romance   2385    5.0
## 5608                                   Action|Drama|Romance|War   2612    4.0
## 5609                                   Action|Drama|Romance|War   2714    3.0
## 5610                                               Action|Crime   2385    3.0
## 5611                                        Action|Comedy|Crime   2385    5.0
## 5612                                               Comedy|Drama   2204    1.0
## 5613                                     Drama|Mystery|Thriller   2204    3.0
## 5614                                              Drama|Romance   2204    4.0
## 5615                            Adventure|Drama|Fantasy|Romance   2204    3.0
## 5616                                             Drama|Thriller   2810    2.0
## 5617                                                   Thriller   2425    3.0
## 5618                                    Action|Adventure|Sci-Fi   2425    1.0
## 5619                                         Animation|Children   2425    1.0
## 5620                                              Comedy|Horror   2852    1.0
## 5621                                           Action|Drama|War   2350    4.0
## 5622                           Action|Adventure|Children|Comedy   2350    3.0
## 5623                                            Action|Thriller   2350    2.0
## 5624                                                   Thriller   2350    3.0
## 5625                                     Horror|Sci-Fi|Thriller   2350    3.0
## 5626                                       Drama|Romance|Sci-Fi   2573    4.0
## 5627                                           Action|Drama|War   2339    3.0
## 5628                                     Comedy|Fantasy|Romance   2339    2.0
## 5629                                              Comedy|Horror   2339    4.0
## 5630                                       Crime|Drama|Thriller   2852    4.0
## 5631                                                      Drama   2852    4.0
## 5632                                              Action|Sci-Fi   2852    3.0
## 5633                                            Action|Thriller   2852    3.0
## 5634                                             Crime|Thriller   2852    3.0
## 5635                                             Crime|Thriller   2852    3.0
## 5636                                             Drama|Thriller   2852    3.0
## 5637                                             Comedy|Romance   2852    4.0
## 5638                               Crime|Drama|Mystery|Thriller   2134    4.0
## 5639                                              Comedy|Horror   2425    1.0
## 5640                              Crime|Horror|Mystery|Thriller   2424    4.0
## 5641                                     Drama|Mystery|Thriller   2350    3.0
## 5642                                                   Thriller   2852    4.0
## 5643                                       Crime|Drama|Thriller   2350    4.0
## 5644                                             Drama|Thriller   2350    3.0
## 5645                                                Documentary   2134    4.0
## 5646                                              Action|Comedy   2167    5.0
## 5647                                   Action|Adventure|Fantasy   2167    4.0
## 5648                              Action|Horror|Sci-Fi|Thriller   2167    4.0
## 5649                                     Comedy|Horror|Thriller   2167    3.0
## 5650                                     Comedy|Horror|Thriller   2167    4.0
## 5651                                   Adventure|Drama|Thriller   2167    3.0
## 5652                                             Drama|Thriller   2167    5.0
## 5653                              Action|Crime|Romance|Thriller   2167    4.0
## 5654                                              Comedy|Sci-Fi   2425    5.0
## 5655                                                      Drama   2425    4.0
## 5656                                                Crime|Drama   2425    5.0
## 5657                                Action|Crime|Drama|Thriller   2425    4.0
## 5658                                      Comedy|Crime|Thriller   2425    3.0
## 5659                                     Action|Sci-Fi|Thriller   2425    3.0
## 5660                                                      Drama   2425    4.0
## 5661                                               Comedy|Drama   2425    3.0
## 5662                                               Comedy|Drama   2204    2.0
## 5663                                                     Comedy   2852    2.0
## 5664                                              Drama|Romance   2134    4.0
## 5665                                                      Drama   2555    4.0
## 5666                                                     Action   2555    5.0
## 5667                                         Action|Crime|Drama   2555    3.0
## 5668                                               Action|Drama   2555    4.0
## 5669                                               Action|Drama   2555    4.0
## 5670                                           Action|Drama|War   2555    3.0
## 5671                                            Action|Thriller   2555    5.0
## 5672                                   Action|Adventure|Fantasy   2555    4.0
## 5673                                           Action|Adventure   2555    3.0
## 5674                                                     Comedy   2555    4.0
## 5675                                                     Comedy   2555    3.0
## 5676                                                     Comedy   2555    5.0
## 5677                                                     Comedy   2555    2.0
## 5678                                       Comedy|Drama|Romance   2555    1.0
## 5679                                               Comedy|Drama   2555    1.0
## 5680                                                     Comedy   2555    3.0
## 5681                                             Comedy|Romance   2555    3.0
## 5682                                               Comedy|Drama   2555    4.0
## 5683                                                     Comedy   2555    4.0
## 5684                                              Action|Comedy   2555    1.0
## 5685                                                     Comedy   2555    2.0
## 5686                                               Comedy|Drama   2425    4.0
## 5687                                                     Comedy   2385    2.0
## 5688                                                      Drama   2134    2.0
## 5689                            Action|Adventure|Comedy|Musical   2134    4.5
## 5690                                                     Comedy   2134    4.0
## 5691                                       Comedy|Drama|Romance   2134    4.5
## 5692                                 Adventure|Mystery|Thriller   2134    4.5
## 5693                                             Drama|Thriller   2134    0.5
## 5694                                                     Comedy   2134    0.5
## 5695                                                     Horror   2134    1.0
## 5696                                  Action|Adventure|Thriller   2134    0.5
## 5697                                     Horror|Sci-Fi|Thriller   2134    1.5
## 5698                                  Action|Adventure|Thriller   2134    2.5
## 5699                                                      Drama   2134    3.5
## 5700                                                     Comedy   2134    3.5
## 5701                                                   Thriller   2134    3.5
## 5702                                              Drama|Romance   2134    2.5
## 5703                                             Drama|Thriller   2134    2.5
## 5704                                             Drama|Thriller   2134    1.5
## 5705                                                     Horror   2134    1.5
## 5706                                               Drama|Horror   2134    2.5
## 5707                                         Action|Crime|Drama   2134    2.0
## 5708                                              Drama|Mystery   2134    4.0
## 5709                                       Comedy|Drama|Romance   2747    4.0
## 5710                                            Action|Thriller   2747    3.0
## 5711                                       Comedy|Drama|Romance   2484    1.0
## 5712                                   Adventure|Children|Drama   2852    4.0
## 5713                                              Drama|Romance   2134    4.0
## 5714                                        Comedy|Crime|Horror   2852    3.0
## 5715                                     Drama|Mystery|Thriller   2134    4.0
## 5716                  Adventure|Drama|Film-Noir|Sci-Fi|Thriller   2650    2.0
## 5717                                                      Drama   2650    2.0
## 5718                                         Action|Crime|Drama   2115    4.0
## 5719                                  Action|Adventure|Thriller   2115    3.0
## 5720                                                     Comedy   2115    1.0
## 5721                                                Documentary   2115    3.0
## 5722                                                Crime|Drama   2115    5.0
## 5723                                                Crime|Drama   2115    5.0
## 5724                                                     Comedy   2157    5.0
## 5725                                      Drama|Mystery|Romance   2157    5.0
## 5726                                    Action|Adventure|Sci-Fi   2157    4.0
## 5727                                       Crime|Drama|Thriller   2157    4.0
## 5728                                       Action|Horror|Sci-Fi   2157    3.0
## 5729                              Crime|Horror|Mystery|Thriller   2157    5.0
## 5730                                               Action|Drama   2157    4.0
## 5731              Crime|Drama|Fantasy|Film-Noir|Mystery|Romance   2171    3.0
## 5732                                                     Comedy   2171    2.0
## 5733                                                  Drama|War   2171    4.0
## 5734                                                Crime|Drama   2171    5.0
## 5735                                               Comedy|Drama   2171    5.0
## 5736                              Action|Comedy|Horror|Thriller   2178    2.0
## 5737  Adventure|Animation|Children|Comedy|Crime|Fantasy|Mystery   2178    4.0
## 5738                                       Crime|Drama|Thriller   2178    5.0
## 5739                                      Action|Crime|Thriller   2178    4.0
## 5740                                    Action|Adventure|Sci-Fi   2178    5.0
## 5741                                      Action|Crime|Thriller   2178    4.0
## 5742                           Action|Adventure|Sci-Fi|Thriller   2178    4.0
## 5743                                                     Comedy   2178    2.0
## 5744                                                     Comedy   2178    3.0
## 5745                                              Drama|Romance   2178    4.0
## 5746                                                      Drama   2178    3.0
## 5747                                       Comedy|Drama|Musical   2178    5.0
## 5748                                               Comedy|Drama   2178    5.0
## 5749                                       Comedy|Drama|Romance   2178    2.0
## 5750                                Comedy|Crime|Drama|Thriller   2178    4.0
## 5751                                            Action|Thriller   2222    4.0
## 5752                                               Comedy|Drama   2250    3.0
## 5753                                   Comedy|Drama|Romance|War   2250    4.0
## 5754                                     Comedy|Musical|Romance   2250    5.0
## 5755                                     Drama|Mystery|Thriller   2250    5.0
## 5756                             Action|Adventure|Drama|Fantasy   2277    4.0
## 5757                                           Action|Adventure   2277    5.0
## 5758                                              Action|Horror   2277    3.0
## 5759                                                     Comedy   2283    3.0
## 5760                                               Comedy|Drama   2283    5.0
## 5761                                             Comedy|Romance   2283    3.0
## 5762                                               Comedy|Drama   2283    4.0
## 5763                                              Drama|Musical   2283    3.0
## 5764                        Action|Crime|Drama|Mystery|Thriller   2283    4.0
## 5765                                         Action|Crime|Drama   2283    5.0
## 5766                                     Action|Sci-Fi|Thriller   2283    3.0
## 5767                                           Action|Drama|War   2283    5.0
## 5768                              Action|Horror|Sci-Fi|Thriller   2283    4.0
## 5769                                              Action|Sci-Fi   2283    5.0
## 5770                                             Comedy|Romance   2229    2.0
## 5771                                                     Comedy   2308    5.0
## 5772                                                      Drama   2308    3.0
## 5773                                              Comedy|Horror   2319    2.0
## 5774                                    Adventure|Drama|Western   2308    5.0
## 5775                                              Drama|Romance   2308    4.0
## 5776                                             Comedy|Romance   2330    5.0
## 5777                                     Action|Adventure|Drama   2229    5.0
## 5778                                     Drama|Mystery|Thriller   2319    5.0
## 5779                                      Drama|Fantasy|Romance   2319    4.0
## 5780                                              Drama|Romance   2229    3.0
## 5781                                                      Drama   2330    5.0
## 5782                                                    Romance   2319    4.0
## 5783                                                      Drama   2229    2.0
## 5784                                    Adventure|Comedy|Sci-Fi   2330    5.0
## 5785                                               Drama|Sci-Fi   2330    3.0
## 5786        Adventure|Animation|Children|Comedy|Fantasy|Romance   2319    5.0
## 5787                                       Comedy|Drama|Mystery   2319    4.0
## 5788                                                  Drama|War   2330    4.0
## 5789                                                     Comedy   2308    4.0
## 5790                                                      Drama   2330    3.0
## 5791                                                      Drama   2330    5.0
## 5792                                                      Drama   2330    5.0
## 5793                                                      Drama   2330    5.0
## 5794                                      Comedy|Fantasy|Sci-Fi   2341    4.0
## 5795                                      Action|Comedy|Fantasy   2341    2.0
## 5796                                            Action|Thriller   2341    3.0
## 5797                                                     Horror   2341    5.0
## 5798                                               Drama|Horror   2341    3.0
## 5799                                    Comedy|Romance|Thriller   2341    3.0
## 5800                                              Drama|Romance   2341    5.0
## 5801                                             Drama|Thriller   2341    3.0
## 5802                                  Action|Adventure|Thriller   2341    4.0
## 5803                                       Comedy|Drama|Romance   2341    4.0
## 5804                                                      Drama   2341    4.0
## 5805                                    Action|Adventure|Sci-Fi   2366    4.0
## 5806                                                      Drama   2366    4.0
## 5807                                         Action|Crime|Drama   2366    5.0
## 5808                                    Adventure|Comedy|Sci-Fi   2401    5.0
## 5809                               Comedy|Crime|Musical|Mystery   2401    4.0
## 5810                              Drama|Romance|Sci-Fi|Thriller   2401    3.0
## 5811                                             Comedy|Romance   2401    4.0
## 5812                                                     Comedy   2401    5.0
## 5813                                             Comedy|Romance   2401    5.0
## 5814                                             Comedy|Romance   2401    5.0
## 5815                                             Comedy|Romance   2401    4.0
## 5816                                              Drama|Romance   2401    5.0
## 5817                              Comedy|Drama|Romance|Thriller   2409    4.0
## 5818                                       Comedy|Drama|Romance   2401    4.0
## 5819                                       Comedy|Drama|Romance   2401    5.0
## 5820                                 Action|Adventure|Drama|War   2409    5.0
## 5821                                            Horror|Thriller   2409    4.0
## 5822                                                Documentary   2409    4.0
## 5823                                                     Comedy   2409    3.0
## 5824                                                      Drama   2409    5.0
## 5825                           Crime|Film-Noir|Mystery|Thriller   2409    4.0
## 5826                                              Drama|Romance   2409    4.0
## 5827                                               Comedy|Crime   2409    5.0
## 5828                                       Action|Crime|Romance   2409    4.0
## 5829                                Action|Crime|Drama|Thriller   2438    5.0
## 5830                                       Action|Crime|Romance   2438    4.0
## 5831                                              Drama|Romance   2438    5.0
## 5832                                            Horror|Thriller   2461    4.0
## 5833                                                      Drama   2461    4.0
## 5834                                   Children|Fantasy|Musical   2461    3.0
## 5835                                                      Drama   2461    5.0
## 5836                                            Adventure|Drama   2461    4.0
## 5837                        Adventure|Animation|Children|Comedy   2461    4.0
## 5838                                                      Drama   2461    4.0
## 5839                                     Horror|Sci-Fi|Thriller   2461    3.0
## 5840                                           Adventure|Comedy   2461    5.0
## 5841                                    Action|Adventure|Comedy   2461    3.0
## 5842                                            Action|Thriller   2461    4.0
## 5843                                     Comedy|Horror|Thriller   2461    4.0
## 5844                                                   Thriller   2461    5.0
## 5845                                                   Thriller   2461    4.0
## 5846                                    Action|Adventure|Sci-Fi   2461    5.0
## 5847                                                  Drama|War   2461    3.0
## 5848                                               Comedy|Drama   2438    4.0
## 5849                                             Comedy|Romance   2438    5.0
## 5850                                       Comedy|Drama|Romance   2438    5.0
## 5851                                             Comedy|Musical   2438    5.0
## 5852                                             Comedy|Romance   2438    4.0
## 5853                                                     Comedy   2438    5.0
## 5854                                       Comedy|Drama|Romance   2438    3.0
## 5855                                             Comedy|Romance   2438    4.0
## 5856                                                     Comedy   2438    5.0
## 5857                               Action|Crime|Sci-Fi|Thriller   2401    5.0
## 5858                                           Mystery|Thriller   2522    4.0
## 5859                                       Comedy|Drama|Romance   2522    4.0
## 5860                           Action|Adventure|Sci-Fi|Thriller   2522    4.0
## 5861                                                  Drama|War   2522    5.0
## 5862                           Crime|Film-Noir|Mystery|Thriller   2522    4.0
## 5863                                                      Drama   2522    5.0
## 5864                                                  Drama|War   2522    4.0
## 5865                           Crime|Film-Noir|Mystery|Thriller   2522    5.0
## 5866                                      Crime|Drama|Film-Noir   2522    5.0
## 5867                              Action|Horror|Sci-Fi|Thriller   2522    5.0
## 5868                                                      Drama   2522    5.0
## 5869                                            Horror|Thriller   2522    5.0
## 5870                                Comedy|Crime|Drama|Thriller   2522    5.0
## 5871                                   Animation|Children|Drama   2522    4.0
## 5872                                                     Comedy   2522    5.0
## 5873                                  Animation|Children|Comedy   2522    4.0
## 5874                                       Comedy|Drama|Romance   2522    4.0
## 5875                                               Comedy|Drama   2522    3.0
## 5876                                        Adventure|Drama|War   2522    5.0
## 5877                                              Drama|Romance   2552    1.0
## 5878                                    Action|Adventure|Sci-Fi   2562    5.0
## 5879  Adventure|Animation|Children|Comedy|Crime|Fantasy|Mystery   2552    3.0
## 5880                                                      Drama   2552    4.0
## 5881                                             Comedy|Romance   2562    5.0
## 5882                              Comedy|Fantasy|Romance|Sci-Fi   2552    5.0
## 5883                                    Action|Adventure|Sci-Fi   2577    3.0
## 5884                    Action|Adventure|Comedy|Fantasy|Romance   2577    5.0
## 5885                          Action|Adventure|Romance|Thriller   2577    2.0
## 5886                                       Comedy|Drama|Romance   2577    3.0
## 5887                                         Adventure|Children   2577    3.0
## 5888                                     Comedy|Musical|Romance   2577    3.0
## 5889                                                      Drama   2617    4.0
## 5890                                  Adventure|Comedy|Thriller   2617    4.0
## 5891                                           Action|Drama|War   2617    3.0
## 5892                                                      Drama   2617    4.0
## 5893                                 Action|Adventure|Drama|War   2617    4.0
## 5894                                           Action|Drama|War   2632    3.0
## 5895                                                     Horror   2632    2.0
## 5896                                                Crime|Drama   2632    4.0
## 5897                                                     Comedy   2401    1.0
## 5898                                                     Horror   2705    1.0
## 5899                                                      Drama   2705    1.0
## 5900                                                      Drama   2705    1.0
## 5901                               Comedy|Drama|Fantasy|Romance   2705    1.0
## 5902                Adventure|Animation|Children|Comedy|Fantasy   2705    1.0
## 5903                                       Crime|Drama|Thriller   2835    3.0
## 5904                               Action|Comedy|Fantasy|Sci-Fi   2835    5.0
## 5905                                                     Comedy   2873    2.0
## 5906                                                      Drama   2873    3.0
## 5907                                              Drama|Romance   2522    3.0
## 5908                                                      Drama   2522    3.0
## 5909                                       Comedy|Drama|Romance   2522    4.0
## 5910                                              Drama|Romance   2522    4.0
## 5911                                              Comedy|Sci-Fi   2522    3.0
## 5912                                                      Drama   2522    3.0
## 5913                                                      Drama   2522    3.0
## 5914                                              Drama|Mystery   2522    4.0
## 5915                       Crime|Drama|Fantasy|Romance|Thriller   2522    5.0
## 5916                                                Crime|Drama   2522    4.0
## 5917                                                      Drama   2522    4.0
## 5918                                               Comedy|Drama   2522    3.0
## 5919                                     Action|Sci-Fi|Thriller   2522    4.0
## 5920                                                      Drama   2522    2.0
## 5921                                                     Comedy   2522    4.0
## 5922                                    Action|Adventure|Sci-Fi   2522    3.0
## 5923                                               Comedy|Drama   2522    4.0
## 5924                       Action|Crime|Mystery|Sci-Fi|Thriller   2522    3.0
## 5925                                             Drama|Thriller   2522    4.0
## 5926                                                      Drama   2522    3.0
## 5927                Adventure|Animation|Children|Comedy|Fantasy   2522    3.0
## 5928                                       Comedy|Drama|Romance   2522    4.0
## 5929                                 Adventure|Children|Fantasy   2522    2.0
## 5930                                          Action|Sci-Fi|War   2522    3.0
## 5931                                              Action|Sci-Fi   2522    3.0
## 5932                                     Action|Sci-Fi|Thriller   2522    2.0
## 5933                           Action|Adventure|Sci-Fi|Thriller   2522    2.0
## 5934                                             Comedy|Romance   2522    4.0
## 5935                                             Comedy|Romance   2522    3.0
## 5936                                       Comedy|Drama|Romance   2522    3.0
## 5937                                    Action|Mystery|Thriller   2632    2.0
## 5938                                       Comedy|Drama|Romance   2522    2.0
## 5939                                             Comedy|Romance   2522    4.0
## 5940                                              Drama|Romance   2522    3.0
## 5941                                  Adventure|Fantasy|Romance   2522    2.0
## 5942                                     Drama|Romance|Thriller   2522    3.0
## 5943                                             Comedy|Romance   2522    2.0
## 5944                              Drama|Horror|Mystery|Thriller   2632    4.0
## 5945                              Drama|Fantasy|Horror|Thriller   2632    4.0
## 5946                                 Adventure|Children|Fantasy   2530    2.0
## 5947                                              Action|Comedy   2530    2.0
## 5948                                     Action|Sci-Fi|Thriller   2530    2.0
## 5949                                             Comedy|Romance   2632    3.0
## 5950                                            Children|Comedy   2632    3.0
## 5951                                                      Drama   2873    4.0
## 5952                                                     Comedy   2134    4.0
## 5953                Adventure|Fantasy|Film-Noir|Sci-Fi|Thriller   2577    3.0
## 5954                                       Comedy|Drama|Romance   2632    3.0
## 5955                                  Action|Adventure|Thriller   2632    3.0
## 5956                              Action|Adventure|Comedy|Crime   2632    3.0
## 5957                                        Animation|Drama|War   2632    5.0
## 5958                                                      Drama   2632    2.0
## 5959                                               Comedy|Crime   2632    1.0
## 5960                                     Comedy|Horror|Thriller   2632    3.0
## 5961                                      Drama|Sci-Fi|Thriller   2632    4.0
## 5962                                       Action|Comedy|Sci-Fi   2632    3.0
## 5963                                           Action|Drama|War   2401    5.0
## 5964                            Adventure|Children|Comedy|Drama   2632    4.0
## 5965                                            Crime|Film-Noir   2632    3.0
## 5966                                                      Drama   2632    4.0
## 5967                       Adventure|Comedy|Crime|Drama|Fantasy   2632    2.0
## 5968                                              Comedy|Sci-Fi   2632    3.0
## 5969                                    Action|Adventure|Sci-Fi   2632    4.0
## 5970                                               Comedy|Drama   2632    3.0
## 5971                           Action|Adventure|Sci-Fi|Thriller   2385    3.0
## 5972                           Action|Adventure|Sci-Fi|Thriller   2134    4.0
## 5973                  Adventure|Animation|Children|Comedy|Drama   2632    4.5
## 5974                                  Animation|Children|Comedy   2632    4.0
## 5975                         Animation|Children|Fantasy|Musical   2632    4.0
## 5976                                         Animation|Children   2632    3.0
## 5977         Adventure|Animation|Children|Comedy|Fantasy|Sci-Fi   2632    2.5
## 5978                                     Adventure|Drama|Sci-Fi   2134    4.5
## 5979                                   Adventure|Comedy|Western   2852    4.0
## 5980                                       Comedy|Drama|Romance   2401    5.0
## 5981                                                     Comedy   2401    5.0
## 5982                                               Comedy|Drama   2401    4.0
## 5983                                             Comedy|Romance   2401    4.0
## 5984                                                     Comedy   2401    5.0
## 5985                              Comedy|Crime|Romance|Thriller   2401    4.0
## 5986                                      Comedy|Crime|Thriller   2401    5.0
## 5987                                     Drama|Mystery|Thriller   2401    5.0
## 5988                                                  Drama|War   2401    5.0
## 5989                                             Comedy|Fantasy   2401    5.0
## 5990                 Adventure|Animation|Children|Drama|Musical   2401    3.5
## 5991                                 Adventure|Mystery|Thriller   2401    1.5
## 5992                               Action|Adventure|Crime|Drama   2385    3.5
## 5993                                            Adventure|Drama   2515    4.0
## 5994                                              Drama|Romance   2714    3.5
## 5995                                    Action|Adventure|Sci-Fi   2134    4.0
## 5996                                             Drama|Thriller   2134    3.5
## 5997                                           Action|Drama|War   2822    4.0
## 5998                                 Adventure|Children|Fantasy   2515    4.0
## 5999                                       Comedy|Drama|Romance   2134    3.5
## 6000                              Action|Horror|Sci-Fi|Thriller   2799    4.0
## 6001                                     Action|Horror|Thriller   2799    3.0
## 6002                                                   Thriller   2799    3.5
## 6003                                               Comedy|Drama   2424    4.0
## 6004                                                Crime|Drama   2424    4.5
## 6005                                     Drama|Mystery|Thriller   2174    4.5
## 6006                                             Comedy|Romance   2174    3.5
## 6007                                                      Drama   2515    4.0
## 6008                                       Comedy|Drama|Romance   2174    4.0
## 6009                        Adventure|Animation|Children|Comedy   2714    3.0
## 6010                                                   Thriller   2515    3.0
## 6011                                      Drama|Mystery|Romance   2573    2.5
## 6012                                      Drama|Mystery|Western   2385    5.0
## 6013                               Comedy|Crime|Drama|Film-Noir   2588    4.0
## 6014                                                     Comedy   2588    2.5
## 6015                                             Comedy|Romance   2385    3.5
## 6016                                              Drama|Romance   2552    5.0
## 6017                                               Comedy|Drama   2552    4.5
## 6018                                               Comedy|Drama   2552    4.0
## 6019                                     Drama|Mystery|Thriller   2552    4.0
## 6020                                 Action|Adventure|Drama|War   2385    4.0
## 6021                                     Action|Sci-Fi|Thriller   2385    4.0
## 6022                                                     Horror   2612    3.0
## 6023                                       Comedy|Drama|Romance   2385    4.0
## 6024                                       Comedy|Drama|Romance   2588    3.5
## 6025                                           Action|Adventure   2588    3.5
## 6026                                       Comedy|Drama|Romance   2174    4.5
## 6027                                               Comedy|Drama   2174    5.0
## 6028                                                Documentary   2174    4.0
## 6029                                       Comedy|Drama|Romance   2174    4.0
## 6030                                              Drama|Romance   2174    5.0
## 6031                          Drama|Fantasy|Horror|Thriller|War   2174    3.0
## 6032                                              Drama|Romance   2174    2.5
## 6033                                                   Thriller   2174    1.0
## 6034                          Action|Animation|Children|Fantasy   2385    4.0
## 6035                                                     Comedy   2339    2.5
## 6036                                  Action|Adventure|Thriller   2339    4.0
## 6037                                                      Drama   2339    3.5
## 6038                                    Action|Adventure|Comedy   2339    5.0
## 6039                                    Children|Comedy|Fantasy   2330    4.5
## 6040                                       Comedy|Crime|Mystery   2330    5.0
## 6041                                            Adventure|Drama   2330    5.0
## 6042                                            Horror|Thriller   2330    5.0
## 6043                                                      Drama   2330    5.0
## 6044                                          Film-Noir|Mystery   2330    5.0
## 6045                             Drama|Mystery|Romance|Thriller   2330    5.0
## 6046                                   Crime|Film-Noir|Thriller   2330    5.0
## 6047                             Crime|Drama|Film-Noir|Thriller   2330    5.0
## 6048                                    Animation|Crime|Mystery   2167    2.0
## 6049                                  Animation|Children|Comedy   2339    4.5
## 6050                                                     Comedy   2339    4.0
## 6051                                       Comedy|Drama|Romance   2515    3.0
## 6052                                              Drama|Romance   2385    4.0
## 6053                                   Action|Adventure|Fantasy   2134    4.5
## 6054                                                      Drama   2134    3.0
## 6055                               Crime|Drama|Mystery|Thriller   2134    3.5
## 6056                                         Comedy|Crime|Drama   2385    4.5
## 6057                                   Comedy|Drama|Romance|War   2385    4.5
## 6058                                             Drama|Thriller   2385    4.0
## 6059                                            Children|Comedy   2385    3.5
## 6060                                    Children|Comedy|Fantasy   2385    2.0
## 6061                                    Action|Romance|Thriller   2385    4.5
## 6062                                    Action|Adventure|Comedy   2385    0.5
## 6063                                                     Comedy   2385    3.5
## 6064                                              Drama|Mystery   2852    4.0
## 6065                                       Action|Comedy|Horror   2852    4.5
## 6066                                       Comedy|Drama|Romance   2852    4.0
## 6067                                                     Comedy   2852    4.5
## 6068                                               Comedy|Drama   2852    4.5
## 6069                                   Animation|Children|Drama   2852    4.0
## 6070                                   Action|Adventure|Fantasy   2852    4.0
## 6071                        Action|Crime|Drama|Mystery|Thriller   2852    4.0
## 6072                                       Comedy|Drama|Romance   2852    4.0
## 6073                                             Comedy|Romance   2852    4.0
## 6074                                             Comedy|Romance   2852    3.5
## 6075                                                   Thriller   2852    4.0
## 6076                                                      Drama   2852    4.5
## 6077                                  Action|Comedy|Crime|Drama   2852    3.5
## 6078                                                     Comedy   2852    3.5
## 6079                                           Action|Drama|War   2852    3.5
## 6080                                                   Thriller   2852    3.5
## 6081                                             Comedy|Romance   2852    3.5
## 6082                                     Action|Sci-Fi|Thriller   2852    3.5
## 6083                                       Comedy|Crime|Romance   2852    3.5
## 6084                                                     Horror   2852    3.5
## 6085                                                      Drama   2852    3.5
## 6086                                     Comedy|Horror|Thriller   2852    3.5
## 6087                                       Comedy|Drama|Romance   2852    3.0
## 6088                                                Crime|Drama   2204    4.0
## 6089                                           Action|Adventure   2204    3.5
## 6090                                       Comedy|Drama|Romance   2204    3.0
## 6091                                               Comedy|Crime   2204    1.5
## 6092                                         Animation|Children   2204    2.0
## 6093                                                     Comedy   2852    3.5
## 6094                                                     Comedy   2852    3.0
## 6095                                       Comedy|Drama|Romance   2852    3.5
## 6096                                                Crime|Drama   2852    3.5
## 6097                                              Drama|Romance   2852    3.5
## 6098                                           Action|Drama|War   2852    3.5
## 6099                                        Drama|Horror|Sci-Fi   2852    3.5
## 6100                                  Action|Adventure|Thriller   2852    3.5
## 6101                                     Horror|Sci-Fi|Thriller   2852    3.0
## 6102                                       Comedy|Drama|Romance   2852    3.5
## 6103                                                     Horror   2852    3.5
## 6104                                     Drama|Mystery|Thriller   2852    3.0
## 6105                                      Comedy|Crime|Thriller   2852    3.5
## 6106                                                      Drama   2852    3.5
## 6107                                              Comedy|Horror   2852    3.5
## 6108                                            Action|Thriller   2852    4.0
## 6109                                                  Drama|War   2852    4.0
## 6110                                              Drama|Mystery   2852    4.0
## 6111                                              Drama|Mystery   2852    4.0
## 6112                                             Comedy|Romance   2852    4.0
## 6113                              Action|Adventure|Comedy|Crime   2852    4.0
## 6114                       Adventure|Animation|Children|Fantasy   2852    4.0
## 6115                                     Action|Adventure|Drama   2852    3.0
## 6116                                               Comedy|Drama   2852    3.5
## 6117                                             Drama|Thriller   2852    3.5
## 6118                                               Comedy|Drama   2852    3.5
## 6119                                                      Drama   2852    3.5
## 6120                                      Comedy|Crime|Thriller   2852    3.5
## 6121                                                     Comedy   2852    3.5
## 6122                                             Comedy|Romance   2852    3.5
## 6123                                                     Comedy   2852    3.5
## 6124                                                     Comedy   2852    3.5
## 6125                                            Action|Thriller   2852    2.5
## 6126                                                     Horror   2852    2.0
## 6127                                                     Comedy   2852    2.5
## 6128                                             Comedy|Romance   2852    2.5
## 6129                                               Action|Crime   2852    2.5
## 6130                                       Crime|Drama|Thriller   2852    2.5
## 6131                                                     Comedy   2852    2.5
## 6132                                                     Comedy   2852    3.0
## 6133                                        Action|Comedy|Drama   2229    3.0
## 6134                                             Drama|Thriller   2852    3.0
## 6135                                           Action|Adventure   2852    2.5
## 6136                                                      Drama   2852    2.5
## 6137                                            Action|Thriller   2852    1.5
## 6138                                                Musical|War   2852    4.0
## 6139                                             Comedy|Mystery   2852    3.5
## 6140                                             Comedy|Romance   2852    3.0
## 6141                                             Comedy|Romance   2385    5.0
## 6142                       Adventure|Animation|Children|Fantasy   2552    4.5
## 6143                                                Documentary   2552    4.5
## 6144                                                      Drama   2552    4.5
## 6145                                      Drama|Fantasy|Romance   2385    4.5
## 6146                                        Crime|Drama|Romance   2385    2.5
## 6147                                                      Drama   2141    4.0
## 6148                                       Comedy|Drama|Romance   2141    3.5
## 6149                       Action|Crime|Mystery|Sci-Fi|Thriller   2141    5.0
## 6150                                                     Comedy   2141    4.5
## 6151                                Comedy|Drama|Romance|Sci-Fi   2141    4.0
## 6152                                        Adventure|Drama|War   2153    4.0
## 6153                                  Action|Comedy|Crime|Drama   2153    3.0
## 6154                                              Action|Comedy   2153    2.0
## 6155                                     Action|Sci-Fi|Thriller   2153    4.5
## 6156                                   Action|Adventure|Fantasy   2153    5.0
## 6157                                   Action|Adventure|Fantasy   2153    5.0
## 6158                                       Action|Comedy|Sci-Fi   2162    1.5
## 6159                                       Comedy|Drama|Fantasy   2162    3.5
## 6160                             Fantasy|Horror|Mystery|Romance   2162    3.5
## 6161                                             Drama|Thriller   2162    3.0
## 6162                                       Comedy|Drama|Romance   2162    4.5
## 6163                                Action|Crime|Drama|Thriller   2162    3.5
## 6164                                       Action|Crime|Romance   2162    4.0
## 6165                                               Comedy|Drama   2162    3.0
## 6166                        Action|Drama|Horror|Sci-Fi|Thriller   2162    4.5
## 6167                                       Comedy|Drama|Romance   2162    3.0
## 6168                  Adventure|Drama|Film-Noir|Sci-Fi|Thriller   2162    2.0
## 6169                                              Action|Comedy   2181    3.5
## 6170                                   Action|Adventure|Western   2181    5.0
## 6171                                    Action|Adventure|Sci-Fi   2181    2.5
## 6172                              Action|Adventure|Drama|Sci-Fi   2181    1.0
## 6173                                    Action|Adventure|Sci-Fi   2181    5.0
## 6174                                                  Drama|War   2181    4.5
## 6175                                     Crime|Mystery|Thriller   2181    3.5
## 6176                              Children|Comedy|Drama|Fantasy   2181    1.0
## 6177                              Crime|Horror|Mystery|Thriller   2181    3.5
## 6178                                           Action|Drama|War   2181    3.5
## 6179                           Action|Adventure|Sci-Fi|Thriller   2181    4.0
## 6180                                      Action|Comedy|Western   2193    3.5
## 6181                                    Action|Adventure|Sci-Fi   2193    3.5
## 6182                                      Crime|Horror|Thriller   2214    3.5
## 6183                Adventure|Animation|Children|Comedy|Fantasy   2214    4.0
## 6184                                              Drama|Romance   2214    4.0
## 6185                                              Action|Horror   2214    2.5
## 6186                                       Comedy|Drama|Romance   2214    4.0
## 6187                                           Action|Drama|War   2270    4.0
## 6188                                                     Horror   2270    4.0
## 6189                                           Action|Adventure   2270    3.0
## 6190                                                     Comedy   2281    3.5
## 6191                         Adventure|Children|Fantasy|Musical   2270    2.5
## 6192                                     Action|Sci-Fi|Thriller   2270    1.0
## 6193                                                     Comedy   2270    5.0
## 6194                                                      Drama   2270    2.5
## 6195                                                     Comedy   2281    2.5
## 6196                                             Comedy|Musical   2270    5.0
## 6197                                             Comedy|Musical   2270    3.5
## 6198                                                     Comedy   2270    3.5
## 6199                                                     Comedy   2270    3.5
## 6200                         Animation|Children|Fantasy|Musical   2270    1.0
## 6201                                    Action|Adventure|Comedy   2270    2.5
## 6202                                    Adventure|Comedy|Sci-Fi   2270    3.5
## 6203                            Children|Comedy|Fantasy|Musical   2270    3.0
## 6204                              Comedy|Crime|Romance|Thriller   2287    4.5
## 6205                                         Comedy|Crime|Drama   2287    3.5
## 6206                                                     Comedy   2270    1.5
## 6207                                     Comedy|Musical|Romance   2270    0.5
## 6208                                       Comedy|Drama|Romance   2287    3.0
## 6209                                           Adventure|Sci-Fi   2270    1.5
## 6210                                             Comedy|Romance   2270    1.0
## 6211                Adventure|Animation|Children|Comedy|Fantasy   2287    4.0
## 6212                                              Comedy|Sci-Fi   2270    4.0
## 6213                                    Action|Adventure|Sci-Fi   2270    3.0
## 6214                                     Adventure|Drama|Sci-Fi   2270    1.5
## 6215                                       Comedy|Crime|Musical   2270    1.5
## 6216                                         Comedy|Crime|Drama   2287    3.0
## 6217                                   Adventure|Comedy|Fantasy   2287    4.0
## 6218                               Crime|Drama|Mystery|Thriller   2287    4.0
## 6219                      Action|Children|Comedy|Fantasy|Sci-Fi   2270    2.5
## 6220                                 Animation|Children|Musical   2270    2.0
## 6221                                      Action|Comedy|Romance   2270    3.0
## 6222                                                     Comedy   2287    4.0
## 6223        Adventure|Animation|Children|Comedy|Fantasy|Romance   2294    4.5
## 6224                   Action|Adventure|Fantasy|Horror|Thriller   2294    4.0
## 6225                                    Adventure|Comedy|Sci-Fi   2281    3.5
## 6226                                              Action|Comedy   2281    2.5
## 6227             Action|Adventure|Comedy|Fantasy|Sci-Fi|Western   2281    2.0
## 6228                            Action|Adventure|Comedy|Fantasy   2281    3.0
## 6229                                       Comedy|Drama|Romance   2281    3.5
## 6230                                              Drama|Musical   2281    3.5
## 6231                             Children|Comedy|Romance|Sci-Fi   2281    2.5
## 6232                                                     Comedy   2281    3.0
## 6233        Adventure|Animation|Children|Comedy|Fantasy|Romance   2281    3.0
## 6234                                                      Drama   2281    4.0
## 6235                                            Horror|Thriller   2281    2.5
## 6236                                    Action|Adventure|Sci-Fi   2281    2.0
## 6237                                                     Comedy   2281    2.5
## 6238                                               Comedy|Crime   2281    2.0
## 6239                              Action|Adventure|Comedy|Crime   2281    2.5
## 6240                                             Drama|Thriller   2281    2.0
## 6241                                               Comedy|Drama   2281    3.5
## 6242                                             Comedy|Musical   2281    2.5
## 6243                                                     Sci-Fi   2281    2.5
## 6244                                       Comedy|Drama|Romance   2281    2.0
## 6245                            Action|Adventure|Comedy|Romance   2301    2.5
## 6246                                        Action|Crime|Sci-Fi   2301    1.0
## 6247                                            Action|Thriller   2301    3.5
## 6248                                    Action|Adventure|Comedy   2301    4.0
## 6249                                            Children|Comedy   2162    1.0
## 6250                                                     Comedy   2162    1.0
## 6251                                                     Comedy   2270    3.5
## 6252                                               Comedy|Drama   2270    1.0
## 6253                                                     Action   2270    2.5
## 6254                                              Horror|Sci-Fi   2270    4.5
## 6255                                                     Comedy   2281    2.0
## 6256                                Action|Adventure|Sci-Fi|War   2281    3.5
## 6257                            Action|Adventure|Comedy|Fantasy   2281    2.0
## 6258                                   Adventure|Comedy|Western   2281    3.0
## 6259                               Action|Comedy|Fantasy|Sci-Fi   2281    3.5
## 6260                                                    Romance   2281    3.0
## 6261                                Action|Adventure|Sci-Fi|War   2324    3.0
## 6262                                     Crime|Mystery|Thriller   2324    4.5
## 6263                                            Action|Thriller   2324    3.5
## 6264                                     Comedy|Fantasy|Romance   2324    3.5
## 6265                               Action|Comedy|Fantasy|Sci-Fi   2324    3.5
## 6266                                 Action|Adventure|Drama|War   2324    5.0
## 6267                            Action|Adventure|Comedy|Musical   2324    4.0
## 6268                                       Comedy|Drama|Romance   2324    2.5
## 6269                        Comedy|Crime|Drama|Romance|Thriller   2324    3.5
## 6270                                              Action|Comedy   2324    3.0
## 6271                                            Action|Thriller   2214    3.5
## 6272                                                      Drama   2360    5.0
## 6273                           Action|Adventure|Sci-Fi|Thriller   2360    2.0
## 6274                                   Comedy|Drama|Romance|War   2360    4.0
## 6275                                   Action|Adventure|Fantasy   2360    5.0
## 6276                                                      Drama   2360    4.0
## 6277                          Action|Adventure|Comedy|Drama|War   2360    3.5
## 6278                                               Action|Drama   2360    4.0
## 6279                                                     Comedy   2360    3.5
## 6280                                     Horror|Sci-Fi|Thriller   2360    2.5
## 6281                                      Comedy|Drama|Thriller   2376    3.5
## 6282                                      Crime|Horror|Thriller   2376    3.5
## 6283                                              Drama|Romance   2376    3.0
## 6284                               Comedy|Drama|Musical|Romance   2376    1.5
## 6285                                           Action|Drama|War   2376    4.5
## 6286                                              Drama|Mystery   2376    4.0
## 6287                                                      Drama   2376    4.0
## 6288                                                     Comedy   2376    3.0
## 6289                                                      Drama   2376    3.0
## 6290                                                      Drama   2376    4.5
## 6291                             Adventure|Comedy|Drama|Musical   2398    5.0
## 6292                                   Action|Adventure|Fantasy   2398    5.0
## 6293                                   Action|Adventure|Fantasy   2398    4.0
## 6294                                                      Drama   2270    1.5
## 6295                                               Comedy|Crime   2398    3.0
## 6296                                            Adventure|Drama   2398    4.5
## 6297                                       Comedy|Drama|Romance   2398    3.0
## 6298  Adventure|Animation|Children|Comedy|Crime|Fantasy|Mystery   2398    4.5
## 6299                                                     Comedy   2270    1.0
## 6300                                                     Action   2270    1.5
## 6301                 Animation|Children|Fantasy|Musical|Romance   2398    5.0
## 6302                                      Comedy|Romance|Sci-Fi   2270    1.5
## 6303                                                      Drama   2398    3.0
## 6304                                             Drama|Thriller   2270    0.5
## 6305                                                     Comedy   2270    2.5
## 6306                                              Comedy|Sci-Fi   2270    2.5
## 6307                                              Drama|Romance   2270    1.5
## 6308                                            Crime|Film-Noir   2162    3.5
## 6309                                             Comedy|Romance   2413    4.5
## 6310                          Action|Adventure|Mystery|Thriller   2413    4.0
## 6311                           Action|Adventure|Sci-Fi|Thriller   2413    5.0
## 6312                                                     Comedy   2413    4.0
## 6313                                               Comedy|Drama   2413    4.0
## 6314                                       Action|Drama|Romance   2413    3.0
## 6315                                       Comedy|Drama|Romance   2413    5.0
## 6316                                              Drama|Romance   2413    5.0
## 6317                                             Children|Drama   2413    3.5
## 6318                                                      Drama   2413    5.0
## 6319                                             Drama|Thriller   2413    4.0
## 6320                                              Drama|Romance   2413    5.0
## 6321                                             Comedy|Romance   2433    4.0
## 6322                                              Drama|Romance   2433    5.0
## 6323                                  Animation|Children|Comedy   2433    5.0
## 6324                                                Crime|Drama   2433    5.0
## 6325                                    Action|Adventure|Sci-Fi   2455    2.0
## 6326                                   Action|Adventure|Fantasy   2455    3.5
## 6327                                     Action|Sci-Fi|Thriller   2455    3.5
## 6328                                                Crime|Drama   2469    2.5
## 6329                     Action|Adventure|Comedy|Fantasy|Horror   2469    2.5
## 6330                     Action|Adventure|Comedy|Crime|Thriller   2455    2.0
## 6331                                      Action|Drama|Thriller   2469    5.0
## 6332                                    Action|Romance|Thriller   2455    2.5
## 6333                                        Drama|Horror|Sci-Fi   2469    3.5
## 6334                                              Drama|Romance   2455    3.0
## 6335                                  Action|Adventure|Thriller   2455    4.0
## 6336                           Action|Adventure|Sci-Fi|Thriller   2455    4.5
## 6337                                    Action|Adventure|Sci-Fi   2455    3.5
## 6338                                          Action|Comedy|War   2455    3.0
## 6339                                           Adventure|Comedy   2455    3.0
## 6340                             Horror|Mystery|Sci-Fi|Thriller   2455    4.0
## 6341                            Action|Adventure|Comedy|Musical   2433    4.0
## 6342                                           Adventure|Sci-Fi   2433    3.0
## 6343                             Action|Adventure|Comedy|Sci-Fi   2487    2.5
## 6344                                       Drama|Fantasy|Sci-Fi   2455    3.5
## 6345                                     Action|Sci-Fi|Thriller   2455    4.0
## 6346                                    Action|Adventure|Sci-Fi   2455    4.0
## 6347                                                      Drama   2487    4.0
## 6348                                   Action|Adventure|Fantasy   2487    4.5
## 6349                                           Mystery|Thriller   2398    3.0
## 6350                                              Action|Sci-Fi   2487    3.5
## 6351                               Action|Drama|Sci-Fi|Thriller   2487    4.0
## 6352                                              Drama|Romance   2398    2.0
## 6353                                              Drama|Mystery   2398    4.5
## 6354                                                  Drama|War   2487    4.0
## 6355                               Crime|Drama|Mystery|Thriller   2509    4.5
## 6356                     Action|Adventure|Comedy|Fantasy|Horror   2509    4.5
## 6357                                   Comedy|Drama|Romance|War   2487    3.5
## 6358                                                  Drama|War   2509    3.5
## 6359                                    Action|Adventure|Sci-Fi   2505    3.0
## 6360                                                     Comedy   2487    5.0
## 6361                                     Adventure|Drama|Sci-Fi   2517    3.0
## 6362                                   Comedy|Drama|Romance|War   2505    4.0
## 6363                               Crime|Drama|Mystery|Thriller   2517    4.5
## 6364                                             Crime|Thriller   2509    3.5
## 6365                                             Comedy|Fantasy   2487    3.0
## 6366                                      Action|Crime|Thriller   2487    3.0
## 6367                                                      Drama   2517    4.5
## 6368                                Action|Crime|Drama|Thriller   2505    3.0
## 6369                              Action|Comedy|Horror|Thriller   2505    3.0
## 6370                                           Adventure|Sci-Fi   2509    4.5
## 6371                           Action|Adventure|Sci-Fi|Thriller   2509    2.5
## 6372                                                   Thriller   2505    3.5
## 6373                                                     Action   2517    0.5
## 6374                                     Adventure|Drama|Sci-Fi   2509    3.0
## 6375                                     Drama|Mystery|Thriller   2505    4.0
## 6376                         Adventure|Animation|Fantasy|Sci-Fi   2517    3.0
## 6377                                             Comedy|Musical   2527    2.5
## 6378                                           Action|Drama|War   2517    4.0
## 6379                              Comedy|Fantasy|Romance|Sci-Fi   2542    4.0
## 6380                                  Action|Adventure|Thriller   2517    2.0
## 6381                          Action|Adventure|Mystery|Thriller   2517    3.0
## 6382                                       Action|Horror|Sci-Fi   2542    4.0
## 6383                    Action|Adventure|Horror|Sci-Fi|Thriller   2536    2.0
## 6384                                                     Comedy   2517    5.0
## 6385                           Action|Adventure|Sci-Fi|Thriller   2505    4.0
## 6386                                 Adventure|Children|Fantasy   2517    2.5
## 6387                                                      Drama   2505    4.0
## 6388                                              Drama|Romance   2517    4.5
## 6389                                       Action|Drama|Western   2527    4.0
## 6390                                      Crime|Horror|Thriller   2542    5.0
## 6391                             Action|Adventure|Drama|Fantasy   2517    4.0
## 6392                                                  Drama|War   2556    4.0
## 6393                                     Action|Sci-Fi|Thriller   2517    3.0
## 6394                              Action|Crime|Romance|Thriller   2505    3.5
## 6395                                                Documentary   2517    4.0
## 6396                                                      Drama   2536    4.0
## 6397                                    Horror|Mystery|Thriller   2455    3.5
## 6398                                              Action|Sci-Fi   2556    4.0
## 6399                                   Action|Adventure|Fantasy   2505    4.0
## 6400                                   Action|Adventure|Fantasy   2505    4.0
## 6401                                Action|Crime|Drama|Thriller   2505    4.5
## 6402                                           Action|Adventure   2487    4.0
## 6403                                              Drama|Western   2505    4.0
## 6404                                  Action|Adventure|Thriller   2556    2.5
## 6405                                     Action|Sci-Fi|Thriller   2398    4.5
## 6406                                             Comedy|Romance   2517    3.0
## 6407                                   Comedy|Drama|Romance|War   2536    4.0
## 6408                                       Action|Crime|Romance   2455    3.0
## 6409                               Action|Crime|Sci-Fi|Thriller   2536    2.0
## 6410                                  Action|Adventure|Thriller   2556    3.0
## 6411                               Action|Adventure|Crime|Drama   2398    4.0
## 6412                                         Animation|Children   2398    4.5
## 6413                                       Comedy|Drama|Romance   2556    4.0
## 6414                                    Action|Adventure|Sci-Fi   2517    4.0
## 6415                                    Action|Adventure|Sci-Fi   2536    3.0
## 6416                                           Action|Drama|War   2398    3.0
## 6417                        Adventure|Animation|Children|Comedy   2398    4.0
## 6418                                   Action|Adventure|Fantasy   2398    4.0
## 6419                                                      Drama   2556    2.5
## 6420                   Action|Adventure|Comedy|Romance|Thriller   2398    4.5
## 6421                                                      Drama   2556    4.5
## 6422                               Action|Crime|Sci-Fi|Thriller   2487    4.5
## 6423                                     Drama|Mystery|Thriller   2536    3.5
## 6424                                              Drama|Romance   2556    4.0
## 6425                                     Comedy|Fantasy|Romance   2487    4.5
## 6426                                                  Drama|War   2556    3.5
## 6427                                            Children|Comedy   2487    3.0
## 6428                                              Drama|Romance   2536    3.5
## 6429                                    Horror|Mystery|Thriller   2556    4.5
## 6430                                         Animation|Children   2398    3.0
## 6431                                    Action|Adventure|Comedy   2536    3.5
## 6432                                            Horror|Thriller   2536    4.0
## 6433                                              Horror|Sci-Fi   2536    3.0
## 6434                                                  Drama|War   2536    4.5
## 6435                              Comedy|Fantasy|Romance|Sci-Fi   2536    3.5
## 6436                                    Action|Adventure|Sci-Fi   2604    3.5
## 6437                                     Action|Sci-Fi|Thriller   2604    3.0
## 6438                                        Action|Drama|Sci-Fi   2604    4.0
## 6439                                    Action|Adventure|Sci-Fi   2604    2.5
## 6440                            Animation|Children|Comedy|Crime   2613    3.5
## 6441                           Action|Adventure|Sci-Fi|Thriller   2613    3.5
## 6442                            Action|Adventure|Comedy|Musical   2613    4.0
## 6443                                        Adventure|Drama|War   2613    3.5
## 6444                       Action|Crime|Mystery|Sci-Fi|Thriller   2625    4.0
## 6445                                                     Comedy   2613    3.0
## 6446                              Action|Comedy|Horror|Thriller   2613    3.0
## 6447                           Action|Adventure|Sci-Fi|Thriller   2625    3.5
## 6448                       Crime|Drama|Mystery|Romance|Thriller   2536    4.0
## 6449                                             Comedy|Romance   2536    4.0
## 6450                                     Adventure|Drama|Sci-Fi   2657    3.5
## 6451                                  Action|Adventure|Thriller   2657    3.5
## 6452                                    Action|Romance|Thriller   2657    4.0
## 6453                                      Action|Crime|Thriller   2657    5.0
## 6454                                                Crime|Drama   2657    5.0
## 6455                              Action|Horror|Sci-Fi|Thriller   2657    5.0
## 6456                                      Children|Drama|Sci-Fi   2604    4.5
## 6457                         Adventure|Children|Fantasy|Musical   2657    4.5
## 6458                                    Action|Adventure|Sci-Fi   2613    3.0
## 6459                                            Sci-Fi|Thriller   2613    3.5
## 6460                                              Drama|Romance   2604    3.0
## 6461                              Action|Adventure|Drama|Sci-Fi   2613    2.5
## 6462                                                      Drama   2613    4.0
## 6463                                         Comedy|Crime|Drama   2657    3.5
## 6464                                       Crime|Drama|Thriller   2657    3.5
## 6465                                                     Comedy   2613    2.0
## 6466                              Action|Crime|Fantasy|Thriller   2613    3.0
## 6467                                              Horror|Sci-Fi   2657    4.0
## 6468                                      Action|Comedy|Romance   2657    2.5
## 6469                                                      Drama   2398    3.5
## 6470                                        Action|Crime|Sci-Fi   2676    2.5
## 6471                                        Action|Comedy|Crime   2536    3.5
## 6472                                   Action|Adventure|Fantasy   2536    4.5
## 6473                                                Crime|Drama   2536    3.5
## 6474                               Crime|Drama|Romance|Thriller   2536    4.5
## 6475                    Action|Adventure|Comedy|Fantasy|Romance   2657    3.5
## 6476                                Crime|Drama|Sci-Fi|Thriller   2698    3.5
## 6477                                       Action|Comedy|Sci-Fi   2676    2.5
## 6478                             Adventure|Comedy|Drama|Musical   2505    3.5
## 6479                                                    Western   2657    3.5
## 6480                                      Action|Crime|Thriller   2698    4.0
## 6481                                            Children|Comedy   2698    1.5
## 6482                                                Crime|Drama   2698    2.5
## 6483                                                     Comedy   2698    2.5
## 6484                                             Fantasy|Horror   2657    4.0
## 6485                                           Action|Adventure   2698    4.5
## 6486                                           Adventure|Sci-Fi   2698    4.5
## 6487                                       Crime|Drama|Thriller   2698    3.5
## 6488                                           Action|Drama|War   2698    4.5
## 6489                                Action|Crime|Drama|Thriller   2698    2.5
## 6490                                             Comedy|Romance   2505    4.0
## 6491                                      Action|Crime|Thriller   2487    4.5
## 6492                                     Action|Sci-Fi|Thriller   2657    4.0
## 6493                               Action|Comedy|Crime|Thriller   2487    3.0
## 6494                                                      Drama   2487    4.0
## 6495                               Crime|Drama|Mystery|Thriller   2676    4.0
## 6496                            Action|Adventure|Comedy|Fantasy   2505    3.5
## 6497                                   Action|Adventure|Fantasy   2698    4.0
## 6498                                    Action|Adventure|Sci-Fi   2735    2.5
## 6499                                   Adventure|Comedy|Western   2735    4.0
## 6500                                     Action|Sci-Fi|Thriller   2676    3.5
## 6501                                   Action|Adventure|Fantasy   2735    3.0
## 6502                                             Comedy|Romance   2676    4.0
## 6503                              Action|Horror|Sci-Fi|Thriller   2517    4.5
## 6504                                       Comedy|Drama|Romance   2756    4.5
## 6505                                    Comedy|Romance|Thriller   2756    2.5
## 6506                                                     Comedy   2505    4.0
## 6507                                 Animation|Children|Musical   2756    1.5
## 6508                                      Action|Crime|Thriller   2505    3.5
## 6509                                                Crime|Drama   2735    4.5
## 6510                                               Drama|Sci-Fi   2735    3.5
## 6511                                             Comedy|Romance   2756    3.0
## 6512                                                      Drama   2735    4.5
## 6513                                     Comedy|Fantasy|Romance   2723    3.0
## 6514                            Children|Comedy|Fantasy|Musical   2756    4.5
## 6515                         Adventure|Animation|Fantasy|Sci-Fi   2723    3.0
## 6516                                                     Comedy   2756    5.0
## 6517                                     Action|Sci-Fi|Thriller   2723    2.0
## 6518                                             Drama|Thriller   2723    3.5
## 6519                               Action|Drama|Sci-Fi|Thriller   2698    2.5
## 6520                                            Action|Thriller   2723    2.5
## 6521                                Comedy|Drama|Romance|Sci-Fi   2756    5.0
## 6522                                                  Drama|War   2698    5.0
## 6523                                     Action|Sci-Fi|Thriller   2723    3.0
## 6524                              Action|Horror|Sci-Fi|Thriller   2723    3.0
## 6525                Action|Adventure|Comedy|Crime|Drama|Romance   2698    2.0
## 6526                                    Action|Adventure|Sci-Fi   2398    3.5
## 6527                                                Crime|Drama   2527    5.0
## 6528                                                     Comedy   2723    2.5
## 6529                                            Adventure|Drama   2698    3.5
## 6530                                         Comedy|Crime|Drama   2723    5.0
## 6531                                    Adventure|Drama|Western   2723    3.0
## 6532                                    Children|Comedy|Romance   2756    0.5
## 6533                                       Crime|Drama|Thriller   2756    4.5
## 6534                                                      Drama   2756    3.5
## 6535                                  Action|Adventure|Thriller   2723    3.0
## 6536                               Action|Drama|Sci-Fi|Thriller   2723    2.5
## 6537                                           Action|Drama|War   2723    3.5
## 6538                             Adventure|Comedy|Drama|Musical   2698    4.0
## 6539                                    Action|Adventure|Comedy   2505    3.0
## 6540                                     Children|Comedy|Sci-Fi   2756    1.5
## 6541                                        Action|Crime|Sci-Fi   2505    3.0
## 6542                                                      Drama   2756    1.0
## 6543                                     Adventure|Comedy|Crime   2777    4.5
## 6544                                Comedy|Crime|Drama|Thriller   2735    4.0
## 6545                 Animation|Children|Fantasy|Musical|Romance   2735    2.5
## 6546                                    Action|Adventure|Comedy   2777    3.5
## 6547                                              Drama|Fantasy   2723    3.5
## 6548                                              Action|Comedy   2517    2.0
## 6549                                                  Drama|War   2723    3.5
## 6550                                        Action|Crime|Sci-Fi   2792    3.5
## 6551                                             Comedy|Romance   2455    3.5
## 6552             Action|Adventure|Comedy|Fantasy|Sci-Fi|Western   2756    1.0
## 6553                                      Drama|Mystery|Romance   2517    4.0
## 6554                                                     Comedy   2783    3.5
## 6555                                               Drama|Sci-Fi   2756    4.5
## 6556                                             Comedy|Romance   2517    4.5
## 6557                                               Comedy|Drama   2783    5.0
## 6558                        Action|Crime|Drama|Mystery|Thriller   2723    3.0
## 6559                                             Comedy|Musical   2756    4.0
## 6560                                    Adventure|Comedy|Sci-Fi   2792    3.5
## 6561                                    Action|Adventure|Sci-Fi   2792    3.0
## 6562                                               Comedy|Crime   2517    4.5
## 6563                                     Comedy|Horror|Thriller   2698    2.5
## 6564                                              Horror|Sci-Fi   2792    4.0
## 6565                                        Action|Drama|Sci-Fi   2792    4.0
## 6566                                  Action|Adventure|Thriller   2756    3.5
## 6567                                                     Comedy   2469    1.0
## 6568                                               Comedy|Drama   2783    4.5
## 6569                                           Adventure|Sci-Fi   2792    2.5
## 6570                                              Comedy|Horror   2517    3.0
## 6571                                             Comedy|Romance   2783    2.5
## 6572                                      Comedy|Sci-Fi|Western   2812    1.0
## 6573                                      Comedy|Crime|Thriller   2756    2.5
## 6574                                 Action|Adventure|Drama|War   2698    4.5
## 6575                          Action|Adventure|Comedy|Drama|War   2698    3.0
## 6576                                       Action|Adventure|War   2698    3.5
## 6577                                              Action|Comedy   2517    1.5
## 6578                               Comedy|Drama|Musical|Romance   2604    4.0
## 6579                                       Comedy|Drama|Romance   2783    2.5
## 6580             Action|Adventure|Comedy|Fantasy|Sci-Fi|Western   2812    3.0
## 6581                                           Action|Adventure   2783    3.0
## 6582                                    Action|Adventure|Sci-Fi   2698    3.5
## 6583                                              Action|Sci-Fi   2698    4.0
## 6584                                Action|Adventure|Sci-Fi|War   2676    3.5
## 6585                    Action|Adventure|Horror|Sci-Fi|Thriller   2604    2.5
## 6586                                            Action|Thriller   2604    2.5
## 6587                                              Drama|Romance   2604    2.5
## 6588                                  Action|Adventure|Thriller   2676    4.0
## 6589                                Action|Comedy|Crime|Fantasy   2676    3.0
## 6590                                              Drama|Romance   2783    3.0
## 6591                                      Action|Crime|Thriller   2783    3.0
## 6592                                                Crime|Drama   2517    4.5
## 6593                Adventure|Animation|Children|Comedy|Fantasy   2756    4.0
## 6594                Adventure|Animation|Children|Comedy|Musical   2756    3.0
## 6595                                    Action|Adventure|Sci-Fi   2756    4.5
## 6596                                   Animation|Comedy|Musical   2840    3.0
## 6597                                             Comedy|Romance   2840    4.0
## 6598                                   Comedy|Drama|Romance|War   2840    5.0
## 6599                                     Drama|Romance|Thriller   2723    2.5
## 6600                                      Action|Crime|Thriller   2756    3.0
## 6601                                                      Drama   2723    4.5
## 6602                                                     Comedy   2756    5.0
## 6603                                                Documentary   2723    4.0
## 6604                        Adventure|Animation|Children|Comedy   2723    4.0
## 6605                                   Action|Adventure|Romance   2723    2.5
## 6606                                              Action|Sci-Fi   2823    2.0
## 6607                                    Action|Adventure|Sci-Fi   2823    5.0
## 6608                                     Action|Adventure|Drama   2756    2.0
## 6609                            Action|Adventure|Comedy|Romance   2756    2.0
## 6610                                                      Drama   2756    4.5
## 6611                          Action|Adventure|Romance|Thriller   2823    4.0
## 6612                                              Drama|Romance   2517    3.0
## 6613                              Children|Comedy|Drama|Fantasy   2823    4.5
## 6614                Adventure|Animation|Children|Comedy|Fantasy   2756    4.0
## 6615                                         Drama|Thriller|War   2756    4.5
## 6616                                       Comedy|Drama|Romance   2756    2.0
## 6617                                             Drama|Thriller   2823    4.0
## 6618                                                     Comedy   2756    2.5
## 6619                                  Action|Adventure|Thriller   2723    3.5
## 6620                                      Action|Drama|Thriller   2517    1.5
## 6621                            Action|Adventure|Comedy|Fantasy   2517    3.0
## 6622                            Children|Comedy|Fantasy|Musical   2823    3.0
## 6623                                     Action|Sci-Fi|Thriller   2823    2.0
## 6624                                  Action|Comedy|Crime|Drama   2517    2.0
## 6625                               Action|Comedy|Fantasy|Sci-Fi   2823    2.0
## 6626                               Action|Comedy|Crime|Thriller   2517    1.5
## 6627                                           Adventure|Sci-Fi   2517    4.0
## 6628                                   Adventure|Comedy|Western   2756    4.5
## 6629                                            Action|Thriller   2517    3.5
## 6630                                    Action|Adventure|Sci-Fi   2517    2.0
## 6631                                     Action|Sci-Fi|Thriller   2517    0.5
## 6632                                             Comedy|Romance   2823    4.0
## 6633                                                     Comedy   2823    3.0
## 6634                                   Action|Adventure|Fantasy   2823    3.0
## 6635                                                     Comedy   2517    1.5
## 6636                              Action|Crime|Mystery|Thriller   2517    2.0
## 6637                                Action|Crime|Drama|Thriller   2756    2.0
## 6638                                            Horror|Thriller   2823    2.0
## 6639                                                 Action|War   2517    2.0
## 6640                                    Action|Adventure|Sci-Fi   2823    4.0
## 6641                                Action|Crime|Drama|Thriller   2517    3.5
## 6642                                 Adventure|Children|Fantasy   2823    5.0
## 6643                                                     Comedy   2783    4.5
## 6644                                            Horror|Thriller   2783    1.0
## 6645                                   Adventure|Comedy|Western   2783    2.0
## 6646                                               Comedy|Drama   2783    3.0
## 6647                                    Action|Adventure|Sci-Fi   2783    3.0
## 6648                                                      Drama   2783    2.5
## 6649                                               Comedy|Crime   2783    2.5
## 6650                                             Horror|Mystery   2783    3.5
## 6651                                     Comedy|Horror|Thriller   2783    4.0
## 6652                                     Comedy|Musical|Romance   2783    0.5
## 6653                                              Drama|Romance   2783    4.0
## 6654                                      Drama|Horror|Thriller   2783    1.5
## 6655                                             Comedy|Romance   2783    2.5
## 6656                            Action|Adventure|Fantasy|Sci-Fi   2783    1.5
## 6657                                       Comedy|Drama|Romance   2859    5.0
## 6658                                      Comedy|Drama|Thriller   2859    4.5
## 6659                                             Drama|Thriller   2859    3.0
## 6660                           Action|Adventure|Sci-Fi|Thriller   2859    4.0
## 6661                               Comedy|Horror|Musical|Sci-Fi   2859    4.0
## 6662                                             Comedy|Romance   2783    3.5
## 6663                                     Drama|Mystery|Thriller   2812    4.0
## 6664                            Animation|Children|IMAX|Musical   2812    4.0
## 6665                        Adventure|Animation|Children|Comedy   2812    4.0
## 6666                 Adventure|Animation|Children|Drama|Musical   2812    3.5
## 6667                                                      Drama   2812    3.0
## 6668                                                     Comedy   2812    2.5
## 6669                Adventure|Animation|Children|Comedy|Musical   2812    2.5
## 6670                                   Action|Drama|Romance|War   2812    2.5
## 6671                                    Action|Adventure|Sci-Fi   2812    2.5
## 6672                    Action|Adventure|Horror|Sci-Fi|Thriller   2879    1.5
## 6673                                    Comedy|Romance|Thriller   2879    1.0
## 6674                              Action|Comedy|Horror|Thriller   2879    1.0
## 6675                                                      Drama   2879    3.0
## 6676                                              Drama|Romance   2879    3.0
## 6677                                            Sci-Fi|Thriller   2879    3.5
## 6678                               Action|Comedy|Fantasy|Sci-Fi   2676    4.0
## 6679                                              Action|Horror   2676    3.0
## 6680                                       Action|Comedy|Sci-Fi   2676    3.0
## 6681                                             Action|Mystery   2676    3.5
## 6682                                    Adventure|Comedy|Sci-Fi   2777    4.5
## 6683                                 Adventure|Animation|Comedy   2604    4.5
## 6684                                             Comedy|Fantasy   2604    3.5
## 6685                          Adventure|Children|Comedy|Fantasy   2604    3.5
## 6686                                    Adventure|Comedy|Sci-Fi   2542    2.5
## 6687                                  Action|Adventure|Thriller   2542    3.0
## 6688                                       Crime|Drama|Thriller   2542    4.0
## 6689                                    Action|Adventure|Sci-Fi   2542    3.5
## 6690                                Crime|Drama|Sci-Fi|Thriller   2542    3.0
## 6691                                            Horror|Thriller   2542    4.5
## 6692                                     Action|Adventure|Drama   2542    4.5
## 6693                     Crime|Drama|Film-Noir|Mystery|Thriller   2542    4.5
## 6694                                     Action|Sci-Fi|Thriller   2469    5.0
## 6695                                 Adventure|Children|Fantasy   2542    3.5
## 6696                                             Comedy|Romance   2542    3.5
## 6697                     Action|Adventure|Comedy|Crime|Thriller   2542    1.5
## 6698                                  Action|Adventure|Thriller   2542    3.5
## 6699                                           Action|Drama|War   2542    3.5
## 6700                                            Children|Comedy   2879    0.5
## 6701            Action|Adventure|Children|Comedy|Fantasy|Sci-Fi   2879    0.5
## 6702                                  Action|Adventure|Thriller   2879    2.5
## 6703                                               Comedy|Crime   2879    1.5
## 6704                                            Horror|Thriller   2879    2.5
## 6705                   Animation|Children|Drama|Fantasy|Musical   2879    0.5
## 6706                          Animation|Children|Comedy|Musical   2879    2.0
## 6707                              Drama|Fantasy|Horror|Thriller   2879    2.5
## 6708                          Adventure|Children|Comedy|Fantasy   2879    4.5
## 6709                                      Action|Crime|Thriller   2879    2.5
## 6710                                     Action|Sci-Fi|Thriller   2879    2.5
## 6711                                   Adventure|Comedy|Western   2879    4.0
## 6712                                              Action|Comedy   2879    1.0
## 6713                                    Action|Adventure|Sci-Fi   2879    0.5
## 6714                                      Drama|Fantasy|Romance   2879    0.5
## 6715                   Adventure|Children|Comedy|Fantasy|Sci-Fi   2879    1.0
## 6716                               Comedy|Horror|Musical|Sci-Fi   2879    1.5
## 6717                       Comedy|Drama|Fantasy|Horror|Thriller   2879    1.0
## 6718                                Action|Drama|Romance|Sci-Fi   2879    0.5
## 6719                                                     Comedy   2879    3.0
## 6720                                               Comedy|Drama   2783    3.5
## 6721                                                     Comedy   2783    0.5
## 6722                                                     Comedy   2783    3.0
## 6723                                Action|Crime|Drama|Thriller   2783    4.0
## 6724                                               Comedy|Drama   2783    3.0
## 6725                                       Comedy|Drama|Mystery   2783    2.5
## 6726                                     Comedy|Musical|Romance   2783    4.0
## 6727                                Action|Adventure|Comedy|War   2783    1.0
## 6728                                              Action|Comedy   2783    3.0
## 6729                                       Comedy|Drama|Romance   2783    5.0
## 6730                              Crime|Horror|Mystery|Thriller   2783    2.0
## 6731                                                   Thriller   2783    3.0
## 6732                                        Action|Crime|Sci-Fi   2536    2.5
## 6733                                                Crime|Drama   2536    4.5
## 6734                                              Drama|Musical   2536    3.5
## 6735                                       Drama|Romance|Sci-Fi   2536    3.0
## 6736                             Adventure|Comedy|Drama|Musical   2536    4.0
## 6737                                                      Drama   2536    4.5
## 6738                            Action|Fantasy|Mystery|Thriller   2536    3.0
## 6739                                             Drama|Thriller   2536    3.5
## 6740                                             Comedy|Romance   2536    3.5
## 6741                                                     Comedy   2536    3.0
## 6742                                               Comedy|Crime   2536    3.5
## 6743                                               Action|Crime   2536    2.5
## 6744                                    Adventure|Comedy|Sci-Fi   2783    3.0
## 6745                                                     Comedy   2527    3.5
## 6746                                             Comedy|Romance   2527    3.0
## 6747                               Comedy|Horror|Musical|Sci-Fi   2783    3.0
## 6748                              Drama|Mystery|Sci-Fi|Thriller   2783    3.5
## 6749                                            Children|Comedy   2783    2.5
## 6750                                        Action|Drama|Sci-Fi   2756    1.0
## 6751                                       Action|Comedy|Sci-Fi   2756    3.5
## 6752                         Adventure|Children|Fantasy|Musical   2756    1.5
## 6753                   Animation|Children|Drama|Fantasy|Musical   2756    2.5
## 6754                                              Action|Comedy   2756    1.0
## 6755                          Action|Adventure|Comedy|Drama|War   2756    2.0
## 6756                                                     Comedy   2756    4.0
## 6757                                             Comedy|Western   2756    5.0
## 6758                                                     Comedy   2756    4.0
## 6759                                                     Comedy   2756    2.0
## 6760                                     Comedy|Musical|Romance   2756    0.5
## 6761                                                     Comedy   2756    4.5
## 6762                                        Action|Comedy|Drama   2756    4.5
## 6763                                              Drama|Romance   2756    1.0
## 6764                                     Comedy|Musical|Romance   2879    0.5
## 6765                                      Action|Mystery|Sci-Fi   2879    0.5
## 6766                  Adventure|Animation|Children|Comedy|Drama   2879    0.5
## 6767                                           Action|Adventure   2536    3.0
## 6768                                                     Comedy   2536    3.5
## 6769                                Action|Crime|Drama|Thriller   2536    3.0
## 6770                             Action|Romance|Sci-Fi|Thriller   2556    2.0
## 6771                                      Children|Drama|Sci-Fi   2783    3.5
## 6772                                                      Drama   2783    2.5
## 6773                        Adventure|Animation|Children|Comedy   2783    3.5
## 6774                            Action|Adventure|Comedy|Fantasy   2783    3.0
## 6775                                       Comedy|Crime|Musical   2783    3.5
## 6776                                                    Western   2783    3.0
## 6777                                                     Comedy   2783    3.0
## 6778                                             Comedy|Romance   2783    3.0
## 6779                                               Comedy|Drama   2783    3.0
## 6780                                  Action|Comedy|Crime|Drama   2783    3.0
## 6781                                                      Drama   2698    3.5
## 6782                                                      Drama   2556    3.0
## 6783                                   Adventure|Comedy|Western   2783    3.5
## 6784                                    Action|Adventure|Sci-Fi   2783    1.0
## 6785                                         Comedy|Crime|Drama   2783    4.5
## 6786                                   Animation|Comedy|Musical   2783    4.5
## 6787                                           Action|Adventure   2783    3.0
## 6788                                       Comedy|Drama|Romance   2783    5.0
## 6789                                             Drama|Thriller   2783    3.0
## 6790                                              Action|Comedy   2783    3.5
## 6791                                                      Drama   2783    4.5
## 6792                                             Drama|Thriller   2556    2.5
## 6793                                              Action|Comedy   2556    3.0
## 6794                                             Comedy|Fantasy   2517    3.0
## 6795                                               Comedy|Drama   2517    3.5
## 6796                                                Crime|Drama   2517    4.5
## 6797                                              Action|Sci-Fi   2469    4.0
## 6798                                        Crime|Drama|Fantasy   2398    5.0
## 6799                                                      Drama   2398    3.5
## 6800                                       Crime|Drama|Thriller   2398    4.5
## 6801                                    Adventure|Comedy|Sci-Fi   2398    5.0
## 6802                                      Drama|Mystery|Romance   2398    4.5
## 6803                                   Action|Adventure|Fantasy   2398    3.5
## 6804                                 Animation|Children|Musical   2398    5.0
## 6805                               Action|Crime|Sci-Fi|Thriller   2398    4.5
## 6806                                Action|Crime|Drama|Thriller   2556    3.5
## 6807                        Action|Crime|Drama|Mystery|Thriller   2556    3.5
## 6808                                                      Drama   2556    3.0
## 6809                               Crime|Drama|Romance|Thriller   2556    3.5
## 6810                                                     Comedy   2398    4.0
## 6811                                      Drama|Horror|Thriller   2398    4.5
## 6812                                       Action|Comedy|Horror   2783    3.0
## 6813                                    Action|Adventure|Comedy   2783    1.0
## 6814                                             Comedy|Mystery   2783    3.0
## 6815                         Animation|Children|Fantasy|Musical   2433    4.0
## 6816                                       Comedy|Drama|Musical   2433    3.5
## 6817                                                     Comedy   2433    4.0
## 6818                                                     Comedy   2433    3.5
## 6819                                                 Comedy|War   2433    3.5
## 6820                                  Action|Comedy|Crime|Drama   2433    3.0
## 6821                       Action|Crime|Mystery|Sci-Fi|Thriller   2433    2.5
## 6822                           Action|Adventure|Sci-Fi|Thriller   2433    2.5
## 6823                                   Adventure|Comedy|Western   2433    2.0
## 6824  Adventure|Animation|Children|Comedy|Crime|Fantasy|Mystery   2433    3.0
## 6825                                                   Thriller   2433    3.0
## 6826                                  Action|Adventure|Thriller   2433    3.0
## 6827                                             Action|Mystery   2433    1.0
## 6828                                  Action|Adventure|Thriller   2433    3.0
## 6829                                      Action|Comedy|Romance   2433    1.0
## 6830                                           Action|Adventure   2433    3.0
## 6831                                                     Comedy   2433    2.0
## 6832                                                     Comedy   2433    2.5
## 6833                                       Comedy|Drama|Romance   2433    2.5
## 6834                                                     Comedy   2433    2.0
## 6835                                       Comedy|Drama|Romance   2433    2.5
## 6836                                      Drama|Musical|Romance   2433    2.0
## 6837                                             Drama|Thriller   2433    4.0
## 6838                                      Drama|Sci-Fi|Thriller   2698    3.5
## 6839                               Action|Comedy|Crime|Thriller   2698    3.5
## 6840                                  Action|Comedy|Crime|Drama   2698    4.0
## 6841                           Crime|Film-Noir|Mystery|Thriller   2698    4.0
## 6842                                         Drama|Thriller|War   2698    4.5
## 6843                                        Crime|Drama|Western   2698    3.5
## 6844                                             Crime|Thriller   2134    3.0
## 6845                                  Action|Adventure|Thriller   2214    3.0
## 6846                                      Comedy|Sci-Fi|Western   2536    1.5
## 6847                                  Action|Comedy|Crime|Drama   2214    3.5
## 6848                                                     Comedy   2852    3.0
## 6849                                              Drama|Romance   2852    4.0
## 6850                                                Crime|Drama   2852    3.5
## 6851                                 Adventure|Animation|Comedy   2852    3.0
## 6852                                       Comedy|Drama|Romance   2852    4.0
## 6853                                         Adventure|Children   2505    1.5
## 6854                                    Action|Adventure|Sci-Fi   2505    2.5
## 6855                                    Action|Adventure|Sci-Fi   2294    4.0
## 6856                                    Action|Adventure|Sci-Fi   2294    4.5
## 6857                                    Action|Romance|Thriller   2294    3.5
## 6858                 Animation|Children|Fantasy|Musical|Romance   2294    3.0
## 6859                                     Action|Sci-Fi|Thriller   2812    4.0
## 6860                                       Comedy|Drama|Romance   2812    4.0
## 6861                                             Drama|Thriller   2812    3.0
## 6862                           Action|Adventure|Sci-Fi|Thriller   2812    3.0
## 6863                                  Action|Adventure|Thriller   2812    2.5
## 6864                           Action|Adventure|Horror|Thriller   2812    2.5
## 6865                              Action|Horror|Sci-Fi|Thriller   2812    2.0
## 6866                                                     Comedy   2398    4.0
## 6867                                           Adventure|Sci-Fi   2812    0.5
## 6868         Adventure|Animation|Children|Comedy|Fantasy|Sci-Fi   2812    3.5
## 6869                                    Action|Adventure|Sci-Fi   2723    4.5
## 6870                                                Crime|Drama   2698    3.5
## 6871                                      Action|Fantasy|Horror   2517    4.0
## 6872                                               Drama|Sci-Fi   2698    5.0
## 6873                                           Animation|Sci-Fi   2237    3.0
## 6874                                              Comedy|Sci-Fi   2237    3.0
## 6875                             Adventure|Drama|Romance|Sci-Fi   2237    3.5
## 6876                                       Action|Comedy|Sci-Fi   2237    2.0
## 6877                            Action|Adventure|Comedy|Fantasy   2237    4.0
## 6878                                       Action|Crime|Fantasy   2237    1.0
## 6879                                              Drama|Musical   2237    3.0
## 6880                                             Comedy|Romance   2237    1.0
## 6881                                Comedy|Crime|Drama|Thriller   2398    5.0
## 6882                              Action|Adventure|Drama|Sci-Fi   2398    4.0
## 6883                                                      Drama   2237    4.0
## 6884                        Action|Comedy|Fantasy|Horror|Sci-Fi   2398    2.5
## 6885                                              Comedy|Sci-Fi   2696    4.0
## 6886                                             Horror|Mystery   2696    5.0
## 6887                                             Comedy|Romance   2696    4.5
## 6888                                               Comedy|Drama   2696    3.5
## 6889                                         Animation|Children   2237    3.5
## 6890                            Adventure|Children|Comedy|Drama   2237    2.5
## 6891                                 Animation|Children|Fantasy   2237    4.0
## 6892                                            Children|Comedy   2237    0.5
## 6893                           Action|Adventure|Sci-Fi|Thriller   2385    3.5
## 6894                     Action|Adventure|Drama|Sci-Fi|Thriller   2812    3.5
## 6895                              Crime|Horror|Mystery|Thriller   2237    3.5
## 6896                                       Comedy|Drama|Romance   2398    2.5
## 6897                                   Action|Adventure|Romance   2204    3.0
## 6898                                  Action|Adventure|Thriller   2204    4.0
## 6899                             Action|Sci-Fi|Thriller|Western   2204    3.5
## 6900                                      Action|Crime|Thriller   2204    3.0
## 6901                                     Action|Sci-Fi|Thriller   2204    4.0
## 6902                                                      Drama   2237    3.5
## 6903                                          Drama|Romance|War   2237    3.5
## 6904                                                     Horror   2237    4.0
## 6905                                                      Drama   2237    3.5
## 6906                                 Animation|Children|Musical   2237    2.5
## 6907                                        Documentary|Musical   2237    4.5
## 6908                                                     Comedy   2852    3.0
## 6909                                               Comedy|Drama   2162    2.5
## 6910                                              Drama|Romance   2162    4.0
## 6911                                       Comedy|Drama|Romance   2162    3.0
## 6912                                     Comedy|Horror|Thriller   2162    2.5
## 6913                                        Action|Comedy|Drama   2505    3.5
## 6914                                 Action|Adventure|Drama|War   2237    3.0
## 6915                                             Comedy|Romance   2134    3.0
## 6916                              Action|Drama|Thriller|Western   2469    4.0
## 6917                                            Action|Thriller   2698    3.5
## 6918                                   Animation|Fantasy|Horror   2810    5.0
## 6919                                              Drama|Mystery   2810    4.0
## 6920                                           Mystery|Thriller   2810    2.0
## 6921                                     Action|Sci-Fi|Thriller   2810    5.0
## 6922                                              Horror|Sci-Fi   2810    2.0
## 6923                                      Action|Drama|Thriller   2810    2.0
## 6924                                       Comedy|Drama|Romance   2810    2.0
## 6925                                 Comedy|Crime|Drama|Musical   2810    2.0
## 6926                               Action|Drama|Horror|Thriller   2810    2.0
## 6927                                    Adventure|Comedy|Horror   2281    3.5
## 6928                              Drama|Fantasy|Horror|Thriller   2698    4.0
## 6929                                 Adventure|Children|Fantasy   2134    3.5
## 6930                                 Action|Adventure|Drama|War   2398    2.5
## 6931                                                     Comedy   2398    2.0
## 6932                                         Animation|Children   2398    4.0
## 6933                                 Animation|Children|Musical   2398    4.0
## 6934                                            Adventure|Drama   2527    4.0
## 6935                                  Animation|Children|Comedy   2484    3.5
## 6936                              Action|Horror|Sci-Fi|Thriller   2484    3.0
## 6937                                       Comedy|Drama|Romance   2484    3.5
## 6938                                              Drama|Fantasy   2484    4.5
## 6939                                               Comedy|Crime   2484    4.5
## 6940                                             Drama|Thriller   2484    3.5
## 6941                                                Documentary   2484    4.5
## 6942                                               Comedy|Drama   2484    3.5
## 6943                                             Comedy|Romance   2484    4.5
## 6944                                             Comedy|Romance   2484    3.5
## 6945                                                      Drama   2484    3.5
## 6946                                                      Drama   2484    4.5
## 6947                                                      Drama   2484    3.0
## 6948                                               Comedy|Drama   2484    4.5
## 6949                      Comedy|Drama|Fantasy|Romance|Thriller   2484    4.5
## 6950                                                      Drama   2484    4.5
## 6951                                               Comedy|Drama   2515    5.0
## 6952                    Action|Adventure|Drama|Mystery|Thriller   2398    4.5
## 6953                            Action|Adventure|Fantasy|Sci-Fi   2134    2.5
## 6954                                                     Comedy   2134    4.0
## 6955                                                     Comedy   2714    3.0
## 6956                                                     Horror   2714    3.0
## 6957                                                     Comedy   2714    2.5
## 6958                                      Comedy|Drama|Thriller   2852    2.0
## 6959                          Action|Adventure|Children|Fantasy   2398    3.5
## 6960                                                      Drama   2852    4.0
## 6961                                                      Drama   2852    4.0
## 6962                                                Documentary   2162    3.5
## 6963                                               Comedy|Crime   2134    1.0
## 6964                         Action|Comedy|Crime|Drama|Thriller   2515    4.0
## 6965                               Comedy|Crime|Drama|Film-Noir   2852    4.0
## 6966                                              Drama|Romance   2852    3.0
## 6967                                 Action|Adventure|Drama|War   2214    3.0
## 6968                                     Horror|Sci-Fi|Thriller   2214    3.0
## 6969                           Action|Adventure|Sci-Fi|Thriller   2698    4.5
## 6970                                             Drama|Thriller   2134    3.5
## 6971                               Action|Adventure|Crime|Drama   2229    4.0
## 6972                                      Action|Crime|Thriller   2676    3.0
## 6973                                             Comedy|Romance   2676    3.0
## 6974                                           Adventure|Sci-Fi   2398    5.0
## 6975                                                     Comedy   2398    3.5
## 6976                                                      Drama   2398    2.5
## 6977                                       Action|Crime|Romance   2527    4.5
## 6978                                     Action|Sci-Fi|Thriller   2527    5.0
## 6979                                            Crime|Film-Noir   2134    3.5
## 6980                    Action|Adventure|Drama|Mystery|Thriller   2852    3.5
## 6981                                        Action|Comedy|Crime   2852    3.0
## 6982                                       Crime|Drama|Thriller   2698    3.5
## 6983                                     Adventure|Comedy|Drama   2852    4.0
## 6984                            Animation|Children|Comedy|Crime   2214    4.5
## 6985                               Crime|Drama|Romance|Thriller   2214    4.0
## 6986                                              Drama|Fantasy   2536    4.0
## 6987                                               Comedy|Crime   2536    4.0
## 6988                 Action|Adventure|Animation|Children|Comedy   2385    5.0
## 6989                                             Action|Western   2324    3.5
## 6990                             Crime|Drama|Film-Noir|Thriller   2324    4.0
## 6991                   Action|Adventure|Fantasy|Horror|Thriller   2324    2.5
## 6992                  Adventure|Drama|Film-Noir|Sci-Fi|Thriller   2324    4.5
## 6993                                             Drama|Thriller   2324    2.0
## 6994                                              Drama|Mystery   2324    3.5
## 6995                                                      Drama   2324    4.0
## 6996                              Comedy|Fantasy|Romance|Sci-Fi   2324    3.5
## 6997                                             Drama|Thriller   2324    1.5
## 6998                                                     Comedy   2324    3.0
## 6999                Adventure|Fantasy|Film-Noir|Sci-Fi|Thriller   2324    3.5
## 7000                                            Adventure|Drama   2324    4.0
## 7001                                               Comedy|Drama   2324    4.0
## 7002                                Action|Crime|Drama|Thriller   2324    4.0
## 7003                                            Crime|Film-Noir   2324    4.0
## 7004                                                 Comedy|War   2324    4.0
## 7005                                                  Film-Noir   2324    3.5
## 7006                                             Comedy|Romance   2324    3.0
## 7007                                   Mystery|Romance|Thriller   2324    3.5
## 7008                                                   Thriller   2324    3.0
## 7009                                                      Drama   2134    2.0
## 7010                                       Comedy|Drama|Romance   2385    4.0
## 7011                                                  Adventure   2385    3.5
## 7012        Adventure|Animation|Children|Comedy|Fantasy|Romance   2214    4.5
## 7013                                            Musical|Romance   2517    4.5
## 7014                               Action|Comedy|Crime|Thriller   2517    3.5
## 7015                                                     Comedy   2330    5.0
## 7016                                          Drama|Romance|War   2330    4.0
## 7017                                             Drama|Thriller   2330    5.0
## 7018                                                      Drama   2330    5.0
## 7019                                            Adventure|Drama   2330    4.0
## 7020                Adventure|Animation|Children|Comedy|Fantasy   2330    5.0
## 7021                                      Comedy|Crime|Thriller   2385    5.0
## 7022                                              Comedy|Sci-Fi   2339    2.0
## 7023                                             Comedy|Romance   2852    3.0
## 7024                                Crime|Drama|Sci-Fi|Thriller   2134    3.0
## 7025                                                      Drama   2134    3.0
## 7026                  Adventure|Animation|Children|Drama|Sci-Fi   2676    4.5
## 7027                                               Comedy|Drama   2330    5.0
## 7028                                      Drama|Fantasy|Romance   2588    4.5
## 7029                                       Action|Horror|Sci-Fi   2852    4.0
## 7030                                                     Comedy   2134    3.0
## 7031                          Adventure|Children|Comedy|Fantasy   2812    4.5
## 7032                                              Drama|Musical   2552    4.0
## 7033                                    Action|Adventure|Sci-Fi   2552    3.5
## 7034                                 Action|Adventure|Drama|War   2852    3.0
## 7035                              Crime|Horror|Mystery|Thriller   2812    3.5
## 7036                                      Crime|Horror|Thriller   2812    4.0
## 7037                             Action|Adventure|Drama|Fantasy   2134    4.5
## 7038                                                      Drama   2134    4.5
## 7039                                      Comedy|Fantasy|Sci-Fi   2237    4.0
## 7040                                          Drama|Romance|War   2852    4.0
## 7041                              Action|Adventure|Drama|Sci-Fi   2714    2.5
## 7042                                                     Comedy   2714    3.0
## 7043                                       Comedy|Drama|Romance   2515    5.0
## 7044                                                      Drama   2398    5.0
## 7045                              Drama|Mystery|Sci-Fi|Thriller   2385    3.0
## 7046        Adventure|Animation|Children|Comedy|Musical|Romance   2852    2.5
## 7047                             Action|Fantasy|Horror|Thriller   2517    3.0
## 7048                                            Adventure|Drama   2852    3.0
## 7049                                                      Drama   2134    3.5
## 7050                                               Comedy|Drama   2852    3.5
## 7051                                       Comedy|Drama|Romance   2714    3.5
## 7052                                      Comedy|Crime|Thriller   2714    3.5
## 7053                                    Action|Adventure|Sci-Fi   2714    3.0
## 7054                                    Action|Adventure|Sci-Fi   2714    4.0
## 7055                                       Comedy|Drama|Romance   2714    3.0
## 7056                                       Crime|Drama|Thriller   2134    1.5
## 7057                                                     Comedy   2714    3.5
## 7058                                                      Drama   2237    3.5
## 7059                                              Drama|Romance   2162    3.5
## 7060                                                Documentary   2162    3.5
## 7061                                            Children|Comedy   2714    1.0
## 7062                                                      Drama   2517    5.0
## 7063                                   Animation|Comedy|Musical   2179    5.0
## 7064                 Action|Crime|Drama|Mystery|Sci-Fi|Thriller   2199    3.0
## 7065                                      Comedy|Drama|Thriller   2199    3.0
## 7066                                     Drama|Romance|Thriller   2199    3.0
## 7067                                             Crime|Thriller   2199    3.0
## 7068                                   Adventure|Comedy|Western   2223    2.0
## 7069                                              Action|Comedy   2223    2.0
## 7070                                   Animation|Comedy|Musical   2223    4.0
## 7071                                                     Comedy   2238    4.5
## 7072                                           Action|Drama|War   2258    4.5
## 7073                                       Comedy|Drama|Fantasy   2258    4.5
## 7074                                  Drama|Romance|War|Western   2251    1.5
## 7075                                       Comedy|Drama|Romance   2258    1.5
## 7076  Adventure|Animation|Children|Comedy|Crime|Fantasy|Mystery   2251    2.5
## 7077                                               Comedy|Drama   2265    3.0
## 7078                                            Action|Thriller   2265    2.0
## 7079                                             Comedy|Romance   2265    2.0
## 7080                                     Drama|Romance|Thriller   2265    4.0
## 7081                               Comedy|Horror|Musical|Sci-Fi   2238    4.0
## 7082                                            Horror|Thriller   2251    3.5
## 7083                       Action|Crime|Mystery|Sci-Fi|Thriller   2265    2.5
## 7084                                    Action|Romance|Thriller   2265    1.5
## 7085                                  Action|Comedy|Crime|Drama   2291    3.0
## 7086                                      Drama|Sci-Fi|Thriller   2291    2.5
## 7087                                      Drama|Mystery|Romance   2265    4.5
## 7088                                            Action|Thriller   2238    1.5
## 7089                                                      Drama   2265    3.0
## 7090                                                Crime|Drama   2258    3.5
## 7091                                        Action|Crime|Sci-Fi   2291    3.0
## 7092                                             Comedy|Romance   2265    3.5
## 7093                                       Action|Crime|Romance   2265    4.0
## 7094                                       Comedy|Drama|Romance   2342    3.5
## 7095                    Action|Adventure|Horror|Sci-Fi|Thriller   2238    4.0
## 7096                                Action|Crime|Drama|Thriller   2342    4.5
## 7097  Adventure|Animation|Children|Comedy|Crime|Fantasy|Mystery   2342    2.5
## 7098                             Action|Romance|Sci-Fi|Thriller   2342    2.5
## 7099                                  Action|Adventure|Thriller   2238    4.0
## 7100                                      Action|Crime|Thriller   2258    4.5
## 7101                                   Action|Adventure|Western   2291    2.5
## 7102                                              Drama|Fantasy   2251    3.5
## 7103                                              Action|Comedy   2342    3.5
## 7104                                                     Comedy   2251    4.0
## 7105                                    Action|Adventure|Sci-Fi   2356    3.5
## 7106                                                     Comedy   2238    3.0
## 7107                                   Action|Adventure|Fantasy   2265    3.5
## 7108                               Crime|Drama|Mystery|Thriller   2342    3.5
## 7109                                                Crime|Drama   2238    4.0
## 7110                                                Crime|Drama   2238    5.0
## 7111                                               Comedy|Drama   2265    4.0
## 7112                                       Crime|Drama|Thriller   2342    5.0
## 7113                                    Comedy|Romance|Thriller   2342    4.0
## 7114                                    Action|Adventure|Sci-Fi   2238    2.0
## 7115                                                Crime|Drama   2291    4.0
## 7116                                                     Comedy   2238    3.0
## 7117                                    Adventure|Comedy|Sci-Fi   2356    2.5
## 7118                              Action|Horror|Sci-Fi|Thriller   2356    4.0
## 7119                 Adventure|Animation|Children|Drama|Musical   2251    3.5
## 7120                                Action|Crime|Drama|Thriller   2356    4.0
## 7121                                Action|Crime|Drama|Thriller   2265    3.5
## 7122                      Comedy|Drama|Fantasy|Romance|Thriller   2251    3.5
## 7123                        Adventure|Animation|Children|Comedy   2258    3.5
## 7124                                       Crime|Drama|Thriller   2258    3.5
## 7125                                                Crime|Drama   2356    4.0
## 7126                                                     Comedy   2342    3.5
## 7127                                             Drama|Thriller   2258    4.0
## 7128                                   Action|Adventure|Western   2258    2.0
## 7129                                                      Drama   2356    3.5
## 7130                                             Drama|Thriller   2258    3.0
## 7131                                        Action|Crime|Sci-Fi   2238    2.0
## 7132                                          Drama|Musical|War   2342    5.0
## 7133                                                      Drama   2238    4.0
## 7134                                             Comedy|Romance   2342    3.5
## 7135                                             Drama|Thriller   2356    4.0
## 7136                                              Drama|Romance   2258    4.5
## 7137                                       Comedy|Drama|Musical   2342    2.5
## 7138                                               Comedy|Drama   2258    3.5
## 7139                                           Action|Drama|War   2356    3.0
## 7140                         Action|Comedy|Crime|Drama|Thriller   2356    3.5
## 7141                                                Documentary   2258    4.5
## 7142                                               Comedy|Drama   2342    4.5
## 7143                                         Action|Crime|Drama   2356    4.5
## 7144                                                     Comedy   2291    2.0
## 7145                                               Comedy|Drama   2428    2.0
## 7146                                     Comedy|Horror|Thriller   2265    0.5
## 7147                        Action|Crime|Drama|Mystery|Thriller   2291    3.5
## 7148                                                     Comedy   2356    3.5
## 7149                                                      Drama   2291    4.0
## 7150                                      Drama|Sci-Fi|Thriller   2291    4.0
## 7151                                     Adventure|Comedy|Drama   2356    3.5
## 7152                               Crime|Drama|Romance|Thriller   2291    4.0
## 7153                                    Action|Adventure|Sci-Fi   2291    3.0
## 7154                                                     Comedy   2342    2.5
## 7155                                      Action|Crime|Thriller   2258    3.5
## 7156                               Crime|Drama|Romance|Thriller   2258    4.0
## 7157                                   Action|Adventure|Fantasy   2428    4.5
## 7158                          Action|Adventure|Mystery|Thriller   2265    3.0
## 7159                              Children|Comedy|Drama|Fantasy   2265    3.0
## 7160                                  Action|Adventure|Thriller   2265    2.5
## 7161                                                      Drama   2291    4.5
## 7162                                             Drama|Thriller   2265    3.5
## 7163                                             Comedy|Romance   2265    4.0
## 7164                                      Action|Crime|Thriller   2265    3.5
## 7165                                             Comedy|Romance   2238    2.5
## 7166                Adventure|Animation|Children|Comedy|Fantasy   2428    4.0
## 7167                                                     Comedy   2265    4.0
## 7168                                                  Drama|War   2428    4.0
## 7169                                                  Drama|War   2238    4.0
## 7170                              Crime|Horror|Mystery|Thriller   2428    3.5
## 7171                                           Action|Adventure   2428    4.0
## 7172                                                Crime|Drama   2428    3.5
## 7173                                                     Comedy   2428    4.0
## 7174                                               Comedy|Drama   2428    2.0
## 7175                                                Crime|Drama   2265    4.0
## 7176                                                     Comedy   2428    3.5
## 7177                           Action|Adventure|Sci-Fi|Thriller   2428    4.0
## 7178                                                     Comedy   2439    2.0
## 7179                                 Action|Adventure|Drama|War   2428    4.0
## 7180                                     Action|Sci-Fi|Thriller   2428    4.0
## 7181                                      Action|Crime|Thriller   2342    5.0
## 7182                                   Action|Adventure|Fantasy   2428    4.5
## 7183                                              Drama|Musical   2428    3.5
## 7184                                              Drama|Western   2428    4.0
## 7185                                             Comedy|Romance   2439    5.0
## 7186                                    Action|Adventure|Sci-Fi   2462    3.5
## 7187            Action|Adventure|Children|Comedy|Fantasy|Sci-Fi   2238    2.5
## 7188                                               Drama|Sci-Fi   2462    3.0
## 7189                                Action|Crime|Drama|Thriller   2462    4.0
## 7190                                             Comedy|Romance   2462    3.5
## 7191                                                      Drama   2447    4.5
## 7192                                              Action|Comedy   2428    3.5
## 7193                               Comedy|Drama|Fantasy|Romance   2428    3.5
## 7194                                         Comedy|Crime|Drama   2439    4.0
## 7195                                              Action|Sci-Fi   2428    4.0
## 7196                                    Action|Adventure|Sci-Fi   2439    0.5
## 7197                                  Action|Adventure|Thriller   2439    4.5
## 7198                                                  Drama|War   2447    3.5
## 7199                                             Comedy|Romance   2447    4.0
## 7200        Adventure|Animation|Children|Comedy|Musical|Romance   2428    3.5
## 7201                                               Comedy|Drama   2439    2.0
## 7202                               Crime|Drama|Mystery|Thriller   2428    4.0
## 7203                                 Adventure|Mystery|Thriller   2447    3.5
## 7204                                Action|Crime|Drama|Thriller   2470    5.0
## 7205                                   Action|Adventure|Fantasy   2447    3.5
## 7206                           Action|Adventure|Sci-Fi|Thriller   2291    1.0
## 7207                Adventure|Fantasy|Film-Noir|Sci-Fi|Thriller   2291    3.5
## 7208                                              Drama|Romance   2470    5.0
## 7209                                                      Drama   2470    4.5
## 7210                                                     Comedy   2238    3.0
## 7211                                                      Drama   2238    3.5
## 7212                                                      Drama   2238    4.0
## 7213                                                   Thriller   2238    3.0
## 7214                                        Action|Crime|Sci-Fi   2480    3.5
## 7215                                       Action|Horror|Sci-Fi   2291    2.0
## 7216                                              Action|Comedy   2480    4.0
## 7217                             Action|Adventure|Drama|Fantasy   2480    4.5
## 7218              Action|Crime|Fantasy|Mystery|Romance|Thriller   2480    2.0
## 7219                                             Drama|Thriller   2480    3.0
## 7220                                               Comedy|Drama   2480    3.5
## 7221                                     Adventure|Comedy|Drama   2480    4.0
## 7222                                           Action|Adventure   2480    2.0
## 7223                                                     Comedy   2480    3.0
## 7224                               Comedy|Drama|Fantasy|Romance   2480    4.0
## 7225                                 Adventure|Children|Romance   2480    3.0
## 7226                                      Comedy|Crime|Thriller   2544    4.5
## 7227                                                   Thriller   2480    3.0
## 7228                                    Action|Adventure|Comedy   2507    4.0
## 7229                          Animation|Children|Comedy|Fantasy   2570    1.0
## 7230                Adventure|Animation|Children|Comedy|Musical   2570    2.5
## 7231                                    Action|Adventure|Sci-Fi   2578    1.0
## 7232                                      Drama|Sci-Fi|Thriller   2570    4.0
## 7233                                    Action|Adventure|Sci-Fi   2570    1.0
## 7234                                              Drama|Romance   2570    3.5
## 7235                                             Comedy|Musical   2570    2.5
## 7236                                           Adventure|Comedy   2570    3.5
## 7237                                      Drama|Fantasy|Romance   2570    3.5
## 7238                                             Comedy|Romance   2570    4.5
## 7239                                       Comedy|Drama|Romance   2578    1.5
## 7240                                              Horror|Sci-Fi   2570    1.0
## 7241                                     Action|Sci-Fi|Thriller   2570    3.5
## 7242                                               Comedy|Drama   2570    0.5
## 7243                              Action|Adventure|Drama|Sci-Fi   2570    1.5
## 7244                                                     Horror   2480    4.0
## 7245                              Drama|Mystery|Sci-Fi|Thriller   2578    3.0
## 7246                                      Action|Drama|Thriller   2578    5.0
## 7247                                   Action|Adventure|Fantasy   2570    1.0
## 7248                                              Drama|Romance   2570    5.0
## 7249                                              Drama|Romance   2570    3.0
## 7250                                     Horror|Sci-Fi|Thriller   2570    2.0
## 7251                                              Drama|Romance   2570    4.0
## 7252                                              Comedy|Sci-Fi   2570    3.5
## 7253                                                     Comedy   2480    3.0
## 7254                                    Action|Romance|Thriller   2570    4.5
## 7255                                              Drama|Romance   2570    3.0
## 7256                                               Comedy|Crime   2570    2.5
## 7257                                         Comedy|Crime|Drama   2480    4.0
## 7258                                    Action|Adventure|Comedy   2633    2.0
## 7259                                       Action|Crime|Romance   2618    4.0
## 7260                                       Comedy|Drama|Romance   2544    4.0
## 7261                                             Drama|Thriller   2642    3.5
## 7262                                     Adventure|Comedy|Drama   2544    4.5
## 7263                                    Action|Adventure|Sci-Fi   2653    3.5
## 7264                                   Action|Adventure|Fantasy   2618    3.0
## 7265                                         Adventure|Children   2662    1.5
## 7266                              Action|Horror|Sci-Fi|Thriller   2662    3.0
## 7267                                    Action|Adventure|Sci-Fi   2653    4.0
## 7268                                              Drama|Fantasy   2618    2.5
## 7269                         Animation|Children|Fantasy|Musical   2633    1.0
## 7270                                   Action|Adventure|Fantasy   2662    4.0
## 7271                                                     Comedy   2653    5.0
## 7272                       Action|Crime|Mystery|Sci-Fi|Thriller   2633    4.5
## 7273                       Action|Crime|Mystery|Sci-Fi|Thriller   2662    3.5
## 7274                         Adventure|Animation|Fantasy|Sci-Fi   2662    3.5
## 7275                                              Comedy|Horror   2662    2.5
## 7276                                    Action|Adventure|Comedy   2662    2.5
## 7277                                                     Comedy   2135    3.0
## 7278                                             Comedy|Fantasy   2135    3.0
## 7279                                  Action|Comedy|Crime|Drama   2662    2.5
## 7280                                    Adventure|Comedy|Sci-Fi   2653    3.5
## 7281                                              Action|Comedy   2507    2.5
## 7282                   Action|Adventure|Comedy|Romance|Thriller   2662    2.5
## 7283                                       Action|Comedy|Sci-Fi   2135    3.5
## 7284                Adventure|Animation|Children|Comedy|Fantasy   2653    4.0
## 7285                                  Action|Comedy|Crime|Drama   2491    2.5
## 7286                                  Action|Adventure|Thriller   2662    2.0
## 7287                                                     Comedy   2491    4.0
## 7288                                                     Comedy   2491    4.0
## 7289                                                 Comedy|War   2491    3.0
## 7290                                                     Comedy   2662    1.5
## 7291                                      Action|Drama|Thriller   2662    3.0
## 7292                                 Adventure|Children|Fantasy   2653    1.5
## 7293                                                      Drama   2633    0.5
## 7294                                                     Comedy   2662    2.0
## 7295                                       Comedy|Drama|Romance   2662    2.0
## 7296                                         Animation|Children   2633    0.5
## 7297                                               Comedy|Crime   2662    2.5
## 7298                                  Action|Adventure|Thriller   2653    4.0
## 7299                 Action|Adventure|Animation|Children|Comedy   2662    3.0
## 7300                               Action|Comedy|Crime|Thriller   2662    3.0
## 7301                              Action|Adventure|Drama|Sci-Fi   2491    3.0
## 7302                                        Action|Comedy|Crime   2633    1.0
## 7303                                                      Drama   2544    4.0
## 7304                                                      Drama   2544    4.5
## 7305                                     Action|Adventure|Drama   2544    4.0
## 7306                                Action|Comedy|Crime|Romance   2653    5.0
## 7307                                               Comedy|Drama   2507    2.5
## 7308                                               Comedy|Crime   2653    5.0
## 7309                                      Comedy|Horror|Romance   2653    4.5
## 7310                                     Horror|Sci-Fi|Thriller   2491    3.5
## 7311                             Action|Adventure|Drama|Fantasy   2653    4.0
## 7312                                          Adventure|Musical   2633    0.5
## 7313                                                     Comedy   2491    3.5
## 7314                             Adventure|Comedy|Drama|Romance   2653    3.5
## 7315                                                      Drama   2544    4.5
## 7316                     Action|Adventure|Drama|Sci-Fi|Thriller   2491    1.5
## 7317                                      Comedy|Horror|Romance   2544    0.5
## 7318                                  Action|Comedy|Romance|War   2491    2.0
## 7319                                                     Comedy   2491    2.5
## 7320                                   Adventure|Comedy|Western   2672    0.5
## 7321                Adventure|Animation|Children|Comedy|Fantasy   2672    1.0
## 7322                                                     Comedy   2491    2.5
## 7323                                      Drama|Sci-Fi|Thriller   2672    3.5
## 7324                                               Drama|Sci-Fi   2672    4.0
## 7325                                              Action|Sci-Fi   2672    2.0
## 7326                                      Action|Drama|Thriller   2491    2.0
## 7327                                        Action|Drama|Sci-Fi   2672    2.0
## 7328                                                     Sci-Fi   2672    2.0
## 7329                                                     Comedy   2653    3.5
## 7330                             Crime|Drama|Film-Noir|Thriller   2672    4.5
## 7331                                                Crime|Drama   2679    3.0
## 7332                                     Adventure|Drama|Sci-Fi   2633    1.0
## 7333                                      Comedy|Drama|Thriller   2679    5.0
## 7334                                    Action|Adventure|Sci-Fi   2633    4.0
## 7335                                                     Comedy   2679    4.0
## 7336                                    Action|Adventure|Sci-Fi   2715    1.5
## 7337                                  Action|Comedy|Crime|Drama   2679    3.5
## 7338                  Animation|Children|Comedy|Musical|Romance   2653    4.0
## 7339                                  Action|Comedy|Crime|Drama   2679    3.5
## 7340                          Action|Adventure|Comedy|Drama|War   2679    4.5
## 7341                           Action|Adventure|Sci-Fi|Thriller   2662    3.0
## 7342                                                     Comedy   2715    3.5
## 7343                             Adventure|Comedy|Drama|Romance   2715    3.0
## 7344                                     Action|Sci-Fi|Thriller   2679    4.0
## 7345                                             Comedy|Musical   2679    2.0
## 7346                               Crime|Drama|Romance|Thriller   2679    4.0
## 7347                                  Animation|Children|Comedy   2679    3.5
## 7348                                                      Drama   2715    4.0
## 7349                                      Drama|Horror|Thriller   2662    2.0
## 7350                                     Comedy|Horror|Thriller   2662    2.5
## 7351                                     Comedy|Horror|Thriller   2662    3.0
## 7352                                        Drama|Horror|Sci-Fi   2662    2.5
## 7353                                       Comedy|Drama|Romance   2742    3.0
## 7354                                    Action|Adventure|Sci-Fi   2742    1.0
## 7355                                                     Comedy   2662    2.5
## 7356                      Comedy|Drama|Fantasy|Romance|Thriller   2715    3.5
## 7357                                              Action|Sci-Fi   2653    3.5
## 7358                                                     Comedy   2742    3.0
## 7359                                       Comedy|Drama|Romance   2633    4.0
## 7360                            Action|Adventure|Comedy|Fantasy   2662    3.0
## 7361                              Action|Adventure|Drama|Sci-Fi   2653    4.0
## 7362                             Action|Romance|Sci-Fi|Thriller   2752    2.0
## 7363                                      Action|Crime|Thriller   2742    5.0
## 7364                                      Comedy|Sci-Fi|Western   2752    2.5
## 7365                             Action|Adventure|Drama|Fantasy   2715    5.0
## 7366                                                   Thriller   2742    3.0
## 7367                                    Action|Adventure|Sci-Fi   2742    5.0
## 7368                   Action|Adventure|Comedy|Romance|Thriller   2742    3.0
## 7369                                                      Drama   2742    3.0
## 7370                                                     Comedy   2742    3.0
## 7371                                Action|Comedy|Crime|Fantasy   2742    3.0
## 7372                                            Horror|Thriller   2752    3.0
## 7373                                      Children|Drama|Sci-Fi   2742    3.5
## 7374                                             Comedy|Romance   2715    3.5
## 7375                                      Action|Crime|Thriller   2752    4.0
## 7376                                Comedy|Crime|Drama|Thriller   2742    5.0
## 7377                                           Mystery|Thriller   2715    4.5
## 7378                                Crime|Drama|Sci-Fi|Thriller   2742    3.5
## 7379                                                      Drama   2752    3.5
## 7380                                           Action|Adventure   2662    3.5
## 7381                                       Comedy|Drama|Romance   2752    3.5
## 7382                        Adventure|Animation|Children|Comedy   2633    0.5
## 7383        Adventure|Animation|Children|Comedy|Fantasy|Romance   2770    4.5
## 7384                                       Action|Drama|Western   2770    4.5
## 7385                                   Action|Drama|Romance|War   2752    2.5
## 7386                            Adventure|Drama|Horror|Thriller   2742    4.0
## 7387                                       Crime|Drama|Thriller   2752    3.0
## 7388                                           Adventure|Comedy   2770    5.0
## 7389                                Action|Crime|Drama|Thriller   2770    4.5
## 7390                            Animation|Children|Comedy|Crime   2633    2.0
## 7391                                                      Drama   2752    4.0
## 7392                                     Action|Sci-Fi|Thriller   2752    3.0
## 7393                                               Action|Crime   2752    3.0
## 7394                                                Documentary   2742    5.0
## 7395                                       Comedy|Drama|Romance   2770    4.5
## 7396                                                      Drama   2770    5.0
## 7397                                        Documentary|Musical   2770    4.0
## 7398                                                     Comedy   2770    5.0
## 7399                                    Adventure|Comedy|Sci-Fi   2770    2.0
## 7400                                              Comedy|Horror   2752    3.5
## 7401                                             Comedy|Romance   2752    4.0
## 7402                        Adventure|Animation|Children|Comedy   2770    3.0
## 7403                                Action|Crime|Drama|Thriller   2770    1.0
## 7404                                 Adventure|Animation|Comedy   2770    4.0
## 7405                                                      Drama   2770    5.0
## 7406                                         Animation|Children   2770    4.5
## 7407                               Action|Adventure|Crime|Drama   2770    4.0
## 7408                                        Action|Comedy|Drama   2770    5.0
## 7409                                                     Comedy   2770    2.0
## 7410                                      Action|Crime|Thriller   2770    3.0
## 7411                                     Crime|Mystery|Thriller   2770    5.0
## 7412                                                Crime|Drama   2662    2.5
## 7413                                            Action|Thriller   2662    2.5
## 7414                                    Adventure|Drama|Romance   2770    4.0
## 7415                                      Action|Comedy|Western   2770    4.0
## 7416                                               Comedy|Drama   2662    2.0
## 7417                                                   Thriller   2662    2.0
## 7418                                               Comedy|Drama   2662    2.0
## 7419                                  Action|Adventure|Thriller   2662    3.0
## 7420                                                    Western   2770    3.5
## 7421                                              Action|Comedy   2662    2.5
## 7422                                           Adventure|Sci-Fi   2662    1.5
## 7423                                           Action|Adventure   2662    2.5
## 7424                                                     Comedy   2662    1.5
## 7425                                       Comedy|Drama|Romance   2770    2.0
## 7426                                             Comedy|Romance   2770    4.0
## 7427                                              Action|Comedy   2662    2.0
## 7428                                                     Comedy   2662    2.0
## 7429                                                     Comedy   2662    1.0
## 7430                                      Comedy|Romance|Sci-Fi   2770    1.0
## 7431                                              Drama|Romance   2770    1.0
## 7432                                                     Comedy   2770    3.0
## 7433                                    Action|Adventure|Sci-Fi   2816    5.0
## 7434                                Action|Comedy|Crime|Romance   2816    5.0
## 7435                                                     Comedy   2796    1.0
## 7436                 Animation|Children|Fantasy|Musical|Romance   2796    1.0
## 7437                                                     Comedy   2653    4.0
## 7438                                  Action|Adventure|Thriller   2796    3.0
## 7439        Adventure|Animation|Children|Comedy|Musical|Romance   2796    2.5
## 7440                             Adventure|Comedy|Drama|Romance   2796    2.5
## 7441                                     Action|Sci-Fi|Thriller   2796    4.0
## 7442                                       Crime|Drama|Thriller   2796    4.0
## 7443                                   Action|Drama|Romance|War   2796    3.5
## 7444                                              Action|Comedy   2796    3.5
## 7445                                    Action|Adventure|Sci-Fi   2796    2.5
## 7446                                               Comedy|Drama   2796    2.0
## 7447                                           Comedy|Drama|War   2861    2.5
## 7448                                    Action|Romance|Thriller   2861    4.0
## 7449                                               Comedy|Crime   2861    5.0
## 7450                                         Adventure|Children   2796    2.0
## 7451                                         Adventure|Children   2796    1.0
## 7452                                             Comedy|Western   2653    4.0
## 7453                                                     Comedy   2796    3.0
## 7454                                                     Comedy   2653    3.0
## 7455                                  Action|Adventure|Thriller   2861    4.0
## 7456                                      Action|Drama|Thriller   2861    5.0
## 7457                                  Action|Comedy|Crime|Drama   2874    4.0
## 7458                                    Action|Romance|Thriller   2874    3.0
## 7459                                      Action|Crime|Thriller   2861    2.5
## 7460                Adventure|Animation|Children|Comedy|Fantasy   2861    4.5
## 7461                                                      Drama   2861    5.0
## 7462                                            Children|Comedy   2861    4.0
## 7463                                           Action|Drama|War   2796    4.5
## 7464                                    Action|Adventure|Sci-Fi   2796    1.0
## 7465                                     Adventure|Comedy|Drama   2796    3.5
## 7466  Adventure|Animation|Children|Comedy|Crime|Fantasy|Mystery   2796    2.0
## 7467                                    Action|Adventure|Sci-Fi   2796    3.5
## 7468                                Action|Crime|Drama|Thriller   2796    3.0
## 7469                                        Action|Crime|Sci-Fi   2796    1.5
## 7470                                     Crime|Mystery|Thriller   2796    3.5
## 7471                                                     Comedy   2796    4.0
## 7472                                                     Comedy   2796    3.5
## 7473                                            Action|Thriller   2796    3.5
## 7474                                                     Comedy   2796    4.0
## 7475                           Action|Adventure|Sci-Fi|Thriller   2796    3.0
## 7476                              Drama|Horror|Mystery|Thriller   2796    4.0
## 7477                                     Action|Adventure|Drama   2428    4.0
## 7478                                     Drama|Mystery|Thriller   2428    4.0
## 7479                                    Action|Adventure|Sci-Fi   2428    4.0
## 7480                                 Adventure|Children|Fantasy   2428    4.0
## 7481                                                      Drama   2428    4.0
## 7482                        Adventure|Animation|Children|Comedy   2199    4.5
## 7483                                       Action|Crime|Romance   2199    3.0
## 7484                                               Comedy|Crime   2199    3.0
## 7485                                         Comedy|Crime|Drama   2199    3.5
## 7486                                                Crime|Drama   2199    3.5
## 7487                                                     Comedy   2653    4.0
## 7488                                                      Drama   2199    3.5
## 7489                                    Action|Adventure|Sci-Fi   2653    3.5
## 7490                   Action|Adventure|Comedy|Romance|Thriller   2291    2.5
## 7491                Adventure|Animation|Children|Comedy|Musical   2291    2.5
## 7492                                    Action|Romance|Thriller   2291    3.0
## 7493                                             Comedy|Romance   2291    4.0
## 7494                                Action|Comedy|Crime|Fantasy   2291    0.5
## 7495                                              Drama|Romance   2291    5.0
## 7496                                              Drama|Romance   2291    4.0
## 7497                                    Action|Romance|Thriller   2291    2.5
## 7498                                       Action|Drama|Romance   2291    3.0
## 7499                             Fantasy|Horror|Mystery|Romance   2291    0.5
## 7500                                                     Comedy   2291    3.0
## 7501                                               Action|Crime   2291    3.0
## 7502                   Action|Adventure|Fantasy|Horror|Thriller   2291    3.0
## 7503                                              Comedy|Horror   2291    1.5
## 7504                                           Action|Drama|War   2291    4.0
## 7505                                                     Comedy   2291    3.5
## 7506                                     Horror|Sci-Fi|Thriller   2291    2.5
## 7507                                   Action|Drama|Romance|War   2291    2.5
## 7508                                              Action|Sci-Fi   2291    4.5
## 7509                           Action|Adventure|Horror|Thriller   2291    3.5
## 7510                                                      Drama   2291    4.5
## 7511                                             Drama|Thriller   2291    3.5
## 7512                                    Action|Adventure|Comedy   2491    3.0
## 7513                                            Comedy|Thriller   2507    1.5
## 7514                                             Horror|Mystery   2428    4.0
## 7515                                              Horror|Sci-Fi   2428    3.5
## 7516                              Comedy|Crime|Mystery|Thriller   2428    3.5
## 7517                                 Action|Adventure|Drama|War   2874    4.0
## 7518                                                      Drama   2874    4.0
## 7519                                                     Horror   2852    3.0
## 7520                    Action|Adventure|Drama|Mystery|Thriller   2507    2.5
## 7521                                  Action|Adventure|Thriller   2507    2.0
## 7522                                       Comedy|Drama|Romance   2507    2.0
## 7523                        Adventure|Animation|Children|Comedy   2507    3.5
## 7524                                              Drama|Romance   2507    2.0
## 7525                           Action|Adventure|Sci-Fi|Thriller   2428    4.0
## 7526                                     Horror|Sci-Fi|Thriller   2428    4.0
## 7527                                       Drama|Romance|Sci-Fi   2428    2.0
## 7528                                   Animation|Comedy|Musical   2491    3.5
## 7529                                                  Drama|War   2653    3.5
## 7530                                        Crime|Drama|Fantasy   2356    4.0
## 7531                                       Comedy|Drama|Romance   2507    3.5
## 7532                 Animation|Children|Fantasy|Musical|Romance   2507    3.5
## 7533                                       Comedy|Drama|Fantasy   2507    2.0
## 7534                                                      Drama   2507    4.0
## 7535                                                     Comedy   2507    4.5
## 7536                                     Adventure|Comedy|Crime   2714    4.0
## 7537                                                     Comedy   2714    2.5
## 7538                                      Drama|Sci-Fi|Thriller   2428    4.0
## 7539                                              Action|Horror   2428    3.5
## 7540                                     Adventure|Comedy|Drama   2428    3.0
## 7541                                               Comedy|Drama   2852    3.5
## 7542                                                      Drama   2642    5.0
## 7543                                    Action|Adventure|Sci-Fi   2642    3.5
## 7544                                Action|Crime|Drama|Thriller   2642    5.0
## 7545                                             Comedy|Fantasy   2852    3.5
## 7546                                             Fantasy|Sci-Fi   2852    4.0
## 7547                                    Action|Adventure|Sci-Fi   2676    4.0
## 7548                                                      Drama   2214    0.5
## 7549                 Animation|Children|Fantasy|Musical|Romance   2356    1.5
## 7550                                       Action|Comedy|Sci-Fi   2356    3.5
## 7551                                Comedy|Drama|Romance|Sci-Fi   2356    5.0
## 7552                                   Adventure|Comedy|Fantasy   2356    4.0
## 7553                            Adventure|Children|Comedy|Drama   2339    4.0
## 7554                                Action|Crime|Drama|Thriller   2852    3.5
## 7555                                             Comedy|Romance   2439    4.0
## 7556                                                     Comedy   2385    0.5
## 7557                                             Comedy|Romance   2714    3.5
## 7558                            Action|Adventure|Comedy|Fantasy   2662    3.0
## 7559                                         Comedy|Crime|Drama   2258    4.5
## 7560                                       Comedy|Drama|Romance   2258    4.5
## 7561                                Comedy|Crime|Drama|Thriller   2258    5.0
## 7562                                                Documentary   2258    4.5
## 7563         Adventure|Animation|Children|Comedy|Fantasy|Sci-Fi   2852    3.5
## 7564                                                    Western   2204    4.0
## 7565                                       Action|Adventure|War   2204    4.0
## 7566                           Action|Adventure|Sci-Fi|Thriller   2204    3.0
## 7567                              Comedy|Drama|Romance|Thriller   2385    2.5
## 7568                                Action|Crime|Drama|Thriller   2552    4.5
## 7569                                    Action|Adventure|Comedy   2385    4.5
## 7570                                     Comedy|Fantasy|Romance   2852    3.5
## 7571                                       Comedy|Drama|Romance   2385    4.0
## 7572                                        Action|Comedy|Drama   2879    2.5
## 7573                                                     Comedy   2879    3.0
## 7574                                    Action|Adventure|Sci-Fi   2879    0.5
## 7575                                                     Comedy   2134    1.0
## 7576                                                      Drama   2714    2.0
## 7577                                               Comedy|Drama   2237    4.5
## 7578                                                  Drama|War   2237    2.0
## 7579                                  Action|Comedy|Crime|Drama   2237    3.5
## 7580                                                      Drama   2852    4.0
## 7581                               Crime|Drama|Mystery|Thriller   2714    3.5
## 7582                                             Comedy|Romance   2385    4.0
## 7583                                             Comedy|Romance   2714    3.0
## 7584                                                  Drama|War   2714    3.0
## 7585                                             Drama|Thriller   2134    3.5
## 7586                                        Documentary|Musical   2258    4.0
## 7587                                                Documentary   2258    4.5
## 7588                                              Drama|Romance   2852    3.0
## 7589                                            Adventure|Drama   2852    3.0
## 7590                            Action|Adventure|Fantasy|Sci-Fi   2517    4.0
## 7591                                  Animation|Children|Comedy   2852    3.5
## 7592                                               Comedy|Drama   2612    4.0
## 7593                                               Comedy|Drama   2612    3.5
## 7594                                                    Romance   2612    4.5
## 7595                                             Comedy|Romance   2612    3.5
## 7596                                                      Drama   2612    3.5
## 7597                       Comedy|Drama|Fantasy|Horror|Thriller   2612    3.5
## 7598                                             Drama|Thriller   2612    3.5
## 7599                                                     Comedy   2612    3.5
## 7600                 Action|Adventure|Animation|Children|Comedy   2214    3.5
## 7601                                          Drama|Romance|War   2602    2.5
## 7602                                               Comedy|Drama   2602    3.5
## 7603                               Adventure|Comedy|Romance|War   2852    4.0
## 7604                             Crime|Mystery|Romance|Thriller   2852    3.5
## 7605                                          Drama|Romance|War   2852    4.0
## 7606                                              Drama|Musical   2879    3.0
## 7607                                Comedy|Drama|Romance|Sci-Fi   2162    3.5
## 7608                                      Drama|Horror|Thriller   2162    3.5
## 7609                                  Action|Adventure|Thriller   2470    2.0
## 7610                                    Action|Adventure|Sci-Fi   2470    1.0
## 7611                                              Comedy|Sci-Fi   2470    4.0
## 7612                                                Documentary   2470    4.5
## 7613                                             Comedy|Romance   2470    3.5
## 7614                                         Action|Crime|Drama   2470    2.5
## 7615                                                      Drama   2470    3.5
## 7616                                               Comedy|Drama   2470    4.5
## 7617                                  Action|Adventure|Thriller   2470    3.0
## 7618                                      Drama|Horror|Thriller   2470    3.5
## 7619                                      Crime|Sci-Fi|Thriller   2470    2.0
## 7620                                            Action|Thriller   2470    1.5
## 7621                                              Horror|Sci-Fi   2470    3.5
## 7622                                           Action|Drama|War   2470    3.0
## 7623                                             Drama|Thriller   2470    4.0
## 7624                                                     Comedy   2470    1.5
## 7625                                            Horror|Thriller   2470    2.5
## 7626                                               Action|Drama   2470    4.5
## 7627                                                      Drama   2470    2.5
## 7628                                              Action|Comedy   2470    1.5
## 7629                                                     Horror   2470    0.5
## 7630                                   Comedy|Drama|Romance|War   2470    3.0
## 7631                                                     Comedy   2470    0.5
## 7632                                                      Drama   2470    0.5
## 7633                                               Action|Drama   2470    4.5
## 7634                                          Drama|Romance|War   2470    2.0
## 7635                                                    Musical   2470    0.5
## 7636                                  Animation|Children|Comedy   2852    3.0
## 7637                 Action|Adventure|Animation|Children|Comedy   2698    4.5
## 7638                        Adventure|Animation|Children|Comedy   2612    4.5
## 7639                                        Action|Comedy|Crime   2612    4.0
## 7640                        Adventure|Animation|Children|Comedy   2612    3.5
## 7641                                                      Drama   2612    3.0
## 7642                                                Documentary   2675    3.5
## 7643                                      Drama|Horror|Thriller   2675    3.5
## 7644                                                      Drama   2675    5.0
## 7645                                            Children|Comedy   2675    2.0
## 7646                                     Comedy|Musical|Romance   2214    4.0
## 7647                Adventure|Fantasy|Film-Noir|Sci-Fi|Thriller   2134    2.5
## 7648                                              Action|Comedy   2517    4.5
## 7649                                               Comedy|Drama   2714    3.5
## 7650                                       Comedy|Drama|Romance   2852    3.5
## 7651                                               Comedy|Crime   2714    2.0
## 7652                                                      Drama   2852    4.0
## 7653                                   Comedy|Drama|Romance|War   2552    4.0
## 7654                  Action|Comedy|Crime|Drama|Horror|Thriller   2385    1.5
## 7655                                                      Drama   2612    3.5
## 7656                                     Horror|Sci-Fi|Thriller   2714    2.0
## 7657                                       Comedy|Drama|Romance   2162    2.5
## 7658                                              Drama|Romance   2385    4.5
## 7659                                             Comedy|Romance   2385    2.5
## 7660                                                      Drama   2134    3.5
## 7661                                                      Drama   2238    4.0
## 7662                                                    Mystery   2238    2.5
## 7663                                                      Drama   2238    3.5
## 7664                                                Documentary   2515    5.0
## 7665                                       Comedy|Drama|Fantasy   2515    3.5
## 7666                                              Drama|Romance   2612    4.5
## 7667                                                     Comedy   2612    4.0
## 7668                           Action|Adventure|Sci-Fi|Thriller   2852    3.0
## 7669                               Action|Drama|Sci-Fi|Thriller   2385    3.5
## 7670                                             Drama|Thriller   2852    3.5
## 7671                        Adventure|Animation|Children|Comedy   2398    3.5
## 7672                                    Adventure|Comedy|Sci-Fi   2852    3.5
## 7673                                         Comedy|Crime|Drama   2852    4.0
## 7674                                             Comedy|Musical   2714    4.5
## 7675                            Action|Adventure|Fantasy|Sci-Fi   2517    2.0
## 7676                                                      Drama   2852    3.5
## 7677                                       Action|Drama|Romance   2556    3.5
## 7678                                              Horror|Sci-Fi   2852    3.5
## 7679                                            Horror|Thriller   2852    2.0
## 7680                                                Documentary   2552    4.5
## 7681                              Crime|Mystery|Sci-Fi|Thriller   2714    2.0
## 7682                                                     Horror   2852    2.5
## 7683                        Adventure|Animation|Children|Comedy   2852    3.5
## 7684                                                  Drama|War   2134    3.5
## 7685                                      Children|Comedy|Drama   2515    3.5
## 7686                                         Film-Noir|Thriller   2852    3.0
## 7687                                             Comedy|Romance   2714    3.5
## 7688                                             Drama|Thriller   2714    4.0
## 7689                                                      Drama   2536    3.5
## 7690                                                  Drama|War   2650    3.5
## 7691                                                      Drama   2650    4.0
## 7692                              Drama|Mystery|Sci-Fi|Thriller   2650    3.5
## 7693                             Adventure|Comedy|Drama|Romance   2258    1.0
## 7694                                   Adventure|Comedy|Fantasy   2258    4.0
## 7695                                      Comedy|Crime|Thriller   2258    3.0
## 7696                                                Documentary   2258    4.5
## 7697                                            Children|Comedy   2714    3.5
## 7698                                                     Horror   2536    4.0
## 7699                                     Drama|Romance|Thriller   2536    3.5
## 7700                                                      Drama   2134    3.5
## 7701                             Adventure|Comedy|Drama|Romance   2714    3.5
## 7702                        Crime|Drama|Horror|Mystery|Thriller   2162    2.5
## 7703                        Adventure|Animation|Children|Comedy   2162    3.5
## 7704                        Children|Comedy|Crime|Drama|Fantasy   2385    4.0
## 7705                                     Comedy|Musical|Romance   2517    1.5
## 7706                                                      Drama   2517    3.5
## 7707                             Adventure|Comedy|Drama|Romance   2385    2.0
## 7708                                               Comedy|Drama   2536    3.5
## 7709                        Adventure|Animation|Children|Comedy   2130    4.5
## 7710                                              Comedy|Horror   2130    4.0
## 7711                                             Comedy|Musical   2130    4.0
## 7712                                                Crime|Drama   2130    4.5
## 7713                                                     Comedy   2130    3.5
## 7714                                      Comedy|Fantasy|Horror   2130    4.0
## 7715                                                      Drama   2130    4.0
## 7716                                              Comedy|Sci-Fi   2130    3.5
## 7717                                             Comedy|Mystery   2130    4.0
## 7718                               Action|Comedy|Crime|Thriller   2130    2.5
## 7719                                      Drama|Horror|Thriller   2130    4.0
## 7720                Adventure|Animation|Children|Comedy|Fantasy   2130    4.0
## 7721                                    Action|Romance|Thriller   2130    3.5
## 7722                                      Action|Crime|Thriller   2130    4.0
## 7723                                           Action|Adventure   2130    3.5
## 7724                                       Comedy|Drama|Romance   2130    4.0
## 7725        Adventure|Animation|Children|Comedy|Fantasy|Romance   2130    4.0
## 7726                            Action|Adventure|Comedy|Romance   2130    4.0
## 7727                                   Action|Drama|Romance|War   2154    3.0
## 7728                                    Action|Adventure|Sci-Fi   2154    5.0
## 7729                                           Action|Adventure   2154    4.0
## 7730                                   Action|Adventure|Fantasy   2154    5.0
## 7731                                                     Comedy   2154    3.5
## 7732                                             Children|Drama   2154    3.5
## 7733                                       Comedy|Drama|Romance   2154    4.0
## 7734                                Action|Crime|Drama|Thriller   2154    4.0
## 7735                                  Action|Adventure|Thriller   2154    3.5
## 7736                   Action|Adventure|Comedy|Romance|Thriller   2154    3.0
## 7737                                            Action|Thriller   2154    3.5
## 7738                                  Drama|Romance|War|Western   2154    3.0
## 7739                          Action|Adventure|Mystery|Thriller   2154    3.5
## 7740                                      Action|Drama|Thriller   2154    3.5
## 7741                               Action|Adventure|Crime|Drama   2154    3.5
## 7742                                             Drama|Thriller   2154    4.0
## 7743                                                      Drama   2154    2.5
## 7744                               Action|Crime|Sci-Fi|Thriller   2154    3.0
## 7745                 Animation|Children|Fantasy|Musical|Romance   2154    3.0
## 7746                                    Action|Adventure|Sci-Fi   2154    4.0
## 7747                                 Adventure|Children|Fantasy   2154    3.5
## 7748        Adventure|Animation|Children|Comedy|Fantasy|Romance   2154    4.5
## 7749                                    Action|Adventure|Sci-Fi   2154    3.5
## 7750                             Action|Adventure|Comedy|Sci-Fi   2154    3.5
## 7751                                  Animation|Children|Comedy   2154    2.0
## 7752                                                      Drama   2154    4.0
## 7753                            Children|Comedy|Fantasy|Musical   2154    3.0
## 7754                           Action|Adventure|Sci-Fi|Thriller   2154    4.0
## 7755                                      Comedy|Crime|Thriller   2154    4.0
## 7756                                              Comedy|Sci-Fi   2154    2.0
## 7757                                                      Drama   2154    2.5
## 7758                                             Comedy|Romance   2154    2.5
## 7759                                 Adventure|Children|Fantasy   2154    4.5
## 7760                                  Adventure|Children|Comedy   2154    2.5
## 7761                                 Adventure|Children|Romance   2154    3.5
## 7762                            Animation|Children|Comedy|Crime   2182    4.5
## 7763                                        Adventure|Drama|War   2182    3.5
## 7764                                   Action|Adventure|Romance   2182    3.0
## 7765                                                Crime|Drama   2182    5.0
## 7766  Adventure|Animation|Children|Comedy|Crime|Fantasy|Mystery   2182    4.0
## 7767                         Adventure|Animation|Children|Drama   2182    2.5
## 7768                                    Action|Adventure|Comedy   2182    4.5
## 7769                                             Comedy|Fantasy   2182    3.5
## 7770                                     Action|Adventure|Drama   2215    4.5
## 7771                                                Crime|Drama   2215    2.0
## 7772                                       Comedy|Drama|Fantasy   2215    3.0
## 7773                                               Comedy|Crime   2215    4.0
## 7774                                                  Drama|War   2235    4.5
## 7775                                             Comedy|Romance   2235    4.0
## 7776                                                     Comedy   2235    3.5
## 7777                                                  Drama|War   2235    4.5
## 7778                                       Crime|Drama|Thriller   2271    4.0
## 7779                                    Adventure|Comedy|Sci-Fi   2282    4.0
## 7780              Action|Crime|Fantasy|Mystery|Romance|Thriller   2282    3.0
## 7781                                    Action|Adventure|Sci-Fi   2282    4.0
## 7782                                           Action|Drama|War   2282    3.0
## 7783                                                      Drama   2282    3.0
## 7784                               Drama|Fantasy|Mystery|Sci-Fi   2282    2.5
## 7785                             Action|Adventure|Comedy|Sci-Fi   2282    3.0
## 7786                                            Action|Thriller   2282    3.5
## 7787                                                 Action|War   2282    3.0
## 7788                                               Comedy|Crime   2282    2.0
## 7789                              Action|Horror|Sci-Fi|Thriller   2282    2.5
## 7790                                     Action|Sci-Fi|Thriller   2282    4.5
## 7791                            Action|Adventure|Comedy|Musical   2282    3.5
## 7792                                     Horror|Sci-Fi|Thriller   2282    1.5
## 7793                                         Action|Crime|Drama   2282    2.0
## 7794                           Action|Adventure|Sci-Fi|Thriller   2282    3.5
## 7795                                              Drama|Romance   2282    3.0
## 7796                                      Drama|Sci-Fi|Thriller   2282    2.5
## 7797                                     Action|Sci-Fi|Thriller   2282    4.0
## 7798                              Drama|Romance|Sci-Fi|Thriller   2282    2.0
## 7799                                     Horror|Sci-Fi|Thriller   2282    2.0
## 7800                                               Drama|Sci-Fi   2282    2.0
## 7801                               Action|Drama|Sci-Fi|Thriller   2282    3.5
## 7802                                     Comedy|Fantasy|Romance   2282    3.5
## 7803                                      Action|Crime|Thriller   2282    3.0
## 7804                                     Action|Adventure|Drama   2282    3.5
## 7805                                              Drama|Romance   2282    3.0
## 7806                                              Action|Horror   2282    3.0
## 7807                           Action|Adventure|Sci-Fi|Thriller   2215    3.0
## 7808                        Action|Drama|Horror|Sci-Fi|Thriller   2215    4.0
## 7809                                       Drama|Fantasy|Sci-Fi   2215    5.0
## 7810                              Comedy|Crime|Mystery|Thriller   2295    1.0
## 7811                            Action|Adventure|Comedy|Romance   2295    3.5
## 7812                                       Crime|Drama|Thriller   2295    1.5
## 7813                                      Action|Crime|Thriller   2295    4.5
## 7814                              Action|Adventure|Comedy|Crime   2295    1.5
## 7815                                                     Sci-Fi   2295    0.5
## 7816                                    Action|Adventure|Sci-Fi   2315    1.0
## 7817                                                      Drama   2315    4.0
## 7818                                             Comedy|Romance   2325    2.5
## 7819                                              Drama|Mystery   2325    4.0
## 7820                                                Crime|Drama   2315    4.5
## 7821                                                      Drama   2315    5.0
## 7822                                      Comedy|Crime|Thriller   2315    4.0
## 7823                                                      Drama   2325    4.5
## 7824                                                  Drama|War   2325    5.0
## 7825                                      Crime|Horror|Thriller   2325    4.0
## 7826                        Adventure|Animation|Children|Comedy   2325    3.0
## 7827                                                      Drama   2325    4.0
## 7828                                             Comedy|Western   2325    3.5
## 7829                                         Action|Crime|Drama   2325    2.5
## 7830                                Comedy|Drama|Romance|Sci-Fi   2315    4.5
## 7831                              Action|Horror|Sci-Fi|Thriller   2325    4.0
## 7832                                           Action|Drama|War   2325    4.5
## 7833                                   Action|Adventure|Fantasy   2336    5.0
## 7834                                             Action|Romance   2345    3.0
## 7835                             Action|Adventure|Comedy|Sci-Fi   2345    5.0
## 7836                             Adventure|Comedy|Drama|Musical   2345    4.0
## 7837                                        Crime|Drama|Fantasy   2351    3.5
## 7838                                      Children|Drama|Sci-Fi   2215    4.0
## 7839                                       Drama|Mystery|Sci-Fi   2215    3.5
## 7840                                                     Comedy   2351    4.0
## 7841                                            Action|Thriller   2325    3.5
## 7842                                      Children|Drama|Sci-Fi   2325    4.0
## 7843                                                     Comedy   2351    3.5
## 7844                       Action|Crime|Mystery|Sci-Fi|Thriller   2345    5.0
## 7845                                           Adventure|Sci-Fi   2215    4.0
## 7846                                  Adventure|Children|Sci-Fi   2215    3.0
## 7847                                     Adventure|Drama|Sci-Fi   2215    3.0
## 7848                                             Comedy|Romance   2325    3.5
## 7849                                    Action|Adventure|Sci-Fi   2325    2.5
## 7850                           Action|Adventure|Sci-Fi|Thriller   2215    4.0
## 7851                                   Action|Adventure|Fantasy   2351    4.5
## 7852                             Adventure|Comedy|Drama|Romance   2336    4.5
## 7853                                       Comedy|Drama|Romance   2336    4.5
## 7854                                              Drama|Mystery   2351    4.0
## 7855        Adventure|Animation|Children|Comedy|Fantasy|Romance   2325    3.5
## 7856                                  Action|Comedy|Crime|Drama   2325    2.5
## 7857                 Animation|Children|Fantasy|Musical|Romance   2325    2.0
## 7858                                      Children|Comedy|Drama   2325    2.5
## 7859                                                Crime|Drama   2325    3.0
## 7860                                          Drama|Romance|War   2325    4.5
## 7861                                             Comedy|Fantasy   2325    2.5
## 7862                       Action|Crime|Mystery|Sci-Fi|Thriller   2351    3.5
## 7863                          Adventure|Children|Comedy|Fantasy   2325    3.5
## 7864                                                      Drama   2325    2.5
## 7865                                                      Drama   2325    4.0
## 7866                                           Adventure|Sci-Fi   2215    3.0
## 7867                                      Drama|Sci-Fi|Thriller   2215    2.5
## 7868                                     Drama|Mystery|Thriller   2325    3.5
## 7869                                              Drama|Romance   2325    3.5
## 7870                                               Comedy|Drama   2325    4.0
## 7871                                             Comedy|Romance   2325    3.0
## 7872                                                      Drama   2325    3.5
## 7873                                              Action|Sci-Fi   2215    2.0
## 7874                                 Adventure|Mystery|Thriller   2361    4.0
## 7875                                    Action|Adventure|Sci-Fi   2361    3.5
## 7876                                       Action|Comedy|Horror   2361    3.0
## 7877                                  Action|Crime|Drama|Sci-Fi   2325    3.5
## 7878                                                     Comedy   2325    3.5
## 7879                Adventure|Animation|Children|Comedy|Fantasy   2361    4.0
## 7880                                                      Drama   2325    3.5
## 7881                                      Children|Drama|Sci-Fi   2361    5.0
## 7882                                             Comedy|Fantasy   2361    3.5
## 7883                                           Action|Drama|War   2215    4.0
## 7884                                                      Drama   2325    4.5
## 7885                       Action|Crime|Mystery|Sci-Fi|Thriller   2361    3.0
## 7886                                                      Drama   2368    1.5
## 7887                                             Comedy|Romance   2368    1.5
## 7888                                       Action|Comedy|Sci-Fi   2361    2.0
## 7889                                             Drama|Thriller   2361    3.5
## 7890                                           Action|Adventure   2361    3.0
## 7891                                     Adventure|Comedy|Crime   2361    3.0
## 7892                                           Action|Drama|War   2215    4.5
## 7893                                            Children|Comedy   2368    1.5
## 7894                                                 Action|War   2361    2.5
## 7895                               Action|Comedy|Fantasy|Horror   2215    3.5
## 7896                                                     Comedy   2361    3.5
## 7897                            Action|Adventure|Comedy|Fantasy   2215    3.0
## 7898                                                      Drama   2325    4.0
## 7899                                                      Drama   2368    4.0
## 7900                                            Horror|Thriller   2368    5.0
## 7901                               Action|Adventure|Crime|Drama   2215    3.5
## 7902                                                      Drama   2361    2.5
## 7903                                             Comedy|Romance   2325    3.5
## 7904                                                Crime|Drama   2361    4.0
## 7905                                    Action|Romance|Thriller   2215    4.0
## 7906                                             Comedy|Romance   2325    4.0
## 7907                                 Action|Adventure|Drama|War   2215    4.0
## 7908                                            Action|Thriller   2215    4.0
## 7909                                             Comedy|Romance   2361    1.5
## 7910                                              Drama|Romance   2361    3.0
## 7911                                            Action|Thriller   2215    3.0
## 7912                                         Crime|Thriller|War   2368    4.5
## 7913                                              Drama|Romance   2361    2.0
## 7914                                Action|Crime|Drama|Thriller   2215    2.0
## 7915                                      Action|Crime|Thriller   2215    3.0
## 7916                                           Action|Adventure   2215    3.5
## 7917                Action|Adventure|Comedy|Crime|Drama|Romance   2325    3.0
## 7918                              Action|Drama|Romance|Thriller   2361    2.5
## 7919                                                      Drama   2361    4.0
## 7920                              Drama|Fantasy|Mystery|Romance   2361    3.0
## 7921                                                   Thriller   2361    4.0
## 7922                                             Comedy|Romance   2361    3.5
## 7923                                     Drama|Mystery|Thriller   2361    2.5
## 7924                                                      Drama   2361    3.5
## 7925                                  Action|Adventure|Thriller   2368    3.0
## 7926                       Action|Crime|Mystery|Sci-Fi|Thriller   2368    3.5
## 7927                                              Action|Comedy   2368    4.5
## 7928                                           Action|Drama|War   2368    5.0
## 7929                                                      Drama   2368    5.0
## 7930                                 Adventure|Children|Fantasy   2368    1.0
## 7931                              Comedy|Fantasy|Romance|Sci-Fi   2368    3.0
## 7932                                     Action|Horror|Thriller   2215    3.0
## 7933                                    Action|Adventure|Sci-Fi   2215    3.0
## 7934                                                     Comedy   2368    4.5
## 7935                                             Comedy|Western   2215    3.5
## 7936                                       Action|Crime|Western   2215    2.5
## 7937                                       Crime|Drama|Thriller   2215    4.5
## 7938                           Crime|Film-Noir|Mystery|Thriller   2215    4.5
## 7939                                     Comedy|Fantasy|Romance   2215    4.0
## 7940                                                     Horror   2215    3.5
## 7941                                        Crime|Drama|Fantasy   2386    4.0
## 7942                                   Adventure|Comedy|Fantasy   2386    2.0
## 7943                                     Drama|Mystery|Thriller   2386    5.0
## 7944                                                  Drama|War   2386    5.0
## 7945                                     Action|Sci-Fi|Thriller   2386    4.0
## 7946                  Adventure|Animation|Children|Drama|Sci-Fi   2386    4.5
## 7947                       Adventure|Animation|Children|Fantasy   2315    4.5
## 7948                                 Animation|Children|Fantasy   2315    5.0
## 7949                                                  Drama|War   2315    4.0
## 7950                                     Drama|Mystery|Thriller   2315    3.5
## 7951                                                     Comedy   2361    3.5
## 7952                                Action|Crime|Drama|Thriller   2361    3.5
## 7953                                                      Drama   2361    3.0
## 7954                                               Comedy|Drama   2361    4.0
## 7955                                                  Drama|War   2361    4.5
## 7956                                Action|Drama|Romance|Sci-Fi   2361    4.0
## 7957                             Action|Romance|Sci-Fi|Thriller   2434    3.5
## 7958                                             Drama|Thriller   2421    3.0
## 7959                                  Action|Adventure|Thriller   2421    2.0
## 7960                                   Action|Adventure|Romance   2421    3.0
## 7961                                            Children|Comedy   2434    5.0
## 7962                          Animation|Children|Comedy|Fantasy   2434    5.0
## 7963                Adventure|Animation|Children|Comedy|Fantasy   2434    4.0
## 7964                                       Comedy|Drama|Romance   2434    5.0
## 7965                                       Comedy|Drama|Romance   2434    4.5
## 7966                                             Comedy|Romance   2421    2.5
## 7967                                                Crime|Drama   2421    4.0
## 7968                                    Adventure|Drama|Western   2434    3.5
## 7969                                          Adventure|Western   2421    4.0
## 7970                            Children|Comedy|Fantasy|Musical   2434    4.0
## 7971                                 Action|Adventure|Drama|War   2421    4.0
## 7972                                    Action|Adventure|Sci-Fi   2434    0.5
## 7973                                 Action|Adventure|Drama|War   2421    4.0
## 7974                                                      Drama   2434    4.0
## 7975                                     Comedy|Horror|Thriller   2434    3.5
## 7976                                       Comedy|Drama|Romance   2434    4.0
## 7977                                                     Comedy   2434    3.5
## 7978                                   Adventure|Comedy|Fantasy   2434    4.0
## 7979                          Adventure|Children|Comedy|Fantasy   2434    4.5
## 7980                                               Comedy|Drama   2434    3.5
## 7981                                                     Comedy   2434    3.5
## 7982                                     Comedy|Musical|Romance   2434    1.0
## 7983                                               Action|Crime   2434    5.0
## 7984                              Drama|Horror|Mystery|Thriller   2434    3.5
## 7985                                             Comedy|Romance   2434    4.0
## 7986                            Action|Adventure|Fantasy|Sci-Fi   2434    4.0
## 7987                                      Comedy|Horror|Romance   2434    5.0
## 7988                                                Crime|Drama   2434    4.0
## 7989                                      Drama|Mystery|Romance   2434    5.0
## 7990                                      Action|Crime|Thriller   2434    4.0
## 7991                                              Drama|Mystery   2434    4.5
## 7992                                          Drama|Romance|War   2528    5.0
## 7993                                             Comedy|Romance   2528    3.5
## 7994                                                     Comedy   2528    3.0
## 7995                                                Documentary   2528    5.0
## 7996                             Crime|Drama|Film-Noir|Thriller   2528    4.0
## 7997                                    Comedy|Mystery|Thriller   2528    4.0
## 7998                                       Comedy|Drama|Romance   2528    1.0
## 7999                                       Comedy|Drama|Romance   2528    4.0
## 8000                                                      Drama   2528    3.5
## 8001                                               Drama|Sci-Fi   2528    3.5
## 8002                                                      Drama   2528    2.5
## 8003                                       Crime|Drama|Thriller   2528    3.5
## 8004                                              Drama|Musical   2528    3.0
## 8005                                             Comedy|Romance   2528    3.5
## 8006                                                Documentary   2528    4.0
## 8007                                                      Drama   2528    3.0
## 8008                                      Drama|Musical|Romance   2528    4.0
## 8009                                       Comedy|Drama|Romance   2361    5.0
## 8010                        Adventure|Animation|Children|Comedy   2361    5.0
## 8011                               Crime|Drama|Mystery|Thriller   2361    4.0
## 8012                                            Children|Comedy   2361    4.0
## 8013                                              Drama|Mystery   2361    4.0
## 8014                               Crime|Drama|Romance|Thriller   2361    3.5
## 8015                                        Crime|Drama|Romance   2361    4.0
## 8016                           Crime|Film-Noir|Mystery|Thriller   2361    4.5
## 8017                                         Action|Crime|Drama   2361    4.0
## 8018  Adventure|Animation|Children|Comedy|Crime|Fantasy|Mystery   2325    3.5
## 8019                                              Comedy|Horror   2325    2.5
## 8020                                       Comedy|Drama|Romance   2325    2.5
## 8021                                                     Comedy   2325    3.5
## 8022                                       Action|Adventure|War   2325    3.0
## 8023                                    Horror|Mystery|Thriller   2325    2.0
## 8024                                              Drama|Romance   2325    3.0
## 8025                                      Comedy|Horror|Musical   2325    2.0
## 8026                                                     Comedy   2325    2.0
## 8027                                        Crime|Drama|Fantasy   2325    4.5
## 8028                Action|Adventure|Comedy|Crime|Drama|Romance   2557    4.0
## 8029                                      Drama|Sci-Fi|Thriller   2568    4.0
## 8030                                                  Drama|War   2568    5.0
## 8031                                    Action|Romance|Thriller   2568    4.0
## 8032                         Animation|Children|Musical|Romance   2568    3.0
## 8033                                                  Drama|War   2421    4.5
## 8034                                            Adventure|Drama   2295    4.0
## 8035                 Action|Adventure|Animation|Children|Comedy   2295    2.5
## 8036                                       Comedy|Drama|Romance   2626    1.5
## 8037                                                Crime|Drama   2626    1.5
## 8038                                             Comedy|Romance   2626    1.0
## 8039                             Action|Adventure|Drama|Fantasy   2626    1.0
## 8040                                      Action|Drama|Thriller   2626    3.5
## 8041                                                     Comedy   2638    3.5
## 8042                                  Drama|Romance|War|Western   2658    3.0
## 8043                                                  Drama|War   2665    4.0
## 8044                                       Crime|Drama|Thriller   2665    3.5
## 8045                                             Action|Romance   2658    3.5
## 8046                                                      Drama   2658    4.0
## 8047                                      Crime|Drama|Film-Noir   2665    5.0
## 8048                             Crime|Drama|Film-Noir|Thriller   2665    4.5
## 8049                                   Crime|Film-Noir|Thriller   2665    5.0
## 8050                                            Horror|Thriller   2665    4.5
## 8051                  Adventure|Drama|Film-Noir|Sci-Fi|Thriller   2658    4.5
## 8052                                    Mystery|Sci-Fi|Thriller   2699    5.0
## 8053                                                Crime|Drama   2730    3.0
## 8054                                             Comedy|Romance   2730    3.0
## 8055                                             Comedy|Romance   2724    5.0
## 8056                                        Crime|Drama|Mystery   2730    3.5
## 8057                                                      Drama   2730    3.5
## 8058                                                Documentary   2724    4.5
## 8059                                                      Drama   2724    4.0
## 8060                                               Comedy|Drama   2730    3.0
## 8061                                              Drama|Romance   2730    1.0
## 8062                                           Action|Adventure   2730    2.5
## 8063                                      Drama|Mystery|Romance   2748    4.0
## 8064                                       Action|Comedy|Horror   2757    3.5
## 8065                         Animation|Children|Musical|Romance   2757    0.5
## 8066                            Animation|Children|Comedy|Crime   2757    2.0
## 8067                    Action|Adventure|Comedy|Fantasy|Romance   2757    3.5
## 8068                                     Action|Sci-Fi|Thriller   2757    3.0
## 8069                   Animation|Children|Drama|Fantasy|Musical   2784    3.0
## 8070                   Animation|Children|Drama|Fantasy|Musical   2361    3.0
## 8071                                          Drama|Romance|War   2361    3.0
## 8072                                                      Drama   2784    3.5
## 8073                                                     Comedy   2784    2.5
## 8074                                                     Comedy   2361    2.5
## 8075                                                      Drama   2361    3.0
## 8076                                                      Drama   2361    4.0
## 8077                    Action|Adventure|Drama|Fantasy|Thriller   2784    4.0
## 8078                                               Action|Crime   2784    3.5
## 8079                                  Animation|Children|Comedy   2784    5.0
## 8080                   Adventure|Children|Comedy|Fantasy|Sci-Fi   2784    2.0
## 8081                       Action|Crime|Mystery|Sci-Fi|Thriller   2784    2.0
## 8082                                     Action|Sci-Fi|Thriller   2784    2.5
## 8083                                     Crime|Mystery|Thriller   2784    4.0
## 8084                                                      Drama   2784    5.0
## 8085                                       Crime|Drama|Thriller   2784    4.0
## 8086                                     Comedy|Sci-Fi|Thriller   2801    5.0
## 8087                                                   Thriller   2801    4.0
## 8088                                             Horror|Mystery   2801    2.0
## 8089                                       Drama|Mystery|Sci-Fi   2801    3.0
## 8090                                      Horror|Mystery|Sci-Fi   2801    4.0
## 8091                                                     Horror   2801    3.0
## 8092                                                     Horror   2801    2.0
## 8093                                   Adventure|Comedy|Western   2813    3.5
## 8094                                              Horror|Sci-Fi   2801    3.0
## 8095                               Comedy|Drama|Fantasy|Romance   2813    4.0
## 8096                                                     Comedy   2813    1.0
## 8097                 Animation|Children|Fantasy|Musical|Romance   2813    5.0
## 8098                                                     Comedy   2813    3.5
## 8099                                           Action|Adventure   2813    4.0
## 8100                                         Action|Crime|Drama   2813    4.0
## 8101                    Action|Adventure|Comedy|Fantasy|Romance   2813    4.0
## 8102                                                      Drama   2813    3.5
## 8103                                     Action|Adventure|Drama   2813    3.5
## 8104        Adventure|Animation|Children|Comedy|Musical|Romance   2813    5.0
## 8105                                           Comedy|Drama|War   2813    4.0
## 8106                            Animation|Children|Comedy|Crime   2813    4.0
## 8107                                               Comedy|Drama   2813    3.5
## 8108                                       Comedy|Drama|Romance   2824    3.5
## 8109                                   Adventure|Comedy|Western   2824    4.0
## 8110                   Animation|Children|Drama|Fantasy|Musical   2824    3.5
## 8111                                                     Comedy   2829    2.5
## 8112                                                Crime|Drama   2829    3.5
## 8113                          Animation|Children|Comedy|Fantasy   2824    4.0
## 8114                                            Children|Comedy   2829    1.5
## 8115                                                      Drama   2829    4.0
## 8116                                             Comedy|Musical   2829    5.0
## 8117                                  Action|Adventure|Thriller   2824    3.0
## 8118                                    Adventure|Comedy|Sci-Fi   2829    4.0
## 8119                                           Comedy|Drama|War   2824    4.0
## 8120                                                      Drama   2829    4.0
## 8121                                     Crime|Mystery|Thriller   2829    5.0
## 8122                                           Action|Drama|War   2829    4.5
## 8123                                             Drama|Thriller   2829    4.5
## 8124                                              Drama|Musical   2829    4.0
## 8125                                     Action|Adventure|Drama   2829    4.5
## 8126                       Action|Crime|Mystery|Sci-Fi|Thriller   2829    4.0
## 8127                                    Action|Adventure|Sci-Fi   2829    4.0
## 8128                                           Adventure|Comedy   2829    3.0
## 8129                                     Drama|Romance|Thriller   2829    4.0
## 8130                                  Action|Adventure|Thriller   2829    3.0
## 8131                                             Comedy|Musical   2829    4.0
## 8132                                    Action|Adventure|Sci-Fi   2829    3.0
## 8133                  Animation|Children|Comedy|Musical|Romance   2829    4.0
## 8134                                    Action|Adventure|Sci-Fi   2841    4.5
## 8135                            Action|Adventure|Fantasy|Sci-Fi   2841    4.5
## 8136                                             Comedy|Romance   2724    4.0
## 8137                                                      Drama   2724    4.0
## 8138                                                      Drama   2724    4.0
## 8139                                             Comedy|Romance   2724    4.5
## 8140                                                     Comedy   2724    4.5
## 8141                                       Comedy|Drama|Fantasy   2724    4.0
## 8142                                                      Drama   2724    4.5
## 8143                                                      Drama   2724    4.5
## 8144                                             Comedy|Romance   2724    2.5
## 8145                                         Action|Crime|Drama   2724    4.0
## 8146                                       Comedy|Drama|Romance   2724    4.0
## 8147                                                 Comedy|War   2866    5.0
## 8148                                    Action|Adventure|Sci-Fi   2784    2.5
## 8149                                             Comedy|Romance   2784    2.5
## 8150                                               Comedy|Drama   2784    4.0
## 8151                               Comedy|Drama|Fantasy|Romance   2784    4.0
## 8152                              Action|Horror|Sci-Fi|Thriller   2784    4.0
## 8153                                                     Comedy   2784    4.0
## 8154                                     Action|Adventure|Drama   2784    4.0
## 8155                                              Drama|Romance   2784    3.5
## 8156                                            Sci-Fi|Thriller   2813    3.0
## 8157                                            Action|Thriller   2813    3.0
## 8158                                              Comedy|Sci-Fi   2813    0.5
## 8159                                            Action|Thriller   2813    1.0
## 8160                            Action|Crime|Film-Noir|Thriller   2813    4.0
## 8161                                    Action|Adventure|Sci-Fi   2813    4.0
## 8162                                  Animation|Children|Comedy   2813    4.0
## 8163                                              Drama|Romance   2813    2.5
## 8164                                              Drama|Romance   2813    4.0
## 8165                                           Action|Adventure   2813    3.5
## 8166                                       Action|Comedy|Sci-Fi   2813    1.5
## 8167                            Action|Adventure|Sci-Fi|Western   2536    2.5
## 8168                                         Action|Crime|Drama   2515    5.0
## 8169                          Animation|Children|Comedy|Fantasy   2784    4.0
## 8170                                     Adventure|Comedy|Drama   2784    4.0
## 8171                                    Action|Adventure|Sci-Fi   2784    4.0
## 8172                                             Comedy|Romance   2784    4.0
## 8173                                     Action|Adventure|Drama   2784    3.5
## 8174                                              Drama|Romance   2784    4.0
## 8175                                             Comedy|Fantasy   2784    3.0
## 8176                                           Action|Adventure   2784    3.0
## 8177                           Crime|Film-Noir|Mystery|Thriller   2784    4.5
## 8178                                     Adventure|Comedy|Crime   2784    4.0
## 8179                                               Comedy|Drama   2784    3.5
## 8180                              Crime|Horror|Mystery|Thriller   2536    3.5
## 8181                                             Comedy|Musical   2295    1.0
## 8182                                                     Comedy   2784    2.5
## 8183                                    Action|Adventure|Sci-Fi   2784    3.0
## 8184                           Action|Adventure|Sci-Fi|Thriller   2784    3.0
## 8185                                  Action|Adventure|Thriller   2784    3.5
## 8186                                              Drama|Romance   2361    2.5
## 8187                        Adventure|Animation|Children|Comedy   2361    4.5
## 8188                                  Action|Comedy|Crime|Drama   2361    4.5
## 8189                                              Drama|Romance   2361    4.0
## 8190                                             Comedy|Romance   2361    2.5
## 8191                                             Comedy|Fantasy   2361    2.5
## 8192                                    Children|Comedy|Romance   2325    2.0
## 8193                                              Drama|Musical   2325    4.0
## 8194                                                      Drama   2829    5.0
## 8195                                               Comedy|Crime   2829    4.0
## 8196                                                      Drama   2829    3.5
## 8197                                              Drama|Romance   2829    2.5
## 8198                                       Comedy|Drama|Romance   2829    4.0
## 8199                                                      Drama   2829    4.0
## 8200                                              Drama|Romance   2829    4.5
## 8201                      Comedy|Drama|Fantasy|Romance|Thriller   2325    4.0
## 8202                                       Comedy|Drama|Fantasy   2325    3.5
## 8203                                             Comedy|Fantasy   2325    2.0
## 8204                    Action|Adventure|Comedy|Fantasy|Mystery   2325    3.0
## 8205                             Action|Sci-Fi|Thriller|Western   2325    3.0
## 8206                                         Adventure|Children   2325    3.0
## 8207                                             Comedy|Fantasy   2325    2.5
## 8208                             Action|Romance|Sci-Fi|Thriller   2325    3.0
## 8209                                       Comedy|Drama|Romance   2325    3.5
## 8210                                               Comedy|Drama   2515    4.0
## 8211                                   Drama|Film-Noir|Thriller   2515    5.0
## 8212                                    Children|Comedy|Romance   2336    3.5
## 8213                                             Comedy|Romance   2336    3.5
## 8214                                                     Comedy   2336    4.0
## 8215                                              Action|Comedy   2361    2.5
## 8216                             Adventure|Comedy|Crime|Romance   2330    5.0
## 8217                                            Horror|Thriller   2330    5.0
## 8218                                       Comedy|Drama|Romance   2724    4.0
## 8219                          Action|Adventure|Children|Fantasy   2361    4.0
## 8220                                                      Drama   2361    3.5
## 8221                                                      Drama   2361    3.0
## 8222                                            Horror|Thriller   2361    3.0
## 8223                                             Drama|Thriller   2361    2.5
## 8224                                                      Drama   2361    3.5
## 8225                                                     Comedy   2361    3.5
## 8226                              Crime|Horror|Mystery|Thriller   2385    4.0
## 8227                                 Film-Noir|Mystery|Thriller   2784    4.0
## 8228                                  Action|Comedy|Crime|Drama   2325    3.5
## 8229                           Action|Adventure|Sci-Fi|Thriller   2325    3.5
## 8230                                                     Comedy   2325    2.5
## 8231                                             Comedy|Romance   2325    3.0
## 8232                                             Comedy|Musical   2325    2.0
## 8233                                                     Comedy   2325    2.0
## 8234                                            Comedy|Thriller   2325    3.0
## 8235                                              Drama|Musical   2325    3.5
## 8236                                               Comedy|Drama   2325    3.0
## 8237                                            Children|Comedy   2325    3.0
## 8238                                                     Comedy   2852    2.0
## 8239                           Action|Adventure|Sci-Fi|Thriller   2325    3.5
## 8240                                      Drama|Sci-Fi|Thriller   2714    4.0
## 8241                       Action|Crime|Horror|Mystery|Thriller   2714    3.5
## 8242                            Action|Adventure|Fantasy|Sci-Fi   2852    3.0
## 8243                                                     Comedy   2517    4.0
## 8244                                       Crime|Drama|Thriller   2517    4.0
## 8245                                              Drama|Romance   2517    4.5
## 8246                                                      Drama   2517    4.5
## 8247                               Action|Drama|Sci-Fi|Thriller   2517    3.0
## 8248                                               Comedy|Drama   2517    1.5
## 8249                   Action|Adventure|Comedy|Romance|Thriller   2517    3.0
## 8250                          Adventure|Children|Comedy|Fantasy   2517    3.0
## 8251                              Comedy|Fantasy|Romance|Sci-Fi   2517    2.0
## 8252                                       Comedy|Drama|Romance   2517    3.0
## 8253                         Animation|Children|Musical|Romance   2517    3.0
## 8254                                         Crime|Drama|Horror   2784    3.5
## 8255                                             Drama|Thriller   2385    5.0
## 8256                                                  Drama|War   2527    4.0
## 8257                                             Comedy|Romance   2527    3.5
## 8258                                   Action|Adventure|Fantasy   2801    5.0
## 8259                              Drama|Horror|Mystery|Thriller   2801    5.0
## 8260                              Action|Horror|Sci-Fi|Thriller   2801    5.0
## 8261                                              Action|Sci-Fi   2801    5.0
## 8262                                      Children|Drama|Sci-Fi   2801    4.0
## 8263                                            Action|Thriller   2801    3.0
## 8264                             Fantasy|Horror|Sci-Fi|Thriller   2801    4.0
## 8265                                  Animation|Children|Comedy   2434    4.0
## 8266                                                   Thriller   2434    3.5
## 8267                                             Comedy|Fantasy   2434    3.5
## 8268                                       Comedy|Drama|Romance   2434    4.0
## 8269                                                     Horror   2434    4.0
## 8270                                               Action|Drama   2434    5.0
## 8271                                          Drama|Romance|War   2714    3.5
## 8272                              Drama|Mystery|Sci-Fi|Thriller   2714    3.0
## 8273        Adventure|Animation|Children|Comedy|Musical|Romance   2315    2.5
## 8274                                      Crime|Drama|Film-Noir   2315    4.0
## 8275                                    Adventure|Drama|Western   2315    3.0
## 8276                   Action|Adventure|Comedy|Romance|Thriller   2315    3.0
## 8277                                                Crime|Drama   2784    3.5
## 8278                                  Action|Adventure|Thriller   2784    3.5
## 8279                   Action|Adventure|Romance|Sci-Fi|Thriller   2784    3.0
## 8280                                                    Western   2784    3.5
## 8281                            Action|Adventure|Crime|Thriller   2784    3.0
## 8282                                                     Comedy   2784    3.0
## 8283                                      Action|Crime|Thriller   2434    3.5
## 8284                                                      Drama   2134    2.5
## 8285                                      Action|Crime|Thriller   2361    4.0
## 8286                                              Drama|Romance   2361    3.5
## 8287                                                      Drama   2361    3.0
## 8288                                             Drama|Thriller   2361    5.0
## 8289                                               Comedy|Drama   2361    4.5
## 8290                              Action|Crime|Romance|Thriller   2361    4.0
## 8291                                                     Comedy   2784    4.0
## 8292                                  Animation|Children|Comedy   2612    4.0
## 8293                                                      Drama   2813    3.0
## 8294                                             Drama|Thriller   2813    3.0
## 8295                                             Comedy|Romance   2813    3.0
## 8296                                       Crime|Drama|Thriller   2813    2.5
## 8297                                       Comedy|Drama|Romance   2813    2.5
## 8298                               Action|Comedy|Crime|Thriller   2813    4.0
## 8299                                                     Comedy   2813    3.0
## 8300                                           Action|Drama|War   2536    3.0
## 8301                                             Comedy|Romance   2517    3.5
## 8302                                               Action|Drama   2517    2.0
## 8303                                Action|Crime|Drama|Thriller   2527    3.0
## 8304                                    Action|Romance|Thriller   2361    5.0
## 8305                                       Comedy|Drama|Romance   2361    3.0
## 8306                                  Action|Adventure|Thriller   2361    4.0
## 8307                              Crime|Horror|Mystery|Thriller   2361    4.0
## 8308                                       Action|Crime|Fantasy   2361    2.5
## 8309                                              Drama|Musical   2134    3.0
## 8310                                      Action|Comedy|Western   2866    4.5
## 8311                                               Comedy|Drama   2361    2.5
## 8312                                      Drama|Horror|Thriller   2361    3.0
## 8313                                               Comedy|Drama   2361    3.0
## 8314                                 Animation|Children|Musical   2361    2.5
## 8315                                             Children|Drama   2361    2.5
## 8316                                         Film-Noir|Thriller   2784    3.5
## 8317                            Action|Adventure|Fantasy|Sci-Fi   2385    3.0
## 8318                                    Adventure|Comedy|Sci-Fi   2214    4.5
## 8319                                                        War   2385    4.5
## 8320                                             Comedy|Mystery   2162    3.5
## 8321                              Comedy|Fantasy|Romance|Sci-Fi   2162    1.5
## 8322                                                   Thriller   2714    3.0
## 8323                                             Drama|Thriller   2714    2.5
## 8324                                             Comedy|Fantasy   2714    1.5
## 8325                                         Comedy|Crime|Drama   2714    2.5
## 8326                                              Drama|Mystery   2714    3.5
## 8327                                             Drama|Thriller   2714    3.5
## 8328                                Action|Crime|Drama|Thriller   2714    3.5
## 8329                                                     Comedy   2361    2.0
## 8330                                             Drama|Thriller   2385    5.0
## 8331                                                      Drama   2527    3.5
## 8332                                               Comedy|Drama   2162    4.0
## 8333                                             Drama|Thriller   2841    4.5
## 8334                              Action|Horror|Sci-Fi|Thriller   2841    5.0
## 8335                                           Adventure|Comedy   2315    4.5
## 8336                                      Action|Crime|Thriller   2315    2.5
## 8337                                    Action|Adventure|Comedy   2315    4.0
## 8338                                               Action|Crime   2315    2.5
## 8339                                      Drama|Sci-Fi|Thriller   2714    2.5
## 8340                                              Drama|Romance   2714    3.0
## 8341                                    Action|Adventure|Sci-Fi   2536    3.0
## 8342                                               Comedy|Crime   2517    2.5
## 8343                                    Animation|Drama|Fantasy   2315    0.5
## 8344                                             Drama|Thriller   2134    3.0
## 8345                                              Drama|Romance   2852    3.5
## 8346                                             Comedy|Romance   2612    4.0
## 8347                                     Drama|Mystery|Thriller   2434    3.5
## 8348                                             Comedy|Romance   2162    3.5
## 8349                                                      Drama   2852    3.5
## 8350                                Action|Crime|Drama|Thriller   2324    5.0
## 8351                                            Adventure|Drama   2324    3.0
## 8352                                 Action|Adventure|Drama|War   2324    3.0
## 8353                                              Drama|Mystery   2324    4.5
## 8354                                      Crime|Drama|Film-Noir   2324    3.5
## 8355                                                Crime|Drama   2324    3.5
## 8356                 Adventure|Animation|Comedy|Fantasy|Romance   2324    4.0
## 8357                                   Drama|Film-Noir|Thriller   2324    3.5
## 8358                                                Crime|Drama   2324    3.5
## 8359                                                      Drama   2324    3.0
## 8360                                       Comedy|Drama|Romance   2324    1.0
## 8361                                               Comedy|Drama   2324    1.0
## 8362                                         Action|Crime|Drama   2324    3.0
## 8363                                       Comedy|Drama|Romance   2324    2.0
## 8364                                             Drama|Thriller   2324    1.5
## 8365                              Action|Crime|Fantasy|Thriller   2324    2.5
## 8366                                                     Comedy   2324    3.0
## 8367                                            Drama|Film-Noir   2324    3.0
## 8368                                                     Comedy   2324    3.0
## 8369                                              Drama|Romance   2324    3.0
## 8370                                                      Drama   2324    3.0
## 8371                             Fantasy|Horror|Mystery|Romance   2324    3.0
## 8372                                               Comedy|Drama   2324    3.0
## 8373                               Comedy|Drama|Fantasy|Romance   2324    3.5
## 8374                            Action|Adventure|Comedy|Fantasy   2324    3.5
## 8375                                         Action|Crime|Drama   2324    3.5
## 8376                                            Horror|Thriller   2324    3.5
## 8377                                                      Drama   2324    3.5
## 8378                                  Action|Comedy|Romance|War   2324    3.5
## 8379                        Action|Crime|Drama|Mystery|Thriller   2324    3.5
## 8380                                                      Drama   2324    3.5
## 8381                                           Action|Drama|War   2324    3.5
## 8382                                               Comedy|Drama   2324    3.5
## 8383                  Action|Comedy|Crime|Drama|Horror|Thriller   2324    4.0
## 8384                                                      Drama   2324    3.0
## 8385                                                     Action   2324    3.5
## 8386                           Action|Adventure|Sci-Fi|Thriller   2324    2.0
## 8387                                             Comedy|Romance   2324    3.5
## 8388                                    Action|Adventure|Comedy   2214    4.0
## 8389                                             Drama|Thriller   2434    3.0
## 8390                        Action|Crime|Drama|Mystery|Thriller   2434    3.0
## 8391                                             Romance|Sci-Fi   2214    3.0
## 8392                       Crime|Drama|Mystery|Romance|Thriller   2214    3.5
## 8393                                    Action|Adventure|Sci-Fi   2852    3.0
## 8394                 Action|Adventure|Animation|Sci-Fi|Thriller   2325    2.0
## 8395                                                     Horror   2714    2.5
## 8396                                      Crime|Drama|Film-Noir   2714    3.5
## 8397                                                      Drama   2714    4.5
## 8398                                                      Drama   2714    3.5
## 8399                                                  Drama|War   2134    3.0
## 8400                                 Animation|Children|Musical   2612    3.5
## 8401                                     Comedy|Musical|Romance   2841    4.0
## 8402                                                     Comedy   2612    2.5
## 8403                   Action|Adventure|Comedy|Romance|Thriller   2612    3.0
## 8404                                             Drama|Thriller   2536    3.5
## 8405                                                   Thriller   2536    4.0
## 8406                            Action|Adventure|Comedy|Fantasy   2385    5.0
## 8407                                Action|Crime|Drama|Thriller   2852    3.5
## 8408                                                Documentary   2361    4.5
## 8409                                                      Drama   2361    3.5
## 8410                            Action|Adventure|Comedy|Fantasy   2517    3.5
## 8411                                              Action|Comedy   2134    3.5
## 8412                                             Comedy|Romance   2134    3.0
## 8413                                              Drama|Romance   2385    4.5
## 8414                                                  Drama|War   2385    4.0
## 8415                                              Drama|Romance   2324    3.0
## 8416                                                     Comedy   2276    5.0
## 8417                                              Action|Comedy   2276    4.5
## 8418                                     Action|Adventure|Drama   2361    2.5
## 8419                                               Comedy|Drama   2361    3.0
## 8420                                                      Drama   2361    3.0
## 8421                                       Crime|Drama|Thriller   2536    4.0
## 8422                               Crime|Drama|Mystery|Thriller   2515    4.5
## 8423                                                      Drama   2612    4.0
## 8424                                             Drama|Thriller   2612    4.0
## 8425                                            Horror|Thriller   2612    3.0
## 8426                               Crime|Drama|Mystery|Thriller   2134    4.0
## 8427                                      Action|Crime|Thriller   2852    3.5
## 8428                               Action|Comedy|Crime|Thriller   2116    2.0
## 8429                                        Action|Crime|Sci-Fi   2116    3.0
## 8430                                              Action|Comedy   2116    1.5
## 8431                                Comedy|Drama|Romance|Sci-Fi   2116    4.5
## 8432                                              Drama|Romance   2116    4.0
## 8433                                             Comedy|Romance   2116    3.0
## 8434                                    Action|Adventure|Sci-Fi   2136    4.5
## 8435                                                     Comedy   2136    3.5
## 8436                                              Drama|Romance   2136    2.5
## 8437                                    Action|Adventure|Comedy   2147    4.0
## 8438                                       Crime|Drama|Thriller   2147    4.0
## 8439                              Crime|Horror|Mystery|Thriller   2147    3.5
## 8440                                      Action|Drama|Thriller   2147    4.5
## 8441                                           Comedy|Drama|War   2200    4.5
## 8442                              Action|Comedy|Horror|Thriller   2218    3.5
## 8443                                                     Comedy   2218    3.5
## 8444                                    Adventure|Comedy|Sci-Fi   2218    4.5
## 8445                                Action|Adventure|Sci-Fi|War   2218    3.5
## 8446                               Crime|Drama|Romance|Thriller   2218    4.0
## 8447                                                      Drama   2218    3.0
## 8448                                      Crime|Horror|Thriller   2218    3.0
## 8449                                                      Drama   2200    3.5
## 8450                               Comedy|Drama|Fantasy|Romance   2200    4.5
## 8451                   Adventure|Children|Comedy|Fantasy|Sci-Fi   2381    2.5
## 8452                                      Drama|Mystery|Romance   2381    4.5
## 8453                                                      Drama   2381    4.5
## 8454                                           Mystery|Thriller   2381    4.0
## 8455                                                   Thriller   2381    4.5
## 8456                               Action|Comedy|Crime|Thriller   2410    1.0
## 8457                                                      Drama   2410    5.0
## 8458                                                     Comedy   2402    3.0
## 8459                                      Action|Drama|Thriller   2402    3.0
## 8460                              Action|Comedy|Horror|Thriller   2402    4.5
## 8461                                      Comedy|Sci-Fi|Western   2420    4.5
## 8462                                                      Drama   2420    4.5
## 8463                    Action|Adventure|Comedy|Fantasy|Romance   2420    5.0
## 8464                                   Action|Adventure|Fantasy   2420    3.5
## 8465                 Adventure|Animation|Children|Comedy|Sci-Fi   2420    4.5
## 8466                                Action|Crime|Drama|Thriller   2420    4.0
## 8467                                                     Comedy   2448    3.0
## 8468                                            Horror|Thriller   2448    4.0
## 8469                           Action|Adventure|Sci-Fi|Thriller   2429    4.0
## 8470                                      Drama|Mystery|Romance   2440    5.0
## 8471                                    Action|Adventure|Sci-Fi   2448    4.0
## 8472                          Animation|Children|Comedy|Fantasy   2429    3.0
## 8473                                    Adventure|Drama|Western   2429    3.5
## 8474                                    Action|Romance|Thriller   2402    2.5
## 8475                                    Action|Adventure|Sci-Fi   2429    3.5
## 8476                                    Action|Adventure|Sci-Fi   2402    4.5
## 8477                                      Action|Crime|Thriller   2448    3.0
## 8478                             Action|Adventure|Drama|Fantasy   2402    4.0
## 8479                                 Adventure|Children|Fantasy   2448    3.5
## 8480                          Action|Adventure|Mystery|Thriller   2402    4.0
## 8481                                      Comedy|Crime|Thriller   2402    3.5
## 8482                                 Adventure|Children|Fantasy   2448    4.0
## 8483                                     Action|Sci-Fi|Thriller   2402    4.0
## 8484                                Action|Crime|Drama|Thriller   2429    3.5
## 8485                                       Comedy|Drama|Romance   2448    3.5
## 8486                            Action|Crime|Film-Noir|Thriller   2402    4.5
## 8487                                    Action|Adventure|Sci-Fi   2402    4.0
## 8488                                                      Drama   2448    4.0
## 8489                                     Action|Sci-Fi|Thriller   2448    1.5
## 8490                                   Action|Adventure|Fantasy   2448    4.0
## 8491                              Action|Adventure|Drama|Sci-Fi   2448    3.0
## 8492                             Action|Romance|Sci-Fi|Thriller   2448    2.0
## 8493                                    Action|Adventure|Sci-Fi   2448    3.5
## 8494                                                      Drama   2448    5.0
## 8495                                   Animation|Comedy|Musical   2448    4.0
## 8496                                     Drama|Mystery|Thriller   2440    4.0
## 8497                                     Action|Adventure|Drama   2448    4.5
## 8498                                      Drama|Sci-Fi|Thriller   2448    3.5
## 8499                                                 Comedy|War   2440    4.0
## 8500                                                     Comedy   2429    4.5
## 8501                                   Adventure|Comedy|Musical   2440    4.5
## 8502                                               Comedy|Drama   2448    3.5
## 8503                                                     Comedy   2448    3.5
## 8504                                  Action|Adventure|Thriller   2440    4.0
## 8505                                              Drama|Romance   2448    3.5
## 8506                 Comedy|Crime|Drama|Horror|Mystery|Thriller   2429    3.0
## 8507                    Action|Adventure|Drama|Mystery|Thriller   2440    3.5
## 8508                    Action|Adventure|Drama|Mystery|Thriller   2429    2.5
## 8509                            Action|Adventure|Fantasy|Sci-Fi   2440    3.5
## 8510                                               Comedy|Crime   2481    5.0
## 8511                                                     Comedy   2481    3.5
## 8512                                                Crime|Drama   2481    5.0
## 8513                                Action|Crime|Drama|Thriller   2481    5.0
## 8514                                 Action|Adventure|Drama|War   2429    2.0
## 8515                                    Action|Adventure|Sci-Fi   2481    4.5
## 8516                                   Action|Adventure|Fantasy   2492    5.0
## 8517                                    Action|Adventure|Comedy   2492    4.5
## 8518                                    Action|Adventure|Sci-Fi   2492    4.5
## 8519                           Action|Adventure|Sci-Fi|Thriller   2492    3.5
## 8520                                      Action|Drama|Thriller   2492    5.0
## 8521                                      Comedy|Crime|Thriller   2492    2.5
## 8522                                             Comedy|Romance   2429    4.0
## 8523                                                     Comedy   2429    1.5
## 8524                                              Drama|Romance   2492    3.5
## 8525                            Action|Adventure|Fantasy|Sci-Fi   2492    4.0
## 8526                                                     Comedy   2429    3.5
## 8527                                                     Comedy   2429    3.0
## 8528                                 Comedy|Crime|Drama|Musical   2429    1.0
## 8529                                                Documentary   2492    5.0
## 8530                                      Action|Crime|Thriller   2429    3.0
## 8531                                                Documentary   2492    5.0
## 8532                                                     Comedy   2429    3.0
## 8533                                                      Drama   2429    3.5
## 8534                                 Adventure|Fantasy|Thriller   2429    3.0
## 8535                                        Crime|Drama|Romance   2429    3.5
## 8536                        Adventure|Animation|Children|Comedy   2429    1.0
## 8537                        Adventure|Animation|Children|Comedy   2429    1.0
## 8538                                           Animation|Comedy   2429    4.0
## 8539                                               Comedy|Drama   2429    4.5
## 8540                                                     Comedy   2429    4.5
## 8541                                                     Comedy   2429    4.0
## 8542                            Action|Adventure|Sci-Fi|Western   2429    3.5
## 8543                            Action|Adventure|Comedy|Western   2429    4.0
## 8544                          Action|Adventure|Children|Fantasy   2429    3.5
## 8545                 Adventure|Animation|Children|Drama|Musical   2429    4.5
## 8546                                   Action|Adventure|Fantasy   2523    5.0
## 8547                                                   Thriller   2523    4.5
## 8548                       Action|Crime|Mystery|Sci-Fi|Thriller   2523    4.0
## 8549                                            Horror|Thriller   2523    3.0
## 8550                                                     Comedy   2523    3.0
## 8551                                                      Drama   2523    5.0
## 8552                                             Comedy|Romance   2523    5.0
## 8553                         Adventure|Children|Fantasy|Musical   2523    1.0
## 8554                                             Comedy|Musical   2523    4.5
## 8555                              Drama|Mystery|Sci-Fi|Thriller   2523    4.5
## 8556                 Animation|Children|Fantasy|Musical|Romance   2513    4.0
## 8557                                                     Comedy   2523    3.0
## 8558                   Action|Adventure|Fantasy|Horror|Thriller   2429    3.5
## 8559                                                     Comedy   2523    3.5
## 8560                                                     Comedy   2523    5.0
## 8561                                                     Comedy   2429    4.0
## 8562                                                     Comedy   2531    4.5
## 8563                                    Action|Adventure|Sci-Fi   2531    4.5
## 8564                                              Drama|Fantasy   2429    3.5
## 8565                                                     Comedy   2531    4.0
## 8566                             Crime|Drama|Film-Noir|Thriller   2531    4.0
## 8567                                          Action|Sci-Fi|War   2429    2.5
## 8568                                Action|Crime|Drama|Thriller   2531    4.5
## 8569                                  Action|Adventure|Thriller   2513    4.0
## 8570                       Action|Crime|Mystery|Sci-Fi|Thriller   2545    3.0
## 8571                                   Animation|Comedy|Musical   2545    4.0
## 8572                                      Drama|Mystery|Romance   2545    3.5
## 8573                                                      Drama   2545    3.5
## 8574                                                     Comedy   2545    4.0
## 8575                                       Crime|Drama|Thriller   2545    4.5
## 8576                                Comedy|Drama|Romance|Sci-Fi   2545    3.5
## 8577                                           Action|Drama|War   2545    3.5
## 8578                                 Action|Adventure|Drama|War   2545    4.0
## 8579                                                  Drama|War   2545    5.0
## 8580                                             Comedy|Mystery   2545    4.0
## 8581                                                  Drama|War   2545    4.0
## 8582                                             Comedy|Romance   2563    4.0
## 8583                                      Drama|Sci-Fi|Thriller   2571    4.0
## 8584                              Action|Horror|Sci-Fi|Thriller   2579    3.0
## 8585                                    Action|Adventure|Sci-Fi   2571    4.0
## 8586        Adventure|Animation|Children|Comedy|Musical|Romance   2571    3.5
## 8587                                             Comedy|Romance   2579    5.0
## 8588                                             Comedy|Romance   2563    3.5
## 8589                            Animation|Children|Comedy|Crime   2579    5.0
## 8590                                               Comedy|Drama   2579    4.5
## 8591                                               Comedy|Drama   2563    3.5
## 8592                                       Comedy|Drama|Fantasy   2579    3.5
## 8593                                                        War   2563    4.0
## 8594                             Adventure|Comedy|Drama|Musical   2579    4.5
## 8595                                             Drama|Thriller   2579    4.0
## 8596                                             Drama|Thriller   2563    4.0
## 8597                                     Comedy|Musical|Romance   2563    3.5
## 8598                                   Comedy|Drama|Romance|War   2563    4.0
## 8599                                        Action|Thriller|War   2563    4.0
## 8600                                           Comedy|Drama|War   2563    4.0
## 8601                                       Adventure|Comedy|War   2563    3.0
## 8602                                         Comedy|War|Western   2563    3.0
## 8603                                       Comedy|Drama|Romance   2563    4.5
## 8604                                     Drama|Romance|Thriller   2563    4.0
## 8605                                             Comedy|Romance   2563    4.0
## 8606                                           Mystery|Thriller   2563    2.5
## 8607                                             Comedy|Romance   2563    5.0
## 8608                                    Comedy|Mystery|Thriller   2563    2.0
## 8609                                     Comedy|Musical|Romance   2563    4.0
## 8610                                                    Western   2563    3.0
## 8611                         Adventure|Children|Fantasy|Musical   2563    2.0
## 8612                                     Drama|Mystery|Thriller   2643    4.0
## 8613                                Comedy|Drama|Romance|Sci-Fi   2643    4.5
## 8614                          Action|Adventure|Mystery|Thriller   2634    4.0
## 8615                                                     Comedy   2634    2.5
## 8616                                   Action|Adventure|Fantasy   2634    4.0
## 8617                                     Comedy|Horror|Thriller   2654    3.5
## 8618                                        Action|Crime|Sci-Fi   2654    3.5
## 8619                                                     Comedy   2654    4.0
## 8620                                             Comedy|Romance   2654    3.5
## 8621                                                     Comedy   2654    3.5
## 8622                                     Action|Sci-Fi|Thriller   2654    5.0
## 8623                                      Comedy|Crime|Thriller   2654    4.0
## 8624                           Crime|Film-Noir|Mystery|Thriller   2673    5.0
## 8625                                             Drama|Thriller   2673    4.0
## 8626                              Action|Horror|Sci-Fi|Thriller   2673    5.0
## 8627                              Comedy|Fantasy|Romance|Sci-Fi   2673    5.0
## 8628                                    Action|Adventure|Sci-Fi   2673    3.0
## 8629                                       Action|Comedy|Sci-Fi   2673    5.0
## 8630                                                     Comedy   2545    3.5
## 8631                                             Comedy|Romance   2545    3.5
## 8632                                         Comedy|Crime|Drama   2545    3.5
## 8633                                                     Comedy   2680    4.0
## 8634                               Action|Comedy|Crime|Thriller   2545    4.0
## 8635                                               Comedy|Crime   2680    4.5
## 8636                                                      Drama   2691    4.0
## 8637                                              Drama|Romance   2680    4.0
## 8638                                             Action|Romance   2691    3.5
## 8639                          Animation|Children|Comedy|Fantasy   2680    4.0
## 8640                            Action|Adventure|Comedy|Romance   2691    3.5
## 8641                                   Comedy|Drama|Romance|War   2680    4.5
## 8642                    Action|Adventure|Comedy|Fantasy|Romance   2680    3.0
## 8643                 Adventure|Animation|Children|Drama|Musical   2680    5.0
## 8644                                                     Comedy   2680    4.0
## 8645                                               Comedy|Drama   2545    3.0
## 8646                                      Comedy|Sci-Fi|Western   2706    3.5
## 8647                        Children|Comedy|Crime|Drama|Fantasy   2545    3.5
## 8648                                   Adventure|Comedy|Fantasy   2680    4.0
## 8649                                       Comedy|Drama|Romance   2545    3.5
## 8650                                  Action|Adventure|Thriller   2545    3.0
## 8651                                            Children|Comedy   2680    4.0
## 8652                                                      Drama   2706    3.5
## 8653                                    Adventure|Comedy|Sci-Fi   2716    0.5
## 8654                              Crime|Horror|Mystery|Thriller   2706    4.0
## 8655                                    Action|Adventure|Sci-Fi   2716    2.0
## 8656                                Comedy|Drama|Romance|Sci-Fi   2706    4.0
## 8657                                           Action|Drama|War   2545    3.0
## 8658                    Action|Adventure|Drama|Mystery|Thriller   2545    3.5
## 8659                        Adventure|Animation|Children|Comedy   2706    3.5
## 8660                                    Action|Adventure|Sci-Fi   2706    3.5
## 8661                           Action|Adventure|Sci-Fi|Thriller   2716    5.0
## 8662                    Action|Adventure|Drama|Mystery|Thriller   2680    1.0
## 8663                                             Comedy|Romance   2706    4.0
## 8664                             Action|Romance|Sci-Fi|Thriller   2706    3.5
## 8665                   Action|Adventure|Fantasy|Horror|Thriller   2706    2.5
## 8666                                                      Drama   2716    4.0
## 8667        Adventure|Animation|Children|Comedy|Musical|Romance   2716    5.0
## 8668                                                Crime|Drama   2716    4.5
## 8669                Adventure|Animation|Children|Comedy|Musical   2716    5.0
## 8670                                 Adventure|Children|Fantasy   2716    5.0
## 8671                                               Comedy|Drama   2716    5.0
## 8672                                     Adventure|Drama|Sci-Fi   2706    4.0
## 8673                                                Documentary   2680    4.0
## 8674                               Action|Crime|Sci-Fi|Thriller   2545    2.5
## 8675                                    Action|Adventure|Sci-Fi   2727    5.0
## 8676                                  Action|Adventure|Thriller   2727    4.0
## 8677                                   Adventure|Comedy|Western   2727    5.0
## 8678                                              Action|Sci-Fi   2727    4.0
## 8679                                   Comedy|Drama|Romance|War   2727    4.5
## 8680                        Adventure|Animation|Children|Comedy   2727    4.5
## 8681                                                     Comedy   2218    1.0
## 8682                                      Drama|Sci-Fi|Thriller   2732    3.5
## 8683                                 Adventure|Mystery|Thriller   2732    3.5
## 8684                                       Crime|Drama|Thriller   2732    4.0
## 8685                                       Comedy|Drama|Fantasy   2753    5.0
## 8686                                      Drama|Fantasy|Romance   2753    5.0
## 8687                            Animation|Children|Comedy|Crime   2732    5.0
## 8688                                   Comedy|Drama|Romance|War   2753    5.0
## 8689                  Adventure|Animation|Children|Comedy|Drama   2732    4.5
## 8690                                     Action|Adventure|Drama   2753    5.0
## 8691                          Animation|Children|Comedy|Fantasy   2753    4.5
## 8692                                       Action|Comedy|Sci-Fi   2753    4.5
## 8693                                   Comedy|Drama|Romance|War   2753    3.5
## 8694                                                     Comedy   2545    0.5
## 8695                                    Children|Comedy|Fantasy   2753    4.5
## 8696                Adventure|Animation|Children|Comedy|Fantasy   2789    5.0
## 8697                                         Comedy|Documentary   2237    4.0
## 8698                                            Musical|Romance   2806    5.0
## 8699                             Drama|Mystery|Romance|Thriller   2806    4.5
## 8700                                             Horror|Mystery   2806    4.5
## 8701                                             Drama|Thriller   2806    4.5
## 8702                                               Drama|Sci-Fi   2806    5.0
## 8703                                    Action|Adventure|Sci-Fi   2492    3.5
## 8704                              Action|Adventure|Drama|Sci-Fi   2492    1.0
## 8705                                Action|Crime|Drama|Thriller   2820    1.0
## 8706                                     Comedy|Musical|Romance   2820    2.0
## 8707                                          Action|Comedy|War   2820    2.0
## 8708                                           Action|Drama|War   2820    3.5
## 8709                          Animation|Children|Comedy|Fantasy   2820    2.5
## 8710                                       Action|Comedy|Sci-Fi   2820    3.0
## 8711                           Action|Adventure|Sci-Fi|Thriller   2820    3.0
## 8712                Adventure|Animation|Children|Comedy|Musical   2820    3.0
## 8713                                              Comedy|Horror   2853    2.5
## 8714                                           Action|Drama|War   2862    4.0
## 8715                                      Drama|Fantasy|Romance   2853    5.0
## 8716                                           Mystery|Thriller   2853    5.0
## 8717                                Action|Crime|Drama|Thriller   2853    5.0
## 8718                                                Crime|Drama   2853    3.5
## 8719                                          Film-Noir|Mystery   2853    4.5
## 8720                                     Adventure|Comedy|Drama   2853    4.0
## 8721                                      Crime|Horror|Thriller   2853    4.0
## 8722                                   Comedy|Drama|Romance|War   2853    5.0
## 8723                                     Action|Adventure|Drama   2853    3.0
## 8724                                                      Drama   2853    4.0
## 8725                                                      Drama   2853    5.0
## 8726                                                     Comedy   2853    4.0
## 8727                             Action|Adventure|Drama|Fantasy   2862    4.5
## 8728                           Adventure|Drama|Mystery|Thriller   2853    4.0
## 8729                                    Action|Adventure|Sci-Fi   2862    5.0
## 8730                                                Crime|Drama   2853    3.5
## 8731                                      Comedy|Crime|Thriller   2862    3.0
## 8732                                     Action|Sci-Fi|Thriller   2862    3.5
## 8733                               Action|Comedy|Fantasy|Sci-Fi   2862    3.5
## 8734                                                  Drama|War   2862    4.5
## 8735                 Action|Adventure|Animation|Children|Comedy   2862    5.0
## 8736                Adventure|Animation|Children|Comedy|Fantasy   2862    4.5
## 8737                                              Drama|Romance   2853    4.0
## 8738                                                Documentary   2862    4.0
## 8739                                                     Comedy   2862    3.5
## 8740                                               Comedy|Drama   2853    3.5
## 8741                                            Horror|Thriller   2862    4.0
## 8742                                                Crime|Drama   2853    4.0
## 8743                                       Comedy|Drama|Romance   2853    4.5
## 8744                            Action|Adventure|Comedy|Fantasy   2853    4.0
## 8745                             Adventure|Comedy|Drama|Romance   2862    3.0
## 8746                                         Drama|Thriller|War   2862    2.0
## 8747                                Action|Crime|Drama|Thriller   2862    3.0
## 8748                                                      Drama   2862    4.0
## 8749                                               Comedy|Drama   2853    4.5
## 8750                                                     Comedy   2853    4.5
## 8751                                             Drama|Thriller   2853    4.0
## 8752                                            Sci-Fi|Thriller   2853    3.5
## 8753                                                      Drama   2853    4.0
## 8754                                                      Drama   2853    4.0
## 8755                                             Comedy|Fantasy   2853    4.0
## 8756                                             Drama|Thriller   2853    3.0
## 8757                                    Action|Adventure|Comedy   2853    4.0
## 8758                                                Documentary   2853    4.0
## 8759                              Crime|Horror|Mystery|Thriller   2853    3.0
## 8760                                            Horror|Thriller   2853    4.0
## 8761                                Action|Adventure|Sci-Fi|War   2853    3.5
## 8762                                             Comedy|Romance   2853    3.5
## 8763  Adventure|Animation|Children|Comedy|Crime|Fantasy|Mystery   2853    4.0
## 8764                   Adventure|Children|Comedy|Fantasy|Sci-Fi   2853    3.5
## 8765                                                     Comedy   2853    4.0
## 8766                                             Comedy|Romance   2853    3.5
## 8767                                                   Thriller   2853    4.0
## 8768                               Action|Crime|Sci-Fi|Thriller   2513    4.0
## 8769                               Drama|Fantasy|Mystery|Sci-Fi   2853    3.5
## 8770                                       Comedy|Drama|Romance   2853    3.5
## 8771                        Adventure|Animation|Children|Comedy   2853    4.0
## 8772                                            Sci-Fi|Thriller   2513    4.0
## 8773                                              Action|Comedy   2853    4.5
## 8774                                                      Drama   2853    3.5
## 8775                                              Drama|Romance   2853    3.5
## 8776                                                      Drama   2853    3.5
## 8777                                                      Drama   2716    4.5
## 8778                                            Sci-Fi|Thriller   2716    5.0
## 8779                                             Comedy|Romance   2716    4.0
## 8780                                                     Comedy   2853    3.0
## 8781                                Action|Crime|Drama|Thriller   2513    4.5
## 8782                            Adventure|Children|Comedy|Drama   2853    3.0
## 8783                                            Children|Comedy   2853    3.0
## 8784                                                Documentary   2853    3.0
## 8785                              Action|Crime|Fantasy|Thriller   2218    4.0
## 8786                                     Action|Horror|Thriller   2218    4.0
## 8787                                       Action|Crime|Fantasy   2218    3.0
## 8788                           Adventure|Children|Drama|Fantasy   2218    4.0
## 8789                                   Adventure|Comedy|Fantasy   2218    4.0
## 8790                                         Comedy|Crime|Drama   2545    0.5
## 8791                                             Comedy|Romance   2545    0.5
## 8792                                                Documentary   2545    0.5
## 8793                                Action|Crime|Drama|Thriller   2545    0.5
## 8794                                     Adventure|Drama|Sci-Fi   2545    2.5
## 8795                                                  Drama|War   2218    4.0
## 8796                                                      Drama   2218    3.5
## 8797                              Action|Adventure|Drama|Sci-Fi   2218    2.0
## 8798                                       Action|Comedy|Sci-Fi   2218    3.5
## 8799                               Action|Comedy|Fantasy|Sci-Fi   2218    4.0
## 8800                   Animation|Comedy|Fantasy|Musical|Romance   2218    4.0
## 8801                                                     Comedy   2218    4.0
## 8802                                    Action|Romance|Thriller   2218    3.0
## 8803                                        Crime|Drama|Fantasy   2218    4.0
## 8804                                       Comedy|Drama|Fantasy   2612    4.0
## 8805                                         Comedy|Documentary   2680    4.0
## 8806                                       Comedy|Drama|Romance   2820    2.5
## 8807                                           Action|Adventure   2820    4.0
## 8808                                        Action|Comedy|Crime   2643    3.5
## 8809                                            Children|Comedy   2513    3.5
## 8810                                    Action|Adventure|Comedy   2513    4.0
## 8811                   Action|Adventure|Animation|Drama|Fantasy   2513    4.0
## 8812                                                      Drama   2513    4.0
## 8813                          Animation|Children|Comedy|Fantasy   2643    4.0
## 8814                                           Action|Adventure   2643    4.5
## 8815                                      Action|Crime|Thriller   2643    4.0
## 8816                                 Adventure|Fantasy|Thriller   2643    4.0
## 8817                                            Sci-Fi|Thriller   2643    4.0
## 8818                                      Action|Crime|Thriller   2513    3.5
## 8819                   Animation|Comedy|Fantasy|Musical|Romance   2523    3.5
## 8820                                       Action|Crime|Fantasy   2523    2.5
## 8821                              Crime|Horror|Mystery|Thriller   2523    4.5
## 8822                                                      Drama   2513    4.0
## 8823                                              Action|Comedy   2513    3.0
## 8824                                      Drama|Musical|Romance   2218    4.0
## 8825                               Crime|Drama|Mystery|Thriller   2643    3.5
## 8826                                       Comedy|Drama|Romance   2536    4.0
## 8827                        Action|Crime|Drama|Mystery|Thriller   2634    4.0
## 8828                                                     Comedy   2853    3.5
## 8829                                                      Drama   2862    4.5
## 8830                                      Crime|Drama|Film-Noir   2862    3.5
## 8831                                        Adventure|Drama|War   2862    4.0
## 8832                                                      Drama   2862    4.0
## 8833                                           Action|Drama|War   2862    4.0
## 8834                  Action|Adventure|Animation|Fantasy|Sci-Fi   2643    4.5
## 8835                              Drama|Horror|Mystery|Thriller   2820    2.5
## 8836                                      Drama|Musical|Romance   2820    1.5
## 8837                        Adventure|Animation|Children|Comedy   2820    3.0
## 8838                                                     Comedy   2820    2.0
## 8839                                 Adventure|Children|Fantasy   2643    4.0
## 8840                                      Comedy|Crime|Thriller   2571    4.5
## 8841                                                     Comedy   2571    2.5
## 8842                                     Adventure|Comedy|Crime   2571    5.0
## 8843                                                     Horror   2852    3.5
## 8844                                                Documentary   2517    3.5
## 8845                        Adventure|Animation|Children|Comedy   2402    3.0
## 8846                                      Children|Drama|Sci-Fi   2402    2.5
## 8847                                              Action|Comedy   2402    3.0
## 8848                                    Fantasy|Sci-Fi|Thriller   2402    3.5
## 8849                 Adventure|Animation|Children|Drama|Musical   2402    3.0
## 8850                                       Crime|Drama|Thriller   2402    4.0
## 8851                                            Sci-Fi|Thriller   2402    2.5
## 8852                             Adventure|Comedy|Drama|Musical   2402    2.5
## 8853                                                     Comedy   2402    3.0
## 8854                                  Action|Comedy|Crime|Drama   2402    4.0
## 8855                                                      Drama   2402    3.5
## 8856                                 Adventure|Children|Fantasy   2402    2.5
## 8857                                     Action|Adventure|Drama   2402    3.0
## 8858                                   Comedy|Drama|Romance|War   2402    4.5
## 8859                                         Comedy|Crime|Drama   2402    4.0
## 8860                                          Action|Sci-Fi|War   2402    4.0
## 8861                                  Action|Adventure|Thriller   2402    2.5
## 8862                                           Adventure|Comedy   2402    3.5
## 8863                                      Drama|Mystery|Romance   2402    4.0
## 8864                                    Action|Adventure|Sci-Fi   2402    2.0
## 8865                                          Action|Comedy|War   2402    3.0
## 8866                                           Action|Adventure   2402    2.0
## 8867                           Crime|Film-Noir|Mystery|Thriller   2853    3.0
## 8868                                             Drama|Thriller   2402    2.5
## 8869                                                   Thriller   2134    4.0
## 8870                                                     Comedy   2536    4.0
## 8871                                       Crime|Drama|Thriller   2315    4.5
## 8872                                       Action|Drama|Western   2853    2.0
## 8873                                                 Comedy|War   2862    4.0
## 8874                                               Action|Drama   2862    4.5
## 8875                                 Adventure|Children|Fantasy   2218    4.5
## 8876                                    Action|Adventure|Sci-Fi   2517    4.0
## 8877                                    Horror|Mystery|Thriller   2429    3.0
## 8878                                    Action|Adventure|Comedy   2429    4.0
## 8879                              Action|Crime|Fantasy|Thriller   2429    3.0
## 8880                                              Drama|Romance   2429    3.5
## 8881                                      Drama|Sci-Fi|Thriller   2429    2.5
## 8882                           Action|Adventure|Sci-Fi|Thriller   2429    3.5
## 8883                                           Adventure|Comedy   2429    3.0
## 8884                                             Comedy|Romance   2429    2.0
## 8885                                                      Drama   2429    3.0
## 8886                                             Comedy|Romance   2853    3.5
## 8887                                      Comedy|Fantasy|Sci-Fi   2429    3.5
## 8888                                             Comedy|Romance   2429    3.5
## 8889                                       Comedy|Drama|Romance   2429    3.0
## 8890                    Action|Adventure|Comedy|Fantasy|Mystery   2429    2.5
## 8891                                                      Drama   2429    2.0
## 8892                                         Action|Crime|Drama   2429    3.0
## 8893                                      Drama|Musical|Romance   2429    3.5
## 8894                                       Comedy|Drama|Romance   2429    3.5
## 8895                                       Comedy|Drama|Romance   2429    4.5
## 8896                                                     Comedy   2429    3.0
## 8897                                    Action|Adventure|Sci-Fi   2429    3.0
## 8898                                                     Comedy   2429    3.0
## 8899                                               Comedy|Drama   2658    4.0
## 8900                                                      Drama   2853    4.0
## 8901                                             Comedy|Romance   2852    2.5
## 8902                             Action|Adventure|Drama|Romance   2853    3.5
## 8903                                            Children|Comedy   2853    3.0
## 8904                             Action|Adventure|Comedy|Sci-Fi   2853    2.5
## 8905                                             Comedy|Western   2853    2.0
## 8906                                            Children|Comedy   2853    2.0
## 8907                                                      Drama   2853    3.5
## 8908                                                     Comedy   2853    3.0
## 8909                                    Horror|Mystery|Thriller   2853    2.0
## 8910                                               Comedy|Drama   2853    3.5
## 8911                                                     Comedy   2853    3.5
## 8912                                    Action|Romance|Thriller   2116    3.0
## 8913                                              Drama|Romance   2116    4.0
## 8914                              Action|Horror|Sci-Fi|Thriller   2853    3.5
## 8915              Crime|Drama|Fantasy|Film-Noir|Mystery|Romance   2116    4.5
## 8916                                  Action|Adventure|Thriller   2853    3.0
## 8917                                                     Comedy   2853    3.0
## 8918                                         Comedy|Crime|Drama   2167    4.0
## 8919                                      Action|Drama|Thriller   2167    3.5
## 8920                          Animation|Children|Comedy|Fantasy   2167    4.0
## 8921                                       Comedy|Drama|Romance   2167    3.0
## 8922                                               Comedy|Crime   2853    4.5
## 8923                                                      Drama   2853    4.5
## 8924                                      Action|Crime|Thriller   2853    4.5
## 8925                                                     Comedy   2853    4.5
## 8926                                                     Comedy   2853    4.5
## 8927                                 Adventure|Mystery|Thriller   2315    4.5
## 8928                                                      Drama   2315    4.5
## 8929                              Action|Horror|Sci-Fi|Thriller   2853    4.0
## 8930                                       Comedy|Drama|Romance   2714    2.5
## 8931                                                     Comedy   2714    3.0
## 8932                                                Documentary   2714    4.0
## 8933                                       Comedy|Drama|Romance   2714    3.0
## 8934                             Action|Comedy|Mystery|Thriller   2714    3.5
## 8935                                     Adventure|Comedy|Crime   2714    3.0
## 8936                                                      Drama   2714    3.0
## 8937                                     Drama|Mystery|Thriller   2714    3.0
## 8938                                           Action|Drama|War   2714    2.5
## 8939                                            Action|Thriller   2714    3.5
## 8940                                                Documentary   2315    4.5
## 8941                                            Children|Comedy   2315    4.0
## 8942                       Action|Crime|Mystery|Sci-Fi|Thriller   2315    2.5
## 8943                                           Action|Drama|War   2315    4.0
## 8944                                    Action|Adventure|Sci-Fi   2315    4.0
## 8945                           Action|Adventure|Sci-Fi|Thriller   2315    4.0
## 8946                                              Drama|Fantasy   2315    3.5
## 8947                                                      Drama   2315    4.0
## 8948                                             Drama|Thriller   2315    1.0
## 8949                                 Action|Adventure|Drama|War   2315    1.0
## 8950                                              Drama|Romance   2536    4.0
## 8951                                       Crime|Drama|Thriller   2515    4.5
## 8952                                  Action|Adventure|Thriller   2429    2.0
## 8953                                               Comedy|Drama   2429    3.5
## 8954                                             Drama|Thriller   2841    4.5
## 8955                                       Comedy|Drama|Romance   2134    4.0
## 8956                                       Crime|Drama|Thriller   2658    4.0
## 8957                                     Drama|Mystery|Thriller   2658    3.5
## 8958                                               Comedy|Drama   2325    3.5
## 8959                                             Comedy|Fantasy   2325    2.5
## 8960                                 Adventure|Children|Fantasy   2325    3.0
## 8961                                             Comedy|Musical   2325    3.5
## 8962                                              Horror|Sci-Fi   2325    3.0
## 8963                                   Action|Drama|Romance|War   2853    3.5
## 8964                                       Crime|Drama|Thriller   2853    4.0
## 8965                                       Crime|Drama|Thriller   2492    2.5
## 8966                                            Action|Thriller   2643    4.0
## 8967                                  Action|Adventure|Thriller   2853    3.5
## 8968                                     Drama|Fantasy|Thriller   2853    3.0
## 8969                                                      Drama   2853    4.0
## 8970                                             Drama|Thriller   2853    3.5
## 8971                                    Adventure|Comedy|Sci-Fi   2643    3.5
## 8972                                                      Drama   2315    4.5
## 8973                                                      Drama   2455    4.5
## 8974                                    Action|Adventure|Sci-Fi   2505    3.0
## 8975                                             Comedy|Romance   2505    3.5
## 8976                         Adventure|Animation|Fantasy|Sci-Fi   2643    2.5
## 8977                                                     Comedy   2853    3.0
## 8978                                                      Drama   2853    3.0
## 8979                                                     Comedy   2513    4.0
## 8980                  Adventure|Children|Comedy|Fantasy|Musical   2513    4.0
## 8981                                       Action|Drama|Western   2513    4.0
## 8982                            Action|Adventure|Comedy|Fantasy   2643    3.5
## 8983                                       Action|Drama|Romance   2513    4.0
## 8984                                       Action|Horror|Sci-Fi   2643    1.5
## 8985                                        Action|Comedy|Crime   2429    4.0
## 8986                              Action|Horror|Sci-Fi|Thriller   2853    2.5
## 8987                                                     Comedy   2643    3.5
## 8988                                           Animation|Sci-Fi   2513    4.5
## 8989                                    Action|Adventure|Sci-Fi   2513    5.0
## 8990                                                Crime|Drama   2513    5.0
## 8991                                              Drama|Romance   2536    4.0
## 8992                            Animation|Children|Comedy|Crime   2218    3.0
## 8993                                 Adventure|Animation|Comedy   2218    3.0
## 8994                                                     Comedy   2162    3.0
## 8995                                              Drama|Romance   2162    4.5
## 8996                                   Action|Adventure|Fantasy   2218    3.0
## 8997                                                      Drama   2218    1.5
## 8998                                                     Comedy   2218    4.5
## 8999                                           Action|Drama|War   2218    3.5
## 9000                                   Adventure|Comedy|Fantasy   2218    4.5
## 9001                                  Action|Comedy|Crime|Drama   2218    3.5
## 9002                                               Comedy|Drama   2218    3.0
## 9003                                                     Comedy   2517    4.0
## 9004                                             Comedy|Romance   2853    3.0
## 9005                                             Comedy|Romance   2517    3.5
## 9006                                            Horror|Thriller   2517    3.0
## 9007                                           Animation|Comedy   2853    3.5
## 9008                                                      Drama   2853    4.0
## 9009                               Adventure|Drama|Fantasy|IMAX   2536    3.0
## 9010                                                Documentary   2536    4.0
## 9011                                                      Drama   2691    3.5
## 9012                                               Comedy|Crime   2429    1.5
## 9013                                             Drama|Thriller   2643    3.5
## 9014                                         Action|Fantasy|War   2727    5.0
## 9015                                             Comedy|Romance   2727    3.5
## 9016                                       Crime|Drama|Thriller   2727    3.5
## 9017                                                     Comedy   2727    5.0
## 9018                                     Crime|Mystery|Thriller   2727    4.0
## 9019                                    Action|Adventure|Sci-Fi   2727    4.5
## 9020                            Action|Adventure|Comedy|Fantasy   2727    4.0
## 9021                                                Crime|Drama   2727    5.0
## 9022                                      Children|Drama|Sci-Fi   2727    4.0
## 9023                                Action|Comedy|Crime|Fantasy   2727    5.0
## 9024                                            Children|Comedy   2727    4.5
## 9025                           Action|Adventure|Sci-Fi|Thriller   2727    4.5
## 9026                                       Crime|Drama|Thriller   2515    4.0
## 9027                                   Drama|Film-Noir|Thriller   2853    4.0
## 9028                                      Comedy|Sci-Fi|Western   2204    3.0
## 9029                                            Sci-Fi|Thriller   2204    3.0
## 9030                           Action|Adventure|Sci-Fi|Thriller   2204    4.0
## 9031                                                     Comedy   2204    5.0
## 9032                                              Drama|Romance   2204    3.0
## 9033                                     Adventure|Comedy|Drama   2204    3.0
## 9034                                 Adventure|Children|Fantasy   2204    2.5
## 9035                                        Action|Comedy|Crime   2204    1.0
## 9036                           Action|Adventure|Sci-Fi|Thriller   2204    4.0
## 9037                                              Drama|Romance   2204    1.0
## 9038                                               Comedy|Drama   2204    2.0
## 9039                                 Action|Adventure|Drama|War   2204    3.0
## 9040                                           Comedy|Drama|War   2204    2.0
## 9041                                                      Drama   2204    3.0
## 9042                                                     Comedy   2204    4.0
## 9043                                             Drama|Thriller   2204    2.0
## 9044                                Action|Crime|Drama|Thriller   2204    4.0
## 9045                                    Action|Adventure|Sci-Fi   2204    4.0
## 9046                            Action|Adventure|Fantasy|Sci-Fi   2204    2.5
## 9047                                             Comedy|Romance   2204    4.0
## 9048                                            Action|Thriller   2204    3.0
## 9049                                      Crime|Drama|Film-Noir   2204    4.0
## 9050                                     Action|Sci-Fi|Thriller   2204    2.0
## 9051                        Adventure|Animation|Children|Comedy   2204    3.0
## 9052                                                      Drama   2204    3.0
## 9053                                   Action|Adventure|Western   2204    4.0
## 9054                            Action|Adventure|Fantasy|Sci-Fi   2204    2.5
## 9055                                                      Drama   2204    4.0
## 9056                                    Action|Adventure|Sci-Fi   2204    3.0
## 9057                                     Action|Horror|Thriller   2204    5.0
## 9058                                      Comedy|Drama|Thriller   2204    2.5
## 9059                                               Comedy|Drama   2204    4.0
## 9060                                                   Thriller   2204    4.0
## 9061                            Action|Adventure|Crime|Thriller   2122    2.5
## 9062                                                     Comedy   2122    1.5
## 9063                       Adventure|Animation|Children|Musical   2122    4.5
## 9064                                              Drama|Romance   2131    4.0
## 9065                            Action|Adventure|Comedy|Fantasy   2131    4.0
## 9066                                            Action|Thriller   2131    4.5
## 9067                                  Action|Adventure|Thriller   2131    4.0
## 9068                                                     Comedy   2168    1.5
## 9069                                               Comedy|Crime   2168    2.5
## 9070                                  Action|Adventure|Thriller   2168    2.5
## 9071                              Crime|Horror|Mystery|Thriller   2168    3.0
## 9072                                    Action|Adventure|Sci-Fi   2168    5.0
## 9073                 Adventure|Animation|Children|Drama|Musical   2168    3.0
## 9074                                                     Comedy   2168    3.0
## 9075                            Children|Comedy|Fantasy|Musical   2168    3.0
## 9076                                      Action|Crime|Thriller   2168    3.5
## 9077                                       Crime|Drama|Thriller   2168    3.5
## 9078                               Crime|Drama|Romance|Thriller   2168    4.0
## 9079                                    Action|Adventure|Comedy   2168    3.0
## 9080                Adventure|Animation|Children|Comedy|Fantasy   2168    3.0
## 9081                                                  Drama|War   2168    4.0
## 9082                          Action|Adventure|Animation|Sci-Fi   2168    3.5
## 9083                                         Action|Crime|Drama   2168    4.0
## 9084                                              Drama|Fantasy   2168    3.5
## 9085                                      Drama|Horror|Thriller   2168    2.5
## 9086                                       Comedy|Drama|Romance   2168    4.5
## 9087                               Comedy|Drama|Fantasy|Romance   2168    4.0
## 9088                                      Comedy|Drama|Thriller   2168    3.0
## 9089                                                     Horror   2168    3.0
## 9090                                                     Horror   2168    5.0
## 9091                                   Action|Drama|Romance|War   2168    3.5
## 9092                                                      Drama   2168    4.5
## 9093                                 Adventure|Children|Fantasy   2168    3.0
## 9094                                             Comedy|Romance   2168    3.0
## 9095                             Fantasy|Horror|Mystery|Romance   2168    3.5
## 9096                                     Adventure|Drama|Sci-Fi   2168    4.0
## 9097                                                      Drama   2168    3.5
## 9098                                                      Drama   2326    3.5
## 9099                              Comedy|Crime|Mystery|Thriller   2326    5.0
## 9100                                                     Comedy   2326    3.0
## 9101                                              Comedy|Sci-Fi   2326    4.0
## 9102                                                     Comedy   2326    5.0
## 9103                                             Comedy|Romance   2326    2.0
## 9104                                                      Drama   2326    4.5
## 9105                                                     Comedy   2326    3.0
## 9106                                    Action|Adventure|Comedy   2326    4.0
## 9107                                        Action|Crime|Sci-Fi   2326    5.0
## 9108                                              Action|Sci-Fi   2326    2.5
## 9109                               Comedy|Drama|Fantasy|Romance   2326    4.0
## 9110                                             Crime|Thriller   2369    3.5
## 9111                                    Action|Adventure|Sci-Fi   2369    3.5
## 9112                            Action|Adventure|Comedy|Fantasy   2369    4.5
## 9113                                           Action|Drama|War   2369    5.0
## 9114                                  Animation|Children|Comedy   2407    4.0
## 9115                                         Action|Fantasy|War   2407    3.5
## 9116                                      Action|Comedy|Western   2407    4.5
## 9117                                                     Comedy   2407    4.0
## 9118                                            Sci-Fi|Thriller   2407    4.0
## 9119                                                     Comedy   2407    4.0
## 9120                                    Adventure|Comedy|Sci-Fi   2414    4.0
## 9121                                   Action|Adventure|Fantasy   2414    5.0
## 9122                              Drama|Horror|Mystery|Thriller   2414    4.0
## 9123                                             Drama|Thriller   2414    5.0
## 9124                  Adventure|Drama|Film-Noir|Sci-Fi|Thriller   2414    4.0
## 9125                                              Action|Horror   2414    4.0
## 9126                            Action|Adventure|Comedy|Musical   2414    3.5
## 9127                                      Drama|Fantasy|Romance   2414    4.0
## 9128                                           Action|Drama|War   2414    1.0
## 9129                                         Action|Crime|Drama   2414    1.0
## 9130                                       Action|Drama|Romance   2414    0.5
## 9131                               Comedy|Drama|Fantasy|Romance   2414    0.5
## 9132                                               Comedy|Crime   2414    4.0
## 9133                                                     Comedy   2414    4.0
## 9134                                            Action|Thriller   2414    5.0
## 9135                Adventure|Animation|Children|Comedy|Fantasy   2407    3.5
## 9136                                    Adventure|Comedy|Sci-Fi   2407    4.5
## 9137                                               Comedy|Drama   2407    3.5
## 9138                                Action|Comedy|Crime|Fantasy   2407    3.0
## 9139                                               Comedy|Drama   2407    4.5
## 9140                                               Comedy|Crime   2435    4.5
## 9141                               Comedy|Drama|Fantasy|Romance   2477    5.0
## 9142                                                     Horror   2477    2.0
## 9143                                         Action|Fantasy|War   2496    5.0
## 9144                          Action|Adventure|Mystery|Thriller   2496    5.0
## 9145                             Children|Comedy|Fantasy|Sci-Fi   2496    5.0
## 9146                                           Mystery|Thriller   2496    3.0
## 9147                                             Crime|Thriller   2496    4.5
## 9148                                              Horror|Sci-Fi   2496    4.0
## 9149                                       Comedy|Drama|Romance   2496    3.5
## 9150                                           Mystery|Thriller   2496    4.5
## 9151                                   Action|Drama|Romance|War   2477    4.0
## 9152                                              Drama|Romance   2510    4.0
## 9153                                Action|Adventure|Sci-Fi|War   2510    3.0
## 9154                                                Crime|Drama   2510    4.0
## 9155                                                      Drama   2510    3.0
## 9156                                            Action|Thriller   2510    3.5
## 9157                                                      Drama   2510    3.5
## 9158                             Children|Comedy|Fantasy|Sci-Fi   2574    3.0
## 9159                                                      Drama   2574    5.0
## 9160                                               Comedy|Drama   2574    4.5
## 9161                Adventure|Animation|Children|Comedy|Fantasy   2574    4.0
## 9162                                     Action|Sci-Fi|Thriller   2574    5.0
## 9163                             Action|Adventure|Drama|Fantasy   2574    4.0
## 9164                                   Action|Adventure|Fantasy   2574    5.0
## 9165                                            Sci-Fi|Thriller   2574    4.0
## 9166                                       Comedy|Drama|Romance   2574    3.0
## 9167                                         Action|Crime|Drama   2574    4.5
## 9168                                             Comedy|Romance   2593    3.0
## 9169                                     Drama|Mystery|Thriller   2584    5.0
## 9170                                                     Comedy   2584    2.0
## 9171                Adventure|Animation|Children|Comedy|Fantasy   2593    2.0
## 9172                                                    Romance   2584    4.5
## 9173                                 Action|Adventure|Drama|War   2593    4.0
## 9174                              Action|Horror|Sci-Fi|Thriller   2593    4.0
## 9175                                      Drama|Fantasy|Musical   2584    4.0
## 9176                                             Comedy|Fantasy   2584    4.5
## 9177                                       Comedy|Drama|Romance   2584    4.0
## 9178                                      Comedy|Drama|Thriller   2593    4.0
## 9179                                             Comedy|Romance   2584    4.0
## 9180                            Action|Adventure|Comedy|Fantasy   2593    5.0
## 9181                              Children|Comedy|Drama|Fantasy   2584    5.0
## 9182                                   Adventure|Comedy|Romance   2593    4.0
## 9183                                              Comedy|Horror   2593    4.5
## 9184                                              Action|Comedy   2593    4.0
## 9185                                                     Comedy   2593    4.0
## 9186                        Action|Comedy|Fantasy|Horror|Sci-Fi   2593    5.0
## 9187                                              Comedy|Horror   2593    4.0
## 9188                                                     Comedy   2593    4.0
## 9189                                                     Horror   2584    3.0
## 9190                                                  Drama|War   2584    3.0
## 9191                                            Action|Thriller   2584    4.0
## 9192                                               Comedy|Drama   2584    3.0
## 9193                                       Comedy|Drama|Romance   2584    4.0
## 9194                                                Crime|Drama   2584    3.5
## 9195                                                      Drama   2627    5.0
## 9196                                            Action|Thriller   2627    1.5
## 9197                                                      Drama   2627    3.5
## 9198                                     Adventure|Drama|Sci-Fi   2627    2.5
## 9199                                                      Drama   2627    4.5
## 9200                                            Action|Thriller   2627    4.0
## 9201                                       Action|Horror|Sci-Fi   2627    3.0
## 9202                                                      Drama   2627    4.5
## 9203                                           Children|Musical   2627    4.0
## 9204                                       Action|Drama|Romance   2168    4.0
## 9205                            Action|Adventure|Sci-Fi|Western   2168    3.5
## 9206                                             Comedy|Romance   2168    2.5
## 9207                                  Action|Adventure|Thriller   2686    4.0
## 9208                                               Comedy|Crime   2686    5.0
## 9209                                              Action|Horror   2686    5.0
## 9210                                           Action|Adventure   2686    4.5
## 9211                                                      Drama   2686    3.5
## 9212                Adventure|Animation|Children|Comedy|Musical   2686    4.0
## 9213                                  Action|Adventure|Thriller   2686    3.0
## 9214                                      Action|Drama|Thriller   2686    3.5
## 9215                                              Drama|Fantasy   2686    4.0
## 9216                                    Action|Adventure|Sci-Fi   2686    2.5
## 9217                            Action|Adventure|Comedy|Romance   2686    3.5
## 9218                                      Drama|Sci-Fi|Thriller   2686    4.5
## 9219                                                     Comedy   2686    3.5
## 9220                                                     Comedy   2686    1.5
## 9221                                       Crime|Drama|Thriller   2686    3.5
## 9222                                 Adventure|Fantasy|Thriller   2686    3.0
## 9223                                       Comedy|Drama|Romance   2711    2.5
## 9224                                                      Drama   2711    5.0
## 9225                                    Action|Adventure|Comedy   2711    2.5
## 9226                                                     Comedy   2711    4.0
## 9227                                        Crime|Drama|Romance   2711    4.0
## 9228                   Action|Animation|Children|Comedy|Musical   2711    4.0
## 9229                   Adventure|Animation|Drama|Fantasy|Sci-Fi   2711    4.0
## 9230                       Adventure|Animation|Children|Fantasy   2711    4.0
## 9231                                     Crime|Mystery|Thriller   2711    4.5
## 9232                            Animation|Children|Comedy|Crime   2711    2.0
## 9233                                            Action|Thriller   2711    3.5
## 9234                                                Crime|Drama   2711    5.0
## 9235                                   Action|Adventure|Fantasy   2711    4.5
## 9236                                 Comedy|Crime|Drama|Musical   2711    4.0
## 9237                                                     Comedy   2736    2.5
## 9238                                       Action|Horror|Sci-Fi   2736    2.5
## 9239                                              Drama|Romance   2785    4.0
## 9240                                    Adventure|Comedy|Sci-Fi   2785    3.5
## 9241                                           Action|Adventure   2785    4.0
## 9242                                     Drama|Fantasy|Thriller   2793    4.0
## 9243                                  Action|Adventure|Thriller   2793    4.0
## 9244                                                      Drama   2802    2.5
## 9245                       Adventure|Animation|Children|Fantasy   2793    4.0
## 9246                                                      Drama   2793    4.5
## 9247                 Adventure|Animation|Fantasy|Romance|Sci-Fi   2793    4.0
## 9248                                         Crime|Thriller|War   2793    4.5
## 9249                                         Action|Crime|Drama   2802    4.5
## 9250                                                      Drama   2802    4.5
## 9251                                          Drama|Romance|War   2802    4.5
## 9252                                                  Drama|War   2802    4.5
## 9253                                                  Drama|War   2802    4.5
## 9254                                     Drama|Mystery|Thriller   2802    5.0
## 9255                           Action|Adventure|Sci-Fi|Thriller   2802    4.0
## 9256                                      Children|Drama|Sci-Fi   2802    4.5
## 9257                                                Crime|Drama   2802    4.0
## 9258                                       Crime|Drama|Thriller   2802    4.5
## 9259                           Action|Adventure|Sci-Fi|Thriller   2802    2.0
## 9260                              Crime|Horror|Mystery|Thriller   2802    4.5
## 9261                               Action|Comedy|Crime|Thriller   2802    3.5
## 9262                                Comedy|Crime|Drama|Thriller   2802    3.0
## 9263                                 Action|Adventure|Drama|War   2802    3.5
## 9264                                            Sci-Fi|Thriller   2793    4.5
## 9265                     Adventure|Drama|Fantasy|Mystery|Sci-Fi   2793    3.5
## 9266                                  Action|Comedy|Crime|Drama   2802    4.0
## 9267                                                      Drama   2802    3.5
## 9268                                             Drama|Thriller   2802    3.0
## 9269                                      Action|Crime|Thriller   2802    4.0
## 9270                                      Drama|Sci-Fi|Thriller   2802    3.0
## 9271                                  Action|Comedy|Crime|Drama   2842    3.5
## 9272                                                      Drama   2842    3.5
## 9273                                                   Thriller   2842    3.5
## 9274                                            Sci-Fi|Thriller   2842    4.0
## 9275                                                Crime|Drama   2842    4.0
## 9276                                             Drama|Thriller   2842    4.0
## 9277                              Action|Horror|Sci-Fi|Thriller   2842    4.5
## 9278                                            Horror|Thriller   2842    4.5
## 9279                           Crime|Film-Noir|Mystery|Thriller   2584    4.0
## 9280                                    Action|Adventure|Horror   2867    1.5
## 9281                                                Crime|Drama   2584    3.5
## 9282                            Action|Crime|Film-Noir|Thriller   2867    4.5
## 9283                 Action|Adventure|Animation|Children|Comedy   2867    4.0
## 9284                                     Action|Sci-Fi|Thriller   2867    4.5
## 9285                                                     Comedy   2867    4.0
## 9286                                                Crime|Drama   2867    5.0
## 9287                 Adventure|Animation|Children|Drama|Musical   2867    0.5
## 9288                                    Action|Adventure|Sci-Fi   2867    3.5
## 9289                         Animation|Children|Fantasy|Musical   2867    5.0
## 9290                                                     Comedy   2584    3.5
## 9291                                      Comedy|Crime|Thriller   2785    3.0
## 9292                                  Action|Adventure|Thriller   2785    3.0
## 9293                                            Sci-Fi|Thriller   2785    4.5
## 9294                                    Action|Adventure|Sci-Fi   2785    3.0
## 9295                                       Comedy|Drama|Romance   2785    4.0
## 9296                                           Adventure|Comedy   2785    4.5
## 9297                                            Action|Thriller   2558    3.5
## 9298                         Action|Comedy|Crime|Drama|Thriller   2558    5.0
## 9299                                               Action|Crime   2558    3.5
## 9300                            Action|Adventure|Sci-Fi|Western   2558    3.5
## 9301                                     Action|Adventure|Drama   2558    3.5
## 9302                                      Action|Crime|Thriller   2558    4.5
## 9303                                   Adventure|Comedy|Western   2584    3.5
## 9304                                       Action|Comedy|Sci-Fi   2558    2.5
## 9305                                    Horror|Mystery|Thriller   2558    4.0
## 9306                                     Horror|Sci-Fi|Thriller   2558    3.0
## 9307                                              Action|Comedy   2558    3.5
## 9308                                          Drama|Romance|War   2584    4.0
## 9309                                    Adventure|Drama|Western   2584    4.5
## 9310                                                      Drama   2584    4.0
## 9311                                                  Drama|War   2584    3.5
## 9312                                                  Drama|War   2584    4.0
## 9313                                              Drama|Romance   2793    1.0
## 9314                                           Adventure|Comedy   2785    0.5
## 9315                                                     Comedy   2584    3.0
## 9316                               Comedy|Drama|Fantasy|Romance   2584    3.5
## 9317                                  Action|Adventure|Thriller   2584    3.5
## 9318                                              Drama|Romance   2584    4.0
## 9319                                               Comedy|Drama   2584    4.0
## 9320                                     Comedy|Musical|Romance   2584    3.5
## 9321                                       Adventure|Comedy|War   2584    4.0
## 9322                               Adventure|Drama|Fantasy|IMAX   2584    4.0
## 9323                                   Action|Adventure|Fantasy   2736    3.0
## 9324                                                   Thriller   2736    4.0
## 9325                               Crime|Drama|Mystery|Thriller   2736    4.5
## 9326                                               Action|Crime   2736    4.5
## 9327                                     Action|Sci-Fi|Thriller   2736    4.5
## 9328                   Adventure|Animation|Drama|Fantasy|Sci-Fi   2414    4.0
## 9329                Adventure|Fantasy|Film-Noir|Sci-Fi|Thriller   2414    5.0
## 9330                          Adventure|Children|Comedy|Fantasy   2414    0.5
## 9331                                 Adventure|Children|Fantasy   2414    4.0
## 9332                          Action|Adventure|Children|Fantasy   2414    4.0
## 9333                          Adventure|Children|Comedy|Fantasy   2414    4.0
## 9334  Adventure|Animation|Children|Comedy|Crime|Fantasy|Mystery   2414    5.0
## 9335                                      Action|Fantasy|Horror   2414    3.5
## 9336                           Crime|Film-Noir|Mystery|Thriller   2414    5.0
## 9337                                     Drama|Mystery|Thriller   2414    4.5
## 9338                                  Action|Adventure|Thriller   2414    5.0
## 9339                                            Children|Comedy   2414    2.5
## 9340                                                      Drama   2414    4.5
## 9341                              Action|Horror|Sci-Fi|Thriller   2414    4.5
## 9342                                              Action|Horror   2414    4.5
## 9343                              Crime|Horror|Mystery|Thriller   2414    5.0
## 9344                                                      Drama   2584    3.5
## 9345                                                  Drama|War   2584    4.0
## 9346                                    Action|Adventure|Horror   2584    4.0
## 9347                                     Drama|Fantasy|Thriller   2558    3.0
## 9348                                           Action|Drama|War   2558    4.5
## 9349                             Adventure|Comedy|Drama|Western   2584    4.0
## 9350                                       Comedy|Drama|Romance   2584    4.0
## 9351                                                  Drama|War   2414    4.5
## 9352                                     Action|Sci-Fi|Thriller   2414    4.0
## 9353                       Action|Crime|Mystery|Sci-Fi|Thriller   2414    4.0
## 9354                                    Adventure|Comedy|Sci-Fi   2414    4.0
## 9355                           Action|Adventure|Sci-Fi|Thriller   2414    4.0
## 9356                                     Action|Sci-Fi|Thriller   2414    4.0
## 9357                                                     Sci-Fi   2414    3.0
## 9358                                       Action|Horror|Sci-Fi   2414    4.5
## 9359                                             Comedy|Musical   2853    2.5
## 9360                                                      Drama   2584    4.0
## 9361                                              Drama|Romance   2584    4.0
## 9362                                     Drama|Mystery|Thriller   2842    3.5
## 9363                                      Action|Crime|Thriller   2842    3.5
## 9364                           Crime|Film-Noir|Mystery|Thriller   2842    4.0
## 9365                Adventure|Animation|Children|Comedy|Fantasy   2842    3.0
## 9366                                               Comedy|Drama   2584    3.5
## 9367                                            Adventure|Drama   2584    4.0
## 9368                                                      Drama   2584    4.0
## 9369                                             Comedy|Romance   2584    3.5
## 9370                                               Comedy|Drama   2584    4.0
## 9371                                             Children|Drama   2584    4.0
## 9372                                       Comedy|Drama|Fantasy   2736    4.0
## 9373                    Action|Adventure|Comedy|Fantasy|Romance   2736    3.5
## 9374                                               Comedy|Drama   2584    3.5
## 9375                                                      Drama   2584    4.5
## 9376                                     Adventure|Comedy|Drama   2584    3.5
## 9377                                             Comedy|Romance   2584    4.5
## 9378                                    Action|Romance|Thriller   2802    3.5
## 9379                                               Comedy|Drama   2736    4.0
## 9380                                                      Drama   2736    3.5
## 9381                                 Adventure|Mystery|Thriller   2736    5.0
## 9382                            Action|Adventure|Sci-Fi|Western   2736    3.5
## 9383                                    Action|Adventure|Sci-Fi   2558    4.0
## 9384                              Action|Adventure|Drama|Sci-Fi   2558    3.0
## 9385                                      Action|Crime|Thriller   2558    4.5
## 9386                                              Drama|Romance   2584    4.0
## 9387                                      Drama|Musical|Romance   2584    4.0
## 9388                             Drama|Mystery|Romance|Thriller   2584    4.0
## 9389                              Drama|Romance|Sci-Fi|Thriller   2204    2.0
## 9390                                    Action|Adventure|Sci-Fi   2584    3.5
## 9391                                               Comedy|Crime   2584    4.5
## 9392                                                      Drama   2584    4.0
## 9393                                              Drama|Romance   2584    4.0
## 9394                                     Drama|Mystery|Thriller   2584    4.0
## 9395                                      Drama|Mystery|Western   2510    3.0
## 9396                                      Action|Crime|Thriller   2204    2.5
## 9397                             Crime|Mystery|Romance|Thriller   2513    4.0
## 9398                                                      Drama   2204    5.0
## 9399                               Comedy|Crime|Drama|Film-Noir   2204    4.0
## 9400                                      Action|Comedy|Fantasy   2204    3.0
## 9401                                    Action|Adventure|Sci-Fi   2204    2.0
## 9402                                          Adventure|Western   2204    5.0
## 9403                               Crime|Drama|Romance|Thriller   2204    4.0
## 9404                                               Comedy|Crime   2558    3.5
## 9405                                               Comedy|Drama   2558    2.5
## 9406                                     Adventure|Drama|Sci-Fi   2686    3.5
## 9407                                     Comedy|Horror|Thriller   2686    4.0
## 9408                        Adventure|Animation|Children|Comedy   2686    4.0
## 9409                               Action|Adventure|Crime|Drama   2686    3.5
## 9410                                    Action|Adventure|Sci-Fi   2686    3.5
## 9411                  Animation|Children|Comedy|Musical|Romance   2686    4.5
## 9412                                                     Comedy   2686    3.0
## 9413                                      Comedy|Crime|Thriller   2686    4.0
## 9414                                Action|Crime|Drama|Thriller   2686    1.5
## 9415                                                  Drama|War   2686    4.5
## 9416                                 Adventure|Mystery|Thriller   2686    4.5
## 9417                               Action|Drama|Sci-Fi|Thriller   2686    2.0
## 9418                               Action|Crime|Sci-Fi|Thriller   2686    3.5
## 9419                                    Adventure|Comedy|Sci-Fi   2686    3.0
## 9420                                                     Comedy   2686    2.5
## 9421                                                     Comedy   2686    4.0
## 9422                                               Comedy|Drama   2686    3.5
## 9423                                               Comedy|Drama   2686    3.5
## 9424                                                Crime|Drama   2686    4.5
## 9425                        Action|Crime|Horror|Sci-Fi|Thriller   2686    3.5
## 9426                                     Crime|Mystery|Thriller   2122    4.0
## 9427                                                      Drama   2122    2.5
## 9428                                              Drama|Romance   2122    3.0
## 9429                              Drama|Mystery|Sci-Fi|Thriller   2122    3.5
## 9430                                                      Drama   2122    3.5
## 9431                                      Action|Crime|Thriller   2122    3.5
## 9432                                               Comedy|Drama   2605    3.5
## 9433                                             Comedy|Western   2204    3.0
## 9434                                     Drama|Mystery|Thriller   2605    4.5
## 9435                                Comedy|Drama|Romance|Sci-Fi   2605    4.0
## 9436                                Comedy|Crime|Drama|Thriller   2122    3.5
## 9437                          Action|Adventure|Romance|Thriller   2122    2.0
## 9438                                             Comedy|Romance   2122    3.5
## 9439                                                     Comedy   2122    2.5
## 9440                                     Action|Adventure|Drama   2122    3.0
## 9441                                    Action|Adventure|Comedy   2122    2.0
## 9442                                            Horror|Thriller   2122    2.5
## 9443                                            Horror|Thriller   2122    3.5
## 9444                                       Comedy|Drama|Fantasy   2122    2.0
## 9445                                               Comedy|Drama   2122    4.0
## 9446                                     Comedy|Horror|Thriller   2122    2.5
## 9447                                  Action|Adventure|Thriller   2122    1.5
## 9448                                             Action|Mystery   2122    2.5
## 9449                                       Comedy|Drama|Romance   2122    5.0
## 9450                                    Action|Adventure|Sci-Fi   2122    2.0
## 9451                                               Comedy|Drama   2122    4.0
## 9452                                             Comedy|Romance   2122    2.0
## 9453                       Comedy|Drama|Fantasy|Horror|Thriller   2122    2.0
## 9454                                       Crime|Drama|Thriller   2510    4.5
## 9455                                                      Drama   2536    4.0
## 9456                                                     Comedy   2584    2.0
## 9457                            Action|Adventure|Fantasy|Sci-Fi   2862    3.5
## 9458                                       Comedy|Drama|Romance   2862    4.5
## 9459                               Comedy|Horror|Musical|Sci-Fi   2204    3.0
## 9460                                       Comedy|Drama|Romance   2134    3.5
## 9461                                         Action|Crime|Drama   2574    2.0
## 9462                     Action|Adventure|Comedy|Fantasy|Horror   2574    4.5
## 9463                                           Action|Adventure   2574    4.0
## 9464                                Action|Crime|Drama|Thriller   2574    4.0
## 9465                            Action|Adventure|Comedy|Fantasy   2574    3.0
## 9466                      Drama|Fantasy|Horror|Mystery|Thriller   2574    4.5
## 9467                                 Adventure|Children|Fantasy   2574    5.0
## 9468                              Action|Horror|Sci-Fi|Thriller   2574    4.5
## 9469                                Comedy|Drama|Romance|Sci-Fi   2841    3.5
## 9470                                  Action|Adventure|Thriller   2492    5.0
## 9471                             Adventure|Comedy|Drama|Romance   2574    4.0
## 9472                               Action|Comedy|Crime|Thriller   2574    4.0
## 9473                               Crime|Drama|Mystery|Thriller   2122    3.5
## 9474                                             Comedy|Romance   2204    1.5
## 9475                                                     Comedy   2574    4.0
## 9476                                                     Comedy   2574    4.0
## 9477                                       Comedy|Drama|Romance   2574    5.0
## 9478                                           Adventure|Comedy   2574    4.0
## 9479                                 Action|Adventure|Drama|War   2204    2.5
## 9480              Crime|Drama|Fantasy|Film-Noir|Mystery|Romance   2204    2.0
## 9481                                               Comedy|Drama   2853    2.5
## 9482                         Action|Comedy|Crime|Drama|Thriller   2527    5.0
## 9483                            Action|Adventure|Fantasy|Sci-Fi   2527    4.0
## 9484                                       Crime|Drama|Thriller   2605    3.5
## 9485                              Action|Horror|Sci-Fi|Thriller   2643    4.0
## 9486                                     Drama|Fantasy|Thriller   2513    4.5
## 9487                                                   Thriller   2513    4.5
## 9488                          Animation|Children|Comedy|Fantasy   2853    4.5
## 9489                                       Crime|Drama|Thriller   2643    3.0
## 9490              Action|Adventure|Crime|Drama|Mystery|Thriller   2505    5.0
## 9491                                                      Drama   2505    5.0
## 9492                                             Drama|Thriller   2505    5.0
## 9493                                        Crime|Drama|Fantasy   2505    4.5
## 9494                                    Action|Adventure|Sci-Fi   2505    3.0
## 9495                          Action|Adventure|Animation|Sci-Fi   2505    4.0
## 9496                                      Action|Crime|Thriller   2505    3.0
## 9497                                         Crime|Thriller|War   2505    4.5
## 9498                         Adventure|Crime|Drama|Thriller|War   2505    4.0
## 9499                                             Crime|Thriller   2134    2.0
## 9500                            Action|Adventure|Comedy|Fantasy   2214    3.5
## 9501                            Action|Adventure|Comedy|Fantasy   2214    3.5
## 9502                                       Action|Horror|Sci-Fi   2643    3.0
## 9503                            Action|Adventure|Comedy|Fantasy   2527    4.0
## 9504                                                      Drama   2605    4.0
## 9505                            Adventure|Drama|Sci-Fi|Thriller   2214    2.5
## 9506                                      Drama|Fantasy|Romance   2605    3.5
## 9507                                           Mystery|Thriller   2785    3.5
## 9508                                                      Drama   2785    4.0
## 9509                                                  Drama|War   2785    4.0
## 9510                                              Drama|Romance   2785    4.0
## 9511                                            Action|Children   2435    0.5
## 9512                                              Action|Sci-Fi   2435    3.0
## 9513                                       Action|Horror|Sci-Fi   2435    2.0
## 9514                              Action|Horror|Sci-Fi|Thriller   2435    4.5
## 9515                              Action|Horror|Sci-Fi|Thriller   2435    0.5
## 9516                                      Action|Drama|Thriller   2435    4.5
## 9517                                     Action|Sci-Fi|Thriller   2435    5.0
## 9518                                Action|Crime|Drama|Thriller   2435    4.5
## 9519                                                      Drama   2435    3.5
## 9520                                                      Drama   2435    3.5
## 9521                                       Crime|Drama|Thriller   2435    4.0
## 9522                                               Drama|Sci-Fi   2435    4.0
## 9523                                Crime|Drama|Sci-Fi|Thriller   2435    4.0
## 9524                                      Drama|Musical|Romance   2435    0.5
## 9525                                       Crime|Drama|Thriller   2435    4.5
## 9526                              Drama|Mystery|Sci-Fi|Thriller   2435    4.5
## 9527                                        Action|Comedy|Crime   2435    5.0
## 9528                          Action|Adventure|Children|Fantasy   2435    2.5
## 9529                                       Comedy|Drama|Romance   2435    4.0
## 9530                                                Documentary   2435    5.0
## 9531                                      Drama|Fantasy|Romance   2204    2.5
## 9532                                                     Comedy   2204    4.0
## 9533                                        Action|Crime|Sci-Fi   2435    4.0
## 9534                                      Action|Comedy|Western   2435    5.0
## 9535                               Action|Drama|Horror|Thriller   2204    3.5
## 9536                                    Adventure|Comedy|Sci-Fi   2435    4.5
## 9537                                       Comedy|Drama|Romance   2435    4.0
## 9538                                  Action|Adventure|Thriller   2435    4.0
## 9539                                            Action|Thriller   2435    4.0
## 9540                                   Action|Adventure|Romance   2435    3.5
## 9541                                                     Comedy   2435    5.0
## 9542                                       Action|Drama|Western   2435    4.0
## 9543                                                      Drama   2435    4.0
## 9544                                                      Drama   2134    3.5
## 9545                             Action|Mystery|Sci-Fi|Thriller   2862    2.5
## 9546                                      Crime|Drama|Film-Noir   2862    3.5
## 9547                                                      Drama   2862    3.5
## 9548                                               Comedy|Drama   2862    4.5
## 9549                                                      Drama   2862    3.5
## 9550                                                      Drama   2862    4.0
## 9551                                    Horror|Mystery|Thriller   2862    4.0
## 9552                                                      Drama   2862    4.5
## 9553                                    Crime|Film-Noir|Mystery   2862    5.0
## 9554                                             Comedy|Romance   2862    4.5
## 9555                   Action|Adventure|Animation|Drama|Fantasy   2862    4.5
## 9556                                    Crime|Film-Noir|Mystery   2665    4.5
## 9557                             Drama|Mystery|Romance|Thriller   2665    5.0
## 9558                                Comedy|Crime|Drama|Thriller   2665    4.5
## 9559                                     Drama|Mystery|Thriller   2665    4.5
## 9560                                Action|Comedy|Crime|Fantasy   2665    4.0
## 9561                           Crime|Film-Noir|Mystery|Thriller   2665    4.5
## 9562                                              Drama|Musical   2517    3.0
## 9563                                       Comedy|Drama|Romance   2214    3.0
## 9564                                               Comedy|Crime   2527    5.0
## 9565                                               Comedy|Drama   2605    4.0
## 9566                                                      Drama   2841    4.0
## 9567                                          Drama|Romance|War   2841    5.0
## 9568                                                      Drama   2841    5.0
## 9569                                                   Thriller   2879    4.5
## 9570                                              Comedy|Horror   2879    1.0
## 9571                                    Action|Adventure|Comedy   2517    3.0
## 9572                                      Action|Drama|Thriller   2214    3.5
## 9573                           Crime|Film-Noir|Mystery|Thriller   2879    3.0
## 9574                                       Comedy|Drama|Romance   2517    4.0
## 9575                                  Action|Adventure|Thriller   2574    4.0
## 9576                                    Action|Adventure|Sci-Fi   2574    4.0
## 9577                                       Comedy|Drama|Romance   2574    3.5
## 9578                                       Comedy|Drama|Romance   2574    4.0
## 9579                               Action|Drama|Sci-Fi|Thriller   2574    3.5
## 9580                                                      Drama   2574    3.0
## 9581                                       Comedy|Drama|Romance   2574    4.0
## 9582                                                      Drama   2574    4.0
## 9583                                   Action|Adventure|Fantasy   2574    3.5
## 9584                         Animation|Children|Fantasy|Musical   2574    4.0
## 9585                                                     Comedy   2574    3.0
## 9586                                       Comedy|Drama|Romance   2574    4.5
## 9587                                                     Horror   2574    3.5
## 9588                                                      Drama   2574    4.5
## 9589                                                     Sci-Fi   2377    4.0
## 9590                                Action|Crime|Drama|Thriller   2377    2.0
## 9591                                       Comedy|Drama|Romance   2377    5.0
## 9592                                                     Comedy   2377    4.0
## 9593                                                     Comedy   2377    5.0
## 9594                                       Comedy|Drama|Romance   2377    4.0
## 9595                                                      Drama   2377    2.5
## 9596                        Action|Comedy|Fantasy|Horror|Sci-Fi   2377    3.0
## 9597                                   Comedy|Drama|Romance|War   2377    4.5
## 9598                                   Action|Adventure|Fantasy   2377    4.5
## 9599                                      Crime|Horror|Thriller   2377    3.5
## 9600                          Action|Adventure|Mystery|Thriller   2377    1.5
## 9601                              Crime|Horror|Mystery|Thriller   2377    2.0
## 9602                               Action|Drama|Sci-Fi|Thriller   2377    3.0
## 9603                                              Drama|Fantasy   2377    3.0
## 9604                                                     Comedy   2377    2.5
## 9605                    Action|Adventure|Drama|Fantasy|Thriller   2377    1.0
## 9606                                           Animation|Comedy   2377    3.0
## 9607                                Action|Crime|Drama|Thriller   2377    3.0
## 9608                                               Comedy|Crime   2377    3.5
## 9609                                                      Drama   2377    2.5
## 9610                     Action|Adventure|Drama|Sci-Fi|Thriller   2377    2.0
## 9611                                Action|Crime|Drama|Thriller   2377    2.0
## 9612                                              Drama|Romance   2377    2.0
## 9613                           Action|Adventure|Sci-Fi|Thriller   2377    2.5
## 9614                                           Action|Drama|War   2377    2.5
## 9615                              Action|Horror|Sci-Fi|Thriller   2377    0.5
## 9616                                                    Romance   2214    3.5
## 9617                                Crime|Drama|Sci-Fi|Thriller   2377    3.5
## 9618                                     Adventure|Comedy|Drama   2605    3.5
## 9619                                            Crime|Film-Noir   2605    3.0
## 9620                                               Action|Crime   2556    2.0
## 9621                                                      Drama   2643    4.0
## 9622                                           Comedy|Drama|War   2584    4.0
## 9623                                              Drama|Romance   2605    4.0
## 9624                                      Drama|Musical|Romance   2477    4.5
## 9625                                             Comedy|Romance   2477    5.0
## 9626                                               Drama|Horror   2477    5.0
## 9627                                               Comedy|Drama   2477    4.5
## 9628                            Action|Adventure|Crime|Thriller   2477    2.0
## 9629                                                     Comedy   2477    4.0
## 9630                                    Adventure|Comedy|Sci-Fi   2556    3.5
## 9631                                    Action|Adventure|Sci-Fi   2117    3.5
## 9632                                               Comedy|Drama   2117    4.0
## 9633                                      Drama|Sci-Fi|Thriller   2117    5.0
## 9634                                      Comedy|Horror|Musical   2124    3.0
## 9635                                      Drama|Musical|Romance   2124    3.0
## 9636                                           Action|Adventure   2124    4.5
## 9637                                                   Thriller   2137    4.0
## 9638                                   Comedy|Drama|Romance|War   2137    4.0
## 9639                            Action|Adventure|Comedy|Fantasy   2137    5.0
## 9640                                                      Drama   2137    5.0
## 9641                                        Crime|Drama|Romance   2186    5.0
## 9642                                             Comedy|Romance   2186    4.5
## 9643                                           Comedy|Drama|War   2186    5.0
## 9644                                     Drama|Mystery|Thriller   2186    4.5
## 9645                                                Crime|Drama   2186    5.0
## 9646                             Adventure|Comedy|Drama|Romance   2186    4.0
## 9647              Crime|Drama|Fantasy|Film-Noir|Mystery|Romance   2186    5.0
## 9648                                              Drama|Mystery   2186    4.5
## 9649                                                      Drama   2186    4.5
## 9650                                Action|Crime|Drama|Thriller   2186    4.0
## 9651                                     Action|Sci-Fi|Thriller   2186    4.5
## 9652                                     Adventure|Comedy|Crime   2186    4.0
## 9653                                                     Comedy   2284    3.5
## 9654                                   Comedy|Drama|Romance|War   2284    4.0
## 9655                                               Comedy|Drama   2284    4.0
## 9656                 Animation|Children|Fantasy|Musical|Romance   2310    4.0
## 9657                          Adventure|Children|Comedy|Fantasy   2310    2.5
## 9658                                               Comedy|Drama   2310    5.0
## 9659                                              Comedy|Horror   2320    3.5
## 9660                                    Horror|Mystery|Thriller   2331    3.0
## 9661                                        Crime|Drama|Romance   2331    4.0
## 9662                                               Action|Drama   2331    4.5
## 9663                                                      Drama   2331    3.5
## 9664                                         Animation|Children   2357    4.0
## 9665                                                   Thriller   2357    4.0
## 9666                          Animation|Children|Comedy|Fantasy   2331    2.5
## 9667                 Adventure|Animation|Children|Drama|Musical   2357    5.0
## 9668                                              Drama|Romance   2331    4.0
## 9669                                                     Comedy   2331    2.5
## 9670                                                      Drama   2357    4.5
## 9671                                      Drama|Sci-Fi|Thriller   2331    5.0
## 9672                                      Action|Crime|Thriller   2331    4.5
## 9673                                                     Comedy   2331    2.5
## 9674                             Adventure|Comedy|Drama|Romance   2357    4.5
## 9675                                              Drama|Fantasy   2320    3.5
## 9676                                                     Comedy   2320    4.0
## 9677                                    Action|Adventure|Sci-Fi   2320    4.0
## 9678                                       Comedy|Drama|Romance   2382    4.0
## 9679                                              Action|Sci-Fi   2320    3.0
## 9680                                     Drama|Mystery|Thriller   2320    4.0
## 9681                                              Drama|Romance   2320    3.0
## 9682                                    Action|Adventure|Sci-Fi   2320    4.0
## 9683                                                      Drama   2382    5.0
## 9684                                       Comedy|Drama|Romance   2382    5.0
## 9685                              Drama|Mystery|Sci-Fi|Thriller   2382    4.5
## 9686                                          Adventure|Fantasy   2463    3.5
## 9687                     Action|Adventure|Comedy|Fantasy|Sci-Fi   2463    4.0
## 9688                                             Drama|Thriller   2463    4.0
## 9689                                      Drama|Mystery|Romance   2463    3.5
## 9690                                      Action|Drama|Thriller   2463    3.5
## 9691                        Adventure|Animation|Children|Comedy   2463    3.5
## 9692                                    Action|Adventure|Sci-Fi   2463    3.5
## 9693                                   Adventure|Crime|Thriller   2463    4.0
## 9694                    Action|Adventure|Drama|Mystery|Thriller   2463    4.0
## 9695                               Action|Crime|Sci-Fi|Thriller   2463    3.5
## 9696                                    Action|Romance|Thriller   2471    2.0
## 9697                                    Action|Adventure|Sci-Fi   2463    3.0
## 9698                                      Children|Drama|Sci-Fi   2463    3.0
## 9699                                               Comedy|Crime   2471    4.5
## 9700                 Adventure|Animation|Children|Drama|Musical   2463    4.0
## 9701                                    Action|Adventure|Comedy   2463    4.0
## 9702                                              Action|Sci-Fi   2463    3.0
## 9703                                      Drama|Fantasy|Romance   2471    5.0
## 9704                        Adventure|Animation|Children|Comedy   2471    3.5
## 9705                   Action|Adventure|Comedy|Romance|Thriller   2471    4.0
## 9706                                     Action|Adventure|Drama   2471    2.5
## 9707                                   Action|Adventure|Fantasy   2471    4.0
## 9708                                       Action|Comedy|Sci-Fi   2471    4.0
## 9709                                Action|Crime|Drama|Thriller   2471    5.0
## 9710                            Action|Adventure|Comedy|Fantasy   2471    2.5
## 9711                            Action|Adventure|Comedy|Fantasy   2471    3.0
## 9712                Adventure|Animation|Children|Comedy|Musical   2471    3.5
## 9713                                               Comedy|Drama   2471    4.5
## 9714                        Adventure|Animation|Children|Comedy   2471    3.5
## 9715                                              Drama|Fantasy   2471    3.0
## 9716                                                      Drama   2471    4.0
## 9717                                           Adventure|Sci-Fi   2471    3.0
## 9718                          Adventure|Children|Comedy|Fantasy   2471    2.0
## 9719                                     Drama|Mystery|Thriller   2500    4.5
## 9720                                      Drama|Horror|Thriller   2500    3.5
## 9721                                           Action|Drama|War   2500    4.5
## 9722                                                     Comedy   2500    4.0
## 9723        Adventure|Animation|Children|Comedy|Fantasy|Romance   2500    3.0
## 9724                                   Action|Adventure|Fantasy   2500    4.5
## 9725                                   Action|Adventure|Fantasy   2500    4.5
## 9726                                              Action|Sci-Fi   2500    4.0
## 9727                                     Action|Sci-Fi|Thriller   2500    4.5
## 9728                                               Comedy|Crime   2471    4.0
## 9729                                      Action|Crime|Thriller   2500    4.0
## 9730                          Action|Adventure|Romance|Thriller   2500    3.0
## 9731                                    Action|Adventure|Sci-Fi   2500    3.5
## 9732                               Action|Comedy|Fantasy|Sci-Fi   2500    4.0
## 9733                                    Action|Adventure|Comedy   2500    2.5
## 9734                                    Action|Adventure|Sci-Fi   2500    3.0
## 9735                                           Adventure|Sci-Fi   2500    3.5
## 9736                                              Drama|Romance   2500    4.0
## 9737                                    Action|Adventure|Comedy   2500    2.5
## 9738                                  Drama|Romance|War|Western   2500    3.0
## 9739                                                     Comedy   2500    2.0
## 9740                                        Crime|Drama|Fantasy   2500    4.0
## 9741                                                     Comedy   2471    4.5
## 9742                                               Comedy|Drama   2471    4.0
## 9743                                                     Comedy   2500    4.0
## 9744                                       Action|Crime|Romance   2500    4.5
## 9745                              Action|Comedy|Horror|Thriller   2500    4.0
## 9746                                                      Drama   2500    3.5
## 9747              Action|Adventure|Crime|Drama|Mystery|Thriller   2500    4.5
## 9748                                                Documentary   2500    4.0
## 9749                 Adventure|Animation|Fantasy|Romance|Sci-Fi   2500    4.5
## 9750                                                Documentary   2500    4.0
## 9751                                               Comedy|Drama   2500    4.5
## 9752                                      Comedy|Crime|Thriller   2500    4.5
## 9753                                             Comedy|Romance   2500    4.0
## 9754                     Action|Adventure|Drama|Sci-Fi|Thriller   2500    3.5
## 9755                                                      Drama   2500    5.0
## 9756                                                      Drama   2500    4.0
## 9757                                                Crime|Drama   2500    3.5
## 9758                                       Comedy|Drama|Romance   2500    5.0
## 9759                                                      Drama   2500    4.0
## 9760                                           Action|Drama|War   2524    3.0
## 9761                          Action|Adventure|Comedy|Drama|War   2524    3.0
## 9762                         Animation|Children|Fantasy|Musical   2524    3.0
## 9763                                               Comedy|Crime   2524    4.5
## 9764                                  Action|Drama|Thriller|War   2524    4.0
## 9765                                 Adventure|Mystery|Thriller   2524    4.5
## 9766                                             Comedy|Romance   2524    4.5
## 9767                                          Drama|Romance|War   2524    4.5
## 9768                                              Drama|Mystery   2524    3.5
## 9769                           Crime|Film-Noir|Mystery|Thriller   2524    4.0
## 9770                                             Crime|Thriller   2524    4.0
## 9771                                             Comedy|Romance   2524    4.5
## 9772                                                      Drama   2524    4.0
## 9773                                   Crime|Film-Noir|Thriller   2524    5.0
## 9774                                                      Drama   2524    3.5
## 9775                                             Comedy|Romance   2524    4.5
## 9776                                             Comedy|Musical   2524    5.0
## 9777                                             Comedy|Romance   2524    3.0
## 9778                                               Comedy|Drama   2524    5.0
## 9779                                         Crime|Thriller|War   2524    4.0
## 9780                                                      Drama   2524    5.0
## 9781                           Crime|Film-Noir|Mystery|Thriller   2524    4.5
## 9782                                                Crime|Drama   2524    3.5
## 9783                               Crime|Drama|Mystery|Thriller   2524    3.5
## 9784                                                Crime|Drama   2524    4.0
## 9785                                             Comedy|Romance   2524    4.5
## 9786                       Action|Crime|Mystery|Sci-Fi|Thriller   2564    2.5
## 9787                                          Adventure|Western   2564    5.0
## 9788                                Action|Adventure|Sci-Fi|War   2564    3.5
## 9789                Adventure|Animation|Children|Comedy|Fantasy   2564    4.5
## 9790                                           Action|Drama|War   2564    4.5
## 9791                                                      Drama   2564    4.5
## 9792                                                     Comedy   2590    4.0
## 9793                                               Comedy|Drama   2590    3.5
## 9794                                                   Thriller   2590    2.5
## 9795                                     Action|Sci-Fi|Thriller   2471    4.0
## 9796                                       Action|Comedy|Sci-Fi   2471    3.5
## 9797                                   Comedy|Drama|Romance|War   2590    5.0
## 9798                                        Crime|Drama|Romance   2590    5.0
## 9799                                                     Comedy   2597    2.0
## 9800                                     Action|Sci-Fi|Thriller   2590    5.0
## 9801                                                Crime|Drama   2590    5.0
## 9802                                           Action|Adventure   2597    2.5
## 9803                                            Action|Thriller   2590    5.0
## 9804                                    Horror|Mystery|Thriller   2590    4.0
## 9805                                                      Drama   2590    5.0
## 9806                                                Crime|Drama   2590    3.0
## 9807                                           Comedy|Drama|War   2590    4.5
## 9808                                               Comedy|Crime   2619    1.5
## 9809                                               Drama|Sci-Fi   2619    3.5
## 9810                                         Animation|Children   2619    2.0
## 9811                                                     Comedy   2619    2.5
## 9812                                              Action|Horror   2619    0.5
## 9813                                    Action|Adventure|Sci-Fi   2619    2.5
## 9814                                    Adventure|Comedy|Sci-Fi   2619    4.0
## 9815                          Action|Adventure|Romance|Thriller   2619    3.0
## 9816                                             Comedy|Romance   2619    2.5
## 9817                      Comedy|Drama|Fantasy|Romance|Thriller   2619    2.0
## 9818                                      Action|Crime|Thriller   2619    4.5
## 9819                               Action|Comedy|Fantasy|Sci-Fi   2619    4.0
## 9820                  Adventure|Drama|Film-Noir|Sci-Fi|Thriller   2619    4.0
## 9821                                                     Comedy   2619    4.0
## 9822                                    Action|Adventure|Comedy   2619    3.0
## 9823                                             Comedy|Fantasy   2619    3.0
## 9824                    Action|Adventure|Horror|Sci-Fi|Thriller   2619    2.5
## 9825                                              Comedy|Sci-Fi   2619    3.0
## 9826                                                     Comedy   2692    3.0
## 9827                                                   Thriller   2692    3.5
## 9828                           Adventure|Children|Drama|Fantasy   2619    3.0
## 9829                              Action|Horror|Sci-Fi|Thriller   2692    3.5
## 9830                              Action|Horror|Sci-Fi|Thriller   2692    3.5
## 9831                                    Action|Adventure|Sci-Fi   2692    4.0
## 9832                                                      Drama   2692    3.5
## 9833                                                     Comedy   2692    2.5
## 9834                                  Adventure|Children|Sci-Fi   2681    4.5
## 9835                                     Drama|Mystery|Thriller   2681    5.0
## 9836                                           Action|Adventure   2692    4.0
## 9837                                       Crime|Drama|Thriller   2717    3.5
## 9838                                   Comedy|Drama|Romance|War   2692    4.5
## 9839                                            Children|Comedy   2681    3.0
## 9840                         Action|Comedy|Crime|Drama|Thriller   2692    4.5
## 9841                                     Action|Sci-Fi|Thriller   2692    4.0
## 9842                                                     Comedy   2717    5.0
## 9843                                                     Comedy   2717    5.0
## 9844                                     Comedy|Fantasy|Romance   2717    4.5
## 9845                                            Horror|Thriller   2692    3.5
## 9846                          Adventure|Children|Comedy|Musical   2728    0.5
## 9847                               Comedy|Drama|Fantasy|Romance   2728    4.5
## 9848                                      Drama|Musical|Romance   2692    3.0
## 9849                                                      Drama   2717    4.5
## 9850                                             Action|Romance   2692    2.5
## 9851                                      Action|Drama|Thriller   2692    4.0
## 9852                            Action|Adventure|Comedy|Musical   2717    5.0
## 9853                                                      Drama   2728    4.5
## 9854                                                      Drama   2692    3.5
## 9855                                             Comedy|Romance   2692    4.0
## 9856                                             Drama|Thriller   2728    4.0
## 9857                                    Horror|Mystery|Thriller   2692    3.5
## 9858                                             Comedy|Romance   2692    4.0
## 9859                                           Adventure|Comedy   2692    4.0
## 9860                   Action|Adventure|Fantasy|Horror|Thriller   2692    4.0
## 9861                              Action|Crime|Thriller|Western   2728    4.0
## 9862                           Action|Adventure|Sci-Fi|Thriller   2728    4.5
## 9863                                    Action|Adventure|Sci-Fi   2728    4.0
## 9864                            Action|Adventure|Comedy|Western   2692    4.0
## 9865                              Action|Animation|Drama|Sci-Fi   2728    5.0
## 9866                                    Action|Romance|Thriller   2728    3.5
## 9867                                     Action|Sci-Fi|Thriller   2728    4.0
## 9868                                      Drama|Horror|Thriller   2728    4.0
## 9869                                      Action|Drama|Thriller   2692    4.0
## 9870                                     Adventure|Comedy|Drama   2590    5.0
## 9871                                                      Drama   2320    4.0
## 9872                    Animation|Drama|Mystery|Sci-Fi|Thriller   2692    4.0
## 9873                                          Adventure|Fantasy   2771    4.0
## 9874                                       Crime|Drama|Thriller   2771    4.5
## 9875                                      Crime|Horror|Thriller   2771    4.5
## 9876                                              Action|Sci-Fi   2771    3.0
## 9877                                               Comedy|Drama   2771    4.0
## 9878                                     Action|Sci-Fi|Thriller   2771    3.5
## 9879                                           Action|Adventure   2728    3.5
## 9880                                            Action|Thriller   2728    4.5
## 9881                                      Drama|Sci-Fi|Thriller   2728    4.5
## 9882                                  Action|Adventure|Thriller   2728    5.0
## 9883                 Action|Animation|Film-Noir|Sci-Fi|Thriller   2863    4.5
## 9884                            Action|Adventure|Fantasy|Sci-Fi   2728    3.5
## 9885                                           Action|Adventure   2728    4.0
## 9886                                    Action|Adventure|Sci-Fi   2728    4.0
## 9887                        Action|Crime|Horror|Sci-Fi|Thriller   2863    3.5
## 9888                                    Action|Adventure|Sci-Fi   2728    3.0
## 9889                                                     Comedy   2863    2.5
## 9890                                           Animation|Sci-Fi   2863    4.5
## 9891                                                Documentary   2863    3.5
## 9892                                               Drama|Horror   2863    2.5
## 9893                Adventure|Fantasy|Film-Noir|Sci-Fi|Thriller   2863    4.0
## 9894                                           Adventure|Comedy   2863    4.0
## 9895        Adventure|Animation|Children|Comedy|Fantasy|Romance   2863    3.0
## 9896                                     Drama|Fantasy|Thriller   2771    3.5
## 9897                              Comedy|Crime|Mystery|Thriller   2771    4.0
## 9898                                     Action|Sci-Fi|Thriller   2863    2.5
## 9899                                       Comedy|Drama|Romance   2863    2.5
## 9900                                     Adventure|Drama|Sci-Fi   2863    2.0
## 9901                             Action|Adventure|Drama|Romance   2863    1.0
## 9902                                    Action|Adventure|Comedy   2863    1.0
## 9903                                                  Drama|War   2382    4.5
## 9904                                                     Comedy   2863    3.0
## 9905                        Adventure|Animation|Children|Comedy   2863    2.5
## 9906                        Action|Crime|Drama|Mystery|Thriller   2863    3.0
## 9907                                              Drama|Romance   2863    3.5
## 9908                               Action|Comedy|Crime|Thriller   2692    0.5
## 9909                                Comedy|Crime|Drama|Thriller   2692    4.5
## 9910                                                     Comedy   2692    3.5
## 9911                                                     Comedy   2692    2.0
## 9912                        Action|Comedy|Crime|Horror|Thriller   2692    3.5
## 9913                                     Horror|Sci-Fi|Thriller   2692    3.5
## 9914                                                  Drama|War   2692    3.5
## 9915                                             Comedy|Romance   2692    3.0
## 9916                                                     Comedy   2692    4.5
## 9917                                            Sci-Fi|Thriller   2692    3.5
## 9918                                        Action|Comedy|Crime   2692    3.5
## 9919                                                     Comedy   2692    3.0
## 9920                                                     Comedy   2692    2.0
## 9921                                                     Comedy   2692    2.0
## 9922                   Action|Adventure|Animation|Drama|Fantasy   2692    4.0
## 9923                                      Action|Comedy|Fantasy   2692    2.5
## 9924                                     Horror|Sci-Fi|Thriller   2692    5.0
## 9925                                   Action|Drama|Romance|War   2692    3.5
## 9926                                        Comedy|Drama|Sci-Fi   2692    4.5
## 9927                                                      Drama   2692    2.0
## 9928                                      Action|Drama|Thriller   2692    1.5
## 9929                                               Comedy|Drama   2785    3.0
## 9930                              Action|Horror|Sci-Fi|Thriller   2564    5.0
## 9931                                                  Drama|War   2564    5.0
## 9932                                              Drama|Romance   2692    4.0
## 9933                                    Action|Romance|Thriller   2692    1.5
## 9934                                       Crime|Drama|Thriller   2771    4.0
## 9935                                    Animation|Comedy|Sci-Fi   2863    2.5
## 9936                            Fantasy|Horror|Romance|Thriller   2692    2.5
## 9937                                                      Drama   2692    2.0
## 9938                                   Comedy|Drama|Romance|War   2580    4.0
## 9939                                         Action|Crime|Drama   2863    3.0
## 9940                                       Action|Horror|Sci-Fi   2863    3.5
## 9941                              Action|Horror|Sci-Fi|Thriller   2863    3.5
## 9942                                  Action|Adventure|Thriller   2863    4.0
## 9943                                                    Romance   2863    4.5
## 9944                                                   Thriller   2863    1.0
## 9945                                                     Horror   2863    3.0
## 9946                                                     Comedy   2863    4.0
## 9947                                    Action|Adventure|Comedy   2325    3.5
## 9948                                                      Drama   2527    4.5
## 9949                                  Action|Adventure|Thriller   2325    3.5
## 9950                                               Action|Drama   2692    4.0
## 9951                                       Drama|Horror|Mystery   2524    4.0
## 9952                     Action|Adventure|Comedy|Fantasy|Sci-Fi   2785    2.0
## 9953                                       Comedy|Drama|Romance   2590    2.5
## 9954                                           Action|Adventure   2590    5.0
## 9955                                              Horror|Sci-Fi   2590    2.5
## 9956                                      Drama|Horror|Thriller   2665    5.0
## 9957                               Action|Crime|Sci-Fi|Thriller   2492    4.0
## 9958                                Action|Adventure|Sci-Fi|War   2492    4.5
## 9959                                             Comedy|Romance   2429    3.0
## 9960                                                     Comedy   2841    3.5
## 9961                                       Action|Drama|Romance   2134    4.5
## 9962                                               Action|Drama   2134    4.0
## 9963                                                Documentary   2429    3.0
## 9964                                                     Comedy   2330    5.0
## 9965                                                      Drama   2536    4.0
## 9966                    Action|Crime|Drama|Romance|Thriller|War   2527    3.5
## 9967                                              Drama|Romance   2513    5.0
## 9968                                               Comedy|Drama   2605    4.5
## 9969                                       Comedy|Drama|Romance   2605    3.5
## 9970                  Adventure|Drama|Film-Noir|Sci-Fi|Thriller   2605    3.0
## 9971                                                      Drama   2605    4.5
## 9972                                                     Comedy   2429    3.0
## 9973                                              Drama|Romance   2429    1.0
## 9974                                           Comedy|Drama|War   2643    4.0
## 9975                                Action|Adventure|Comedy|War   2785    3.0
## 9976                                            Adventure|Drama   2785    4.0
## 9977                                       Comedy|Drama|Romance   2785    3.0
## 9978                                                     Comedy   2785    3.5
## 9979                        Comedy|Crime|Drama|Romance|Thriller   2785    2.5
## 9980                                      Drama|Sci-Fi|Thriller   2785    4.0
## 9981                                             Comedy|Romance   2785    4.0
## 9982                           Drama|Horror|Sci-Fi|Thriller|War   2643    3.0
## 9983                                                Documentary   2513    4.0
## 9984                                            Action|Thriller   2556    2.0
## 9985                                           Action|Drama|War   2643    3.5
## 9986                                    Action|Crime|Drama|IMAX   2517    4.5
## 9987                                                      Drama   2134    4.0
## 9988                                    Action|Crime|Drama|IMAX   2692    4.0
## 9989                           Action|Adventure|Sci-Fi|Thriller   2692    4.0
## 9990                                      Action|Crime|Thriller   2692    2.5
## 9991                                Action|Comedy|Drama|Fantasy   2692    3.5
## 9992                                             Comedy|Romance   2429    4.0
## 9993                                                     Comedy   2429    3.0
## 9994                                                     Comedy   2429    3.5
## 9995                                                      Drama   2429    4.0
## 9996                                      Drama|Sci-Fi|Thriller   2692    1.0
## 9997                                            Children|Comedy   2692    2.0
## 9998                          Animation|Children|Comedy|Fantasy   2692    2.5
## 9999                                                     Comedy   2692    4.0
## 10000                                          Adventure|Comedy   2167    3.5
##        Timestamp
## 1      828096043
## 2      828096043
## 3      828096043
## 4      828096043
## 5      828096043
## 6      828096044
## 7      828097813
## 8      828097814
## 9      828098211
## 10     829357439
## 11     830363535
## 12     830363564
## 13     830363601
## 14     830363634
## 15     830364063
## 16     830364122
## 17     830364620
## 18     830366614
## 19     830366744
## 20     830366763
## 21     831382213
## 22     831382342
## 23     831382716
## 24     831382821
## 25     831382905
## 26     831383053
## 27     831383085
## 28     831384490
## 29     831386281
## 30     831386321
## 31     831386381
## 32     831386927
## 33     831386955
## 34     831386956
## 35     831386978
## 36     831387979
## 37     831388065
## 38     831893889
## 39     831894193
## 40     831894329
## 41     831894408
## 42     831894546
## 43     831894699
## 44     831894829
## 45     831895085
## 46     831895176
## 47     831895215
## 48     831895481
## 49     831895617
## 50     831895639
## 51     831895789
## 52     831895992
## 53     831896503
## 54     831897308
## 55     831897346
## 56     832005183
## 57     832222452
## 58     832222574
## 59     832222681
## 60     832222696
## 61     832222722
## 62     832223206
## 63     832223225
## 64     832224524
## 65     832224524
## 66     832224665
## 67     832230354
## 68     832230386
## 69     832230531
## 70     832230531
## 71     832594377
## 72     832594452
## 73     832594481
## 74     832594508
## 75     832594510
## 76     832594533
## 77     832594763
## 78     832594836
## 79     832594855
## 80     832594945
## 81     832595171
## 82     832595215
## 83     832595340
## 84     832595535
## 85     832595581
## 86     832595581
## 87     832595741
## 88     832595975
## 89     832597091
## 90     832597934
## 91     832597934
## 92     833017895
## 93     833017946
## 94     833017946
## 95     833017976
## 96     833017995
## 97     833017995
## 98     833018044
## 99     833018044
## 100    833018391
## 101    833018463
## 102    833018529
## 103    833018543
## 104    833019113
## 105    833019201
## 106    833019232
## 107    833019232
## 108    833019285
## 109    833019341
## 110    833019364
## 111    833019399
## 112    833019515
## 113    833019523
## 114    833019598
## 115    833019663
## 116    833019717
## 117    833019717
## 118    833019899
## 119    833020304
## 120    833226632
## 121    835018955
## 122    835018955
## 123    835019001
## 124    835019024
## 125    835019024
## 126    835019024
## 127    835019046
## 128    835019163
## 129    835019163
## 130    835019200
## 131    835019224
## 132    835019253
## 133    835019319
## 134    835019527
## 135    835019560
## 136    835019615
## 137    835019615
## 138    835019615
## 139    835019813
## 140    835019905
## 141    835020022
## 142    835020186
## 143    835020248
## 144    835020250
## 145    835020425
## 146    835020495
## 147    835020531
## 148    835020804
## 149    835020819
## 150    835020819
## 151    835021342
## 152    835021420
## 153    835021636
## 154    835021800
## 155    835021881
## 156    835021910
## 157    835022168
## 158    835022173
## 159    835022226
## 160    835022227
## 161    835022306
## 162    835022306
## 163    835022321
## 164    835022321
## 165    835022336
## 166    835022346
## 167    835022530
## 168    835022576
## 169    835022624
## 170    835022646
## 171    835022646
## 172    835022682
## 173    835022700
## 174    835022743
## 175    835022802
## 176    835022917
## 177    835023173
## 178    835023420
## 179    835024952
## 180    835024958
## 181    835025164
## 182    835026479
## 183    835026612
## 184    835026888
## 185    835026888
## 186    835026948
## 187    835026962
## 188    835026994
## 189    835027042
## 190    835027119
## 191    835027153
## 192    835027210
## 193    835027232
## 194    835027261
## 195    835027417
## 196    835027524
## 197    835027549
## 198    835027549
## 199    835029111
## 200    835029685
## 201    835029843
## 202    835029845
## 203    835029845
## 204    835030045
## 205    835030079
## 206    835030091
## 207    835030094
## 208    835030136
## 209    835030238
## 210    835030272
## 211    835030317
## 212    835030337
## 213    835030342
## 214    835030357
## 215    835030370
## 216    835030372
## 217    835030428
## 218    835030607
## 219    835030612
## 220    835030663
## 221    835030756
## 222    835030760
## 223    835030760
## 224    835030785
## 225    835030816
## 226    835030824
## 227    835030848
## 228    835030986
## 229    835031038
## 230    835031038
## 231    835031166
## 232    835031343
## 233    835031413
## 234    835031448
## 235    835031452
## 236    835031482
## 237    835031501
## 238    835031515
## 239    835031541
## 240    835031565
## 241    835031565
## 242    835031737
## 243    835031748
## 244    835031894
## 245    835031894
## 246    835032206
## 247    835032562
## 248    835032790
## 249    835032808
## 250    835032858
## 251    835032922
## 252    835032941
## 253    835032975
## 254    835033005
## 255    835033077
## 256    835033216
## 257    835033412
## 258    835033595
## 259    835034738
## 260    835034901
## 261    835034973
## 262    835035032
## 263    835035134
## 264    835035348
## 265    835035379
## 266    835035444
## 267    835035526
## 268    835035590
## 269    835035627
## 270    835035686
## 271    835035765
## 272    835035834
## 273    835035850
## 274    835035931
## 275    835035931
## 276    835036606
## 277    835036606
## 278    835036644
## 279    835036815
## 280    835036833
## 281    835036855
## 282    835037026
## 283    835037840
## 284    835037937
## 285    835037957
## 286    835037961
## 287    835038069
## 288    835038935
## 289    835039006
## 290    835039006
## 291    835039067
## 292    835039140
## 293    835039383
## 294    835039383
## 295    835040006
## 296    835040062
## 297    835040415
## 298    835040440
## 299    835040577
## 300    835040692
## 301    835040878
## 302    835041800
## 303    835043198
## 304    835043229
## 305    835043254
## 306    835043717
## 307    835044958
## 308    835044958
## 309    835045142
## 310    835045199
## 311    835045245
## 312    835045389
## 313    835045389
## 314    835045410
## 315    835045436
## 316    835045457
## 317    835045515
## 318    835045537
## 319    835045565
## 320    835045577
## 321    835045683
## 322    835046668
## 323    835046701
## 324    835046701
## 325    835046881
## 326    835047178
## 327    835047510
## 328    835047594
## 329    835047718
## 330    835047718
## 331    835047795
## 332    835047884
## 333    835047930
## 334    835047930
## 335    835047993
## 336    835048035
## 337    835048110
## 338    835048671
## 339    835048733
## 340    835048770
## 341    835048792
## 342    835048819
## 343    835048819
## 344    835049075
## 345    835050346
## 346    835050347
## 347    835050417
## 348    835050417
## 349    835052017
## 350    835052017
## 351    835052540
## 352    835052611
## 353    835087588
## 354    835298356
## 355    835298429
## 356    835338074
## 357    835625200
## 358    835625225
## 359    835625329
## 360    835625380
## 361    835625422
## 362    835625670
## 363    835626091
## 364    835626433
## 365    835626433
## 366    835626898
## 367    835626992
## 368    835648130
## 369    835648246
## 370    835648269
## 371    835677963
## 372    835707464
## 373    836433744
## 374    837039373
## 375    837039452
## 376    837039526
## 377    837039665
## 378    837039701
## 379    837039823
## 380    837039823
## 381    837039916
## 382    837039966
## 383    837040076
## 384    837040119
## 385    837040119
## 386    837040160
## 387    837040333
## 388    837040379
## 389    837040621
## 390    837249395
## 391    837729366
## 392    837729408
## 393    837729424
## 394    837729449
## 395    838187519
## 396    838191874
## 397    838192644
## 398    838192864
## 399    839151669
## 400    839151726
## 401    839151778
## 402    839151778
## 403    839151897
## 404    839154321
## 405    839154321
## 406    839154697
## 407    839154901
## 408    839154902
## 409    839155044
## 410    839160177
## 411    839160211
## 412    839160285
## 413    839160801
## 414    839160826
## 415    839160955
## 416    839161086
## 417    839161100
## 418    839161100
## 419    839161120
## 420    839161136
## 421    839161184
## 422    839161201
## 423    839161218
## 424    839161232
## 425    839161234
## 426    839161308
## 427    839161368
## 428    839161485
## 429    839164875
## 430    839165417
## 431    839165500
## 432    839165570
## 433    839165721
## 434    839165743
## 435    839165761
## 436    839165789
## 437    839165794
## 438    839165821
## 439    839165821
## 440    839165939
## 441    839165952
## 442    839166007
## 443    839166013
## 444    839166036
## 445    839166089
## 446    839166092
## 447    839166092
## 448    839166121
## 449    839166150
## 450    839166220
## 451    839166778
## 452    839167414
## 453    839167483
## 454    839167583
## 455    839168026
## 456    839168179
## 457    839168794
## 458    839168794
## 459    839168915
## 460    839170329
## 461    839170410
## 462    839170475
## 463    839170605
## 464    839170622
## 465    839170662
## 466    839170922
## 467    839170960
## 468    839173558
## 469    839173634
## 470    839173634
## 471    839175532
## 472    839175806
## 473    839176392
## 474    839176899
## 475    839176958
## 476    839177016
## 477    839177070
## 478    839177302
## 479    839177355
## 480    839178174
## 481    839178185
## 482    839178466
## 483    839178700
## 484    839179064
## 485    839179091
## 486    839179240
## 487    839179460
## 488    839179540
## 489    839179666
## 490    839182575
## 491    839184057
## 492    839187952
## 493    839188246
## 494    839188248
## 495    839188269
## 496    839188287
## 497    839188355
## 498    839188375
## 499    839188546
## 500    839188605
## 501    839188704
## 502    839188731
## 503    839188802
## 504    839188820
## 505    839188856
## 506    839189021
## 507    839189148
## 508    839189166
## 509    839189227
## 510    839189242
## 511    839189256
## 512    839189423
## 513    839190249
## 514    839190418
## 515    839190611
## 516    839190739
## 517    839191184
## 518    839191212
## 519    839191306
## 520    839191346
## 521    839191371
## 522    839191995
## 523    839192266
## 524    839192266
## 525    839192793
## 526    839193007
## 527    839193007
## 528    839193671
## 529    839193733
## 530    839193870
## 531    839193933
## 532    839194200
## 533    839196885
## 534    839196995
## 535    839197036
## 536    839197088
## 537    839197090
## 538    839197118
## 539    839197307
## 540    839197307
## 541    839202276
## 542    839203336
## 543    839203386
## 544    839203646
## 545    839203720
## 546    839203795
## 547    839204148
## 548    839204293
## 549    839204361
## 550    839204510
## 551    839204565
## 552    839204596
## 553    839204683
## 554    839204727
## 555    839204727
## 556    839204745
## 557    839204792
## 558    839204824
## 559    839204844
## 560    839205057
## 561    839205650
## 562    839205699
## 563    839206252
## 564    839206517
## 565    839206657
## 566    839206925
## 567    839208876
## 568    840295457
## 569    840399956
## 570    840400055
## 571    840400135
## 572    840806082
## 573    840806210
## 574    843489338
## 575    843489415
## 576    843489893
## 577    843490165
## 578    843573086
## 579    843574428
## 580    844613931
## 581    844613955
## 582    844614075
## 583    844614183
## 584    844614300
## 585    844614379
## 586    844614402
## 587    844614426
## 588    844614493
## 589    844614496
## 590    844614530
## 591    844614572
## 592    844614625
## 593    844614666
## 594    844614666
## 595    844614701
## 596    844614845
## 597    844614888
## 598    844614888
## 599    844614888
## 600    844615001
## 601    844615100
## 602    844615142
## 603    844615157
## 604    844615157
## 605    844615185
## 606    844615505
## 607    844615610
## 608    844615645
## 609    844617139
## 610    844617139
## 611    844617230
## 612    844617246
## 613    844617340
## 614    844617787
## 615    844617872
## 616    844617903
## 617    844618057
## 618    844618346
## 619    844618370
## 620    844618386
## 621    844618387
## 622    844618399
## 623    844618412
## 624    844618534
## 625    844618608
## 626    844618659
## 627    844618855
## 628    844618889
## 629    844618917
## 630    844618987
## 631    844618987
## 632    844619033
## 633    844619033
## 634    844619063
## 635    844619085
## 636    844619130
## 637    844619422
## 638    844619961
## 639    844620041
## 640    844620092
## 641    844620144
## 642    844620370
## 643    844620370
## 644    844620397
## 645    844620435
## 646    844620454
## 647    844620559
## 648    844620569
## 649    844620615
## 650    844620743
## 651    844620766
## 652    844620772
## 653    844620781
## 654    844620811
## 655    844620811
## 656    844620888
## 657    844620921
## 658    844621009
## 659    844621066
## 660    844621088
## 661    844621095
## 662    844621312
## 663    844621365
## 664    844621498
## 665    844621500
## 666    844621506
## 667    844621560
## 668    844621608
## 669    844621618
## 670    844621632
## 671    844621677
## 672    844621677
## 673    844621683
## 674    844621696
## 675    844621728
## 676    844621800
## 677    844621803
## 678    844621821
## 679    844621851
## 680    844621875
## 681    844621875
## 682    844621958
## 683    844621972
## 684    844622165
## 685    844622282
## 686    844622294
## 687    844622316
## 688    844622334
## 689    844622364
## 690    844622393
## 691    844622397
## 692    844622414
## 693    844622425
## 694    844622425
## 695    844622432
## 696    844622514
## 697    844622614
## 698    844622614
## 699    844622614
## 700    844622640
## 701    844622647
## 702    844622659
## 703    844622659
## 704    844622690
## 705    844622770
## 706    844622778
## 707    844622789
## 708    844622817
## 709    844622908
## 710    844623683
## 711    844623768
## 712    844623997
## 713    844623997
## 714    844624050
## 715    844624092
## 716    844624169
## 717    844624775
## 718    844624782
## 719    844624824
## 720    844624949
## 721    844624970
## 722    844624988
## 723    844625255
## 724    844625255
## 725    844625438
## 726    844625460
## 727    844625563
## 728    844625655
## 729    844625743
## 730    844625789
## 731    844625813
## 732    844625835
## 733    844626018
## 734    844626085
## 735    844626147
## 736    844626153
## 737    844626273
## 738    844626349
## 739    844626396
## 740    844626504
## 741    844626584
## 742    844626803
## 743    844626849
## 744    844626877
## 745    844627209
## 746    844627289
## 747    844627346
## 748    844627354
## 749    844627365
## 750    844627386
## 751    844627409
## 752    844627536
## 753    844627629
## 754    844627648
## 755    844627781
## 756    844627810
## 757    844627811
## 758    844627964
## 759    844628079
## 760    844628410
## 761    844628533
## 762    844628553
## 763    844628578
## 764    844628676
## 765    844628684
## 766    844628695
## 767    844628718
## 768    844628718
## 769    844628736
## 770    844628773
## 771    844628773
## 772    844628780
## 773    844628787
## 774    844628788
## 775    844628806
## 776    844628825
## 777    844628855
## 778    844628861
## 779    844628878
## 780    844628908
## 781    844628923
## 782    844628928
## 783    844628928
## 784    844628944
## 785    844628949
## 786    844628964
## 787    844629027
## 788    844629119
## 789    844629149
## 790    844629149
## 791    844629185
## 792    844629224
## 793    844629229
## 794    844629332
## 795    844629333
## 796    844629374
## 797    844629427
## 798    844629428
## 799    844629455
## 800    844629477
## 801    844629526
## 802    844629570
## 803    844629580
## 804    844629586
## 805    844629602
## 806    844629642
## 807    844629642
## 808    844629680
## 809    844629798
## 810    844630005
## 811    844630053
## 812    844630169
## 813    844630169
## 814    844630374
## 815    844630544
## 816    844630588
## 817    844630616
## 818    844630665
## 819    844630678
## 820    844630678
## 821    844630678
## 822    844630727
## 823    844630744
## 824    844630744
## 825    844630814
## 826    844630835
## 827    844630861
## 828    844631062
## 829    844631147
## 830    844631194
## 831    844631204
## 832    844631267
## 833    844631327
## 834    844631359
## 835    844631363
## 836    844631383
## 837    844631396
## 838    844631428
## 839    844631446
## 840    844631458
## 841    844631462
## 842    844631569
## 843    844631589
## 844    844631623
## 845    844631810
## 846    844631832
## 847    844631843
## 848    844631904
## 849    844632206
## 850    844632246
## 851    844632315
## 852    844632473
## 853    844632577
## 854    844632670
## 855    844632873
## 856    844632895
## 857    844633030
## 858    844633085
## 859    844633139
## 860    844633221
## 861    844633858
## 862    844633906
## 863    844633906
## 864    844633931
## 865    844633931
## 866    844633954
## 867    844633969
## 868    844634005
## 869    844634013
## 870    844634079
## 871    844634138
## 872    844634161
## 873    844634202
## 874    844634247
## 875    844634272
## 876    844634294
## 877    844634470
## 878    844634663
## 879    844634677
## 880    844634696
## 881    844634703
## 882    844634709
## 883    844634736
## 884    844634750
## 885    844634777
## 886    844634797
## 887    844634803
## 888    844634832
## 889    844634843
## 890    844634843
## 891    844634876
## 892    844634903
## 893    844634904
## 894    844634907
## 895    844634929
## 896    844634946
## 897    844634961
## 898    844634993
## 899    844634993
## 900    844635005
## 901    844635156
## 902    844635307
## 903    844635307
## 904    844635323
## 905    844635338
## 906    844635401
## 907    844635424
## 908    844635424
## 909    844635730
## 910    844635910
## 911    844636098
## 912    844636098
## 913    844636176
## 914    845668095
## 915    845732682
## 916    846261065
## 917    846261296
## 918    847117142
## 919    847117541
## 920    847626859
## 921    848750104
## 922    848750127
## 923    848750480
## 924    848862796
## 925    848863005
## 926    848863181
## 927    848994549
## 928    849554567
## 929    849554704
## 930    849741820
## 931    849741854
## 932    849741955
## 933    849741955
## 934    849743941
## 935    849743993
## 936    849744086
## 937    849744298
## 938    849769509
## 939    849769593
## 940    849769768
## 941    849769823
## 942    849770006
## 943    849770032
## 944    849770125
## 945    849770192
## 946    849770261
## 947    849770483
## 948    849770555
## 949    849770716
## 950    849770752
## 951    849770787
## 952    849770864
## 953    849771389
## 954    849773258
## 955    849773359
## 956    849773359
## 957    849773523
## 958    849773547
## 959    849773610
## 960    849773610
## 961    849773662
## 962    849774838
## 963    849778986
## 964    849779068
## 965    849779538
## 966    849779560
## 967    849783362
## 968    849783642
## 969    849783683
## 970    849783734
## 971    849784143
## 972    849784370
## 973    849784414
## 974    849784664
## 975    849784812
## 976    849784997
## 977    849785368
## 978    849785487
## 979    849785495
## 980    849785557
## 981    849785673
## 982    849785706
## 983    849785734
## 984    849786185
## 985    849786321
## 986    849786340
## 987    849786340
## 988    849786391
## 989    849786435
## 990    849786508
## 991    849786563
## 992    849790542
## 993    849790651
## 994    849792024
## 995    849792530
## 996    849792674
## 997    849792804
## 998    849793042
## 999    849793135
## 1000   849793211
## 1001   849793812
## 1002   849793823
## 1003   849794103
## 1004   849794172
## 1005   849794206
## 1006   849794322
## 1007   849794362
## 1008   849794391
## 1009   849794395
## 1010   849794416
## 1011   849794886
## 1012   849794908
## 1013   849795044
## 1014   849795044
## 1015   849795078
## 1016   849795078
## 1017   849795562
## 1018   849795624
## 1019   849795653
## 1020   849795664
## 1021   849796547
## 1022   849796586
## 1023   849796586
## 1024   849796630
## 1025   849796645
## 1026   849796688
## 1027   849796812
## 1028   849796833
## 1029   849797146
## 1030   849797182
## 1031   849797379
## 1032   849798321
## 1033   849798321
## 1034   849798518
## 1035   849798518
## 1036   849798589
## 1037   849801527
## 1038   849807008
## 1039   849813631
## 1040   849814455
## 1041   849814491
## 1042   849814648
## 1043   849814687
## 1044   849815604
## 1045   849815604
## 1046   849815681
## 1047   849815780
## 1048   849816137
## 1049   849879149
## 1050   849879436
## 1051   849879436
## 1052   849880552
## 1053   849880657
## 1054   849880702
## 1055   849880736
## 1056   849880807
## 1057   849880844
## 1058   849894942
## 1059   850120310
## 1060   850120524
## 1061   850121301
## 1062   850147496
## 1063   850313033
## 1064   850313588
## 1065   850399417
## 1066   850885949
## 1067   850989488
## 1068   851214820
## 1069   851612560
## 1070   851612729
## 1071   851612764
## 1072   852547325
## 1073   852694659
## 1074   852918822
## 1075   852918822
## 1076   852919001
## 1077   852919123
## 1078   853322218
## 1079   853322649
## 1080   853764857
## 1081   854105817
## 1082   854533246
## 1083   854533652
## 1084   854534534
## 1085   854535065
## 1086   854535135
## 1087   854535167
## 1088   854535206
## 1089   854670371
## 1090   855232149
## 1091   855232229
## 1092   855232357
## 1093   855232623
## 1094   855232937
## 1095   855233135
## 1096   855233252
## 1097   855233411
## 1098   855233502
## 1099   855339918
## 1100   855340071
## 1101   855340192
## 1102   855944110
## 1103   857732443
## 1104   858159141
## 1105   858159176
## 1106   858159303
## 1107   858159426
## 1108   858159426
## 1109   858159694
## 1110   858159813
## 1111   858159847
## 1112   858160665
## 1113   858160665
## 1114   858160738
## 1115   858160738
## 1116   858160844
## 1117   858160950
## 1118   858163416
## 1119   858163514
## 1120   858163898
## 1121   858164154
## 1122   858164343
## 1123   858164371
## 1124   858164380
## 1125   858164449
## 1126   858164457
## 1127   858164474
## 1128   858164514
## 1129   858164516
## 1130   858164541
## 1131   858164544
## 1132   858164577
## 1133   858165864
## 1134   858165900
## 1135   858165901
## 1136   858166015
## 1137   858166046
## 1138   858170454
## 1139   858170553
## 1140   858170656
## 1141   858170702
## 1142   858170764
## 1143   858170803
## 1144   858172147
## 1145   858172186
## 1146   858172244
## 1147   858172381
## 1148   858172797
## 1149   858172944
## 1150   858173170
## 1151   858173218
## 1152   858173218
## 1153   858173261
## 1154   858173261
## 1155   858173298
## 1156   858173367
## 1157   858173399
## 1158   858173449
## 1159   858173510
## 1160   858173537
## 1161   858173537
## 1162   858173620
## 1163   858173620
## 1164   858173649
## 1165   858173810
## 1166   858173879
## 1167   858173902
## 1168   858173915
## 1169   858175327
## 1170   858175643
## 1171   858176090
## 1172   858176261
## 1173   858176381
## 1174   858176919
## 1175   858177064
## 1176   858178825
## 1177   858179568
## 1178   858179568
## 1179   858179788
## 1180   858179997
## 1181   858180014
## 1182   858180091
## 1183   858180280
## 1184   858181398
## 1185   858187670
## 1186   858187670
## 1187   858187738
## 1188   858188247
## 1189   858188247
## 1190   858188715
## 1191   858188790
## 1192   858189000
## 1193   858191219
## 1194   858191219
## 1195   858191396
## 1196   858191628
## 1197   858191714
## 1198   858191762
## 1199   858191820
## 1200   858192273
## 1201   858192273
## 1202   858192302
## 1203   858198116
## 1204   858198116
## 1205   858198150
## 1206   858198257
## 1207   858199896
## 1208   858199942
## 1209   858199981
## 1210   858200270
## 1211   858200359
## 1212   858200359
## 1213   858203110
## 1214   858203147
## 1215   858203204
## 1216   858218365
## 1217   858218437
## 1218   858218438
## 1219   858225112
## 1220   858225613
## 1221   858225743
## 1222   858225822
## 1223   858225995
## 1224   858226542
## 1225   858227222
## 1226   858227277
## 1227   858227354
## 1228   858227426
## 1229   858227543
## 1230   858231362
## 1231   858232029
## 1232   858232333
## 1233   858233437
## 1234   858233606
## 1235   858239193
## 1236   858239263
## 1237   858239292
## 1238   858240127
## 1239   858240207
## 1240   858240361
## 1241   858240389
## 1242   858240415
## 1243   858240574
## 1244   858240926
## 1245   858241022
## 1246   858243432
## 1247   858243476
## 1248   858244812
## 1249   858244812
## 1250   858244977
## 1251   858248319
## 1252   858248484
## 1253   858248557
## 1254   858249406
## 1255   859556111
## 1256   861647295
## 1257   862965458
## 1258   864137712
## 1259   864137759
## 1260   864137838
## 1261   864138218
## 1262   864138218
## 1263   864479339
## 1264   864479592
## 1265   864480155
## 1266   864480538
## 1267   864482187
## 1268   864482618
## 1269   864482671
## 1270   864482693
## 1271   864896821
## 1272   865942674
## 1273   866754249
## 1274   866754284
## 1275   866754588
## 1276   866754912
## 1277   866755132
## 1278   866792005
## 1279   866792055
## 1280   866792055
## 1281   866792110
## 1282   866792463
## 1283   867351943
## 1284   868626026
## 1285   868626115
## 1286   868626263
## 1287   868626289
## 1288   868626339
## 1289   868626421
## 1290   868626480
## 1291   868626525
## 1292   868626719
## 1293   868626902
## 1294   868626916
## 1295   868626933
## 1296   868627157
## 1297   868627174
## 1298   868627807
## 1299   868627844
## 1300   868627863
## 1301   868627911
## 1302   868627937
## 1303   868628234
## 1304   868628555
## 1305   868628789
## 1306   868628836
## 1307   868629284
## 1308   868629948
## 1309   868630082
## 1310   868630216
## 1311   868630216
## 1312   868630383
## 1313   868631257
## 1314   868631332
## 1315   868631500
## 1316   868631519
## 1317   868631588
## 1318   868631649
## 1319   868631649
## 1320   868631665
## 1321   868631701
## 1322   868637080
## 1323   868637138
## 1324   868637170
## 1325   868642646
## 1326   868642668
## 1327   868642710
## 1328   868643095
## 1329   868643261
## 1330   868643286
## 1331   868643323
## 1332   868643323
## 1333   868643323
## 1334   868644084
## 1335   868644162
## 1336   868644736
## 1337   868644937
## 1338   868644949
## 1339   868645042
## 1340   868645055
## 1341   868645259
## 1342   868645291
## 1343   868645428
## 1344   868646180
## 1345   868646181
## 1346   868646432
## 1347   868646433
## 1348   868648092
## 1349   868648173
## 1350   868652046
## 1351   868652089
## 1352   868652089
## 1353   868653937
## 1354   868653937
## 1355   868653937
## 1356   868654038
## 1357   868654157
## 1358   868654608
## 1359   868654608
## 1360   868654787
## 1361   868654819
## 1362   868654819
## 1363   868654851
## 1364   868654879
## 1365   868654902
## 1366   868657680
## 1367   868657680
## 1368   868658017
## 1369   868659015
## 1370   868689366
## 1371   868690818
## 1372   868690846
## 1373   868690868
## 1374   868690890
## 1375   868690915
## 1376   868691026
## 1377   868691058
## 1378   868691405
## 1379   868691570
## 1380   868691678
## 1381   868695584
## 1382   868695584
## 1383   868695610
## 1384   868695688
## 1385   868695764
## 1386   868695795
## 1387   868696020
## 1388   868698566
## 1389   868698720
## 1390   868698763
## 1391   868698763
## 1392   868698816
## 1393   868698868
## 1394   868698958
## 1395   868703145
## 1396   868703150
## 1397   868703302
## 1398   868703464
## 1399   868703464
## 1400   868703490
## 1401   868705988
## 1402   868716383
## 1403   868716441
## 1404   868716441
## 1405   868716483
## 1406   868716483
## 1407   868716601
## 1408   868716646
## 1409   868716682
## 1410   868716734
## 1411   868716920
## 1412   868716920
## 1413   868716998
## 1414   868717212
## 1415   868733268
## 1416   868733270
## 1417   868733315
## 1418   868733345
## 1419   868733443
## 1420   868733463
## 1421   868735554
## 1422   868738228
## 1423   868738356
## 1424   868739414
## 1425   868743515
## 1426   868743914
## 1427   868743970
## 1428   868744019
## 1429   868745056
## 1430   868745057
## 1431   868745059
## 1432   868745094
## 1433   868745131
## 1434   868745167
## 1435   868745194
## 1436   868745233
## 1437   868745233
## 1438   868745440
## 1439   868746324
## 1440   868747328
## 1441   868747328
## 1442   868747445
## 1443   868747943
## 1444   868748006
## 1445   868748333
## 1446   868748945
## 1447   868748948
## 1448   868748998
## 1449   868749051
## 1450   868749051
## 1451   868749106
## 1452   868749274
## 1453   868749373
## 1454   868749672
## 1455   868759459
## 1456   868759519
## 1457   868759621
## 1458   868777721
## 1459   868777809
## 1460   868777809
## 1461   868784829
## 1462   868784833
## 1463   868784890
## 1464   868785007
## 1465   868792562
## 1466   868792674
## 1467   868796704
## 1468   868796893
## 1469   868796893
## 1470   868796945
## 1471   868797356
## 1472   868805652
## 1473   868808617
## 1474   868814142
## 1475   868814803
## 1476   868815162
## 1477   868816194
## 1478   868816567
## 1479   868816574
## 1480   868880551
## 1481   868975005
## 1482   868998889
## 1483   868998998
## 1484   868999566
## 1485   868999756
## 1486   869000367
## 1487   869000486
## 1488   869469948
## 1489   869470068
## 1490   869470168
## 1491   869470234
## 1492   874481550
## 1493   874481695
## 1494   874486718
## 1495   874491865
## 1496   875127573
## 1497   875129448
## 1498   875129449
## 1499   875129801
## 1500   875129874
## 1501   875129995
## 1502   875130110
## 1503   913318844
## 1504   913319271
## 1505   913319441
## 1506   913319619
## 1507   913319662
## 1508   913324512
## 1509   913325792
## 1510   913326256
## 1511   913326286
## 1512   913326990
## 1513   913327105
## 1514   913327355
## 1515   913327464
## 1516   913329437
## 1517   913329437
## 1518   913329549
## 1519   913330199
## 1520   913330933
## 1521   913331043
## 1522   913331796
## 1523   913332070
## 1524   913332171
## 1525   913332171
## 1526   913332198
## 1527   913332256
## 1528   913332714
## 1529   913332787
## 1530   913332867
## 1531   913332952
## 1532   913333176
## 1533   913333176
## 1534   913334637
## 1535   913334637
## 1536   913334780
## 1537   913334781
## 1538   913334821
## 1539   913334891
## 1540   913334947
## 1541   913335001
## 1542   913347946
## 1543   913347999
## 1544   913348616
## 1545   913348886
## 1546   913348983
## 1547   913349112
## 1548   913349137
## 1549   913349683
## 1550   913349683
## 1551   913349683
## 1552   913349867
## 1553   913349978
## 1554   913350109
## 1555   913350147
## 1556   913350147
## 1557   913350294
## 1558   913350530
## 1559   913350856
## 1560   913350856
## 1561   913351067
## 1562   913351105
## 1563   913351149
## 1564   913351350
## 1565   913351431
## 1566   913351543
## 1567   913351715
## 1568   913352097
## 1569   913352633
## 1570   913353364
## 1571   913353364
## 1572   913353920
## 1573   913353947
## 1574   913354263
## 1575   913354642
## 1576   913354642
## 1577   913354763
## 1578   913354763
## 1579   913355057
## 1580   913355103
## 1581   913355150
## 1582   913371154
## 1583   913371154
## 1584   913371455
## 1585   913371562
## 1586   913371869
## 1587   913372036
## 1588   913372189
## 1589   913372906
## 1590   913372906
## 1591   913373688
## 1592   913374262
## 1593   913380817
## 1594   913380847
## 1595   913382080
## 1596   913382113
## 1597   913382776
## 1598   913382985
## 1599   913383165
## 1600   913383803
## 1601   913384005
## 1602   913384128
## 1603   913384216
## 1604   913384257
## 1605   913384366
## 1606   913384366
## 1607   913384443
## 1608   913384451
## 1609   913384619
## 1610   913384853
## 1611   913385080
## 1612   913385112
## 1613   913385400
## 1614   913385577
## 1615   913385620
## 1616   913385794
## 1617   913385847
## 1618   913385847
## 1619   913385887
## 1620   913386009
## 1621   913386066
## 1622   913386134
## 1623   913386533
## 1624   913386740
## 1625   913386850
## 1626   913387009
## 1627   913387049
## 1628   913387426
## 1629   913388013
## 1630   913388051
## 1631   913388196
## 1632   913388325
## 1633   913388586
## 1634   913388722
## 1635   913389331
## 1636   913389415
## 1637   913389631
## 1638   913389703
## 1639   913390244
## 1640   913390473
## 1641   913390740
## 1642   913391012
## 1643   913391045
## 1644   913393863
## 1645   913393921
## 1646   913405056
## 1647   913405606
## 1648   913405710
## 1649   913405903
## 1650   913405903
## 1651   913406162
## 1652   913407089
## 1653   913407156
## 1654   913407156
## 1655   913407212
## 1656   913407338
## 1657   913407338
## 1658   913407396
## 1659   913407664
## 1660   913407664
## 1661   913407664
## 1662   913407710
## 1663   913407711
## 1664   913407795
## 1665   913407896
## 1666   913407936
## 1667   913408535
## 1668   913408592
## 1669   913408802
## 1670   913409110
## 1671   913409514
## 1672   913409514
## 1673   913409660
## 1674   913409717
## 1675   913409717
## 1676   913409761
## 1677   913409828
## 1678   913409828
## 1679   913409867
## 1680   913410237
## 1681   913410237
## 1682   913410237
## 1683   913410311
## 1684   913410311
## 1685   913415530
## 1686   913415901
## 1687   913415944
## 1688   913416050
## 1689   913416112
## 1690   913416140
## 1691   913416260
## 1692   913416424
## 1693   913416453
## 1694   913416546
## 1695   913416667
## 1696   913416667
## 1697   913416692
## 1698   913416998
## 1699   913417022
## 1700   913417154
## 1701   913417251
## 1702   913417550
## 1703   913417569
## 1704   913428596
## 1705   913428596
## 1706   913429195
## 1707   913429607
## 1708   913429607
## 1709   913429956
## 1710   913430063
## 1711   913430063
## 1712   913430268
## 1713   913430508
## 1714   913430508
## 1715   913430558
## 1716   913430616
## 1717   913430616
## 1718   913430752
## 1719   913431504
## 1720   913431669
## 1721   913432021
## 1722   913432154
## 1723   913432539
## 1724   913432727
## 1725   913432774
## 1726   913432877
## 1727   913433089
## 1728   913433145
## 1729   913435875
## 1730   913436278
## 1731   913436704
## 1732   913460671
## 1733   913460711
## 1734   913460784
## 1735   913466851
## 1736   913467129
## 1737   913467587
## 1738   913467811
## 1739   913467897
## 1740   913467897
## 1741   913469069
## 1742   913469069
## 1743   913469259
## 1744   913469583
## 1745   913469946
## 1746   913470150
## 1747   913470150
## 1748   913471302
## 1749   913472001
## 1750   913472001
## 1751   913472089
## 1752   913472089
## 1753   913472578
## 1754   913472615
## 1755   913472679
## 1756   913472935
## 1757   913473210
## 1758   913473697
## 1759   913473819
## 1760   913474177
## 1761   913474344
## 1762   913475535
## 1763   913475620
## 1764   913475620
## 1765   913475729
## 1766   913486355
## 1767   913486473
## 1768   913486604
## 1769   913486875
## 1770   913486962
## 1771   913487136
## 1772   913487280
## 1773   913487641
## 1774   913487768
## 1775   913487932
## 1776   913487932
## 1777   913487959
## 1778   913488351
## 1779   913488474
## 1780   913488739
## 1781   913488900
## 1782   913489032
## 1783   913661956
## 1784   913662186
## 1785   913662276
## 1786   913662364
## 1787   913662840
## 1788   913662889
## 1789   913663038
## 1790   913663276
## 1791   913742423
## 1792   913742635
## 1793   913742905
## 1794   913743105
## 1795   913809889
## 1796   913818184
## 1797   913818250
## 1798   913818557
## 1799   913819642
## 1800   913821255
## 1801   913822137
## 1802   913822137
## 1803   913823668
## 1804   913906512
## 1805   913979821
## 1806   913980061
## 1807   913980539
## 1808   913980878
## 1809   914276076
## 1810   914276244
## 1811   915540373
## 1812   918225650
## 1813   922206256
## 1814   925685556
## 1815   928953196
## 1816   930501676
## 1817   930909496
## 1818   932837755
## 1819   936304555
## 1820   936903842
## 1821   936903939
## 1822   936904105
## 1823   936904278
## 1824   936905034
## 1825   937662844
## 1826   940804175
## 1827   941803368
## 1828   941803710
## 1829   941803924
## 1830   941804037
## 1831   941804098
## 1832   941804200
## 1833   941804244
## 1834   941804630
## 1835   941804741
## 1836   941805148
## 1837   941805148
## 1838   941805759
## 1839   941806014
## 1840   941806835
## 1841   941806835
## 1842   941808035
## 1843   941810228
## 1844   941810349
## 1845   941810401
## 1846   941810442
## 1847   941810442
## 1848   941810551
## 1849   941810602
## 1850   941810751
## 1851   941810815
## 1852   941811034
## 1853   941811034
## 1854   941811043
## 1855   941811043
## 1856   941813200
## 1857   941813751
## 1858   941813861
## 1859   941813937
## 1860   941816698
## 1861   941816759
## 1862   941816817
## 1863   941816832
## 1864   941816924
## 1865   941816969
## 1866   941816969
## 1867   941817150
## 1868   941817232
## 1869   941817233
## 1870   941817308
## 1871   941817482
## 1872   941817616
## 1873   941817617
## 1874   941817809
## 1875   941817831
## 1876   941817861
## 1877   941817875
## 1878   941817936
## 1879   941818004
## 1880   941818004
## 1881   941818049
## 1882   941818291
## 1883   941818392
## 1884   941818541
## 1885   941818550
## 1886   941818616
## 1887   941818665
## 1888   941818804
## 1889   941819039
## 1890   941819445
## 1891   941819682
## 1892   941820858
## 1893   941821025
## 1894   941821025
## 1895   941821258
## 1896   941821633
## 1897   941822130
## 1898   941822444
## 1899   941822541
## 1900   941822715
## 1901   941822738
## 1902   941823456
## 1903   941825147
## 1904   941825240
## 1905   941825240
## 1906   941825404
## 1907   941825468
## 1908   941825608
## 1909   941825608
## 1910   941825763
## 1911   941825763
## 1912   941825763
## 1913   941825819
## 1914   941826837
## 1915   941827227
## 1916   941827567
## 1917   941828626
## 1918   941828769
## 1919   941829285
## 1920   941829325
## 1921   941829490
## 1922   941829583
## 1923   941829945
## 1924   941829950
## 1925   941830012
## 1926   941830012
## 1927   941830057
## 1928   941830221
## 1929   941830287
## 1930   941830428
## 1931   941830428
## 1932   941830517
## 1933   941830535
## 1934   941830535
## 1935   941830555
## 1936   941830568
## 1937   941830622
## 1938   941830692
## 1939   941830726
## 1940   941830797
## 1941   941831130
## 1942   941831400
## 1943   941831661
## 1944   941832058
## 1945   941832433
## 1946   941832495
## 1947   941832513
## 1948   941832513
## 1949   941832554
## 1950   941832555
## 1951   941832691
## 1952   941832743
## 1953   941832752
## 1954   941832768
## 1955   941832768
## 1956   941832768
## 1957   941832933
## 1958   941832933
## 1959   941832957
## 1960   941832964
## 1961   941833357
## 1962   941833377
## 1963   941833583
## 1964   941833590
## 1965   941833655
## 1966   941833662
## 1967   941833719
## 1968   941833719
## 1969   941833783
## 1970   941833990
## 1971   941833990
## 1972   941833990
## 1973   941834050
## 1974   941834066
## 1975   941834145
## 1976   941834213
## 1977   941834271
## 1978   941834271
## 1979   941834319
## 1980   941834329
## 1981   941834417
## 1982   941834417
## 1983   941834417
## 1984   941834557
## 1985   941834584
## 1986   941834645
## 1987   941834769
## 1988   941834769
## 1989   941834769
## 1990   941835150
## 1991   941835354
## 1992   941835354
## 1993   941835444
## 1994   941835911
## 1995   941836014
## 1996   941836067
## 1997   941836067
## 1998   941836670
## 1999   941837064
## 2000   941837128
## 2001   941837183
## 2002   941839322
## 2003   941839510
## 2004   941839867
## 2005   941839867
## 2006   941839867
## 2007   941839932
## 2008   941839993
## 2009   941840374
## 2010   941840429
## 2011   941840466
## 2012   941840466
## 2013   941840551
## 2014   941840558
## 2015   941840615
## 2016   941841346
## 2017   941841398
## 2018   941841469
## 2019   941841531
## 2020   941841531
## 2021   941841702
## 2022   941842024
## 2023   941842324
## 2024   941842895
## 2025   941842931
## 2026   941842973
## 2027   941843028
## 2028   941843224
## 2029   941843798
## 2030   941843815
## 2031   941844070
## 2032   941844070
## 2033   941844267
## 2034   941844291
## 2035   941844320
## 2036   941844515
## 2037   941844594
## 2038   941844745
## 2039   941844818
## 2040   941846001
## 2041   941846851
## 2042   941847165
## 2043   941847210
## 2044   941847250
## 2045   941847250
## 2046   941847346
## 2047   941847572
## 2048   941847609
## 2049   941847751
## 2050   941847787
## 2051   941848188
## 2052   941848504
## 2053   941849069
## 2054   941849519
## 2055   941849551
## 2056   941849604
## 2057   941849655
## 2058   941849699
## 2059   941849903
## 2060   941850027
## 2061   941850847
## 2062   941850890
## 2063   941850926
## 2064   941851082
## 2065   941851171
## 2066   941851198
## 2067   941851252
## 2068   941851944
## 2069   941852108
## 2070   941852322
## 2071   941852747
## 2072   941853532
## 2073   941854815
## 2074   941855071
## 2075   941855186
## 2076   941855273
## 2077   941855362
## 2078   941855874
## 2079   941855957
## 2080   941856082
## 2081   941856158
## 2082   941856268
## 2083   941857520
## 2084   941857520
## 2085   941857689
## 2086   941857841
## 2087   941878171
## 2088   941878367
## 2089   941878420
## 2090   941878530
## 2091   941878632
## 2092   941878920
## 2093   941879041
## 2094   941879334
## 2095   941879627
## 2096   941879720
## 2097   941879819
## 2098   941879872
## 2099   941880173
## 2100   941880369
## 2101   941880643
## 2102   941880643
## 2103   941880752
## 2104   941881083
## 2105   941881327
## 2106   941881853
## 2107   941882231
## 2108   941882360
## 2109   941882567
## 2110   941882581
## 2111   941882776
## 2112   941882870
## 2113   941883002
## 2114   941883002
## 2115   941883011
## 2116   941883049
## 2117   941883074
## 2118   941883074
## 2119   941883130
## 2120   941883239
## 2121   941883364
## 2122   941883478
## 2123   941883584
## 2124   941883798
## 2125   941883998
## 2126   941884014
## 2127   941884090
## 2128   941884090
## 2129   941884090
## 2130   941884138
## 2131   941884138
## 2132   941884276
## 2133   941884406
## 2134   941884640
## 2135   941884660
## 2136   941884806
## 2137   941884908
## 2138   941884908
## 2139   941885017
## 2140   941886832
## 2141   941886951
## 2142   941887369
## 2143   941887581
## 2144   941887619
## 2145   941887686
## 2146   941887811
## 2147   941888265
## 2148   941888365
## 2149   941888659
## 2150   941888718
## 2151   941888718
## 2152   941888761
## 2153   941888775
## 2154   941888953
## 2155   941889217
## 2156   941889408
## 2157   941889520
## 2158   941889618
## 2159   941889681
## 2160   941889700
## 2161   941889700
## 2162   941889730
## 2163   941889850
## 2164   941890229
## 2165   941890327
## 2166   941890438
## 2167   941890744
## 2168   941890867
## 2169   941895019
## 2170   941895311
## 2171   941895504
## 2172   941895541
## 2173   941895541
## 2174   941897754
## 2175   941897866
## 2176   941898174
## 2177   941898174
## 2178   941899640
## 2179   941899750
## 2180   941900062
## 2181   941900258
## 2182   941900342
## 2183   941900444
## 2184   941900532
## 2185   941900928
## 2186   941902607
## 2187   941903274
## 2188   941903287
## 2189   941903287
## 2190   941903359
## 2191   941903855
## 2192   941904137
## 2193   941904491
## 2194   941904491
## 2195   941931393
## 2196   941931503
## 2197   941931966
## 2198   941938633
## 2199   941939146
## 2200   941939385
## 2201   941940281
## 2202   941940404
## 2203   941940404
## 2204   941940404
## 2205   941940404
## 2206   941940601
## 2207   941941611
## 2208   941941611
## 2209   941941721
## 2210   941942020
## 2211   941942224
## 2212   941942690
## 2213   941942690
## 2214   941943184
## 2215   941943584
## 2216   941943584
## 2217   941943713
## 2218   941943713
## 2219   941944079
## 2220   941944079
## 2221   941944079
## 2222   941944394
## 2223   941944532
## 2224   941944892
## 2225   941944892
## 2226   941945552
## 2227   941945936
## 2228   941946024
## 2229   941962744
## 2230   941966274
## 2231   941966694
## 2232   941987114
## 2233   941987235
## 2234   941987336
## 2235   941987512
## 2236   941987651
## 2237   941987715
## 2238   941987715
## 2239   941987858
## 2240   941987858
## 2241   941987930
## 2242   941987930
## 2243   942062945
## 2244   942062945
## 2245   942063000
## 2246   942063126
## 2247   942063323
## 2248   942064462
## 2249   942064607
## 2250   942064751
## 2251   942064765
## 2252   942065065
## 2253   942065242
## 2254   942071765
## 2255   942073162
## 2256   942073274
## 2257   942089328
## 2258   942090492
## 2259   942091006
## 2260   942093030
## 2261   942093730
## 2262   942093806
## 2263   942108491
## 2264   942108524
## 2265   942108721
## 2266   942109203
## 2267   942110060
## 2268   942146491
## 2269   942146671
## 2270   942147607
## 2271   942147607
## 2272   942148063
## 2273   942149006
## 2274   942149006
## 2275   942149210
## 2276   942149427
## 2277   942149606
## 2278   942151462
## 2279   942155259
## 2280   942166079
## 2281   942166872
## 2282   942247294
## 2283   942247464
## 2284   942247681
## 2285   942247681
## 2286   942367890
## 2287   942367890
## 2288   942491036
## 2289   942592222
## 2290   942684195
## 2291   942878984
## 2292   942879034
## 2293   942879294
## 2294   943061570
## 2295   943376803
## 2296   943377356
## 2297   943377935
## 2298   943386789
## 2299   943472661
## 2300   943473230
## 2301   943473324
## 2302   943473979
## 2303   943473979
## 2304   943474027
## 2305   943474549
## 2306   943474718
## 2307   943474774
## 2308   943474830
## 2309   943474985
## 2310   943475052
## 2311   943475408
## 2312   943475540
## 2313   943475657
## 2314   943475773
## 2315   943476089
## 2316   943476235
## 2317   943482786
## 2318   943625767
## 2319   943625767
## 2320   943641694
## 2321   943641774
## 2322   943722790
## 2323   943722790
## 2324   943730985
## 2325   945034387
## 2326   945034447
## 2327   945116968
## 2328   945117065
## 2329   945117317
## 2330   945117415
## 2331   945117470
## 2332   945117544
## 2333   945185055
## 2334   945893218
## 2335   945981548
## 2336   945982120
## 2337   945982194
## 2338   945982334
## 2339   945982371
## 2340   945982439
## 2341   945982634
## 2342   945982733
## 2343   945982734
## 2344   945983199
## 2345   945983225
## 2346   945983259
## 2347   945983516
## 2348   945983516
## 2349   945984379
## 2350   945984390
## 2351   945984923
## 2352   945985318
## 2353   945985501
## 2354   945985679
## 2355   945985818
## 2356   945985818
## 2357   945985911
## 2358   945989744
## 2359   945989907
## 2360   945990319
## 2361   945991603
## 2362   945991710
## 2363   945991812
## 2364   945991954
## 2365   945992104
## 2366   945992135
## 2367   945992352
## 2368   945992505
## 2369   945992694
## 2370   945992831
## 2371   945992947
## 2372   945992995
## 2373   945993047
## 2374   945993057
## 2375   945993116
## 2376   945994202
## 2377   945994796
## 2378   945994858
## 2379   945994980
## 2380   945995044
## 2381   945995108
## 2382   945996108
## 2383   945996506
## 2384   945996572
## 2385   945996672
## 2386   945996780
## 2387   945996903
## 2388   945996932
## 2389   945996932
## 2390   945996995
## 2391   945997063
## 2392   945997136
## 2393   945997352
## 2394   945997398
## 2395   945997437
## 2396   945997495
## 2397   945997509
## 2398   945997552
## 2399   945997588
## 2400   945997590
## 2401   945997665
## 2402   945997697
## 2403   945997733
## 2404   945997776
## 2405   945997819
## 2406   945997822
## 2407   945997856
## 2408   945997861
## 2409   945997895
## 2410   945997910
## 2411   945997969
## 2412   945997981
## 2413   945997994
## 2414   945998109
## 2415   945998158
## 2416   945998173
## 2417   945998257
## 2418   945998294
## 2419   945998348
## 2420   945998382
## 2421   945998420
## 2422   945998424
## 2423   945998492
## 2424   945998585
## 2425   945998598
## 2426   945998598
## 2427   945998807
## 2428   945998807
## 2429   945998915
## 2430   945999116
## 2431   945999116
## 2432   945999149
## 2433   946002156
## 2434   946002183
## 2435   946002201
## 2436   946002262
## 2437   946002368
## 2438   946002368
## 2439   946002562
## 2440   946003216
## 2441   946003254
## 2442   946003254
## 2443   946003303
## 2444   946003323
## 2445   946003354
## 2446   946003449
## 2447   946003501
## 2448   946003632
## 2449   946003686
## 2450   946003701
## 2451   946003749
## 2452   946003756
## 2453   946003800
## 2454   946003825
## 2455   946003828
## 2456   946003828
## 2457   946003910
## 2458   946003927
## 2459   946003966
## 2460   946004049
## 2461   946004188
## 2462   946004215
## 2463   946004337
## 2464   946004447
## 2465   946004447
## 2466   946004571
## 2467   946004571
## 2468   946004611
## 2469   946004716
## 2470   946004718
## 2471   946004758
## 2472   946004913
## 2473   946005035
## 2474   946005139
## 2475   946005263
## 2476   946005263
## 2477   946005466
## 2478   946005627
## 2479   946005627
## 2480   946005632
## 2481   946005664
## 2482   946005723
## 2483   946005751
## 2484   946005790
## 2485   946005790
## 2486   946005822
## 2487   946005896
## 2488   946005920
## 2489   946005995
## 2490   946005995
## 2491   946006257
## 2492   946006261
## 2493   946006382
## 2494   946006542
## 2495   946006551
## 2496   946006584
## 2497   946006584
## 2498   946006609
## 2499   946006631
## 2500   946006902
## 2501   946006904
## 2502   946006990
## 2503   946007041
## 2504   946007041
## 2505   946007068
## 2506   946007127
## 2507   946007164
## 2508   946007179
## 2509   946007184
## 2510   946007205
## 2511   946007220
## 2512   946007253
## 2513   946007312
## 2514   946007312
## 2515   946007392
## 2516   946007396
## 2517   946007436
## 2518   946007457
## 2519   946007460
## 2520   946007517
## 2521   946007519
## 2522   946007557
## 2523   946007602
## 2524   946007627
## 2525   946007646
## 2526   946007671
## 2527   946007674
## 2528   946007704
## 2529   946007714
## 2530   946007893
## 2531   946008065
## 2532   946008112
## 2533   946008225
## 2534   946008238
## 2535   946008272
## 2536   946008341
## 2537   946008375
## 2538   946008376
## 2539   946008490
## 2540   946008521
## 2541   946008644
## 2542   946008784
## 2543   946008788
## 2544   946008808
## 2545   946008840
## 2546   946008924
## 2547   946009104
## 2548   946009184
## 2549   946009254
## 2550   946009404
## 2551   946009433
## 2552   946009433
## 2553   946009471
## 2554   946009553
## 2555   946009628
## 2556   946009644
## 2557   946009687
## 2558   946009757
## 2559   946009887
## 2560   946009941
## 2561   946009941
## 2562   946010029
## 2563   946010148
## 2564   946010172
## 2565   946010192
## 2566   946010247
## 2567   946010254
## 2568   946010261
## 2569   946010365
## 2570   946010427
## 2571   946010545
## 2572   946010545
## 2573   946010569
## 2574   946011842
## 2575   946011880
## 2576   946012014
## 2577   946012243
## 2578   946012384
## 2579   946012387
## 2580   946012435
## 2581   946012435
## 2582   946012435
## 2583   946012442
## 2584   946012483
## 2585   946012607
## 2586   946012721
## 2587   946012731
## 2588   946012731
## 2589   946012740
## 2590   946012917
## 2591   946012917
## 2592   946012955
## 2593   946012965
## 2594   946013034
## 2595   946013048
## 2596   946013057
## 2597   946013192
## 2598   946013246
## 2599   946013303
## 2600   946013471
## 2601   946013520
## 2602   946013572
## 2603   946013573
## 2604   946013611
## 2605   946013654
## 2606   946013659
## 2607   946013750
## 2608   946013887
## 2609   946013960
## 2610   946014094
## 2611   946014242
## 2612   946014266
## 2613   946014353
## 2614   946014387
## 2615   946014392
## 2616   946014451
## 2617   946014451
## 2618   946014452
## 2619   946014620
## 2620   946014788
## 2621   946014816
## 2622   946014849
## 2623   946014993
## 2624   946015053
## 2625   946015092
## 2626   946015208
## 2627   946015235
## 2628   946015410
## 2629   946015505
## 2630   946015521
## 2631   946015521
## 2632   946015533
## 2633   946015608
## 2634   946015621
## 2635   946015690
## 2636   946015786
## 2637   946015817
## 2638   946015892
## 2639   946015955
## 2640   946015964
## 2641   946015984
## 2642   946015993
## 2643   946016011
## 2644   946016012
## 2645   946016025
## 2646   946016047
## 2647   946016047
## 2648   946016065
## 2649   946016070
## 2650   946016101
## 2651   946016113
## 2652   946016113
## 2653   946016270
## 2654   946016315
## 2655   946016342
## 2656   946016358
## 2657   946016458
## 2658   946016729
## 2659   946016729
## 2660   946016825
## 2661   946016837
## 2662   946016888
## 2663   946016913
## 2664   946016945
## 2665   946016991
## 2666   946017036
## 2667   946017036
## 2668   946017102
## 2669   946017102
## 2670   946017128
## 2671   946017166
## 2672   946017393
## 2673   946017422
## 2674   946017484
## 2675   946017657
## 2676   946017677
## 2677   946018010
## 2678   946018126
## 2679   946018224
## 2680   946018272
## 2681   946018371
## 2682   946018389
## 2683   946023021
## 2684   946023184
## 2685   946023257
## 2686   946023601
## 2687   946023628
## 2688   946023628
## 2689   946023628
## 2690   946023681
## 2691   946023974
## 2692   946024248
## 2693   946024337
## 2694   946024569
## 2695   946024764
## 2696   946024792
## 2697   946024862
## 2698   946033177
## 2699   946033383
## 2700   946033785
## 2701   946033785
## 2702   946033882
## 2703   946033935
## 2704   946034304
## 2705   946034928
## 2706   946034959
## 2707   946035514
## 2708   946036060
## 2709   946036187
## 2710   946036614
## 2711   946036839
## 2712   946037017
## 2713   946037288
## 2714   946037321
## 2715   946037438
## 2716   946037475
## 2717   946037882
## 2718   946037962
## 2719   946038031
## 2720   946038378
## 2721   946038389
## 2722   946038852
## 2723   946039118
## 2724   946039162
## 2725   946039198
## 2726   946039366
## 2727   946039416
## 2728   946039451
## 2729   946039527
## 2730   946039588
## 2731   946039666
## 2732   946039785
## 2733   946039890
## 2734   946039974
## 2735   946040006
## 2736   946040048
## 2737   946040304
## 2738   946040447
## 2739   946040791
## 2740   946040791
## 2741   946040791
## 2742   946040954
## 2743   946040954
## 2744   946040954
## 2745   946040981
## 2746   946041119
## 2747   946041642
## 2748   946041683
## 2749   946041822
## 2750   946041822
## 2751   946041847
## 2752   946041847
## 2753   946042023
## 2754   946042119
## 2755   946042161
## 2756   946042225
## 2757   946042285
## 2758   946042313
## 2759   946042345
## 2760   946042538
## 2761   946042866
## 2762   946043028
## 2763   946043052
## 2764   946043111
## 2765   946043622
## 2766   946043967
## 2767   946044024
## 2768   946045633
## 2769   946046187
## 2770   946046449
## 2771   946050738
## 2772   946057375
## 2773   946058047
## 2774   946058197
## 2775   946058367
## 2776   946059847
## 2777   946060357
## 2778   946060357
## 2779   946060637
## 2780   946060695
## 2781   946067142
## 2782   946067217
## 2783   946067829
## 2784   946250177
## 2785   946306403
## 2786   946326682
## 2787   946326947
## 2788   946327094
## 2789   946327170
## 2790   946327190
## 2791   946327559
## 2792   946333197
## 2793   946420020
## 2794   946420516
## 2795   946437781
## 2796   946492703
## 2797   946493279
## 2798   946495202
## 2799   946495351
## 2800   946496208
## 2801   946500640
## 2802   946501143
## 2803   946501173
## 2804   946504239
## 2805   946506024
## 2806   946613338
## 2807   946613614
## 2808   946613670
## 2809   946613943
## 2810   946614009
## 2811   946614187
## 2812   946614578
## 2813   946767884
## 2814   946845365
## 2815   946848757
## 2816   947357113
## 2817   947357632
## 2818   947357823
## 2819   947358392
## 2820   947469021
## 2821   947469471
## 2822   947469485
## 2823   947469681
## 2824   947469793
## 2825   947470003
## 2826   947470253
## 2827   947470317
## 2828   947470317
## 2829   947470351
## 2830   947470513
## 2831   947470596
## 2832   947470618
## 2833   947470832
## 2834   947470953
## 2835   947470994
## 2836   947471265
## 2837   947471297
## 2838   947471651
## 2839   947471859
## 2840   947477757
## 2841   947478414
## 2842   947617051
## 2843   947617304
## 2844   947619423
## 2845   947969905
## 2846   947969991
## 2847   947974627
## 2848   948081894
## 2849   948082089
## 2850   948087515
## 2851   948087667
## 2852   948087981
## 2853   948088009
## 2854   948088069
## 2855   948088741
## 2856   948088975
## 2857   948089208
## 2858   948089208
## 2859   948089280
## 2860   948089379
## 2861   948330627
## 2862   948330922
## 2863   948382829
## 2864   948383041
## 2865   948383408
## 2866   948383489
## 2867   948383489
## 2868   948383651
## 2869   948383737
## 2870   948383785
## 2871   948563050
## 2872   948680351
## 2873   948680923
## 2874   948681135
## 2875   948681219
## 2876   948685604
## 2877   948685875
## 2878   948685911
## 2879   948685912
## 2880   948686011
## 2881   948686054
## 2882   948686140
## 2883   948686452
## 2884   948686455
## 2885   948686491
## 2886   948686519
## 2887   948686524
## 2888   948686524
## 2889   948686559
## 2890   948686570
## 2891   948686648
## 2892   948686648
## 2893   948686660
## 2894   948686691
## 2895   948686777
## 2896   948686803
## 2897   948686829
## 2898   948686829
## 2899   948686880
## 2900   948687199
## 2901   948697643
## 2902   948716204
## 2903   948716204
## 2904   948717482
## 2905   948728043
## 2906   948728417
## 2907   948728681
## 2908   948728721
## 2909   948728721
## 2910   948728721
## 2911   948728825
## 2912   948728850
## 2913   948728953
## 2914   948728953
## 2915   948729043
## 2916   948729168
## 2917   948729168
## 2918   948729283
## 2919   948729420
## 2920   948729420
## 2921   948729891
## 2922   948729973
## 2923   948730197
## 2924   948730197
## 2925   948730197
## 2926   948730270
## 2927   948730321
## 2928   948730368
## 2929   948731033
## 2930   948825072
## 2931   948825200
## 2932   948825280
## 2933   948825356
## 2934   948825374
## 2935   948825407
## 2936   948825975
## 2937   948825975
## 2938   948826000
## 2939   948826050
## 2940   948826940
## 2941   948826959
## 2942   948826977
## 2943   948827207
## 2944   948827265
## 2945   948827265
## 2946   948827271
## 2947   948827462
## 2948   948827640
## 2949   948827928
## 2950   948827951
## 2951   948827974
## 2952   948827978
## 2953   948828213
## 2954   948828247
## 2955   948828258
## 2956   948828586
## 2957   948828612
## 2958   948828806
## 2959   948828806
## 2960   948828854
## 2961   948828890
## 2962   948829016
## 2963   948829062
## 2964   948829152
## 2965   948829179
## 2966   948829206
## 2967   948829222
## 2968   948829278
## 2969   948829418
## 2970   948829437
## 2971   948829437
## 2972   948829909
## 2973   948829944
## 2974   948829992
## 2975   948830065
## 2976   948830213
## 2977   948830302
## 2978   948830370
## 2979   948830382
## 2980   948830446
## 2981   948830468
## 2982   948830680
## 2983   948830697
## 2984   948830720
## 2985   948830783
## 2986   948830870
## 2987   948831058
## 2988   948831098
## 2989   948831271
## 2990   948831383
## 2991   948831387
## 2992   948832006
## 2993   948832006
## 2994   948832006
## 2995   948832006
## 2996   948832366
## 2997   948832563
## 2998   948832563
## 2999   948833009
## 3000   948833887
## 3001   948833890
## 3002   948833966
## 3003   948833966
## 3004   948834000
## 3005   948834643
## 3006   948836777
## 3007   948836951
## 3008   948837044
## 3009   948837219
## 3010   948837725
## 3011   948837928
## 3012   948838155
## 3013   948838415
## 3014   948838464
## 3015   948838973
## 3016   948839056
## 3017   948839238
## 3018   948839278
## 3019   948839278
## 3020   948845139
## 3021   948845197
## 3022   948845197
## 3023   948845277
## 3024   948845306
## 3025   948845397
## 3026   948845397
## 3027   948845431
## 3028   948845596
## 3029   948845596
## 3030   948845635
## 3031   948846072
## 3032   948846093
## 3033   948846120
## 3034   948846292
## 3035   948846348
## 3036   948846399
## 3037   948846455
## 3038   948846477
## 3039   948846512
## 3040   948846775
## 3041   948846829
## 3042   948846898
## 3043   948846898
## 3044   948847189
## 3045   948847209
## 3046   948847847
## 3047   948848167
## 3048   948848728
## 3049   948851817
## 3050   948851837
## 3051   948852031
## 3052   948852068
## 3053   948852225
## 3054   948852287
## 3055   948852309
## 3056   948852381
## 3057   948852414
## 3058   948855280
## 3059   948856673
## 3060   948856719
## 3061   948856854
## 3062   948856900
## 3063   948856921
## 3064   948857092
## 3065   948857111
## 3066   948862022
## 3067   948862225
## 3068   948862426
## 3069   948862665
## 3070   948862741
## 3071   948862969
## 3072   948862996
## 3073   948863458
## 3074   948870375
## 3075   948870409
## 3076   948870492
## 3077   948870492
## 3078   948870685
## 3079   948870789
## 3080   948879967
## 3081   948880000
## 3082   948885265
## 3083   948885283
## 3084   948885330
## 3085   948885564
## 3086   948885774
## 3087   948902320
## 3088   948902388
## 3089   948902487
## 3090   948912642
## 3091   948915440
## 3092   948915906
## 3093   948917485
## 3094   948917527
## 3095   948917527
## 3096   948917655
## 3097   948918372
## 3098   948918389
## 3099   948918396
## 3100   948918603
## 3101   948918857
## 3102   948918864
## 3103   948918891
## 3104   948919062
## 3105   948919081
## 3106   948919161
## 3107   948923629
## 3108   948923687
## 3109   948923754
## 3110   948923785
## 3111   948923833
## 3112   948923833
## 3113   948923975
## 3114   948924078
## 3115   948924624
## 3116   948925561
## 3117   948925911
## 3118   948925911
## 3119   948925995
## 3120   948926231
## 3121   948926265
## 3122   948926461
## 3123   948926571
## 3124   948926612
## 3125   948926612
## 3126   948928868
## 3127   948928912
## 3128   948928927
## 3129   948940745
## 3130   948940839
## 3131   948940840
## 3132   948940936
## 3133   948941308
## 3134   948992746
## 3135   948993776
## 3136   949013333
## 3137   949013448
## 3138   949013539
## 3139   949015617
## 3140   949017726
## 3141   949044373
## 3142   949044565
## 3143   949090600
## 3144   949182131
## 3145   949182198
## 3146   949182261
## 3147   949195105
## 3148   949355985
## 3149   949431740
## 3150   949431887
## 3151   949432436
## 3152   949435769
## 3153   949700984
## 3154   949701176
## 3155   949701447
## 3156   949701469
## 3157   949701987
## 3158   949701987
## 3159   949702287
## 3160   949722523
## 3161   949736275
## 3162   949736584
## 3163   949949955
## 3164   949949955
## 3165   949950136
## 3166   950035589
## 3167   950035589
## 3168   950076514
## 3169   950076514
## 3170   950076805
## 3171   950076868
## 3172   950076893
## 3173   950077114
## 3174   950077323
## 3175   950077634
## 3176   950077681
## 3177   950077867
## 3178   950078133
## 3179   950122303
## 3180   950122328
## 3181   950244625
## 3182   950244683
## 3183   950244718
## 3184   950244852
## 3185   950245009
## 3186   950245009
## 3187   950245959
## 3188   950246466
## 3189   950246597
## 3190   950247377
## 3191   950247826
## 3192   950248141
## 3193   950248267
## 3194   950248538
## 3195   950248538
## 3196   950248560
## 3197   950248740
## 3198   950285732
## 3199   950286053
## 3200   950286266
## 3201   950460100
## 3202   950717534
## 3203   950729116
## 3204   950729142
## 3205   950729228
## 3206   950729404
## 3207   950905224
## 3208   951239367
## 3209   951239438
## 3210   951239438
## 3211   951239478
## 3212   951239478
## 3213   951260900
## 3214   951261944
## 3215   951262392
## 3216   951263192
## 3217   951324151
## 3218   951344813
## 3219   951458263
## 3220   951458384
## 3221   951458384
## 3222   951458809
## 3223   951458809
## 3224   951459034
## 3225   951459285
## 3226   951531318
## 3227   951531495
## 3228   951531495
## 3229   951531981
## 3230   951531981
## 3231   951531981
## 3232   951534136
## 3233   951534260
## 3234   951534516
## 3235   951534765
## 3236   951534862
## 3237   951586848
## 3238   951614719
## 3239   951615088
## 3240   951615289
## 3241   951615626
## 3242   952373722
## 3243   952373796
## 3244   952373825
## 3245   952373825
## 3246   952373904
## 3247   952374279
## 3248   953009546
## 3249   953614110
## 3250   953614250
## 3251   953614292
## 3252   953614369
## 3253   953614699
## 3254   953615060
## 3255   953615081
## 3256   953615172
## 3257   953615434
## 3258   953615586
## 3259   953615610
## 3260   953615689
## 3261   953615805
## 3262   953615806
## 3263   953615833
## 3264   953615960
## 3265   953616066
## 3266   953616081
## 3267   953616101
## 3268   953616139
## 3269   953616139
## 3270   953616242
## 3271   953888969
## 3272   953888969
## 3273   953889525
## 3274   953889839
## 3275   953889839
## 3276   953890180
## 3277   953890384
## 3278   953890461
## 3279   953891320
## 3280   953891320
## 3281   953891573
## 3282   953891573
## 3283   954181923
## 3284   954561964
## 3285   954562337
## 3286   954562939
## 3287   954562964
## 3288   954563493
## 3289   954576542
## 3290   954702774
## 3291   954781374
## 3292   955244240
## 3293   955244816
## 3294   955668699
## 3295   955822387
## 3296   955906597
## 3297   955906642
## 3298   956179807
## 3299   956180248
## 3300   956180270
## 3301   956180322
## 3302   956180453
## 3303   956180569
## 3304   956180619
## 3305   956180703
## 3306   956963079
## 3307   956963107
## 3308   957658482
## 3309   957659062
## 3310   957807478
## 3311   957807989
## 3312   957808447
## 3313   958491655
## 3314   959488574
## 3315   959626848
## 3316   959626985
## 3317   959627152
## 3318   959627234
## 3319   959627499
## 3320   959628461
## 3321   959628776
## 3322   959629528
## 3323   959629551
## 3324   959629661
## 3325   959650205
## 3326   960180370
## 3327   960475460
## 3328   960479320
## 3329   960480021
## 3330   960480167
## 3331   960480567
## 3332   960481137
## 3333   960481141
## 3334   960481160
## 3335   960481190
## 3336   960481190
## 3337   960481384
## 3338   960481468
## 3339   960481507
## 3340   960481576
## 3341   960481671
## 3342   960481822
## 3343   960481874
## 3344   960481964
## 3345   960482003
## 3346   960482206
## 3347   960482343
## 3348   960482393
## 3349   960482393
## 3350   960482455
## 3351   960482491
## 3352   960485552
## 3353   960485577
## 3354   960485577
## 3355   960485715
## 3356   960487659
## 3357   960487763
## 3358   960487832
## 3359   960487888
## 3360   960487904
## 3361   960487930
## 3362   960488712
## 3363   960488732
## 3364   960488881
## 3365   960489041
## 3366   960489176
## 3367   960489239
## 3368   960489280
## 3369   960489344
## 3370   960489434
## 3371   960489542
## 3372   960489668
## 3373   960489769
## 3374   960489863
## 3375   960492432
## 3376   960493052
## 3377   960493392
## 3378   960493521
## 3379   960493577
## 3380   960493779
## 3381   960496467
## 3382   960496640
## 3383   960496667
## 3384   960496704
## 3385   960496729
## 3386   960496779
## 3387   960496854
## 3388   960496967
## 3389   960497270
## 3390   960497907
## 3391   960499434
## 3392   960499635
## 3393   960499638
## 3394   960499678
## 3395   960499830
## 3396   960499863
## 3397   960499863
## 3398   960499863
## 3399   960499942
## 3400   960499977
## 3401   960500076
## 3402   960500076
## 3403   960500076
## 3404   960500149
## 3405   960500149
## 3406   960500169
## 3407   960500169
## 3408   960500169
## 3409   960500265
## 3410   960500265
## 3411   960500329
## 3412   960500329
## 3413   960500329
## 3414   960500355
## 3415   960500403
## 3416   960500420
## 3417   960500420
## 3418   960500453
## 3419   960500472
## 3420   960500521
## 3421   960500524
## 3422   960500524
## 3423   960500550
## 3424   960500601
## 3425   960500603
## 3426   960500603
## 3427   960500631
## 3428   960500646
## 3429   960500657
## 3430   960500678
## 3431   960500696
## 3432   960500712
## 3433   960500727
## 3434   960500781
## 3435   960500815
## 3436   960500860
## 3437   960500870
## 3438   960500871
## 3439   960500896
## 3440   960500909
## 3441   960500928
## 3442   960500950
## 3443   960500979
## 3444   960500996
## 3445   960501010
## 3446   960501010
## 3447   960501057
## 3448   960501070
## 3449   960501083
## 3450   960501161
## 3451   960501264
## 3452   960501266
## 3453   960501299
## 3454   960501362
## 3455   960501376
## 3456   960501383
## 3457   960501458
## 3458   960501458
## 3459   960501460
## 3460   960501485
## 3461   960501521
## 3462   960501566
## 3463   960501752
## 3464   960501762
## 3465   960501794
## 3466   960502102
## 3467   960502133
## 3468   960502170
## 3469   960502204
## 3470   960502229
## 3471   960502357
## 3472   960502369
## 3473   960502386
## 3474   960502419
## 3475   960502524
## 3476   960502678
## 3477   960502706
## 3478   960502759
## 3479   960502762
## 3480   960502775
## 3481   960502775
## 3482   960502823
## 3483   960502837
## 3484   960502851
## 3485   960502863
## 3486   960502886
## 3487   960502951
## 3488   960502961
## 3489   960503072
## 3490   960503153
## 3491   960503269
## 3492   960503523
## 3493   960503574
## 3494   960503575
## 3495   960503616
## 3496   960503679
## 3497   960503757
## 3498   960503777
## 3499   960503831
## 3500   960503846
## 3501   960503860
## 3502   960503928
## 3503   960503970
## 3504   960503985
## 3505   960504018
## 3506   960504092
## 3507   960504157
## 3508   960504209
## 3509   960504233
## 3510   960504233
## 3511   960504272
## 3512   960504324
## 3513   960504324
## 3514   960504333
## 3515   960504436
## 3516   960504465
## 3517   960504497
## 3518   960504548
## 3519   960504609
## 3520   960504647
## 3521   960504678
## 3522   960504789
## 3523   960504845
## 3524   960504909
## 3525   960504941
## 3526   960505150
## 3527   960505260
## 3528   960505808
## 3529   960505949
## 3530   960505991
## 3531   960506047
## 3532   960506156
## 3533   960506357
## 3534   960506627
## 3535   960506777
## 3536   960506835
## 3537   960506888
## 3538   960507056
## 3539   960507108
## 3540   960507121
## 3541   960507146
## 3542   960507290
## 3543   960508616
## 3544   960508681
## 3545   960508696
## 3546   960509711
## 3547   960510015
## 3548   960510054
## 3549   960510152
## 3550   960510162
## 3551   960510301
## 3552   960510512
## 3553   960510541
## 3554   960510561
## 3555   960511077
## 3556   960511683
## 3557   960512002
## 3558   960512206
## 3559   960520057
## 3560   960520162
## 3561   960520562
## 3562   960520629
## 3563   960520684
## 3564   960520993
## 3565   960521046
## 3566   960521528
## 3567   960521732
## 3568   960521857
## 3569   960521927
## 3570   960524705
## 3571   960524965
## 3572   960525738
## 3573   960525826
## 3574   960525921
## 3575   960526005
## 3576   960526027
## 3577   960526060
## 3578   960526081
## 3579   960527583
## 3580   960527813
## 3581   960530091
## 3582   960547734
## 3583   960547968
## 3584   960555831
## 3585   960556099
## 3586   960556161
## 3587   960563104
## 3588   960567711
## 3589   960569481
## 3590   960569515
## 3591   960569542
## 3592   960569584
## 3593   960569637
## 3594   960569679
## 3595   960569779
## 3596   960569779
## 3597   960569812
## 3598   960569849
## 3599   960569905
## 3600   960569905
## 3601   960570149
## 3602   960570253
## 3603   960572887
## 3604   960573009
## 3605   960573030
## 3606   960573074
## 3607   960588686
## 3608   960588686
## 3609   960594563
## 3610   960594855
## 3611   960595307
## 3612   960595307
## 3613   960595448
## 3614   960595489
## 3615   960596070
## 3616   960597182
## 3617   960597331
## 3618   960597367
## 3619   960597369
## 3620   960597415
## 3621   960597512
## 3622   960597560
## 3623   960597561
## 3624   960597649
## 3625   960598104
## 3626   960602665
## 3627   960602782
## 3628   960603519
## 3629   960603673
## 3630   960603699
## 3631   960603699
## 3632   960603886
## 3633   960603926
## 3634   960603926
## 3635   960603942
## 3636   960604103
## 3637   960604103
## 3638   960604200
## 3639   960604217
## 3640   960604217
## 3641   960648752
## 3642   960648767
## 3643   960648834
## 3644   960648990
## 3645   960648990
## 3646   960649063
## 3647   960649182
## 3648   960649241
## 3649   960649282
## 3650   960649535
## 3651   960649573
## 3652   960649815
## 3653   960649848
## 3654   960649889
## 3655   960650047
## 3656   960650305
## 3657   960651232
## 3658   960651404
## 3659   960651439
## 3660   960651443
## 3661   960651627
## 3662   960651652
## 3663   960651670
## 3664   960651798
## 3665   960651963
## 3666   960652253
## 3667   960652866
## 3668   960652969
## 3669   960653418
## 3670   960653462
## 3671   960653672
## 3672   960653732
## 3673   960653804
## 3674   960654318
## 3675   960654340
## 3676   960654534
## 3677   960654798
## 3678   960655575
## 3679   960658132
## 3680   960658132
## 3681   960658312
## 3682   960658366
## 3683   960660309
## 3684   960660338
## 3685   960660369
## 3686   960660441
## 3687   960660472
## 3688   960660504
## 3689   960660578
## 3690   960660606
## 3691   960660606
## 3692   960660705
## 3693   960660747
## 3694   960660787
## 3695   960660855
## 3696   960660891
## 3697   960661024
## 3698   960661069
## 3699   960661836
## 3700   960661881
## 3701   960661970
## 3702   960662076
## 3703   960662689
## 3704   960663299
## 3705   960663602
## 3706   960663673
## 3707   960664170
## 3708   960664304
## 3709   960664329
## 3710   960664441
## 3711   960664489
## 3712   960664489
## 3713   960664517
## 3714   960664826
## 3715   960664925
## 3716   960664981
## 3717   960665019
## 3718   960665099
## 3719   960665221
## 3720   960665594
## 3721   960665660
## 3722   960665689
## 3723   960665689
## 3724   960665903
## 3725   960666168
## 3726   960666168
## 3727   960666220
## 3728   960669377
## 3729   960669664
## 3730   960669769
## 3731   960670788
## 3732   960671025
## 3733   960671113
## 3734   960671224
## 3735   960671329
## 3736   960671382
## 3737   960671422
## 3738   960671422
## 3739   960671448
## 3740   960671471
## 3741   960671503
## 3742   960671598
## 3743   960671700
## 3744   960671752
## 3745   960671826
## 3746   960671852
## 3747   960671871
## 3748   960671972
## 3749   960671999
## 3750   960671999
## 3751   960672002
## 3752   960672106
## 3753   960672116
## 3754   960672134
## 3755   960672165
## 3756   960672269
## 3757   960672292
## 3758   960672314
## 3759   960672331
## 3760   960672354
## 3761   960672421
## 3762   960672446
## 3763   960672577
## 3764   960672577
## 3765   960672691
## 3766   960672750
## 3767   960672773
## 3768   960672807
## 3769   960672871
## 3770   960672932
## 3771   960673115
## 3772   960673211
## 3773   960673232
## 3774   960673232
## 3775   960673278
## 3776   960673314
## 3777   960673356
## 3778   960673407
## 3779   960673547
## 3780   960673596
## 3781   960675111
## 3782   960675275
## 3783   960675541
## 3784   960675748
## 3785   960675983
## 3786   960676091
## 3787   960676140
## 3788   960676187
## 3789   960676532
## 3790   960676550
## 3791   960677464
## 3792   960678541
## 3793   960679219
## 3794   960679908
## 3795   960679976
## 3796   960680012
## 3797   960680565
## 3798   960681680
## 3799   960693445
## 3800   960693615
## 3801   960693658
## 3802   960693728
## 3803   960693795
## 3804   960693912
## 3805   960694200
## 3806   960694270
## 3807   960851457
## 3808   960927207
## 3809   960927531
## 3810   961014615
## 3811   961282856
## 3812   961282948
## 3813   961282948
## 3814   961309898
## 3815   961436984
## 3816   961973306
## 3817   961973431
## 3818   961973566
## 3819   961973980
## 3820   961974443
## 3821   961974725
## 3822   962066538
## 3823   963001328
## 3824   963243673
## 3825   963243821
## 3826   963243938
## 3827   963243974
## 3828   963244160
## 3829   963244348
## 3830   963244950
## 3831   963245065
## 3832   963245101
## 3833   963245183
## 3834   963245215
## 3835   963245668
## 3836   963245696
## 3837   963245738
## 3838   963245938
## 3839   963245960
## 3840   963246456
## 3841   963246888
## 3842   963671725
## 3843   963731794
## 3844   963731836
## 3845   963731881
## 3846   963731959
## 3847   963732052
## 3848   963732084
## 3849   963732155
## 3850   963732155
## 3851   963732582
## 3852   963733348
## 3853   964227874
## 3854   964756065
## 3855   965079265
## 3856   965187269
## 3857   965390471
## 3858   965432281
## 3859   965767899
## 3860   965767982
## 3861   966547555
## 3862   966547555
## 3863   966547555
## 3864   966547816
## 3865   966547998
## 3866   966548101
## 3867   966548160
## 3868   966548269
## 3869   967867791
## 3870   967922017
## 3871   968114131
## 3872   968114187
## 3873   968130340
## 3874   968716629
## 3875   968933093
## 3876   968933127
## 3877   970177874
## 3878   970499873
## 3879   970746253
## 3880   970746824
## 3881   970747085
## 3882   970747085
## 3883   970790682
## 3884   971588999
## 3885   971626923
## 3886   973530840
## 3887   974470690
## 3888   974470886
## 3889   974471348
## 3890   974474746
## 3891   974474879
## 3892   974475116
## 3893   974475175
## 3894   974475942
## 3895   974475979
## 3896   974476033
## 3897   974476117
## 3898   974476234
## 3899   974476312
## 3900   974476449
## 3901   974476479
## 3902   974476479
## 3903   974476547
## 3904   974476547
## 3905   974476547
## 3906   974477599
## 3907   974477692
## 3908   974477923
## 3909   974478003
## 3910   974478082
## 3911   974478452
## 3912   974478615
## 3913   974478866
## 3914   974479133
## 3915   974479453
## 3916   974479520
## 3917   974480381
## 3918   974481271
## 3919   974481367
## 3920   974481429
## 3921   974484188
## 3922   974488334
## 3923   974488533
## 3924   974488746
## 3925   974489000
## 3926   974489031
## 3927   974489031
## 3928   974489669
## 3929   974492706
## 3930   974492780
## 3931   974492894
## 3932   974493140
## 3933   974493178
## 3934   974493186
## 3935   974493279
## 3936   974493286
## 3937   974493320
## 3938   974493368
## 3939   974493445
## 3940   974493623
## 3941   974493659
## 3942   974493689
## 3943   974493776
## 3944   974493825
## 3945   974493894
## 3946   974494194
## 3947   974494358
## 3948   974494488
## 3949   974494547
## 3950   974494612
## 3951   974494703
## 3952   974494733
## 3953   974494765
## 3954   974494892
## 3955   974494971
## 3956   974495053
## 3957   974495081
## 3958   974495085
## 3959   974495095
## 3960   974495180
## 3961   974495268
## 3962   974495300
## 3963   974495354
## 3964   974495579
## 3965   974495621
## 3966   974495636
## 3967   974495694
## 3968   974495712
## 3969   974495851
## 3970   974495871
## 3971   974495968
## 3972   974495980
## 3973   974495992
## 3974   974496032
## 3975   974496105
## 3976   974496128
## 3977   974496151
## 3978   974496183
## 3979   974496183
## 3980   974496194
## 3981   974496246
## 3982   974496300
## 3983   974496356
## 3984   974496374
## 3985   974496376
## 3986   974496376
## 3987   974496472
## 3988   974496472
## 3989   974496476
## 3990   974496527
## 3991   974496543
## 3992   974496553
## 3993   974496583
## 3994   974496647
## 3995   974496682
## 3996   974496682
## 3997   974496705
## 3998   974496753
## 3999   974496753
## 4000   974496809
## 4001   974496899
## 4002   974496899
## 4003   974496943
## 4004   974496966
## 4005   974497019
## 4006   974497037
## 4007   974497045
## 4008   974497045
## 4009   974497102
## 4010   974497161
## 4011   974497217
## 4012   974497251
## 4013   974497302
## 4014   974497428
## 4015   974497495
## 4016   974497533
## 4017   974497571
## 4018   974497578
## 4019   974497649
## 4020   974497653
## 4021   974497696
## 4022   974497718
## 4023   974497725
## 4024   974497766
## 4025   974497796
## 4026   974497835
## 4027   974497844
## 4028   974497870
## 4029   974498040
## 4030   974498053
## 4031   974498053
## 4032   974498064
## 4033   974498292
## 4034   974498297
## 4035   974498306
## 4036   974498329
## 4037   974498337
## 4038   974498357
## 4039   974498391
## 4040   974498685
## 4041   974498746
## 4042   974500010
## 4043   974500154
## 4044   974500380
## 4045   974500519
## 4046   974500519
## 4047   974500922
## 4048   974501107
## 4049   974501236
## 4050   974501611
## 4051   974501950
## 4052   974502214
## 4053   974502351
## 4054   974502448
## 4055   974502531
## 4056   974502815
## 4057   974502863
## 4058   974503250
## 4059   974503310
## 4060   974503445
## 4061   974503560
## 4062   974504077
## 4063   974504203
## 4064   974504230
## 4065   974504898
## 4066   974505020
## 4067   974505020
## 4068   974505020
## 4069   974505303
## 4070   974505364
## 4071   974505364
## 4072   974505520
## 4073   974505520
## 4074   974510773
## 4075   974511006
## 4076   974511006
## 4077   974511269
## 4078   974511558
## 4079   974511596
## 4080   974511624
## 4081   974511624
## 4082   974511851
## 4083   974511879
## 4084   974512024
## 4085   974512153
## 4086   974512325
## 4087   974512347
## 4088   974512424
## 4089   974512895
## 4090   974555367
## 4091   974556113
## 4092   974556350
## 4093   974556481
## 4094   974558173
## 4095   974558242
## 4096   974565330
## 4097   974565651
## 4098   974565770
## 4099   974565813
## 4100   974580570
## 4101   974580624
## 4102   974580874
## 4103   974580896
## 4104   974580896
## 4105   974580971
## 4106   974582053
## 4107   974582272
## 4108   974582303
## 4109   974582373
## 4110   974582549
## 4111   974583042
## 4112   974583295
## 4113   974583314
## 4114   974583541
## 4115   974583573
## 4116   974583663
## 4117   974583953
## 4118   974591013
## 4119   974591047
## 4120   974591084
## 4121   974591487
## 4122   974591581
## 4123   974591604
## 4124   974591734
## 4125   974591792
## 4126   974743105
## 4127   974744266
## 4128   974744652
## 4129   974744985
## 4130   974745083
## 4131   974746652
## 4132   974747024
## 4133   974747157
## 4134   974747487
## 4135   974750108
## 4136   974764706
## 4137   974812349
## 4138   974812349
## 4139   974812382
## 4140   974812382
## 4141   975173888
## 4142   975173916
## 4143   975173943
## 4144   975173980
## 4145   975375613
## 4146   975598594
## 4147   975598815
## 4148   975857553
## 4149   975862230
## 4150   975944581
## 4151   975944581
## 4152   975944796
## 4153   975944796
## 4154   975944796
## 4155   975944861
## 4156   975945240
## 4157   975945240
## 4158   975945310
## 4159   975945362
## 4160   975945858
## 4161   975945915
## 4162   975946009
## 4163   975946185
## 4164   975984025
## 4165   976232573
## 4166   976232995
## 4167   976291646
## 4168   976291646
## 4169   976291646
## 4170   976291716
## 4171   976293947
## 4172   976490085
## 4173   976490301
## 4174   976490703
## 4175   976490751
## 4176   976490790
## 4177   976491009
## 4178   976491300
## 4179   976491816
## 4180   976492216
## 4181   976492855
## 4182   976494924
## 4183   976579998
## 4184   976681558
## 4185   976681930
## 4186   976725789
## 4187   976726111
## 4188   976726326
## 4189   976726346
## 4190   976726651
## 4191   976754849
## 4192   976857085
## 4193   976892694
## 4194   976893220
## 4195   976985941
## 4196   977090053
## 4197   977251761
## 4198   977751168
## 4199   977953379
## 4200   978224092
## 4201   978224888
## 4202   978225824
## 4203   978226623
## 4204   978716528
## 4205   978731232
## 4206   978825176
## 4207   978825505
## 4208   978902638
## 4209   978978818
## 4210   978979070
## 4211   978979144
## 4212   978981986
## 4213   978982818
## 4214   978983017
## 4215   978983367
## 4216   978983429
## 4217   978983814
## 4218   978984078
## 4219   979242675
## 4220   979250868
## 4221   979591699
## 4222   979639753
## 4223   979640063
## 4224   979761981
## 4225   979866082
## 4226   980265007
## 4227   980386750
## 4228   980386750
## 4229   980391044
## 4230   980733000
## 4231   980733106
## 4232   980733128
## 4233   980733460
## 4234   980733566
## 4235   980733592
## 4236   980733651
## 4237   980733794
## 4238   980787559
## 4239   980955563
## 4240   980956008
## 4241   980956347
## 4242   981595678
## 4243   981731328
## 4244   981940267
## 4245   982001810
## 4246   982001810
## 4247   982011291
## 4248   982011380
## 4249   982013213
## 4250   982013257
## 4251   982013340
## 4252   982013374
## 4253   982013677
## 4254   982013733
## 4255   982013758
## 4256   982013808
## 4257   982013999
## 4258   982014020
## 4259   982014040
## 4260   982014087
## 4261   982014394
## 4262   982014435
## 4263   982022326
## 4264   982022372
## 4265   982024628
## 4266   982024765
## 4267   982025209
## 4268   982025264
## 4269   982025319
## 4270   982025358
## 4271   982025375
## 4272   982025780
## 4273   982026092
## 4274   982032635
## 4275   982033024
## 4276   982033480
## 4277   982033681
## 4278   982039277
## 4279   982039446
## 4280   982039464
## 4281   982039549
## 4282   982039611
## 4283   982039697
## 4284   982039697
## 4285   982039708
## 4286   982039725
## 4287   982040004
## 4288   982040004
## 4289   982040004
## 4290   982040029
## 4291   982040054
## 4292   982040087
## 4293   982040087
## 4294   982040087
## 4295   982040139
## 4296   982040159
## 4297   982040224
## 4298   982041193
## 4299   982041217
## 4300   982041262
## 4301   982041262
## 4302   982041346
## 4303   982045567
## 4304   982045898
## 4305   982045958
## 4306   982046074
## 4307   982046191
## 4308   982046432
## 4309   982046432
## 4310   982046641
## 4311   982046641
## 4312   982046730
## 4313   982047116
## 4314   982047320
## 4315   982047531
## 4316   982047616
## 4317   982047737
## 4318   982047822
## 4319   982047961
## 4320   982048165
## 4321   982048367
## 4322   982048554
## 4323   982048791
## 4324   982048791
## 4325   982049010
## 4326   982049328
## 4327   982049501
## 4328   982049557
## 4329   982049557
## 4330   982049659
## 4331   982049688
## 4332   982049712
## 4333   982049731
## 4334   982050364
## 4335   982066482
## 4336   982097452
## 4337   982097651
## 4338   982097998
## 4339   982098163
## 4340   982098524
## 4341   982098535
## 4342   982098567
## 4343   982098709
## 4344   982098735
## 4345   982103058
## 4346   982103068
## 4347   982103086
## 4348   982103527
## 4349   982103527
## 4350   982103577
## 4351   982103589
## 4352   982103600
## 4353   982103627
## 4354   982103746
## 4355   982103869
## 4356   982104217
## 4357   982104237
## 4358   982104254
## 4359   982104399
## 4360   982104808
## 4361   982119741
## 4362   982121074
## 4363   982121227
## 4364   982121494
## 4365   982121545
## 4366   982121583
## 4367   982127975
## 4368   982128075
## 4369   982128135
## 4370   982128680
## 4371   982128875
## 4372   982128953
## 4373   982129094
## 4374   982129205
## 4375   982129223
## 4376   982129299
## 4377   982129337
## 4378   982130178
## 4379   982130233
## 4380   982130286
## 4381   982130286
## 4382   982130349
## 4383   982130494
## 4384   982130541
## 4385   982130590
## 4386   982130654
## 4387   982130908
## 4388   982130954
## 4389   982130954
## 4390   982131045
## 4391   982131218
## 4392   982131343
## 4393   982131781
## 4394   982131987
## 4395   982132307
## 4396   982132307
## 4397   982132409
## 4398   982136121
## 4399   982136262
## 4400   982136353
## 4401   982136397
## 4402   982136614
## 4403   982137623
## 4404   982152574
## 4405   982152597
## 4406   982153039
## 4407   982153064
## 4408   982153132
## 4409   982153170
## 4410   982153209
## 4411   982153341
## 4412   982153364
## 4413   982153443
## 4414   982153741
## 4415   982153802
## 4416   982154648
## 4417   982154926
## 4418   982154980
## 4419   982155481
## 4420   982155481
## 4421   982155643
## 4422   982155676
## 4423   982155764
## 4424   982155836
## 4425   982155836
## 4426   982155926
## 4427   982155951
## 4428   982156196
## 4429   982156212
## 4430   982156494
## 4431   982156794
## 4432   982157325
## 4433   982157451
## 4434   982157717
## 4435   982157769
## 4436   982157933
## 4437   982158137
## 4438   982158434
## 4439   982158513
## 4440   982158544
## 4441   982158810
## 4442   982159179
## 4443   982159179
## 4444   982160982
## 4445   982161174
## 4446   982161310
## 4447   982161785
## 4448   982161906
## 4449   982161943
## 4450   982161972
## 4451   982162108
## 4452   982162112
## 4453   982162482
## 4454   982162786
## 4455   982163270
## 4456   982163343
## 4457   982163374
## 4458   982163500
## 4459   982164919
## 4460   982164954
## 4461   982165133
## 4462   982165452
## 4463   982165539
## 4464   982165565
## 4465   982165596
## 4466   982165682
## 4467   982165886
## 4468   982165909
## 4469   982165909
## 4470   982166123
## 4471   982166143
## 4472   982166185
## 4473   982166207
## 4474   982166320
## 4475   982166358
## 4476   982166379
## 4477   982166399
## 4478   982166416
## 4479   982166487
## 4480   982166673
## 4481   982166779
## 4482   982166849
## 4483   982166915
## 4484   982167023
## 4485   982167087
## 4486   982167087
## 4487   982167136
## 4488   982167156
## 4489   982167435
## 4490   982167441
## 4491   982167456
## 4492   982167456
## 4493   982167581
## 4494   982167707
## 4495   982168094
## 4496   982168237
## 4497   982168277
## 4498   982168383
## 4499   982168480
## 4500   982168497
## 4501   982168954
## 4502   982169268
## 4503   982169608
## 4504   982169690
## 4505   982169716
## 4506   982170029
## 4507   982170063
## 4508   982170176
## 4509   982170215
## 4510   982170432
## 4511   982170477
## 4512   982170491
## 4513   982192301
## 4514   982192415
## 4515   982192468
## 4516   982192575
## 4517   982192597
## 4518   982192831
## 4519   982193089
## 4520   982193107
## 4521   982193504
## 4522   982193549
## 4523   982193573
## 4524   982193643
## 4525   982193746
## 4526   982194112
## 4527   982194181
## 4528   982194574
## 4529   982194960
## 4530   982195166
## 4531   982195245
## 4532   982195245
## 4533   982195408
## 4534   982195537
## 4535   982195718
## 4536   982195782
## 4537   982195886
## 4538   982195929
## 4539   982196081
## 4540   982196303
## 4541   982196317
## 4542   982196573
## 4543   982196616
## 4544   982196697
## 4545   982196831
## 4546   982196890
## 4547   982196980
## 4548   982197244
## 4549   982197268
## 4550   982197308
## 4551   982197382
## 4552   982197459
## 4553   982197717
## 4554   982197736
## 4555   982197977
## 4556   982198132
## 4557   982198352
## 4558   982198445
## 4559   982198499
## 4560   982198891
## 4561   982198934
## 4562   982198973
## 4563   982199065
## 4564   982210009
## 4565   982210126
## 4566   982210277
## 4567   982210313
## 4568   982210363
## 4569   982210489
## 4570   982210514
## 4571   982210937
## 4572   982211016
## 4573   982211520
## 4574   982211568
## 4575   982212230
## 4576   982212376
## 4577   982257801
## 4578   982257877
## 4579   982258055
## 4580   982258103
## 4581   982258183
## 4582   982258199
## 4583   982258266
## 4584   982258472
## 4585   982258568
## 4586   982258593
## 4587   982258593
## 4588   982258915
## 4589   982258981
## 4590   982259103
## 4591   982259488
## 4592   982266824
## 4593   982266824
## 4594   982267116
## 4595   982267206
## 4596   982268470
## 4597   982269639
## 4598   982269993
## 4599   982270605
## 4600   982341454
## 4601   982341610
## 4602   982342023
## 4603   982342277
## 4604   982342452
## 4605   982342621
## 4606   982342728
## 4607   982342746
## 4608   982420868
## 4609   982421073
## 4610   982421350
## 4611   982421412
## 4612   982421412
## 4613   982421873
## 4614   982422191
## 4615   982422235
## 4616   982422307
## 4617   982422326
## 4618   982425142
## 4619   982471280
## 4620   982471310
## 4621   982473781
## 4622   982473874
## 4623   982528358
## 4624   982528769
## 4625   982529127
## 4626   982529212
## 4627   982529375
## 4628   982529375
## 4629   982529375
## 4630   982529556
## 4631   982529613
## 4632   982529613
## 4633   982529736
## 4634   982529736
## 4635   982529802
## 4636   982529877
## 4637   982529992
## 4638   982529992
## 4639   982530058
## 4640   982530247
## 4641   982530371
## 4642   982530371
## 4643   982530451
## 4644   982530507
## 4645   982530507
## 4646   982530697
## 4647   982530920
## 4648   982531039
## 4649   982531039
## 4650   982531139
## 4651   982531206
## 4652   982531270
## 4653   982531270
## 4654   982531741
## 4655   982642741
## 4656   982642741
## 4657   982709471
## 4658   982767370
## 4659   982770841
## 4660   982770881
## 4661   982770997
## 4662   982771101
## 4663   982771142
## 4664   982771263
## 4665   982771566
## 4666   982771983
## 4667   982772048
## 4668   982772623
## 4669   982782706
## 4670   982782794
## 4671   982855573
## 4672   982976139
## 4673   982976235
## 4674   983381733
## 4675   983381733
## 4676   983381800
## 4677   983381917
## 4678   983381964
## 4679   983382096
## 4680   983382130
## 4681   983382701
## 4682   983383214
## 4683   983383308
## 4684   983383431
## 4685   983383643
## 4686   983383825
## 4687   983384058
## 4688   983384134
## 4689   983384310
## 4690   983385439
## 4691   983508163
## 4692   983508449
## 4693   984002960
## 4694   984003586
## 4695   984003622
## 4696   984003642
## 4697   984003971
## 4698   984003971
## 4699   984004036
## 4700   984004053
## 4701   984004077
## 4702   984012264
## 4703   984012414
## 4704   984012597
## 4705   984670088
## 4706   984670854
## 4707   984670987
## 4708   984671505
## 4709   984671505
## 4710   984671695
## 4711   984671748
## 4712   984671900
## 4713   984672166
## 4714   984876104
## 4715   985196940
## 4716   985318582
## 4717   985318582
## 4718   985458073
## 4719   985662921
## 4720   985663339
## 4721   986177025
## 4722   986587123
## 4723   986587123
## 4724   986587241
## 4725   986706873
## 4726   987608338
## 4727   988429411
## 4728   989197833
## 4729   989427800
## 4730   989460739
## 4731   989460832
## 4732   989502577
## 4733   989711760
## 4734   989796260
## 4735   989796619
## 4736   989928798
## 4737   989971189
## 4738   990012862
## 4739   990012959
## 4740   990398827
## 4741   990644598
## 4742   990813254
## 4743   991424531
## 4744   991424531
## 4745   991424668
## 4746   991424817
## 4747   991424948
## 4748   991425032
## 4749   991429353
## 4750   991602201
## 4751   991614643
## 4752   991614671
## 4753   991614717
## 4754   991614818
## 4755   991614938
## 4756   991615171
## 4757   991615447
## 4758   991615634
## 4759   991615634
## 4760   991615634
## 4761   991615825
## 4762   991635982
## 4763   991696025
## 4764   991696095
## 4765   991899193
## 4766   991899193
## 4767   991899308
## 4768   991899341
## 4769   991899341
## 4770   991899395
## 4771   991899501
## 4772   991899571
## 4773   991899597
## 4774   991899645
## 4775   991899748
## 4776   991899820
## 4777   991899958
## 4778   991900050
## 4779   991900105
## 4780   991901202
## 4781   991901228
## 4782   991901372
## 4783   991901403
## 4784   991901403
## 4785   991901432
## 4786   991901635
## 4787   991901918
## 4788   991901968
## 4789   991902046
## 4790   991902073
## 4791   991902242
## 4792   991903209
## 4793   992038531
## 4794   992140505
## 4795   992239751
## 4796   992239751
## 4797   992240042
## 4798   992240246
## 4799   992249776
## 4800   992261909
## 4801   992453736
## 4802   992607429
## 4803   993023776
## 4804   993212239
## 4805   993334527
## 4806   994218496
## 4807   994218531
## 4808   994218567
## 4809   994218712
## 4810   994277683
## 4811   994277804
## 4812   994278010
## 4813   994278199
## 4814   994278249
## 4815   994378175
## 4816   994387556
## 4817   994387596
## 4818   994464747
## 4819   994464856
## 4820   994777444
## 4821   994804559
## 4822   995150102
## 4823   995234205
## 4824   995473982
## 4825   995613582
## 4826   995692390
## 4827   995693242
## 4828   995694208
## 4829   995694620
## 4830   995697011
## 4831   995697151
## 4832   995699007
## 4833   995743679
## 4834   995744382
## 4835   995744534
## 4836   995744590
## 4837   995745304
## 4838   995745716
## 4839   995745876
## 4840   996112286
## 4841   996516847
## 4842   996517091
## 4843   996625848
## 4844   996625848
## 4845   996625848
## 4846   996626041
## 4847   996626494
## 4848   996626863
## 4849   996627197
## 4850   996627318
## 4851   996627451
## 4852   996717462
## 4853   996769249
## 4854   996897447
## 4855   997292129
## 4856   997292228
## 4857   997292362
## 4858   997292605
## 4859   997292625
## 4860   997292655
## 4861   997292955
## 4862   997293273
## 4863   997293475
## 4864   997293559
## 4865   997293607
## 4866   997715550
## 4867   997929005
## 4868   997932754
## 4869   999032478
## 4870   999641004
## 4871   999652393
## 4872   999653202
## 4873   999653203
## 4874   999987434
## 4875  1000848031
## 4876  1000848032
## 4877  1001252234
## 4878  1001462953
## 4879  1001463067
## 4880  1001463106
## 4881  1001463271
## 4882  1001463965
## 4883  1001463989
## 4884  1001464351
## 4885  1001464427
## 4886  1001464701
## 4887  1001470270
## 4888  1001470434
## 4889  1001470454
## 4890  1001470507
## 4891  1001470589
## 4892  1001470653
## 4893  1001470674
## 4894  1001470718
## 4895  1001470877
## 4896  1001470955
## 4897  1001470958
## 4898  1001471033
## 4899  1001471243
## 4900  1001471256
## 4901  1001471265
## 4902  1001471306
## 4903  1001471310
## 4904  1001471361
## 4905  1001471567
## 4906  1001471954
## 4907  1001471984
## 4908  1001472010
## 4909  1001472072
## 4910  1001472251
## 4911  1001477762
## 4912  1001477762
## 4913  1001477827
## 4914  1001477827
## 4915  1001477938
## 4916  1001478124
## 4917  1001478200
## 4918  1001478200
## 4919  1001479106
## 4920  1001479561
## 4921  1001490703
## 4922  1001490787
## 4923  1001490864
## 4924  1001499190
## 4925  1001499409
## 4926  1001499684
## 4927  1001499684
## 4928  1001499997
## 4929  1001500142
## 4930  1001500142
## 4931  1001500247
## 4932  1001500324
## 4933  1001500453
## 4934  1001500488
## 4935  1001500537
## 4936  1001519825
## 4937  1001519899
## 4938  1001519979
## 4939  1001524188
## 4940  1001524364
## 4941  1001524410
## 4942  1001524557
## 4943  1001524617
## 4944  1001524649
## 4945  1001524690
## 4946  1001524763
## 4947  1001525003
## 4948  1001525065
## 4949  1001525096
## 4950  1001525143
## 4951  1001525143
## 4952  1001525179
## 4953  1001527061
## 4954  1001527086
## 4955  1001527162
## 4956  1001527417
## 4957  1001527443
## 4958  1001527460
## 4959  1001531942
## 4960  1001531964
## 4961  1001533147
## 4962  1001533236
## 4963  1001533279
## 4964  1001533374
## 4965  1001533719
## 4966  1001533719
## 4967  1001533719
## 4968  1001533771
## 4969  1001533791
## 4970  1001533818
## 4971  1001533837
## 4972  1001533872
## 4973  1001533872
## 4974  1001533872
## 4975  1001533911
## 4976  1001533934
## 4977  1001533967
## 4978  1001534298
## 4979  1001534347
## 4980  1001534347
## 4981  1001534370
## 4982  1001534396
## 4983  1001534409
## 4984  1001534599
## 4985  1001534652
## 4986  1001534652
## 4987  1001534768
## 4988  1001535353
## 4989  1001535353
## 4990  1001535402
## 4991  1001535447
## 4992  1001535492
## 4993  1001535524
## 4994  1001535597
## 4995  1001535983
## 4996  1001536051
## 4997  1001536051
## 4998  1001536092
## 4999  1001536214
## 5000  1001536219
## 5001  1001536219
## 5002  1001536258
## 5003  1001536349
## 5004  1001536443
## 5005  1001536473
## 5006  1001536473
## 5007  1001536473
## 5008  1001536477
## 5009  1001536497
## 5010  1001536497
## 5011  1001536549
## 5012  1001536755
## 5013  1001536814
## 5014  1001536849
## 5015  1001536887
## 5016  1001536908
## 5017  1001536932
## 5018  1001537000
## 5019  1001537000
## 5020  1001537000
## 5021  1001537035
## 5022  1001537100
## 5023  1001537109
## 5024  1001537190
## 5025  1001537209
## 5026  1001537225
## 5027  1001537254
## 5028  1001537260
## 5029  1001537396
## 5030  1001537467
## 5031  1001537488
## 5032  1001537488
## 5033  1001537563
## 5034  1001537659
## 5035  1001537788
## 5036  1001538571
## 5037  1001538571
## 5038  1001538610
## 5039  1001538610
## 5040  1001539026
## 5041  1001539026
## 5042  1001539072
## 5043  1001539115
## 5044  1001539134
## 5045  1001539194
## 5046  1001539256
## 5047  1001539256
## 5048  1001539329
## 5049  1001539367
## 5050  1001539473
## 5051  1001539496
## 5052  1001539517
## 5053  1001539539
## 5054  1001539551
## 5055  1001539577
## 5056  1001539868
## 5057  1001539919
## 5058  1001539952
## 5059  1001540066
## 5060  1001540307
## 5061  1001540419
## 5062  1001540462
## 5063  1001540495
## 5064  1001540495
## 5065  1001540594
## 5066  1001540594
## 5067  1001540594
## 5068  1001540911
## 5069  1001547129
## 5070  1001547627
## 5071  1001547686
## 5072  1001547750
## 5073  1001547772
## 5074  1001547772
## 5075  1001547789
## 5076  1001547983
## 5077  1001548166
## 5078  1001548271
## 5079  1001548310
## 5080  1001548701
## 5081  1001548701
## 5082  1001548913
## 5083  1001549016
## 5084  1001549156
## 5085  1001549299
## 5086  1001550065
## 5087  1001550297
## 5088  1001550388
## 5089  1001550625
## 5090  1001551079
## 5091  1001551100
## 5092  1001551148
## 5093  1001556358
## 5094  1001556458
## 5095  1001556864
## 5096  1001556900
## 5097  1001556900
## 5098  1001562491
## 5099  1001562679
## 5100  1001562812
## 5101  1001562873
## 5102  1001562873
## 5103  1001562900
## 5104  1001562930
## 5105  1001576628
## 5106  1001578150
## 5107  1001578877
## 5108  1001579440
## 5109  1001580518
## 5110  1001580737
## 5111  1001581106
## 5112  1001584008
## 5113  1001584089
## 5114  1001585025
## 5115  1001585315
## 5116  1001585825
## 5117  1001586566
## 5118  1001587621
## 5119  1001595123
## 5120  1001595321
## 5121  1001595375
## 5122  1001595375
## 5123  1001595475
## 5124  1001595499
## 5125  1001595539
## 5126  1001595731
## 5127  1001595838
## 5128  1001596614
## 5129  1001596670
## 5130  1001606977
## 5131  1001607199
## 5132  1001607451
## 5133  1001607451
## 5134  1001607656
## 5135  1001607713
## 5136  1001607905
## 5137  1001608020
## 5138  1001608503
## 5139  1001608828
## 5140  1001608966
## 5141  1001609013
## 5142  1001609028
## 5143  1001609278
## 5144  1001610050
## 5145  1001610107
## 5146  1001610203
## 5147  1001610545
## 5148  1001610685
## 5149  1001610822
## 5150  1001611062
## 5151  1001636393
## 5152  1001636479
## 5153  1001636566
## 5154  1001636709
## 5155  1001636853
## 5156  1001768227
## 5157  1001851311
## 5158  1001851344
## 5159  1001851413
## 5160  1001851462
## 5161  1001851612
## 5162  1001852036
## 5163  1001852064
## 5164  1001852103
## 5165  1001852283
## 5166  1001852856
## 5167  1001852889
## 5168  1001852889
## 5169  1001853016
## 5170  1001853386
## 5171  1001853472
## 5172  1001853556
## 5173  1001853748
## 5174  1001853896
## 5175  1001854232
## 5176  1001854594
## 5177  1001871843
## 5178  1001871955
## 5179  1001871970
## 5180  1001872211
## 5181  1001872297
## 5182  1001872401
## 5183  1001872729
## 5184  1001938273
## 5185  1002315930
## 5186  1002317170
## 5187  1002317412
## 5188  1002318762
## 5189  1003976306
## 5190  1004326143
## 5191  1004341783
## 5192  1004494737
## 5193  1005303781
## 5194  1005811128
## 5195  1005811128
## 5196  1006364774
## 5197  1006364862
## 5198  1006364902
## 5199  1006471143
## 5200  1006803557
## 5201  1006803696
## 5202  1006803716
## 5203  1006803903
## 5204  1006882079
## 5205  1006933727
## 5206  1007081282
## 5207  1007322849
## 5208  1008977599
## 5209  1008978898
## 5210  1009003029
## 5211  1009003181
## 5212  1009003181
## 5213  1009003257
## 5214  1009003707
## 5215  1009004258
## 5216  1009004333
## 5217  1009004364
## 5218  1009004486
## 5219  1009004513
## 5220  1009004741
## 5221  1009004782
## 5222  1009004951
## 5223  1009004980
## 5224  1009006419
## 5225  1009006506
## 5226  1009006827
## 5227  1009821064
## 5228  1009862439
## 5229  1010016975
## 5230  1010625578
## 5231  1010754556
## 5232  1012130863
## 5233  1012221892
## 5234  1012526701
## 5235  1012527427
## 5236  1012692234
## 5237  1012692324
## 5238  1012692412
## 5239  1013127331
## 5240  1013127630
## 5241  1014408427
## 5242  1014408771
## 5243  1015718395
## 5244  1015974452
## 5245  1016046646
## 5246  1016420709
## 5247  1017621156
## 5248  1018322353
## 5249  1018322707
## 5250  1018323079
## 5251  1018323321
## 5252  1018323861
## 5253  1018323879
## 5254  1018323899
## 5255  1019142698
## 5256  1021383724
## 5257  1021402670
## 5258  1022358831
## 5259  1022522212
## 5260  1022523322
## 5261  1023380765
## 5262  1023380937
## 5263  1023380997
## 5264  1023381208
## 5265  1023381287
## 5266  1023381419
## 5267  1023382815
## 5268  1023383247
## 5269  1023383790
## 5270  1023383829
## 5271  1023383926
## 5272  1023384223
## 5273  1023384344
## 5274  1023384419
## 5275  1023391043
## 5276  1023391069
## 5277  1023393300
## 5278  1023395929
## 5279  1023395950
## 5280  1023396075
## 5281  1023396178
## 5282  1023396227
## 5283  1023396262
## 5284  1023396355
## 5285  1023396417
## 5286  1023396433
## 5287  1023396471
## 5288  1023396752
## 5289  1023397061
## 5290  1023397081
## 5291  1023397106
## 5292  1023397294
## 5293  1023397311
## 5294  1023397361
## 5295  1023397389
## 5296  1023397505
## 5297  1023397510
## 5298  1023397576
## 5299  1023397792
## 5300  1023397793
## 5301  1023397851
## 5302  1023397855
## 5303  1023397950
## 5304  1023398130
## 5305  1023398636
## 5306  1023398675
## 5307  1023398709
## 5308  1023398789
## 5309  1023399158
## 5310  1023399198
## 5311  1023399473
## 5312  1023399968
## 5313  1023401371
## 5314  1023401451
## 5315  1023401558
## 5316  1023402152
## 5317  1023402152
## 5318  1023405363
## 5319  1023405381
## 5320  1023405411
## 5321  1023405732
## 5322  1023405781
## 5323  1023405872
## 5324  1023405872
## 5325  1023405965
## 5326  1023406066
## 5327  1023406085
## 5328  1023406100
## 5329  1023406178
## 5330  1023406199
## 5331  1023406225
## 5332  1023406278
## 5333  1023406348
## 5334  1023406427
## 5335  1023406443
## 5336  1023406470
## 5337  1023406484
## 5338  1023406544
## 5339  1023406557
## 5340  1023406846
## 5341  1023407091
## 5342  1023411258
## 5343  1023411331
## 5344  1023411430
## 5345  1023412368
## 5346  1023412909
## 5347  1023412964
## 5348  1023413078
## 5349  1023413338
## 5350  1023413422
## 5351  1023413422
## 5352  1023413469
## 5353  1023413676
## 5354  1023413748
## 5355  1023413799
## 5356  1023421260
## 5357  1023421361
## 5358  1023421361
## 5359  1023425063
## 5360  1023436848
## 5361  1023436888
## 5362  1023436889
## 5363  1023452003
## 5364  1023452086
## 5365  1023452137
## 5366  1023452195
## 5367  1023455480
## 5368  1023455521
## 5369  1023461879
## 5370  1023461964
## 5371  1023462094
## 5372  1023468638
## 5373  1023468638
## 5374  1023472445
## 5375  1023472505
## 5376  1023472538
## 5377  1023472615
## 5378  1023472772
## 5379  1023472784
## 5380  1023472868
## 5381  1023472953
## 5382  1023473109
## 5383  1023473135
## 5384  1023473135
## 5385  1023473212
## 5386  1023473242
## 5387  1023473327
## 5388  1023473341
## 5389  1023473541
## 5390  1023473648
## 5391  1023473871
## 5392  1023473871
## 5393  1023473871
## 5394  1023474307
## 5395  1023474821
## 5396  1023475874
## 5397  1023475969
## 5398  1023476122
## 5399  1023476748
## 5400  1023476771
## 5401  1023476802
## 5402  1023477075
## 5403  1023477115
## 5404  1023491926
## 5405  1023491955
## 5406  1023492002
## 5407  1023492183
## 5408  1023492272
## 5409  1023492589
## 5410  1023492912
## 5411  1023492973
## 5412  1023493382
## 5413  1023493459
## 5414  1023493631
## 5415  1023493923
## 5416  1023494344
## 5417  1023494524
## 5418  1023494646
## 5419  1023494792
## 5420  1023495111
## 5421  1023495480
## 5422  1023495756
## 5423  1023495898
## 5424  1023495943
## 5425  1023512654
## 5426  1023512747
## 5427  1023513447
## 5428  1023513501
## 5429  1023513508
## 5430  1023513578
## 5431  1023513811
## 5432  1023513830
## 5433  1023513830
## 5434  1023513909
## 5435  1023513914
## 5436  1023513981
## 5437  1023514001
## 5438  1023514045
## 5439  1023514397
## 5440  1023514435
## 5441  1023514754
## 5442  1023514812
## 5443  1023515191
## 5444  1023539540
## 5445  1023539746
## 5446  1023540057
## 5447  1023542273
## 5448  1023542381
## 5449  1023542521
## 5450  1023544472
## 5451  1023544568
## 5452  1023544630
## 5453  1023544974
## 5454  1023545109
## 5455  1023545175
## 5456  1023546648
## 5457  1023549643
## 5458  1023551676
## 5459  1023571345
## 5460  1023571554
## 5461  1023630132
## 5462  1023630395
## 5463  1023630551
## 5464  1023630576
## 5465  1023630576
## 5466  1023631307
## 5467  1023631733
## 5468  1023631862
## 5469  1023632011
## 5470  1023632296
## 5471  1023632356
## 5472  1023632407
## 5473  1023640857
## 5474  1023661546
## 5475  1023662399
## 5476  1023662476
## 5477  1023662617
## 5478  1023662897
## 5479  1023663093
## 5480  1023664739
## 5481  1023664830
## 5482  1023664940
## 5483  1023665040
## 5484  1023665040
## 5485  1023665298
## 5486  1023665490
## 5487  1023666282
## 5488  1023666282
## 5489  1023666616
## 5490  1023666726
## 5491  1023673230
## 5492  1023674052
## 5493  1023674165
## 5494  1023674165
## 5495  1023674227
## 5496  1023682876
## 5497  1023683544
## 5498  1023718673
## 5499  1023718772
## 5500  1023718821
## 5501  1023718980
## 5502  1023719095
## 5503  1023719108
## 5504  1023722494
## 5505  1023722842
## 5506  1023722842
## 5507  1023722899
## 5508  1023722920
## 5509  1023723629
## 5510  1023723858
## 5511  1023724466
## 5512  1023738976
## 5513  1023739031
## 5514  1023827896
## 5515  1023827925
## 5516  1023827965
## 5517  1023829431
## 5518  1023829545
## 5519  1023829577
## 5520  1023829648
## 5521  1023829719
## 5522  1023829719
## 5523  1023829719
## 5524  1023829894
## 5525  1023829964
## 5526  1023836257
## 5527  1023836325
## 5528  1023836528
## 5529  1023901325
## 5530  1023901695
## 5531  1023998534
## 5532  1023998790
## 5533  1023998998
## 5534  1024022104
## 5535  1024022151
## 5536  1024100618
## 5537  1024217779
## 5538  1024277367
## 5539  1024335059
## 5540  1024409091
## 5541  1024409161
## 5542  1024409190
## 5543  1024409471
## 5544  1024409471
## 5545  1024409546
## 5546  1024409565
## 5547  1024409812
## 5548  1024409812
## 5549  1024410198
## 5550  1024614809
## 5551  1024678327
## 5552  1024678625
## 5553  1024943601
## 5554  1024975216
## 5555  1024975370
## 5556  1024976784
## 5557  1024976809
## 5558  1024976809
## 5559  1024976982
## 5560  1024977170
## 5561  1024977726
## 5562  1024977771
## 5563  1024978194
## 5564  1024978314
## 5565  1024978436
## 5566  1024979240
## 5567  1025042157
## 5568  1025042174
## 5569  1025149222
## 5570  1025366717
## 5571  1025901635
## 5572  1026427158
## 5573  1026427229
## 5574  1026492243
## 5575  1026588541
## 5576  1028841292
## 5577  1028843939
## 5578  1028844084
## 5579  1029099511
## 5580  1029122642
## 5581  1029258558
## 5582  1029535439
## 5583  1029817350
## 5584  1029972438
## 5585  1030179006
## 5586  1030179006
## 5587  1031923121
## 5588  1032975783
## 5589  1032975828
## 5590  1032975963
## 5591  1033078358
## 5592  1033134331
## 5593  1033134512
## 5594  1033134606
## 5595  1033134617
## 5596  1033134706
## 5597  1033135070
## 5598  1033135070
## 5599  1033135474
## 5600  1033135542
## 5601  1033144890
## 5602  1033758137
## 5603  1034113990
## 5604  1034114136
## 5605  1034114188
## 5606  1034114476
## 5607  1034559004
## 5608  1034601851
## 5609  1034786654
## 5610  1035922359
## 5611  1036060468
## 5612  1036514876
## 5613  1036514954
## 5614  1036515034
## 5615  1036515231
## 5616  1036540597
## 5617  1037519725
## 5618  1037520350
## 5619  1037520594
## 5620  1037538250
## 5621  1037971607
## 5622  1037971634
## 5623  1037971671
## 5624  1037971898
## 5625  1037971927
## 5626  1038581433
## 5627  1038608198
## 5628  1038609265
## 5629  1038609427
## 5630  1039124091
## 5631  1039441256
## 5632  1039446873
## 5633  1039446987
## 5634  1039447869
## 5635  1039447904
## 5636  1039448186
## 5637  1040071783
## 5638  1040339308
## 5639  1040905713
## 5640  1042393267
## 5641  1042402622
## 5642  1042468072
## 5643  1042557731
## 5644  1042558496
## 5645  1042634827
## 5646  1042718429
## 5647  1042718526
## 5648  1042719316
## 5649  1042719420
## 5650  1042719470
## 5651  1042719985
## 5652  1042719985
## 5653  1042720012
## 5654  1043289170
## 5655  1043289452
## 5656  1043289504
## 5657  1043289912
## 5658  1043290046
## 5659  1043290234
## 5660  1043290234
## 5661  1043290880
## 5662  1043964355
## 5663  1044482040
## 5664  1044627261
## 5665  1044630542
## 5666  1044630689
## 5667  1044630806
## 5668  1044630926
## 5669  1044631138
## 5670  1044631152
## 5671  1044631177
## 5672  1044631262
## 5673  1044631747
## 5674  1044631972
## 5675  1044632247
## 5676  1044632270
## 5677  1044632665
## 5678  1044632910
## 5679  1044632936
## 5680  1044632936
## 5681  1044633014
## 5682  1044633152
## 5683  1044633439
## 5684  1044633498
## 5685  1044634357
## 5686  1045289127
## 5687  1045499705
## 5688  1045622118
## 5689  1045622497
## 5690  1045622634
## 5691  1045622645
## 5692  1045622689
## 5693  1045623250
## 5694  1045623319
## 5695  1045623381
## 5696  1045623404
## 5697  1045623595
## 5698  1046021983
## 5699  1046022096
## 5700  1046022233
## 5701  1046022239
## 5702  1046022500
## 5703  1046022586
## 5704  1046022635
## 5705  1046022770
## 5706  1046022836
## 5707  1046645377
## 5708  1046696949
## 5709  1046984483
## 5710  1046984936
## 5711  1046992260
## 5712  1047088890
## 5713  1048031200
## 5714  1048090891
## 5715  1049111350
## 5716  1049897464
## 5717  1049897537
## 5718  1050933759
## 5719  1050933942
## 5720  1050934227
## 5721  1050934713
## 5722  1050935138
## 5723  1050935138
## 5724  1050941852
## 5725  1050941883
## 5726  1050941883
## 5727  1050941969
## 5728  1050942025
## 5729  1050942404
## 5730  1050942475
## 5731  1050950362
## 5732  1050950384
## 5733  1050950384
## 5734  1050950432
## 5735  1050950463
## 5736  1050953975
## 5737  1050954426
## 5738  1050954839
## 5739  1050955340
## 5740  1050955436
## 5741  1050955498
## 5742  1050955536
## 5743  1050955857
## 5744  1050956078
## 5745  1050956678
## 5746  1050956728
## 5747  1050956767
## 5748  1050956799
## 5749  1050956818
## 5750  1050957163
## 5751  1050971939
## 5752  1050977018
## 5753  1050977018
## 5754  1050977080
## 5755  1050977475
## 5756  1050978395
## 5757  1050978395
## 5758  1050978466
## 5759  1050979885
## 5760  1050979885
## 5761  1050979997
## 5762  1050980091
## 5763  1050980289
## 5764  1050980362
## 5765  1050980388
## 5766  1050980526
## 5767  1050980631
## 5768  1050980679
## 5769  1050980702
## 5770  1050981425
## 5771  1050985864
## 5772  1050985909
## 5773  1050986143
## 5774  1050986348
## 5775  1050986585
## 5776  1050986606
## 5777  1050986664
## 5778  1050986764
## 5779  1050986848
## 5780  1050987053
## 5781  1050987149
## 5782  1050987376
## 5783  1050987478
## 5784  1050987649
## 5785  1050987711
## 5786  1050987788
## 5787  1050987832
## 5788  1050988440
## 5789  1050988551
## 5790  1050988711
## 5791  1050988711
## 5792  1050988816
## 5793  1050988849
## 5794  1050991728
## 5795  1050991886
## 5796  1050991948
## 5797  1050991948
## 5798  1050991948
## 5799  1050991981
## 5800  1050992052
## 5801  1050992112
## 5802  1050992349
## 5803  1050992399
## 5804  1050992481
## 5805  1051011054
## 5806  1051011054
## 5807  1051011191
## 5808  1051019640
## 5809  1051019755
## 5810  1051020591
## 5811  1051020720
## 5812  1051020824
## 5813  1051021098
## 5814  1051021165
## 5815  1051021219
## 5816  1051021227
## 5817  1051021468
## 5818  1051021592
## 5819  1051021625
## 5820  1051022233
## 5821  1051022281
## 5822  1051022282
## 5823  1051022379
## 5824  1051022434
## 5825  1051022434
## 5826  1051022434
## 5827  1051022489
## 5828  1051022489
## 5829  1051023017
## 5830  1051023939
## 5831  1051026064
## 5832  1051027257
## 5833  1051027623
## 5834  1051027684
## 5835  1051027866
## 5836  1051027904
## 5837  1051027951
## 5838  1051028044
## 5839  1051028097
## 5840  1051028143
## 5841  1051028183
## 5842  1051028203
## 5843  1051028242
## 5844  1051028269
## 5845  1051028305
## 5846  1051028318
## 5847  1051028766
## 5848  1051041030
## 5849  1051041102
## 5850  1051041168
## 5851  1051041168
## 5852  1051041512
## 5853  1051041530
## 5854  1051041643
## 5855  1051041689
## 5856  1051041787
## 5857  1051042750
## 5858  1051046452
## 5859  1051046508
## 5860  1051046508
## 5861  1051046749
## 5862  1051046766
## 5863  1051046766
## 5864  1051046797
## 5865  1051046837
## 5866  1051046897
## 5867  1051047033
## 5868  1051047090
## 5869  1051047160
## 5870  1051047160
## 5871  1051047370
## 5872  1051051367
## 5873  1051051387
## 5874  1051051433
## 5875  1051051591
## 5876  1051051670
## 5877  1051060934
## 5878  1051060943
## 5879  1051061289
## 5880  1051061289
## 5881  1051061354
## 5882  1051061427
## 5883  1051069664
## 5884  1051070153
## 5885  1051070215
## 5886  1051070346
## 5887  1051070407
## 5888  1051071283
## 5889  1051078033
## 5890  1051078072
## 5891  1051078105
## 5892  1051078211
## 5893  1051078269
## 5894  1051081303
## 5895  1051083044
## 5896  1051083397
## 5897  1051105831
## 5898  1051111068
## 5899  1051111068
## 5900  1051111068
## 5901  1051111068
## 5902  1051111190
## 5903  1051114380
## 5904  1051114480
## 5905  1051114743
## 5906  1051114794
## 5907  1051118573
## 5908  1051118594
## 5909  1051118869
## 5910  1051118978
## 5911  1051119062
## 5912  1051119145
## 5913  1051119242
## 5914  1051119444
## 5915  1051125191
## 5916  1051125547
## 5917  1051125782
## 5918  1051125871
## 5919  1051125894
## 5920  1051126134
## 5921  1051126527
## 5922  1051126584
## 5923  1051126745
## 5924  1051126779
## 5925  1051126861
## 5926  1051129189
## 5927  1051129254
## 5928  1051129473
## 5929  1051135711
## 5930  1051135765
## 5931  1051135887
## 5932  1051135962
## 5933  1051135994
## 5934  1051136647
## 5935  1051136763
## 5936  1051137159
## 5937  1051137491
## 5938  1051137544
## 5939  1051137572
## 5940  1051137631
## 5941  1051137645
## 5942  1051137699
## 5943  1051137845
## 5944  1051137846
## 5945  1051138878
## 5946  1051139297
## 5947  1051139999
## 5948  1051139999
## 5949  1051140557
## 5950  1051140719
## 5951  1051152011
## 5952  1051159432
## 5953  1051245808
## 5954  1051253738
## 5955  1051255358
## 5956  1051255838
## 5957  1051257125
## 5958  1051257221
## 5959  1051258854
## 5960  1051260220
## 5961  1051260739
## 5962  1051260828
## 5963  1051281093
## 5964  1052201611
## 5965  1052201659
## 5966  1052370170
## 5967  1052370417
## 5968  1052370445
## 5969  1052370456
## 5970  1052370546
## 5971  1052442441
## 5972  1052449622
## 5973  1053144312
## 5974  1053144316
## 5975  1053144404
## 5976  1053144631
## 5977  1053144641
## 5978  1053348229
## 5979  1053440493
## 5980  1054571432
## 5981  1054571572
## 5982  1054571707
## 5983  1054571722
## 5984  1054571934
## 5985  1054571941
## 5986  1054571946
## 5987  1054572152
## 5988  1054572566
## 5989  1054572632
## 5990  1054572745
## 5991  1054572789
## 5992  1055150199
## 5993  1056575034
## 5994  1056753598
## 5995  1057580636
## 5996  1058791942
## 5997  1059049112
## 5998  1059349180
## 5999  1059358527
## 6000  1059408855
## 6001  1059408902
## 6002  1059408929
## 6003  1059888608
## 6004  1059889319
## 6005  1061411406
## 6006  1061412470
## 6007  1061645759
## 6008  1061683576
## 6009  1062517327
## 6010  1062809743
## 6011  1063067805
## 6012  1064723829
## 6013  1065193775
## 6014  1065193863
## 6015  1067109909
## 6016  1068270183
## 6017  1068270238
## 6018  1068270312
## 6019  1068270586
## 6020  1069765108
## 6021  1069765112
## 6022  1071204833
## 6023  1071461618
## 6024  1071778165
## 6025  1071778469
## 6026  1072542414
## 6027  1072542784
## 6028  1072542951
## 6029  1072542959
## 6030  1072543044
## 6031  1072543340
## 6032  1072543854
## 6033  1072544348
## 6034  1072585129
## 6035  1072975858
## 6036  1072976580
## 6037  1072976932
## 6038  1072976975
## 6039  1073094291
## 6040  1073094521
## 6041  1073094524
## 6042  1073094741
## 6043  1073094830
## 6044  1073094855
## 6045  1073094869
## 6046  1073095094
## 6047  1073095100
## 6048  1073312654
## 6049  1074360786
## 6050  1074361043
## 6051  1074557183
## 6052  1075160529
## 6053  1075625172
## 6054  1076044460
## 6055  1076566145
## 6056  1076874451
## 6057  1076874452
## 6058  1076874563
## 6059  1076874631
## 6060  1076875210
## 6061  1076875460
## 6062  1076875490
## 6063  1076875551
## 6064  1076961842
## 6065  1076961943
## 6066  1076962651
## 6067  1076962927
## 6068  1076963304
## 6069  1076963373
## 6070  1076963442
## 6071  1076963599
## 6072  1076963737
## 6073  1076963785
## 6074  1076963919
## 6075  1076964214
## 6076  1076964779
## 6077  1076965294
## 6078  1076965377
## 6079  1076965959
## 6080  1076966038
## 6081  1076966045
## 6082  1076966073
## 6083  1076966119
## 6084  1076966485
## 6085  1076966505
## 6086  1076966982
## 6087  1076968011
## 6088  1076968068
## 6089  1076968154
## 6090  1076968158
## 6091  1076968288
## 6092  1076968299
## 6093  1077020882
## 6094  1077023186
## 6095  1077023271
## 6096  1077024263
## 6097  1077024679
## 6098  1077025820
## 6099  1077026404
## 6100  1077027861
## 6101  1077027914
## 6102  1077028664
## 6103  1077028997
## 6104  1077029030
## 6105  1077029230
## 6106  1077029306
## 6107  1077029328
## 6108  1077029853
## 6109  1077029895
## 6110  1077029941
## 6111  1077030367
## 6112  1077030399
## 6113  1077030493
## 6114  1077031124
## 6115  1077032826
## 6116  1077034097
## 6117  1077034471
## 6118  1077042327
## 6119  1077042847
## 6120  1077043367
## 6121  1077043416
## 6122  1077043477
## 6123  1077044291
## 6124  1077044698
## 6125  1077045396
## 6126  1077111257
## 6127  1077111524
## 6128  1077111978
## 6129  1077112083
## 6130  1077114716
## 6131  1077114895
## 6132  1077115915
## 6133  1077303462
## 6134  1077881900
## 6135  1077887046
## 6136  1077888355
## 6137  1077974193
## 6138  1078137274
## 6139  1079087843
## 6140  1079263472
## 6141  1079370989
## 6142  1081636009
## 6143  1081636031
## 6144  1081636124
## 6145  1084923465
## 6146  1084923517
## 6147  1085192547
## 6148  1085192561
## 6149  1085192906
## 6150  1085192950
## 6151  1085193236
## 6152  1085218599
## 6153  1085218639
## 6154  1085218667
## 6155  1085220228
## 6156  1085220259
## 6157  1085220261
## 6158  1085225836
## 6159  1085225858
## 6160  1085226022
## 6161  1085226027
## 6162  1085226147
## 6163  1085227309
## 6164  1085227312
## 6165  1085228775
## 6166  1085228975
## 6167  1085230279
## 6168  1085230304
## 6169  1085235155
## 6170  1085235405
## 6171  1085235879
## 6172  1085236500
## 6173  1085236934
## 6174  1085236986
## 6175  1085237017
## 6176  1085237057
## 6177  1085237063
## 6178  1085237124
## 6179  1085237427
## 6180  1085244627
## 6181  1085244770
## 6182  1085256346
## 6183  1085256375
## 6184  1085258332
## 6185  1085258342
## 6186  1085258803
## 6187  1085282530
## 6188  1085283323
## 6189  1085283630
## 6190  1085283919
## 6191  1085284184
## 6192  1085284233
## 6193  1085284259
## 6194  1085284297
## 6195  1085284309
## 6196  1085284366
## 6197  1085284378
## 6198  1085285154
## 6199  1085285156
## 6200  1085285330
## 6201  1085285349
## 6202  1085285391
## 6203  1085285488
## 6204  1085285709
## 6205  1085285902
## 6206  1085286077
## 6207  1085286111
## 6208  1085286238
## 6209  1085286277
## 6210  1085286288
## 6211  1085286496
## 6212  1085286653
## 6213  1085286697
## 6214  1085286855
## 6215  1085287045
## 6216  1085287184
## 6217  1085287324
## 6218  1085287495
## 6219  1085287525
## 6220  1085287803
## 6221  1085287933
## 6222  1085288160
## 6223  1085290705
## 6224  1085290718
## 6225  1085297319
## 6226  1085297398
## 6227  1085297976
## 6228  1085298620
## 6229  1085298630
## 6230  1085298728
## 6231  1085298867
## 6232  1085298918
## 6233  1085299494
## 6234  1085299692
## 6235  1085299731
## 6236  1085299839
## 6237  1085300511
## 6238  1085300588
## 6239  1085300633
## 6240  1085300768
## 6241  1085301146
## 6242  1085303079
## 6243  1085303336
## 6244  1085303489
## 6245  1085310479
## 6246  1085312617
## 6247  1085312638
## 6248  1085312667
## 6249  1085321132
## 6250  1085321220
## 6251  1085322963
## 6252  1085323568
## 6253  1085324655
## 6254  1085325647
## 6255  1085331008
## 6256  1085331015
## 6257  1085331098
## 6258  1085331101
## 6259  1085331265
## 6260  1085332128
## 6261  1085337184
## 6262  1085337196
## 6263  1085337283
## 6264  1085337294
## 6265  1085337315
## 6266  1085337892
## 6267  1085338250
## 6268  1085338255
## 6269  1085338296
## 6270  1085338590
## 6271  1085339092
## 6272  1085348429
## 6273  1085348440
## 6274  1085348442
## 6275  1085348575
## 6276  1085348672
## 6277  1085348691
## 6278  1085348712
## 6279  1085349108
## 6280  1085349131
## 6281  1085358960
## 6282  1085359120
## 6283  1085359874
## 6284  1085360000
## 6285  1085361019
## 6286  1085361828
## 6287  1085361891
## 6288  1085362055
## 6289  1085362362
## 6290  1085362596
## 6291  1085372585
## 6292  1085373127
## 6293  1085373129
## 6294  1085373200
## 6295  1085373209
## 6296  1085373328
## 6297  1085373412
## 6298  1085373530
## 6299  1085373735
## 6300  1085373968
## 6301  1085373973
## 6302  1085374255
## 6303  1085374669
## 6304  1085375034
## 6305  1085376050
## 6306  1085376439
## 6307  1085376708
## 6308  1085384584
## 6309  1085406677
## 6310  1085406915
## 6311  1085406956
## 6312  1085406983
## 6313  1085407489
## 6314  1085407869
## 6315  1085407907
## 6316  1085408071
## 6317  1085408218
## 6318  1085408285
## 6319  1085408424
## 6320  1085408866
## 6321  1085410183
## 6322  1085410643
## 6323  1085412348
## 6324  1085412469
## 6325  1085414100
## 6326  1085414567
## 6327  1085414622
## 6328  1085414762
## 6329  1085414767
## 6330  1085414814
## 6331  1085414864
## 6332  1085414966
## 6333  1085415049
## 6334  1085415073
## 6335  1085415187
## 6336  1085415238
## 6337  1085415291
## 6338  1085415316
## 6339  1085415461
## 6340  1085415854
## 6341  1085415903
## 6342  1085416277
## 6343  1085416313
## 6344  1085416514
## 6345  1085416555
## 6346  1085416753
## 6347  1085417012
## 6348  1085417018
## 6349  1085417073
## 6350  1085417507
## 6351  1085417563
## 6352  1085417803
## 6353  1085418636
## 6354  1085419173
## 6355  1085419231
## 6356  1085419241
## 6357  1085419249
## 6358  1085419356
## 6359  1085419404
## 6360  1085419452
## 6361  1085419469
## 6362  1085419494
## 6363  1085419523
## 6364  1085419600
## 6365  1085419654
## 6366  1085419664
## 6367  1085419713
## 6368  1085419760
## 6369  1085419969
## 6370  1085420132
## 6371  1085420156
## 6372  1085420194
## 6373  1085420387
## 6374  1085420443
## 6375  1085420443
## 6376  1085420459
## 6377  1085420613
## 6378  1085420616
## 6379  1085420619
## 6380  1085420653
## 6381  1085420673
## 6382  1085420797
## 6383  1085420810
## 6384  1085420860
## 6385  1085420881
## 6386  1085420889
## 6387  1085420891
## 6388  1085420896
## 6389  1085420953
## 6390  1085420975
## 6391  1085420997
## 6392  1085421105
## 6393  1085421110
## 6394  1085421165
## 6395  1085421291
## 6396  1085421411
## 6397  1085421622
## 6398  1085421628
## 6399  1085421658
## 6400  1085421666
## 6401  1085421699
## 6402  1085421704
## 6403  1085421781
## 6404  1085421803
## 6405  1085421912
## 6406  1085422060
## 6407  1085422139
## 6408  1085422155
## 6409  1085422163
## 6410  1085422180
## 6411  1085422202
## 6412  1085422230
## 6413  1085422242
## 6414  1085422279
## 6415  1085422294
## 6416  1085422296
## 6417  1085422304
## 6418  1085422361
## 6419  1085422373
## 6420  1085422403
## 6421  1085422407
## 6422  1085422595
## 6423  1085422631
## 6424  1085422658
## 6425  1085422699
## 6426  1085422702
## 6427  1085422705
## 6428  1085422738
## 6429  1085422809
## 6430  1085422914
## 6431  1085422933
## 6432  1085423184
## 6433  1085423199
## 6434  1085423371
## 6435  1085423443
## 6436  1085424538
## 6437  1085424617
## 6438  1085424670
## 6439  1085425045
## 6440  1085425377
## 6441  1085425386
## 6442  1085425408
## 6443  1085425418
## 6444  1085425461
## 6445  1085425491
## 6446  1085425503
## 6447  1085425534
## 6448  1085425860
## 6449  1085426120
## 6450  1085426418
## 6451  1085426709
## 6452  1085426715
## 6453  1085426740
## 6454  1085426799
## 6455  1085426983
## 6456  1085427019
## 6457  1085427030
## 6458  1085427047
## 6459  1085427063
## 6460  1085427069
## 6461  1085427106
## 6462  1085427134
## 6463  1085427216
## 6464  1085427228
## 6465  1085427362
## 6466  1085427419
## 6467  1085427449
## 6468  1085427473
## 6469  1085428212
## 6470  1085428642
## 6471  1085429010
## 6472  1085429071
## 6473  1085429100
## 6474  1085429132
## 6475  1085429456
## 6476  1085429572
## 6477  1085429604
## 6478  1085429626
## 6479  1085430019
## 6480  1085430032
## 6481  1085430037
## 6482  1085430064
## 6483  1085430220
## 6484  1085430236
## 6485  1085430330
## 6486  1085430338
## 6487  1085430371
## 6488  1085430387
## 6489  1085430395
## 6490  1085430435
## 6491  1085430498
## 6492  1085430540
## 6493  1085430690
## 6494  1085430773
## 6495  1085430790
## 6496  1085430890
## 6497  1085430909
## 6498  1085431209
## 6499  1085431223
## 6500  1085431225
## 6501  1085431242
## 6502  1085431271
## 6503  1085431378
## 6504  1085431423
## 6505  1085431432
## 6506  1085431477
## 6507  1085431496
## 6508  1085431550
## 6509  1085431565
## 6510  1085431592
## 6511  1085431597
## 6512  1085431800
## 6513  1085431844
## 6514  1085431850
## 6515  1085431909
## 6516  1085431927
## 6517  1085432058
## 6518  1085432123
## 6519  1085432242
## 6520  1085432464
## 6521  1085432516
## 6522  1085432524
## 6523  1085432594
## 6524  1085432635
## 6525  1085432724
## 6526  1085432753
## 6527  1085432843
## 6528  1085433013
## 6529  1085433119
## 6530  1085433125
## 6531  1085433132
## 6532  1085433175
## 6533  1085433211
## 6534  1085433239
## 6535  1085433259
## 6536  1085433276
## 6537  1085433317
## 6538  1085433417
## 6539  1085433439
## 6540  1085433441
## 6541  1085433474
## 6542  1085433540
## 6543  1085433582
## 6544  1085433664
## 6545  1085433682
## 6546  1085433738
## 6547  1085433810
## 6548  1085433970
## 6549  1085434017
## 6550  1085434182
## 6551  1085434299
## 6552  1085434327
## 6553  1085434381
## 6554  1085434396
## 6555  1085434405
## 6556  1085434437
## 6557  1085434557
## 6558  1085434562
## 6559  1085434579
## 6560  1085434647
## 6561  1085434669
## 6562  1085434764
## 6563  1085434780
## 6564  1085434823
## 6565  1085434829
## 6566  1085434834
## 6567  1085434862
## 6568  1085435014
## 6569  1085435034
## 6570  1085435081
## 6571  1085435094
## 6572  1085435095
## 6573  1085435114
## 6574  1085435193
## 6575  1085435208
## 6576  1085435457
## 6577  1085435522
## 6578  1085435542
## 6579  1085435551
## 6580  1085435611
## 6581  1085435629
## 6582  1085435745
## 6583  1085435797
## 6584  1085435811
## 6585  1085435824
## 6586  1085435834
## 6587  1085435850
## 6588  1085435878
## 6589  1085435906
## 6590  1085435939
## 6591  1085436450
## 6592  1085436769
## 6593  1085436822
## 6594  1085436861
## 6595  1085436921
## 6596  1085436969
## 6597  1085436994
## 6598  1085437009
## 6599  1085437033
## 6600  1085437056
## 6601  1085437085
## 6602  1085437153
## 6603  1085437282
## 6604  1085437394
## 6605  1085437411
## 6606  1085437447
## 6607  1085437455
## 6608  1085437551
## 6609  1085437567
## 6610  1085437590
## 6611  1085437600
## 6612  1085437609
## 6613  1085437615
## 6614  1085437618
## 6615  1085437623
## 6616  1085437654
## 6617  1085437719
## 6618  1085437729
## 6619  1085437751
## 6620  1085437773
## 6621  1085437798
## 6622  1085437903
## 6623  1085438019
## 6624  1085438104
## 6625  1085438123
## 6626  1085438129
## 6627  1085438134
## 6628  1085438158
## 6629  1085438165
## 6630  1085438307
## 6631  1085438417
## 6632  1085438436
## 6633  1085438452
## 6634  1085438500
## 6635  1085438517
## 6636  1085438556
## 6637  1085438644
## 6638  1085438677
## 6639  1085438703
## 6640  1085438752
## 6641  1085438796
## 6642  1085439124
## 6643  1085443849
## 6644  1085444147
## 6645  1085444158
## 6646  1085444172
## 6647  1085444193
## 6648  1085444208
## 6649  1085444259
## 6650  1085444420
## 6651  1085444510
## 6652  1085444559
## 6653  1085444743
## 6654  1085444768
## 6655  1085444848
## 6656  1085444918
## 6657  1085445152
## 6658  1085445183
## 6659  1085445237
## 6660  1085445271
## 6661  1085445283
## 6662  1085446028
## 6663  1085448512
## 6664  1085449727
## 6665  1085450181
## 6666  1085450237
## 6667  1085450561
## 6668  1085450680
## 6669  1085450681
## 6670  1085450737
## 6671  1085450902
## 6672  1085451678
## 6673  1085451697
## 6674  1085451742
## 6675  1085451755
## 6676  1085452908
## 6677  1085455339
## 6678  1085463305
## 6679  1085463351
## 6680  1085463439
## 6681  1085464469
## 6682  1085470435
## 6683  1085473250
## 6684  1085473426
## 6685  1085473561
## 6686  1085484006
## 6687  1085484054
## 6688  1085484131
## 6689  1085484234
## 6690  1085484316
## 6691  1085485112
## 6692  1085485265
## 6693  1085485523
## 6694  1085486374
## 6695  1085490083
## 6696  1085491255
## 6697  1085491524
## 6698  1085491564
## 6699  1085491593
## 6700  1085491777
## 6701  1085491819
## 6702  1085491877
## 6703  1085492019
## 6704  1085492536
## 6705  1085496932
## 6706  1085497202
## 6707  1085497214
## 6708  1085498125
## 6709  1085498616
## 6710  1085498625
## 6711  1085498706
## 6712  1085498893
## 6713  1085498900
## 6714  1085498953
## 6715  1085498995
## 6716  1085499013
## 6717  1085499189
## 6718  1085499334
## 6719  1085499565
## 6720  1085502703
## 6721  1085502759
## 6722  1085502829
## 6723  1085502837
## 6724  1085503655
## 6725  1085504338
## 6726  1085504483
## 6727  1085504626
## 6728  1085504814
## 6729  1085504892
## 6730  1085505260
## 6731  1085506286
## 6732  1085513993
## 6733  1085515438
## 6734  1085517201
## 6735  1085517833
## 6736  1085518312
## 6737  1085518802
## 6738  1085519161
## 6739  1085519183
## 6740  1085519207
## 6741  1085519542
## 6742  1085519896
## 6743  1085520356
## 6744  1085521752
## 6745  1085521757
## 6746  1085521804
## 6747  1085522351
## 6748  1085522440
## 6749  1085522456
## 6750  1085528733
## 6751  1085528745
## 6752  1085528831
## 6753  1085528840
## 6754  1085528954
## 6755  1085529067
## 6756  1085529113
## 6757  1085529141
## 6758  1085529192
## 6759  1085529336
## 6760  1085529400
## 6761  1085529496
## 6762  1085529745
## 6763  1085530277
## 6764  1085530928
## 6765  1085546840
## 6766  1085590667
## 6767  1085592275
## 6768  1085592741
## 6769  1085593088
## 6770  1085677268
## 6771  1085678571
## 6772  1085678587
## 6773  1085678591
## 6774  1085678694
## 6775  1085678711
## 6776  1085678986
## 6777  1085679328
## 6778  1085679498
## 6779  1085679523
## 6780  1085680180
## 6781  1085686831
## 6782  1085689731
## 6783  1085691578
## 6784  1085691590
## 6785  1085691610
## 6786  1085691786
## 6787  1085691794
## 6788  1085692461
## 6789  1085692552
## 6790  1085692679
## 6791  1085692711
## 6792  1085693084
## 6793  1085772049
## 6794  1085840027
## 6795  1085840278
## 6796  1085840328
## 6797  1085857860
## 6798  1085885734
## 6799  1085885787
## 6800  1085885829
## 6801  1085886004
## 6802  1085886025
## 6803  1085886042
## 6804  1085886123
## 6805  1085886167
## 6806  1085934763
## 6807  1085934795
## 6808  1085934927
## 6809  1085934943
## 6810  1085956826
## 6811  1086055152
## 6812  1086195372
## 6813  1086195850
## 6814  1086195868
## 6815  1086204825
## 6816  1086204880
## 6817  1086204930
## 6818  1086204956
## 6819  1086204960
## 6820  1086205190
## 6821  1086205276
## 6822  1086205280
## 6823  1086205347
## 6824  1086205463
## 6825  1086207323
## 6826  1086207339
## 6827  1086207462
## 6828  1086207517
## 6829  1086208231
## 6830  1086208828
## 6831  1086209313
## 6832  1086209565
## 6833  1086210752
## 6834  1086212862
## 6835  1086215694
## 6836  1086215875
## 6837  1086216716
## 6838  1086223063
## 6839  1086223286
## 6840  1086223288
## 6841  1086223725
## 6842  1086224264
## 6843  1086224649
## 6844  1086401045
## 6845  1086463398
## 6846  1086463528
## 6847  1086463844
## 6848  1086522355
## 6849  1086522466
## 6850  1086522660
## 6851  1086523726
## 6852  1086525447
## 6853  1086554494
## 6854  1086554627
## 6855  1086569856
## 6856  1086569871
## 6857  1086569929
## 6858  1086569936
## 6859  1086724197
## 6860  1086724217
## 6861  1086724364
## 6862  1086724509
## 6863  1086724549
## 6864  1086725150
## 6865  1086725177
## 6866  1086834984
## 6867  1086873882
## 6868  1086873922
## 6869  1086893152
## 6870  1086905085
## 6871  1086911411
## 6872  1086915877
## 6873  1086940446
## 6874  1086940481
## 6875  1086940741
## 6876  1086940825
## 6877  1086941222
## 6878  1086941338
## 6879  1087109086
## 6880  1087109105
## 6881  1087159677
## 6882  1087159743
## 6883  1087234491
## 6884  1087267613
## 6885  1087350967
## 6886  1087350970
## 6887  1087351595
## 6888  1087351710
## 6889  1087359535
## 6890  1087359728
## 6891  1087359825
## 6892  1087360025
## 6893  1087703224
## 6894  1088029603
## 6895  1088042056
## 6896  1088210531
## 6897  1088226163
## 6898  1088226214
## 6899  1088226363
## 6900  1088226601
## 6901  1088226834
## 6902  1088407440
## 6903  1088407863
## 6904  1088407895
## 6905  1088408014
## 6906  1088408201
## 6907  1088408820
## 6908  1088572354
## 6909  1088767525
## 6910  1088768593
## 6911  1088768978
## 6912  1088769104
## 6913  1089035863
## 6914  1089274605
## 6915  1089469228
## 6916  1089471653
## 6917  1089762707
## 6918  1090354073
## 6919  1090354635
## 6920  1090354661
## 6921  1090354718
## 6922  1090354981
## 6923  1090355164
## 6924  1090355179
## 6925  1090355187
## 6926  1090355869
## 6927  1090391469
## 6928  1090446146
## 6929  1090771158
## 6930  1090953634
## 6931  1090953788
## 6932  1090954650
## 6933  1090954820
## 6934  1091047480
## 6935  1091238664
## 6936  1091239220
## 6937  1091239470
## 6938  1091239492
## 6939  1091239502
## 6940  1091239540
## 6941  1091239545
## 6942  1091240135
## 6943  1091240184
## 6944  1091240245
## 6945  1091240316
## 6946  1091240706
## 6947  1091240798
## 6948  1091413334
## 6949  1091413349
## 6950  1091413357
## 6951  1091486335
## 6952  1092107445
## 6953  1092158864
## 6954  1092158889
## 6955  1092172103
## 6956  1092172242
## 6957  1092172318
## 6958  1093162783
## 6959  1093326390
## 6960  1094119457
## 6961  1094470217
## 6962  1094919395
## 6963  1095854626
## 6964  1095988127
## 6965  1096619962
## 6966  1097058613
## 6967  1098462148
## 6968  1098462497
## 6969  1098482616
## 6970  1098540903
## 6971  1099103342
## 6972  1099553711
## 6973  1099553852
## 6974  1099728623
## 6975  1099756829
## 6976  1099756921
## 6977  1100295592
## 6978  1100295603
## 6979  1100522860
## 6980  1100547398
## 6981  1100645822
## 6982  1100987034
## 6983  1101495281
## 6984  1101560268
## 6985  1101560286
## 6986  1101847493
## 6987  1101848210
## 6988  1101910114
## 6989  1102244828
## 6990  1102244946
## 6991  1102244984
## 6992  1102245140
## 6993  1102245213
## 6994  1102245259
## 6995  1102245285
## 6996  1102245341
## 6997  1102245395
## 6998  1102245471
## 6999  1102245484
## 7000  1102245739
## 7001  1102245872
## 7002  1102246532
## 7003  1102247353
## 7004  1102247397
## 7005  1102247926
## 7006  1102248603
## 7007  1102248694
## 7008  1102248697
## 7009  1102510167
## 7010  1104111663
## 7011  1104111715
## 7012  1104530904
## 7013  1104594787
## 7014  1104594818
## 7015  1104715808
## 7016  1104715821
## 7017  1104715878
## 7018  1104715966
## 7019  1104716632
## 7020  1104716664
## 7021  1104925711
## 7022  1105134475
## 7023  1105618766
## 7024  1105857479
## 7025  1105857681
## 7026  1106421396
## 7027  1106443589
## 7028  1106766465
## 7029  1107465868
## 7030  1107717822
## 7031  1108154788
## 7032  1108168884
## 7033  1108214677
## 7034  1108298087
## 7035  1108310022
## 7036  1108310133
## 7037  1108322702
## 7038  1108322708
## 7039  1108798748
## 7040  1109011157
## 7041  1109355562
## 7042  1109355590
## 7043  1109388723
## 7044  1109442257
## 7045  1109820542
## 7046  1109840531
## 7047  1109984383
## 7048  1110015542
## 7049  1110069551
## 7050  1110141051
## 7051  1110235214
## 7052  1110235918
## 7053  1110236608
## 7054  1110236624
## 7055  1110236730
## 7056  1110288334
## 7057  1110902946
## 7058  1110937570
## 7059  1110987111
## 7060  1110987155
## 7061  1111159177
## 7062  1111269833
## 7063  1111569943
## 7064  1111570236
## 7065  1111570239
## 7066  1111570252
## 7067  1111570513
## 7068  1111570594
## 7069  1111570650
## 7070  1111570659
## 7071  1111571082
## 7072  1111571169
## 7073  1111571309
## 7074  1111571362
## 7075  1111571375
## 7076  1111571390
## 7077  1111571392
## 7078  1111571414
## 7079  1111571461
## 7080  1111571465
## 7081  1111571469
## 7082  1111571472
## 7083  1111571488
## 7084  1111571501
## 7085  1111571557
## 7086  1111571624
## 7087  1111571650
## 7088  1111571651
## 7089  1111571762
## 7090  1111571859
## 7091  1111571906
## 7092  1111571909
## 7093  1111571917
## 7094  1111572027
## 7095  1111572029
## 7096  1111572034
## 7097  1111572048
## 7098  1111572092
## 7099  1111572122
## 7100  1111572129
## 7101  1111572129
## 7102  1111572144
## 7103  1111572165
## 7104  1111572194
## 7105  1111572305
## 7106  1111572334
## 7107  1111572372
## 7108  1111572389
## 7109  1111572466
## 7110  1111572472
## 7111  1111572527
## 7112  1111572535
## 7113  1111572559
## 7114  1111572564
## 7115  1111572573
## 7116  1111572679
## 7117  1111572706
## 7118  1111572726
## 7119  1111572735
## 7120  1111572736
## 7121  1111572748
## 7122  1111572812
## 7123  1111572828
## 7124  1111572837
## 7125  1111572844
## 7126  1111572894
## 7127  1111572897
## 7128  1111572922
## 7129  1111572934
## 7130  1111572991
## 7131  1111573065
## 7132  1111573193
## 7133  1111573369
## 7134  1111573378
## 7135  1111573385
## 7136  1111573390
## 7137  1111573423
## 7138  1111573428
## 7139  1111573443
## 7140  1111573484
## 7141  1111573495
## 7142  1111573519
## 7143  1111573566
## 7144  1111573593
## 7145  1111573635
## 7146  1111573643
## 7147  1111573673
## 7148  1111573710
## 7149  1111573713
## 7150  1111573725
## 7151  1111573735
## 7152  1111573750
## 7153  1111573817
## 7154  1111573821
## 7155  1111573837
## 7156  1111573915
## 7157  1111573926
## 7158  1111573963
## 7159  1111573991
## 7160  1111574000
## 7161  1111574007
## 7162  1111574027
## 7163  1111574030
## 7164  1111574042
## 7165  1111574057
## 7166  1111574073
## 7167  1111574085
## 7168  1111574087
## 7169  1111574087
## 7170  1111574126
## 7171  1111574131
## 7172  1111574150
## 7173  1111574157
## 7174  1111574162
## 7175  1111574162
## 7176  1111574211
## 7177  1111574225
## 7178  1111574264
## 7179  1111574285
## 7180  1111574308
## 7181  1111574310
## 7182  1111574414
## 7183  1111574419
## 7184  1111574481
## 7185  1111574520
## 7186  1111574564
## 7187  1111574577
## 7188  1111574582
## 7189  1111574588
## 7190  1111574617
## 7191  1111574769
## 7192  1111574772
## 7193  1111574775
## 7194  1111574792
## 7195  1111574807
## 7196  1111574841
## 7197  1111574869
## 7198  1111574970
## 7199  1111575010
## 7200  1111575013
## 7201  1111575029
## 7202  1111575081
## 7203  1111575128
## 7204  1111575194
## 7205  1111575197
## 7206  1111575216
## 7207  1111575269
## 7208  1111575319
## 7209  1111575363
## 7210  1111575494
## 7211  1111575566
## 7212  1111575584
## 7213  1111575593
## 7214  1111575799
## 7215  1111575983
## 7216  1111576065
## 7217  1111576070
## 7218  1111576249
## 7219  1111576554
## 7220  1111576565
## 7221  1111576621
## 7222  1111576700
## 7223  1111576986
## 7224  1111577125
## 7225  1111577390
## 7226  1111577455
## 7227  1111577685
## 7228  1111577687
## 7229  1111577915
## 7230  1111578114
## 7231  1111578200
## 7232  1111578264
## 7233  1111578271
## 7234  1111578278
## 7235  1111578320
## 7236  1111578388
## 7237  1111578396
## 7238  1111578420
## 7239  1111578422
## 7240  1111578513
## 7241  1111578554
## 7242  1111578614
## 7243  1111578621
## 7244  1111578641
## 7245  1111578738
## 7246  1111578794
## 7247  1111578898
## 7248  1111578922
## 7249  1111578964
## 7250  1111579016
## 7251  1111579072
## 7252  1111579085
## 7253  1111579102
## 7254  1111579147
## 7255  1111579228
## 7256  1111579287
## 7257  1111579555
## 7258  1111579936
## 7259  1111579995
## 7260  1111580089
## 7261  1111580113
## 7262  1111580199
## 7263  1111580315
## 7264  1111580411
## 7265  1111580416
## 7266  1111580455
## 7267  1111580457
## 7268  1111580500
## 7269  1111580509
## 7270  1111580633
## 7271  1111580716
## 7272  1111580772
## 7273  1111580814
## 7274  1111580865
## 7275  1111581007
## 7276  1111581013
## 7277  1111581020
## 7278  1111581042
## 7279  1111581135
## 7280  1111581164
## 7281  1111581312
## 7282  1111581356
## 7283  1111581358
## 7284  1111581403
## 7285  1111581457
## 7286  1111581484
## 7287  1111581486
## 7288  1111581490
## 7289  1111581500
## 7290  1111581810
## 7291  1111581907
## 7292  1111581955
## 7293  1111581958
## 7294  1111581986
## 7295  1111582060
## 7296  1111582091
## 7297  1111582111
## 7298  1111582250
## 7299  1111582275
## 7300  1111582294
## 7301  1111582429
## 7302  1111582458
## 7303  1111582459
## 7304  1111582537
## 7305  1111582605
## 7306  1111582749
## 7307  1111582889
## 7308  1111582920
## 7309  1111582960
## 7310  1111582981
## 7311  1111583017
## 7312  1111583047
## 7313  1111583224
## 7314  1111583361
## 7315  1111583379
## 7316  1111583384
## 7317  1111583446
## 7318  1111583512
## 7319  1111583516
## 7320  1111583537
## 7321  1111583581
## 7322  1111583598
## 7323  1111583666
## 7324  1111583674
## 7325  1111583721
## 7326  1111583791
## 7327  1111583888
## 7328  1111583895
## 7329  1111583981
## 7330  1111584087
## 7331  1111584165
## 7332  1111584372
## 7333  1111584423
## 7334  1111584449
## 7335  1111584497
## 7336  1111584525
## 7337  1111584550
## 7338  1111584558
## 7339  1111584649
## 7340  1111584711
## 7341  1111584950
## 7342  1111584952
## 7343  1111584998
## 7344  1111585066
## 7345  1111585098
## 7346  1111585137
## 7347  1111585198
## 7348  1111585267
## 7349  1111585291
## 7350  1111585317
## 7351  1111585356
## 7352  1111585440
## 7353  1111585518
## 7354  1111585526
## 7355  1111585575
## 7356  1111585623
## 7357  1111585638
## 7358  1111585646
## 7359  1111585696
## 7360  1111585803
## 7361  1111585803
## 7362  1111585810
## 7363  1111585842
## 7364  1111585848
## 7365  1111585893
## 7366  1111586013
## 7367  1111586034
## 7368  1111586038
## 7369  1111586169
## 7370  1111586178
## 7371  1111586190
## 7372  1111586202
## 7373  1111586279
## 7374  1111586330
## 7375  1111586414
## 7376  1111586416
## 7377  1111586455
## 7378  1111586489
## 7379  1111586502
## 7380  1111586601
## 7381  1111586612
## 7382  1111586643
## 7383  1111586726
## 7384  1111586729
## 7385  1111586746
## 7386  1111586753
## 7387  1111586757
## 7388  1111586759
## 7389  1111586787
## 7390  1111586825
## 7391  1111586838
## 7392  1111586856
## 7393  1111586867
## 7394  1111586883
## 7395  1111586945
## 7396  1111586947
## 7397  1111586971
## 7398  1111587062
## 7399  1111587118
## 7400  1111587118
## 7401  1111587219
## 7402  1111587250
## 7403  1111587412
## 7404  1111587519
## 7405  1111587521
## 7406  1111587601
## 7407  1111587746
## 7408  1111587750
## 7409  1111587761
## 7410  1111587777
## 7411  1111587788
## 7412  1111587798
## 7413  1111587834
## 7414  1111587849
## 7415  1111587937
## 7416  1111587958
## 7417  1111587967
## 7418  1111587975
## 7419  1111588013
## 7420  1111588047
## 7421  1111588055
## 7422  1111588071
## 7423  1111588080
## 7424  1111588116
## 7425  1111588146
## 7426  1111588260
## 7427  1111588315
## 7428  1111588319
## 7429  1111588340
## 7430  1111588618
## 7431  1111588749
## 7432  1111588784
## 7433  1111589094
## 7434  1111589174
## 7435  1111589267
## 7436  1111589285
## 7437  1111589287
## 7438  1111589331
## 7439  1111589440
## 7440  1111589466
## 7441  1111589472
## 7442  1111589548
## 7443  1111589573
## 7444  1111589578
## 7445  1111589648
## 7446  1111589715
## 7447  1111590143
## 7448  1111590213
## 7449  1111590430
## 7450  1111590528
## 7451  1111590535
## 7452  1111590715
## 7453  1111590719
## 7454  1111590741
## 7455  1111590822
## 7456  1111590918
## 7457  1111590980
## 7458  1111591079
## 7459  1111591486
## 7460  1111591505
## 7461  1111591624
## 7462  1111591759
## 7463  1111591764
## 7464  1111591792
## 7465  1111591972
## 7466  1111591990
## 7467  1111592084
## 7468  1111592116
## 7469  1111592202
## 7470  1111592541
## 7471  1111592624
## 7472  1111592668
## 7473  1111592675
## 7474  1111592742
## 7475  1111592775
## 7476  1111593162
## 7477  1111609782
## 7478  1111609859
## 7479  1111609994
## 7480  1111610056
## 7481  1111610128
## 7482  1111625054
## 7483  1111625074
## 7484  1111625600
## 7485  1111625635
## 7486  1111625811
## 7487  1111625835
## 7488  1111625876
## 7489  1111626651
## 7490  1111638223
## 7491  1111638249
## 7492  1111638255
## 7493  1111638325
## 7494  1111638341
## 7495  1111638414
## 7496  1111638798
## 7497  1111638897
## 7498  1111638952
## 7499  1111639201
## 7500  1111639490
## 7501  1111639699
## 7502  1111639834
## 7503  1111639903
## 7504  1111640016
## 7505  1111640035
## 7506  1111640046
## 7507  1111640109
## 7508  1111640399
## 7509  1111640438
## 7510  1111640591
## 7511  1111640926
## 7512  1111651389
## 7513  1111652982
## 7514  1111658014
## 7515  1111658807
## 7516  1111658883
## 7517  1111674737
## 7518  1111674785
## 7519  1111706364
## 7520  1111812489
## 7521  1111815477
## 7522  1111816166
## 7523  1111816503
## 7524  1111816873
## 7525  1111830225
## 7526  1111830232
## 7527  1111830270
## 7528  1111973363
## 7529  1111978582
## 7530  1112006093
## 7531  1112014376
## 7532  1112014380
## 7533  1112014474
## 7534  1112015285
## 7535  1112015636
## 7536  1112032297
## 7537  1112032410
## 7538  1112064742
## 7539  1112065233
## 7540  1112065295
## 7541  1112090038
## 7542  1112108793
## 7543  1112108812
## 7544  1112109181
## 7545  1112181259
## 7546  1112182977
## 7547  1112288670
## 7548  1112302188
## 7549  1112424410
## 7550  1112424468
## 7551  1112424488
## 7552  1112424546
## 7553  1112456495
## 7554  1112479379
## 7555  1112528180
## 7556  1112617205
## 7557  1112636346
## 7558  1112902968
## 7559  1113025455
## 7560  1113025468
## 7561  1113025472
## 7562  1113025579
## 7563  1113457991
## 7564  1113502655
## 7565  1113502718
## 7566  1113502861
## 7567  1113661827
## 7568  1113687729
## 7569  1113712563
## 7570  1113837896
## 7571  1114134721
## 7572  1114141274
## 7573  1114141300
## 7574  1114143406
## 7575  1114519045
## 7576  1114545064
## 7577  1114668041
## 7578  1114668328
## 7579  1114668340
## 7580  1114890926
## 7581  1115408756
## 7582  1115583624
## 7583  1115653282
## 7584  1115653315
## 7585  1115696624
## 7586  1115892101
## 7587  1115892280
## 7588  1116613840
## 7589  1116839541
## 7590  1116894010
## 7591  1117015162
## 7592  1117501924
## 7593  1117502012
## 7594  1117502138
## 7595  1117502397
## 7596  1117502554
## 7597  1117506590
## 7598  1117508555
## 7599  1117508624
## 7600  1118012964
## 7601  1118272401
## 7602  1118272532
## 7603  1118300909
## 7604  1118437009
## 7605  1118650915
## 7606  1118708041
## 7607  1118765403
## 7608  1118766062
## 7609  1119407287
## 7610  1119407320
## 7611  1119407334
## 7612  1119407459
## 7613  1119407470
## 7614  1119407494
## 7615  1119407740
## 7616  1119407797
## 7617  1119407896
## 7618  1119407904
## 7619  1119408058
## 7620  1119408078
## 7621  1119408137
## 7622  1119408182
## 7623  1119408277
## 7624  1119408365
## 7625  1119408692
## 7626  1119408785
## 7627  1119408918
## 7628  1119409004
## 7629  1119409343
## 7630  1119409385
## 7631  1119409440
## 7632  1119409455
## 7633  1119409728
## 7634  1119409862
## 7635  1119410127
## 7636  1119429658
## 7637  1119736667
## 7638  1119797205
## 7639  1119797343
## 7640  1119797739
## 7641  1119797943
## 7642  1119853634
## 7643  1119854276
## 7644  1119854824
## 7645  1119855381
## 7646  1120254995
## 7647  1120268384
## 7648  1120433947
## 7649  1120583562
## 7650  1120728574
## 7651  1121091451
## 7652  1121204279
## 7653  1121367975
## 7654  1121393034
## 7655  1121955458
## 7656  1122310147
## 7657  1122543593
## 7658  1122736764
## 7659  1122781568
## 7660  1122863194
## 7661  1122877016
## 7662  1122878477
## 7663  1122878630
## 7664  1122937632
## 7665  1122937725
## 7666  1123076497
## 7667  1123128513
## 7668  1123437644
## 7669  1123505323
## 7670  1123618042
## 7671  1123797340
## 7672  1123848558
## 7673  1124271685
## 7674  1124288686
## 7675  1124305341
## 7676  1124532763
## 7677  1124734868
## 7678  1124965958
## 7679  1125047098
## 7680  1125063557
## 7681  1125091454
## 7682  1125518757
## 7683  1125610369
## 7684  1125925054
## 7685  1125939973
## 7686  1126303530
## 7687  1126543403
## 7688  1127170043
## 7689  1127237941
## 7690  1128093792
## 7691  1128093903
## 7692  1128094149
## 7693  1128311838
## 7694  1128311853
## 7695  1128311930
## 7696  1128312092
## 7697  1129849840
## 7698  1130101350
## 7699  1130101487
## 7700  1131023296
## 7701  1131054151
## 7702  1131715548
## 7703  1131715580
## 7704  1131718406
## 7705  1132539200
## 7706  1132541605
## 7707  1133748266
## 7708  1134311461
## 7709  1134530459
## 7710  1134530463
## 7711  1134530750
## 7712  1134530787
## 7713  1134530992
## 7714  1134531030
## 7715  1134531097
## 7716  1134531125
## 7717  1134531145
## 7718  1134531169
## 7719  1134531576
## 7720  1134531824
## 7721  1134531834
## 7722  1134531851
## 7723  1134531862
## 7724  1134531959
## 7725  1134532005
## 7726  1134532132
## 7727  1134543426
## 7728  1134543841
## 7729  1134543843
## 7730  1134543845
## 7731  1134544013
## 7732  1134544015
## 7733  1134544037
## 7734  1134544047
## 7735  1134544052
## 7736  1134544062
## 7737  1134544101
## 7738  1134544109
## 7739  1134544163
## 7740  1134544197
## 7741  1134544260
## 7742  1134544285
## 7743  1134544315
## 7744  1134545869
## 7745  1134545927
## 7746  1134546176
## 7747  1134546207
## 7748  1134546220
## 7749  1134546269
## 7750  1134546415
## 7751  1134546453
## 7752  1134546482
## 7753  1134546605
## 7754  1134546634
## 7755  1134546702
## 7756  1134546851
## 7757  1134546910
## 7758  1134546948
## 7759  1134547042
## 7760  1134547072
## 7761  1134547113
## 7762  1134559057
## 7763  1134559063
## 7764  1134559079
## 7765  1134559213
## 7766  1134559348
## 7767  1134559354
## 7768  1134559426
## 7769  1134559452
## 7770  1134574090
## 7771  1134574359
## 7772  1134574552
## 7773  1134574564
## 7774  1134575981
## 7775  1134576018
## 7776  1134576093
## 7777  1134576245
## 7778  1134578032
## 7779  1134579830
## 7780  1134579871
## 7781  1134580286
## 7782  1134580389
## 7783  1134580493
## 7784  1134580544
## 7785  1134580554
## 7786  1134580581
## 7787  1134580664
## 7788  1134580741
## 7789  1134580813
## 7790  1134580958
## 7791  1134581013
## 7792  1134581145
## 7793  1134581172
## 7794  1134581335
## 7795  1134581933
## 7796  1134581973
## 7797  1134582348
## 7798  1134582556
## 7799  1134582714
## 7800  1134582722
## 7801  1134583074
## 7802  1134583135
## 7803  1134583157
## 7804  1134583204
## 7805  1134583230
## 7806  1134583283
## 7807  1134583571
## 7808  1134583626
## 7809  1134583660
## 7810  1134588853
## 7811  1134589042
## 7812  1134589132
## 7813  1134589574
## 7814  1134590026
## 7815  1134590242
## 7816  1134591016
## 7817  1134591753
## 7818  1134592390
## 7819  1134592630
## 7820  1134592750
## 7821  1134592763
## 7822  1134592774
## 7823  1134593147
## 7824  1134593200
## 7825  1134593360
## 7826  1134593408
## 7827  1134593475
## 7828  1134593507
## 7829  1134593512
## 7830  1134593566
## 7831  1134593803
## 7832  1134593806
## 7833  1134594156
## 7834  1134594526
## 7835  1134594593
## 7836  1134594603
## 7837  1134594990
## 7838  1134595145
## 7839  1134595159
## 7840  1134595163
## 7841  1134595185
## 7842  1134595188
## 7843  1134595279
## 7844  1134595308
## 7845  1134595342
## 7846  1134595431
## 7847  1134595435
## 7848  1134595442
## 7849  1134595473
## 7850  1134595557
## 7851  1134595685
## 7852  1134595717
## 7853  1134595763
## 7854  1134595771
## 7855  1134595844
## 7856  1134595899
## 7857  1134595953
## 7858  1134596017
## 7859  1134596415
## 7860  1134596446
## 7861  1134596887
## 7862  1134596922
## 7863  1134596997
## 7864  1134597049
## 7865  1134597138
## 7866  1134597143
## 7867  1134597172
## 7868  1134597323
## 7869  1134597461
## 7870  1134597498
## 7871  1134597548
## 7872  1134597566
## 7873  1134597577
## 7874  1134597711
## 7875  1134597732
## 7876  1134597775
## 7877  1134598071
## 7878  1134598114
## 7879  1134598128
## 7880  1134598143
## 7881  1134598164
## 7882  1134598167
## 7883  1134598267
## 7884  1134598296
## 7885  1134598330
## 7886  1134598333
## 7887  1134598338
## 7888  1134598357
## 7889  1134598376
## 7890  1134598385
## 7891  1134598405
## 7892  1134598464
## 7893  1134598490
## 7894  1134598585
## 7895  1134598612
## 7896  1134598629
## 7897  1134598631
## 7898  1134598652
## 7899  1134598694
## 7900  1134598741
## 7901  1134598797
## 7902  1134598843
## 7903  1134598925
## 7904  1134598948
## 7905  1134598952
## 7906  1134598966
## 7907  1134598969
## 7908  1134598988
## 7909  1134599001
## 7910  1134599043
## 7911  1134599071
## 7912  1134599100
## 7913  1134599119
## 7914  1134599129
## 7915  1134599134
## 7916  1134599140
## 7917  1134599186
## 7918  1134599216
## 7919  1134599222
## 7920  1134599259
## 7921  1134599441
## 7922  1134599508
## 7923  1134599546
## 7924  1134599670
## 7925  1134599805
## 7926  1134599869
## 7927  1134599894
## 7928  1134599935
## 7929  1134599951
## 7930  1134600016
## 7931  1134600088
## 7932  1134600109
## 7933  1134600141
## 7934  1134600145
## 7935  1134600999
## 7936  1134601184
## 7937  1134601988
## 7938  1134602259
## 7939  1134602602
## 7940  1134602654
## 7941  1134603020
## 7942  1134603046
## 7943  1134603224
## 7944  1134603315
## 7945  1134603400
## 7946  1134603524
## 7947  1134615957
## 7948  1134615997
## 7949  1134616051
## 7950  1134616130
## 7951  1134616966
## 7952  1134617513
## 7953  1134617520
## 7954  1134617566
## 7955  1134617685
## 7956  1134618016
## 7957  1134620331
## 7958  1134620445
## 7959  1134620474
## 7960  1134620509
## 7961  1134620758
## 7962  1134620863
## 7963  1134620877
## 7964  1134620908
## 7965  1134620933
## 7966  1134621010
## 7967  1134621119
## 7968  1134621304
## 7969  1134621381
## 7970  1134621453
## 7971  1134621471
## 7972  1134621486
## 7973  1134621543
## 7974  1134621565
## 7975  1134621703
## 7976  1134621706
## 7977  1134621848
## 7978  1134621968
## 7979  1134621995
## 7980  1134622168
## 7981  1134622416
## 7982  1134622630
## 7983  1134622768
## 7984  1134623246
## 7985  1134623337
## 7986  1134623546
## 7987  1134623760
## 7988  1134623860
## 7989  1134623874
## 7990  1134623981
## 7991  1134624196
## 7992  1134660331
## 7993  1134660404
## 7994  1134662056
## 7995  1134662094
## 7996  1134662205
## 7997  1134662263
## 7998  1134662324
## 7999  1134662425
## 8000  1134662699
## 8001  1134662704
## 8002  1134662840
## 8003  1134662877
## 8004  1134663222
## 8005  1134663233
## 8006  1134663276
## 8007  1134663646
## 8008  1134663722
## 8009  1134668222
## 8010  1134668325
## 8011  1134668472
## 8012  1134668584
## 8013  1134668601
## 8014  1134668620
## 8015  1134668675
## 8016  1134668746
## 8017  1134668777
## 8018  1134682102
## 8019  1134682384
## 8020  1134682640
## 8021  1134682772
## 8022  1134682779
## 8023  1134683405
## 8024  1134683931
## 8025  1134684375
## 8026  1134684615
## 8027  1134684976
## 8028  1134685031
## 8029  1134685712
## 8030  1134685787
## 8031  1134686133
## 8032  1134686395
## 8033  1134687147
## 8034  1134689931
## 8035  1134690057
## 8036  1134705022
## 8037  1134705023
## 8038  1134705026
## 8039  1134705035
## 8040  1134705041
## 8041  1134707371
## 8042  1134710547
## 8043  1134710560
## 8044  1134710617
## 8045  1134710628
## 8046  1134710641
## 8047  1134711018
## 8048  1134711681
## 8049  1134711686
## 8050  1134711849
## 8051  1134712439
## 8052  1134742344
## 8053  1134746441
## 8054  1134746469
## 8055  1134746678
## 8056  1134746682
## 8057  1134746739
## 8058  1134746753
## 8059  1134746774
## 8060  1134747013
## 8061  1134747076
## 8062  1134747121
## 8063  1134757402
## 8064  1134759548
## 8065  1134759575
## 8066  1134759600
## 8067  1134759889
## 8068  1134760019
## 8069  1134767898
## 8070  1134767936
## 8071  1134767972
## 8072  1134767976
## 8073  1134768153
## 8074  1134768186
## 8075  1134768383
## 8076  1134768404
## 8077  1134768679
## 8078  1134768740
## 8079  1134768778
## 8080  1134768900
## 8081  1134768910
## 8082  1134769031
## 8083  1134769350
## 8084  1134769446
## 8085  1134769515
## 8086  1134775368
## 8087  1134775551
## 8088  1134775632
## 8089  1134775679
## 8090  1134775822
## 8091  1134775861
## 8092  1134775944
## 8093  1134776019
## 8094  1134776037
## 8095  1134776045
## 8096  1134776055
## 8097  1134776146
## 8098  1134776300
## 8099  1134776498
## 8100  1134776510
## 8101  1134776512
## 8102  1134776581
## 8103  1134776584
## 8104  1134776610
## 8105  1134776904
## 8106  1134776953
## 8107  1134777017
## 8108  1134778322
## 8109  1134778411
## 8110  1134778423
## 8111  1134778967
## 8112  1134778991
## 8113  1134779098
## 8114  1134779171
## 8115  1134779174
## 8116  1134779187
## 8117  1134779209
## 8118  1134779230
## 8119  1134779519
## 8120  1134779560
## 8121  1134779917
## 8122  1134779924
## 8123  1134780266
## 8124  1134780616
## 8125  1134780680
## 8126  1134780715
## 8127  1134781815
## 8128  1134781833
## 8129  1134781878
## 8130  1134781886
## 8131  1134782040
## 8132  1134782263
## 8133  1134782285
## 8134  1134783680
## 8135  1134783693
## 8136  1134806535
## 8137  1134806576
## 8138  1134806598
## 8139  1134806604
## 8140  1134807136
## 8141  1134807160
## 8142  1134807319
## 8143  1134807833
## 8144  1134809657
## 8145  1134809700
## 8146  1134810949
## 8147  1134811424
## 8148  1134834428
## 8149  1134834444
## 8150  1134834731
## 8151  1134834765
## 8152  1134834936
## 8153  1134834958
## 8154  1134834998
## 8155  1134835046
## 8156  1134837071
## 8157  1134837223
## 8158  1134837380
## 8159  1134837427
## 8160  1134837649
## 8161  1134837730
## 8162  1134837797
## 8163  1134838387
## 8164  1134838428
## 8165  1134838547
## 8166  1134838555
## 8167  1134916712
## 8168  1134916840
## 8169  1134933848
## 8170  1134933859
## 8171  1134933964
## 8172  1134933990
## 8173  1134934060
## 8174  1134934131
## 8175  1134934376
## 8176  1134934436
## 8177  1134934675
## 8178  1134934685
## 8179  1134934796
## 8180  1134944568
## 8181  1135012954
## 8182  1135016064
## 8183  1135078324
## 8184  1135078476
## 8185  1135078825
## 8186  1135101489
## 8187  1135101694
## 8188  1135101698
## 8189  1135101729
## 8190  1135101770
## 8191  1135101827
## 8192  1135200542
## 8193  1135201863
## 8194  1135290876
## 8195  1135291128
## 8196  1135291131
## 8197  1135291181
## 8198  1135291204
## 8199  1135291288
## 8200  1135291862
## 8201  1135349642
## 8202  1135349917
## 8203  1135350933
## 8204  1135351058
## 8205  1135351112
## 8206  1135351533
## 8207  1135353732
## 8208  1135353827
## 8209  1135356026
## 8210  1135722613
## 8211  1135722644
## 8212  1135794999
## 8213  1135795123
## 8214  1135795184
## 8215  1135914010
## 8216  1136060433
## 8217  1136061089
## 8218  1136079555
## 8219  1136324084
## 8220  1136324207
## 8221  1136324673
## 8222  1136324769
## 8223  1136324913
## 8224  1136325099
## 8225  1136325133
## 8226  1136471299
## 8227  1136471310
## 8228  1136478916
## 8229  1136478942
## 8230  1136480378
## 8231  1136490169
## 8232  1136490558
## 8233  1136490645
## 8234  1136490827
## 8235  1136491756
## 8236  1136492374
## 8237  1136493019
## 8238  1136496983
## 8239  1136498006
## 8240  1136509335
## 8241  1136509424
## 8242  1136575927
## 8243  1136766726
## 8244  1136767800
## 8245  1136767895
## 8246  1136767947
## 8247  1136768000
## 8248  1136768031
## 8249  1136768152
## 8250  1136768155
## 8251  1136768235
## 8252  1136768397
## 8253  1136768546
## 8254  1136832332
## 8255  1136988699
## 8256  1137000079
## 8257  1137000109
## 8258  1137095456
## 8259  1137095465
## 8260  1137095594
## 8261  1137095601
## 8262  1137095610
## 8263  1137095655
## 8264  1137095797
## 8265  1137265694
## 8266  1137265784
## 8267  1137265805
## 8268  1137265903
## 8269  1137265998
## 8270  1137266012
## 8271  1137360496
## 8272  1137360618
## 8273  1137425202
## 8274  1137474106
## 8275  1137474763
## 8276  1137474792
## 8277  1137578218
## 8278  1137578296
## 8279  1137578436
## 8280  1137578683
## 8281  1137579019
## 8282  1137579199
## 8283  1137874673
## 8284  1137951541
## 8285  1138297969
## 8286  1138298466
## 8287  1138298500
## 8288  1138298620
## 8289  1138298751
## 8290  1138298942
## 8291  1138448585
## 8292  1138508582
## 8293  1138544454
## 8294  1138544581
## 8295  1138544584
## 8296  1138544603
## 8297  1138544732
## 8298  1138544764
## 8299  1138544793
## 8300  1138661743
## 8301  1139208180
## 8302  1139208226
## 8303  1139606671
## 8304  1139660736
## 8305  1139660937
## 8306  1139660952
## 8307  1139661022
## 8308  1139661057
## 8309  1139673994
## 8310  1139717153
## 8311  1139999782
## 8312  1140000327
## 8313  1140000458
## 8314  1140000468
## 8315  1140000895
## 8316  1140645165
## 8317  1141062019
## 8318  1141512977
## 8319  1141532255
## 8320  1142090364
## 8321  1142090573
## 8322  1142299904
## 8323  1142300001
## 8324  1142300034
## 8325  1142300143
## 8326  1142300215
## 8327  1142300606
## 8328  1142300617
## 8329  1142438670
## 8330  1142730481
## 8331  1143213136
## 8332  1143403080
## 8333  1144733373
## 8334  1144733515
## 8335  1144778145
## 8336  1144778252
## 8337  1144778293
## 8338  1144778375
## 8339  1145141185
## 8340  1145141212
## 8341  1145203419
## 8342  1145920778
## 8343  1147200062
## 8344  1147236768
## 8345  1147809097
## 8346  1148009634
## 8347  1148621107
## 8348  1148926764
## 8349  1149064629
## 8350  1149786811
## 8351  1149787091
## 8352  1149787171
## 8353  1149787359
## 8354  1149787372
## 8355  1149787390
## 8356  1149787575
## 8357  1149787654
## 8358  1149787740
## 8359  1149787782
## 8360  1149790833
## 8361  1149793501
## 8362  1149793581
## 8363  1149793865
## 8364  1149794033
## 8365  1149794208
## 8366  1149794671
## 8367  1149794691
## 8368  1149794708
## 8369  1149794858
## 8370  1149795301
## 8371  1149795527
## 8372  1149795597
## 8373  1149795806
## 8374  1149795826
## 8375  1149795911
## 8376  1149795948
## 8377  1149796046
## 8378  1149796166
## 8379  1149796363
## 8380  1149796398
## 8381  1149796508
## 8382  1149796551
## 8383  1149796879
## 8384  1149796943
## 8385  1149796966
## 8386  1149797646
## 8387  1149797658
## 8388  1149977542
## 8389  1150004276
## 8390  1150004282
## 8391  1150231811
## 8392  1150501243
## 8393  1150969013
## 8394  1151093294
## 8395  1151769163
## 8396  1151769683
## 8397  1151769779
## 8398  1151769794
## 8399  1152104594
## 8400  1152365992
## 8401  1152500117
## 8402  1152503816
## 8403  1152503954
## 8404  1152553386
## 8405  1152553415
## 8406  1152588527
## 8407  1153247859
## 8408  1154265721
## 8409  1154265869
## 8410  1154335778
## 8411  1155164136
## 8412  1155164207
## 8413  1155172670
## 8414  1155172809
## 8415  1156505279
## 8416  1156788751
## 8417  1156788898
## 8418  1157934078
## 8419  1157934086
## 8420  1157934169
## 8421  1158858992
## 8422  1160838943
## 8423  1162700078
## 8424  1162700953
## 8425  1162700995
## 8426  1162740606
## 8427  1162743332
## 8428  1162972800
## 8429  1162972928
## 8430  1162975006
## 8431  1162975073
## 8432  1162975204
## 8433  1162975417
## 8434  1162981271
## 8435  1162981328
## 8436  1162981786
## 8437  1162984434
## 8438  1162984577
## 8439  1162984753
## 8440  1162984845
## 8441  1163000351
## 8442  1163004464
## 8443  1163004657
## 8444  1163005080
## 8445  1163005369
## 8446  1163012798
## 8447  1163013177
## 8448  1163013328
## 8449  1163060091
## 8450  1163060095
## 8451  1163080420
## 8452  1163080463
## 8453  1163080539
## 8454  1163080776
## 8455  1163080845
## 8456  1163099215
## 8457  1163099272
## 8458  1163099292
## 8459  1163099337
## 8460  1163099366
## 8461  1163099424
## 8462  1163099431
## 8463  1163099471
## 8464  1163099491
## 8465  1163099574
## 8466  1163099581
## 8467  1163099689
## 8468  1163099694
## 8469  1163099715
## 8470  1163099740
## 8471  1163099757
## 8472  1163099760
## 8473  1163099766
## 8474  1163099788
## 8475  1163099865
## 8476  1163099866
## 8477  1163099904
## 8478  1163099906
## 8479  1163099909
## 8480  1163099917
## 8481  1163099939
## 8482  1163099966
## 8483  1163099980
## 8484  1163099988
## 8485  1163100005
## 8486  1163100018
## 8487  1163100060
## 8488  1163100081
## 8489  1163100109
## 8490  1163100142
## 8491  1163100152
## 8492  1163100181
## 8493  1163100183
## 8494  1163100200
## 8495  1163100204
## 8496  1163100207
## 8497  1163100234
## 8498  1163100310
## 8499  1163100362
## 8500  1163100379
## 8501  1163100395
## 8502  1163100407
## 8503  1163100486
## 8504  1163100490
## 8505  1163100509
## 8506  1163100527
## 8507  1163100546
## 8508  1163100770
## 8509  1163100868
## 8510  1163100955
## 8511  1163101064
## 8512  1163101071
## 8513  1163101077
## 8514  1163101081
## 8515  1163101103
## 8516  1163101125
## 8517  1163101146
## 8518  1163101375
## 8519  1163101487
## 8520  1163101527
## 8521  1163101533
## 8522  1163101690
## 8523  1163101723
## 8524  1163101784
## 8525  1163101851
## 8526  1163101966
## 8527  1163102118
## 8528  1163102202
## 8529  1163102271
## 8530  1163102308
## 8531  1163102319
## 8532  1163102377
## 8533  1163102467
## 8534  1163102579
## 8535  1163102593
## 8536  1163102675
## 8537  1163102953
## 8538  1163103312
## 8539  1163103353
## 8540  1163103375
## 8541  1163103451
## 8542  1163103753
## 8543  1163103766
## 8544  1163103893
## 8545  1163104063
## 8546  1163105243
## 8547  1163105276
## 8548  1163105326
## 8549  1163105402
## 8550  1163105440
## 8551  1163105474
## 8552  1163105505
## 8553  1163105620
## 8554  1163105650
## 8555  1163105701
## 8556  1163105969
## 8557  1163105986
## 8558  1163106054
## 8559  1163106175
## 8560  1163106298
## 8561  1163106551
## 8562  1163106787
## 8563  1163106801
## 8564  1163106964
## 8565  1163106972
## 8566  1163107047
## 8567  1163107070
## 8568  1163107150
## 8569  1163107344
## 8570  1163108179
## 8571  1163108182
## 8572  1163108277
## 8573  1163108312
## 8574  1163108480
## 8575  1163108796
## 8576  1163109117
## 8577  1163109143
## 8578  1163109220
## 8579  1163109272
## 8580  1163109317
## 8581  1163109433
## 8582  1163110665
## 8583  1163111569
## 8584  1163111621
## 8585  1163111703
## 8586  1163111799
## 8587  1163111813
## 8588  1163112091
## 8589  1163112385
## 8590  1163112404
## 8591  1163112510
## 8592  1163112629
## 8593  1163112725
## 8594  1163112834
## 8595  1163112901
## 8596  1163113063
## 8597  1163113116
## 8598  1163113265
## 8599  1163113553
## 8600  1163113571
## 8601  1163113601
## 8602  1163113727
## 8603  1163113952
## 8604  1163114393
## 8605  1163114541
## 8606  1163114563
## 8607  1163114629
## 8608  1163114654
## 8609  1163114696
## 8610  1163114730
## 8611  1163114822
## 8612  1163118554
## 8613  1163118621
## 8614  1163118956
## 8615  1163118958
## 8616  1163119398
## 8617  1163119697
## 8618  1163119729
## 8619  1163119731
## 8620  1163119912
## 8621  1163120067
## 8622  1163120180
## 8623  1163120370
## 8624  1163121090
## 8625  1163121128
## 8626  1163121285
## 8627  1163121313
## 8628  1163121449
## 8629  1163121510
## 8630  1163121706
## 8631  1163122133
## 8632  1163122337
## 8633  1163122557
## 8634  1163122570
## 8635  1163122588
## 8636  1163122656
## 8637  1163122659
## 8638  1163122737
## 8639  1163122829
## 8640  1163122832
## 8641  1163122890
## 8642  1163122915
## 8643  1163123033
## 8644  1163123057
## 8645  1163123081
## 8646  1163123414
## 8647  1163123451
## 8648  1163123533
## 8649  1163123546
## 8650  1163123574
## 8651  1163123688
## 8652  1163123688
## 8653  1163123692
## 8654  1163123738
## 8655  1163123752
## 8656  1163123798
## 8657  1163123820
## 8658  1163123825
## 8659  1163123839
## 8660  1163123866
## 8661  1163123896
## 8662  1163123913
## 8663  1163123966
## 8664  1163124006
## 8665  1163124040
## 8666  1163124080
## 8667  1163124092
## 8668  1163124099
## 8669  1163124115
## 8670  1163124204
## 8671  1163124290
## 8672  1163124321
## 8673  1163124436
## 8674  1163124603
## 8675  1163124620
## 8676  1163124677
## 8677  1163124704
## 8678  1163125031
## 8679  1163125054
## 8680  1163125197
## 8681  1163125859
## 8682  1163126720
## 8683  1163126776
## 8684  1163126788
## 8685  1163127041
## 8686  1163127061
## 8687  1163127198
## 8688  1163127415
## 8689  1163127423
## 8690  1163127463
## 8691  1163127517
## 8692  1163127634
## 8693  1163128291
## 8694  1163128531
## 8695  1163129395
## 8696  1163133555
## 8697  1163143996
## 8698  1163144961
## 8699  1163145000
## 8700  1163145036
## 8701  1163145038
## 8702  1163145386
## 8703  1163145516
## 8704  1163146529
## 8705  1163153991
## 8706  1163154005
## 8707  1163154033
## 8708  1163154482
## 8709  1163154498
## 8710  1163154719
## 8711  1163154735
## 8712  1163154798
## 8713  1163161273
## 8714  1163161302
## 8715  1163161498
## 8716  1163161632
## 8717  1163161638
## 8718  1163161643
## 8719  1163161673
## 8720  1163161877
## 8721  1163161948
## 8722  1163161988
## 8723  1163161999
## 8724  1163162104
## 8725  1163162241
## 8726  1163162300
## 8727  1163162313
## 8728  1163162364
## 8729  1163162382
## 8730  1163162391
## 8731  1163162586
## 8732  1163162601
## 8733  1163162686
## 8734  1163162709
## 8735  1163162724
## 8736  1163162920
## 8737  1163163115
## 8738  1163163118
## 8739  1163163183
## 8740  1163163198
## 8741  1163163252
## 8742  1163163275
## 8743  1163163320
## 8744  1163163380
## 8745  1163163456
## 8746  1163163482
## 8747  1163163506
## 8748  1163163630
## 8749  1163163676
## 8750  1163163705
## 8751  1163163928
## 8752  1163164876
## 8753  1163165053
## 8754  1163165055
## 8755  1163166113
## 8756  1163166155
## 8757  1163167123
## 8758  1163167557
## 8759  1163167692
## 8760  1163167703
## 8761  1163169375
## 8762  1163169448
## 8763  1163169558
## 8764  1163169703
## 8765  1163170179
## 8766  1163170257
## 8767  1163170312
## 8768  1163170593
## 8769  1163170756
## 8770  1163170871
## 8771  1163170892
## 8772  1163171005
## 8773  1163171057
## 8774  1163171092
## 8775  1163171140
## 8776  1163171223
## 8777  1163171424
## 8778  1163171438
## 8779  1163171513
## 8780  1163171551
## 8781  1163173496
## 8782  1163173707
## 8783  1163174064
## 8784  1163175407
## 8785  1163219321
## 8786  1163219362
## 8787  1163219386
## 8788  1163219907
## 8789  1163219953
## 8790  1163220347
## 8791  1163220494
## 8792  1163220590
## 8793  1163220642
## 8794  1163220843
## 8795  1163252250
## 8796  1163252918
## 8797  1163253047
## 8798  1163253071
## 8799  1163253120
## 8800  1163259890
## 8801  1163286001
## 8802  1163286142
## 8803  1163286260
## 8804  1163351886
## 8805  1163375836
## 8806  1163417581
## 8807  1163417787
## 8808  1163429786
## 8809  1163438981
## 8810  1163440772
## 8811  1163446579
## 8812  1163446628
## 8813  1163448421
## 8814  1163448473
## 8815  1163448611
## 8816  1163448777
## 8817  1163449406
## 8818  1163454473
## 8819  1163457228
## 8820  1163457235
## 8821  1163457327
## 8822  1163526849
## 8823  1163708797
## 8824  1163737974
## 8825  1163739562
## 8826  1163974445
## 8827  1163998279
## 8828  1164126862
## 8829  1164131181
## 8830  1164131244
## 8831  1164131260
## 8832  1164131375
## 8833  1164131387
## 8834  1164135862
## 8835  1164195063
## 8836  1164195087
## 8837  1164195525
## 8838  1164195657
## 8839  1164228726
## 8840  1164466868
## 8841  1164467002
## 8842  1164467088
## 8843  1164483865
## 8844  1164531795
## 8845  1164557555
## 8846  1164557606
## 8847  1164557613
## 8848  1164557616
## 8849  1164558500
## 8850  1164558534
## 8851  1164558594
## 8852  1164558668
## 8853  1164558785
## 8854  1164558808
## 8855  1164558867
## 8856  1164558923
## 8857  1164558943
## 8858  1164559058
## 8859  1164559165
## 8860  1164559205
## 8861  1164559266
## 8862  1164559521
## 8863  1164559709
## 8864  1164559716
## 8865  1164559820
## 8866  1164559919
## 8867  1164563033
## 8868  1164621629
## 8869  1164724463
## 8870  1165174425
## 8871  1165523435
## 8872  1165792247
## 8873  1165975467
## 8874  1165975481
## 8875  1166027880
## 8876  1166313511
## 8877  1166991221
## 8878  1166991437
## 8879  1166991498
## 8880  1166991609
## 8881  1166991744
## 8882  1166991786
## 8883  1166991931
## 8884  1166992060
## 8885  1166992234
## 8886  1166992310
## 8887  1166992347
## 8888  1166992389
## 8889  1166992693
## 8890  1166992706
## 8891  1166992736
## 8892  1166992757
## 8893  1166993029
## 8894  1166993141
## 8895  1166993210
## 8896  1166993773
## 8897  1166993844
## 8898  1166994048
## 8899  1167021031
## 8900  1167436069
## 8901  1167680150
## 8902  1168025664
## 8903  1168100668
## 8904  1168101924
## 8905  1168102453
## 8906  1168102855
## 8907  1168125373
## 8908  1168125446
## 8909  1168127532
## 8910  1168709195
## 8911  1168712038
## 8912  1168803652
## 8913  1168804262
## 8914  1168804395
## 8915  1168804496
## 8916  1168878373
## 8917  1169073517
## 8918  1169215359
## 8919  1169215387
## 8920  1169215521
## 8921  1169215551
## 8922  1169568770
## 8923  1169568793
## 8924  1169568796
## 8925  1169568819
## 8926  1169568908
## 8927  1169647013
## 8928  1169647062
## 8929  1169850252
## 8930  1169912422
## 8931  1169912914
## 8932  1169913745
## 8933  1169913842
## 8934  1169913932
## 8935  1169913999
## 8936  1169914327
## 8937  1169914418
## 8938  1169914548
## 8939  1169914586
## 8940  1170071934
## 8941  1170071994
## 8942  1170072052
## 8943  1170072054
## 8944  1170072089
## 8945  1170072191
## 8946  1170072265
## 8947  1170072358
## 8948  1170072563
## 8949  1170072932
## 8950  1171043506
## 8951  1171664686
## 8952  1172297951
## 8953  1172298049
## 8954  1172960294
## 8955  1173143756
## 8956  1173218448
## 8957  1173218515
## 8958  1173299961
## 8959  1173301309
## 8960  1173305691
## 8961  1173305727
## 8962  1173306802
## 8963  1174122339
## 8964  1174142916
## 8965  1174514571
## 8966  1174715237
## 8967  1174761388
## 8968  1174779307
## 8969  1175806823
## 8970  1176373485
## 8971  1177014036
## 8972  1177493226
## 8973  1177941571
## 8974  1179476196
## 8975  1179476541
## 8976  1179503617
## 8977  1179696036
## 8978  1179696365
## 8979  1179766170
## 8980  1179772369
## 8981  1179772385
## 8982  1180297726
## 8983  1180403047
## 8984  1180557246
## 8985  1180634847
## 8986  1180824855
## 8987  1180935475
## 8988  1181501663
## 8989  1183034529
## 8990  1183034613
## 8991  1183288192
## 8992  1183512491
## 8993  1183512581
## 8994  1183754753
## 8995  1183755505
## 8996  1183844467
## 8997  1183844498
## 8998  1183844565
## 8999  1183920122
## 9000  1183920214
## 9001  1183920251
## 9002  1183920347
## 9003  1185664065
## 9004  1185819340
## 9005  1186266342
## 9006  1186267038
## 9007  1186608327
## 9008  1187337969
## 9009  1187421333
## 9010  1187421363
## 9011  1188008531
## 9012  1188138744
## 9013  1188534988
## 9014  1188634200
## 9015  1188634291
## 9016  1188634323
## 9017  1188634550
## 9018  1188634737
## 9019  1188634916
## 9020  1188634940
## 9021  1188635080
## 9022  1188635104
## 9023  1188635315
## 9024  1188635394
## 9025  1188635576
## 9026  1188689902
## 9027  1188755514
## 9028  1188853300
## 9029  1188853379
## 9030  1188853428
## 9031  1188853906
## 9032  1188855012
## 9033  1188855396
## 9034  1188855599
## 9035  1188856099
## 9036  1188856174
## 9037  1188856447
## 9038  1188856506
## 9039  1188856618
## 9040  1188856732
## 9041  1188856804
## 9042  1188857356
## 9043  1188857471
## 9044  1188857539
## 9045  1188857944
## 9046  1188858289
## 9047  1188858341
## 9048  1188858495
## 9049  1188858559
## 9050  1188858676
## 9051  1188858837
## 9052  1188859374
## 9053  1188859635
## 9054  1188860092
## 9055  1188860422
## 9056  1188860493
## 9057  1188860518
## 9058  1188860638
## 9059  1189106460
## 9060  1189106655
## 9061  1189113909
## 9062  1189114250
## 9063  1189114709
## 9064  1189124553
## 9065  1189124715
## 9066  1189125620
## 9067  1189125621
## 9068  1189136162
## 9069  1189136252
## 9070  1189136357
## 9071  1189136766
## 9072  1189137517
## 9073  1189137635
## 9074  1189137652
## 9075  1189137679
## 9076  1189137775
## 9077  1189137805
## 9078  1189137846
## 9079  1189137865
## 9080  1189137894
## 9081  1189138427
## 9082  1189138524
## 9083  1189146927
## 9084  1189147138
## 9085  1189147203
## 9086  1189147472
## 9087  1189155561
## 9088  1189155990
## 9089  1189156146
## 9090  1189156213
## 9091  1189156367
## 9092  1189156444
## 9093  1189156908
## 9094  1189157069
## 9095  1189157121
## 9096  1189157369
## 9097  1189159919
## 9098  1189216581
## 9099  1189216672
## 9100  1189216861
## 9101  1189217030
## 9102  1189217239
## 9103  1189217315
## 9104  1189217490
## 9105  1189217629
## 9106  1189217757
## 9107  1189218221
## 9108  1189218401
## 9109  1189218533
## 9110  1189277062
## 9111  1189283170
## 9112  1189283424
## 9113  1189283566
## 9114  1189297037
## 9115  1189297747
## 9116  1189297937
## 9117  1189299121
## 9118  1189299492
## 9119  1189299658
## 9120  1189301024
## 9121  1189301369
## 9122  1189301957
## 9123  1189302141
## 9124  1189302143
## 9125  1189302263
## 9126  1189302280
## 9127  1189302292
## 9128  1189302313
## 9129  1189302337
## 9130  1189302349
## 9131  1189302404
## 9132  1189302491
## 9133  1189302504
## 9134  1189302516
## 9135  1189304171
## 9136  1189304253
## 9137  1189304275
## 9138  1189304283
## 9139  1189304527
## 9140  1189306066
## 9141  1189317809
## 9142  1189317935
## 9143  1189326155
## 9144  1189327311
## 9145  1189327366
## 9146  1189327471
## 9147  1189327513
## 9148  1189327650
## 9149  1189328139
## 9150  1189329699
## 9151  1189335852
## 9152  1189336643
## 9153  1189337256
## 9154  1189339855
## 9155  1189341465
## 9156  1189341640
## 9157  1189341713
## 9158  1189358380
## 9159  1189358400
## 9160  1189358526
## 9161  1189358882
## 9162  1189358993
## 9163  1189359017
## 9164  1189359021
## 9165  1189359096
## 9166  1189359135
## 9167  1189359564
## 9168  1189359837
## 9169  1189359977
## 9170  1189360154
## 9171  1189360178
## 9172  1189360279
## 9173  1189360348
## 9174  1189360459
## 9175  1189360521
## 9176  1189360533
## 9177  1189360748
## 9178  1189360933
## 9179  1189361167
## 9180  1189361236
## 9181  1189361371
## 9182  1189361399
## 9183  1189361415
## 9184  1189361441
## 9185  1189361464
## 9186  1189361522
## 9187  1189361527
## 9188  1189361556
## 9189  1189362288
## 9190  1189362714
## 9191  1189362740
## 9192  1189362879
## 9193  1189362960
## 9194  1189363143
## 9195  1189370245
## 9196  1189371446
## 9197  1189371494
## 9198  1189371520
## 9199  1189371582
## 9200  1189371776
## 9201  1189371882
## 9202  1189372033
## 9203  1189372256
## 9204  1189377059
## 9205  1189379116
## 9206  1189379343
## 9207  1189386240
## 9208  1189386601
## 9209  1189386613
## 9210  1189386620
## 9211  1189386625
## 9212  1189386654
## 9213  1189386661
## 9214  1189386668
## 9215  1189386689
## 9216  1189386744
## 9217  1189386753
## 9218  1189386756
## 9219  1189386762
## 9220  1189386906
## 9221  1189386937
## 9222  1189386983
## 9223  1189393084
## 9224  1189393934
## 9225  1189394473
## 9226  1189395220
## 9227  1189395379
## 9228  1189395429
## 9229  1189395749
## 9230  1189395760
## 9231  1189396565
## 9232  1189396598
## 9233  1189396637
## 9234  1189396904
## 9235  1189396953
## 9236  1189397051
## 9237  1189398796
## 9238  1189398850
## 9239  1189418784
## 9240  1189418901
## 9241  1189418928
## 9242  1189423209
## 9243  1189423360
## 9244  1189426209
## 9245  1189426407
## 9246  1189426435
## 9247  1189426626
## 9248  1189426653
## 9249  1189427186
## 9250  1189427654
## 9251  1189427799
## 9252  1189428794
## 9253  1189428954
## 9254  1189428996
## 9255  1189429262
## 9256  1189429314
## 9257  1189429327
## 9258  1189429597
## 9259  1189429895
## 9260  1189430085
## 9261  1189430089
## 9262  1189430133
## 9263  1189430191
## 9264  1189430858
## 9265  1189430867
## 9266  1189430938
## 9267  1189431096
## 9268  1189431547
## 9269  1189432738
## 9270  1189432786
## 9271  1189452591
## 9272  1189452761
## 9273  1189454953
## 9274  1189455935
## 9275  1189456275
## 9276  1189456279
## 9277  1189456485
## 9278  1189456529
## 9279  1189462274
## 9280  1189462286
## 9281  1189462377
## 9282  1189463358
## 9283  1189464535
## 9284  1189465536
## 9285  1189465678
## 9286  1189466135
## 9287  1189466140
## 9288  1189466211
## 9289  1189466619
## 9290  1189533847
## 9291  1189589491
## 9292  1189590408
## 9293  1189590529
## 9294  1189590632
## 9295  1189590637
## 9296  1189590866
## 9297  1189615058
## 9298  1189615236
## 9299  1189615259
## 9300  1189615481
## 9301  1189615492
## 9302  1189615495
## 9303  1189619119
## 9304  1189626691
## 9305  1189626917
## 9306  1189626982
## 9307  1189629096
## 9308  1189718126
## 9309  1189734480
## 9310  1189734657
## 9311  1189734788
## 9312  1189735527
## 9313  1189766818
## 9314  1189778685
## 9315  1189802740
## 9316  1189802808
## 9317  1189804111
## 9318  1189804370
## 9319  1189804493
## 9320  1189805232
## 9321  1189805428
## 9322  1189805653
## 9323  1189817359
## 9324  1189817519
## 9325  1189817786
## 9326  1189817803
## 9327  1189817839
## 9328  1189870618
## 9329  1189870653
## 9330  1189870711
## 9331  1189870745
## 9332  1189870755
## 9333  1189870767
## 9334  1189870913
## 9335  1189871065
## 9336  1189871530
## 9337  1189871572
## 9338  1189871629
## 9339  1189871668
## 9340  1189871762
## 9341  1189872090
## 9342  1189872136
## 9343  1189872149
## 9344  1189881444
## 9345  1189881810
## 9346  1189881852
## 9347  1189882252
## 9348  1189882275
## 9349  1189882761
## 9350  1189883155
## 9351  1189888081
## 9352  1189888377
## 9353  1189888417
## 9354  1189888616
## 9355  1189888787
## 9356  1189888982
## 9357  1189889173
## 9358  1189889273
## 9359  1189895920
## 9360  1189963504
## 9361  1189963511
## 9362  1190042855
## 9363  1190043081
## 9364  1190043153
## 9365  1190043282
## 9366  1190070113
## 9367  1190070132
## 9368  1190070353
## 9369  1190070415
## 9370  1190070517
## 9371  1190070585
## 9372  1190082767
## 9373  1190150054
## 9374  1190257724
## 9375  1190257935
## 9376  1190258092
## 9377  1190260519
## 9378  1190306503
## 9379  1190311304
## 9380  1190311460
## 9381  1190313174
## 9382  1190313627
## 9383  1190322328
## 9384  1190322420
## 9385  1190322486
## 9386  1190345794
## 9387  1190345887
## 9388  1190346083
## 9389  1190486395
## 9390  1190513237
## 9391  1190513551
## 9392  1190515264
## 9393  1190515360
## 9394  1190516253
## 9395  1190649846
## 9396  1190842220
## 9397  1190914118
## 9398  1190926670
## 9399  1190926773
## 9400  1190926877
## 9401  1190927219
## 9402  1190928238
## 9403  1190928918
## 9404  1191098736
## 9405  1191098980
## 9406  1191294058
## 9407  1191294072
## 9408  1191294084
## 9409  1191294110
## 9410  1191294281
## 9411  1191294372
## 9412  1191294880
## 9413  1191295026
## 9414  1191295059
## 9415  1191295409
## 9416  1191295419
## 9417  1191295437
## 9418  1191295465
## 9419  1191295486
## 9420  1191295528
## 9421  1191295573
## 9422  1191295597
## 9423  1191295738
## 9424  1191295837
## 9425  1191295848
## 9426  1191513045
## 9427  1191513337
## 9428  1191514000
## 9429  1191536235
## 9430  1191536969
## 9431  1191537222
## 9432  1191669506
## 9433  1191696140
## 9434  1191947410
## 9435  1192467809
## 9436  1192488414
## 9437  1192488466
## 9438  1192488538
## 9439  1192488583
## 9440  1192488872
## 9441  1192488967
## 9442  1192489088
## 9443  1192489186
## 9444  1192489219
## 9445  1192489224
## 9446  1192489241
## 9447  1192489809
## 9448  1192490114
## 9449  1192490252
## 9450  1192490329
## 9451  1192490337
## 9452  1192490376
## 9453  1192490697
## 9454  1192728963
## 9455  1192997190
## 9456  1193355646
## 9457  1193666801
## 9458  1193667123
## 9459  1193692266
## 9460  1193886909
## 9461  1194032917
## 9462  1194032982
## 9463  1194032987
## 9464  1194032998
## 9465  1194033018
## 9466  1194033276
## 9467  1194033403
## 9468  1194033582
## 9469  1194210724
## 9470  1194469788
## 9471  1194656473
## 9472  1194656638
## 9473  1194735617
## 9474  1195251514
## 9475  1195265900
## 9476  1195266086
## 9477  1195266578
## 9478  1195266582
## 9479  1195536898
## 9480  1195922397
## 9481  1196023235
## 9482  1197058696
## 9483  1197058827
## 9484  1197583784
## 9485  1197865973
## 9486  1198557596
## 9487  1198599850
## 9488  1199140847
## 9489  1199546011
## 9490  1199572641
## 9491  1199572649
## 9492  1199572721
## 9493  1199572911
## 9494  1199573040
## 9495  1199573197
## 9496  1199573268
## 9497  1199573752
## 9498  1199574127
## 9499  1199583219
## 9500  1199642288
## 9501  1199642293
## 9502  1199662651
## 9503  1200070897
## 9504  1200238512
## 9505  1200816517
## 9506  1201512688
## 9507  1202147399
## 9508  1202147542
## 9509  1202417051
## 9510  1203549170
## 9511  1203728632
## 9512  1203728829
## 9513  1203728942
## 9514  1203728945
## 9515  1203729028
## 9516  1203729437
## 9517  1203729944
## 9518  1203730234
## 9519  1203730272
## 9520  1203730277
## 9521  1203730334
## 9522  1203730379
## 9523  1203730397
## 9524  1203730863
## 9525  1203732599
## 9526  1203732605
## 9527  1203732666
## 9528  1203732701
## 9529  1203732845
## 9530  1203732857
## 9531  1203871999
## 9532  1203872075
## 9533  1203990763
## 9534  1203990866
## 9535  1204498280
## 9536  1204897742
## 9537  1204897794
## 9538  1204917911
## 9539  1204917989
## 9540  1204917992
## 9541  1204918024
## 9542  1204918132
## 9543  1206212064
## 9544  1206486997
## 9545  1207055812
## 9546  1207056336
## 9547  1207057280
## 9548  1207057372
## 9549  1207057464
## 9550  1207057513
## 9551  1207057648
## 9552  1207058037
## 9553  1207058195
## 9554  1207058263
## 9555  1207058276
## 9556  1207418852
## 9557  1207418949
## 9558  1207419104
## 9559  1207419191
## 9560  1207419208
## 9561  1207419288
## 9562  1207519511
## 9563  1207603994
## 9564  1208451953
## 9565  1208516390
## 9566  1209179632
## 9567  1209272743
## 9568  1210046243
## 9569  1210530324
## 9570  1210666968
## 9571  1211917793
## 9572  1212261895
## 9573  1212461462
## 9574  1213117798
## 9575  1213370376
## 9576  1213370411
## 9577  1213370573
## 9578  1213370788
## 9579  1213371055
## 9580  1213371217
## 9581  1213371334
## 9582  1213371466
## 9583  1213371676
## 9584  1213371681
## 9585  1213371695
## 9586  1213372431
## 9587  1213372449
## 9588  1213372744
## 9589  1213987442
## 9590  1213988034
## 9591  1213989529
## 9592  1213989556
## 9593  1213989563
## 9594  1213989634
## 9595  1213989703
## 9596  1213990022
## 9597  1214049745
## 9598  1214049781
## 9599  1214062427
## 9600  1214062481
## 9601  1214062599
## 9602  1214062688
## 9603  1214062749
## 9604  1214062764
## 9605  1214062798
## 9606  1214062823
## 9607  1214062887
## 9608  1214062959
## 9609  1214063143
## 9610  1214063442
## 9611  1214063548
## 9612  1214063603
## 9613  1214063794
## 9614  1214063858
## 9615  1214063969
## 9616  1214081449
## 9617  1214086342
## 9618  1214133975
## 9619  1214134318
## 9620  1214152849
## 9621  1214173506
## 9622  1214441136
## 9623  1214579948
## 9624  1214726376
## 9625  1214726534
## 9626  1214726556
## 9627  1214726576
## 9628  1214726775
## 9629  1214727647
## 9630  1215455813
## 9631  1216012937
## 9632  1216013180
## 9633  1216013450
## 9634  1216016034
## 9635  1216016051
## 9636  1216016366
## 9637  1216017693
## 9638  1216017740
## 9639  1216017920
## 9640  1216018286
## 9641  1216030715
## 9642  1216030944
## 9643  1216030985
## 9644  1216031171
## 9645  1216031742
## 9646  1216031869
## 9647  1216031891
## 9648  1216032818
## 9649  1216033395
## 9650  1216033698
## 9651  1216033724
## 9652  1216035165
## 9653  1216068584
## 9654  1216070427
## 9655  1216070690
## 9656  1216080754
## 9657  1216080776
## 9658  1216080869
## 9659  1216082124
## 9660  1216082242
## 9661  1216082267
## 9662  1216082569
## 9663  1216083842
## 9664  1216084298
## 9665  1216084333
## 9666  1216084811
## 9667  1216084876
## 9668  1216085086
## 9669  1216085243
## 9670  1216085318
## 9671  1216085340
## 9672  1216085449
## 9673  1216085926
## 9674  1216086059
## 9675  1216088512
## 9676  1216088515
## 9677  1216088694
## 9678  1216089040
## 9679  1216089051
## 9680  1216089152
## 9681  1216089164
## 9682  1216089285
## 9683  1216091725
## 9684  1216091754
## 9685  1216092083
## 9686  1216102300
## 9687  1216103209
## 9688  1216103545
## 9689  1216103574
## 9690  1216103767
## 9691  1216103908
## 9692  1216104095
## 9693  1216104275
## 9694  1216104451
## 9695  1216104765
## 9696  1216104777
## 9697  1216104910
## 9698  1216104948
## 9699  1216104995
## 9700  1216105082
## 9701  1216105211
## 9702  1216105322
## 9703  1216105869
## 9704  1216106029
## 9705  1216106089
## 9706  1216106174
## 9707  1216106205
## 9708  1216106209
## 9709  1216106246
## 9710  1216106287
## 9711  1216106368
## 9712  1216106421
## 9713  1216106577
## 9714  1216106838
## 9715  1216107016
## 9716  1216107129
## 9717  1216107331
## 9718  1216107518
## 9719  1216107595
## 9720  1216107620
## 9721  1216107648
## 9722  1216107661
## 9723  1216107746
## 9724  1216107838
## 9725  1216107875
## 9726  1216108096
## 9727  1216108141
## 9728  1216108146
## 9729  1216108153
## 9730  1216108163
## 9731  1216108232
## 9732  1216108328
## 9733  1216108387
## 9734  1216108402
## 9735  1216108423
## 9736  1216108429
## 9737  1216108441
## 9738  1216108581
## 9739  1216108618
## 9740  1216108637
## 9741  1216108642
## 9742  1216108684
## 9743  1216108777
## 9744  1216108779
## 9745  1216108913
## 9746  1216109065
## 9747  1216109328
## 9748  1216109381
## 9749  1216109406
## 9750  1216109429
## 9751  1216109450
## 9752  1216109452
## 9753  1216109495
## 9754  1216109518
## 9755  1216109534
## 9756  1216109637
## 9757  1216109675
## 9758  1216109680
## 9759  1216109702
## 9760  1216111232
## 9761  1216111299
## 9762  1216111358
## 9763  1216111362
## 9764  1216111529
## 9765  1216111677
## 9766  1216111742
## 9767  1216111802
## 9768  1216111830
## 9769  1216111841
## 9770  1216111850
## 9771  1216111888
## 9772  1216111902
## 9773  1216111908
## 9774  1216111950
## 9775  1216111975
## 9776  1216112009
## 9777  1216112032
## 9778  1216112052
## 9779  1216112082
## 9780  1216112186
## 9781  1216112307
## 9782  1216112322
## 9783  1216112329
## 9784  1216112387
## 9785  1216112704
## 9786  1216120873
## 9787  1216121659
## 9788  1216123143
## 9789  1216123147
## 9790  1216123175
## 9791  1216123186
## 9792  1216124167
## 9793  1216124290
## 9794  1216124393
## 9795  1216124481
## 9796  1216124682
## 9797  1216125092
## 9798  1216125244
## 9799  1216125302
## 9800  1216125390
## 9801  1216125492
## 9802  1216125584
## 9803  1216125714
## 9804  1216126216
## 9805  1216126228
## 9806  1216126253
## 9807  1216126321
## 9808  1216130899
## 9809  1216131642
## 9810  1216131697
## 9811  1216131851
## 9812  1216131911
## 9813  1216132122
## 9814  1216132324
## 9815  1216132345
## 9816  1216132369
## 9817  1216132405
## 9818  1216132454
## 9819  1216132477
## 9820  1216132489
## 9821  1216132537
## 9822  1216132551
## 9823  1216132646
## 9824  1216132884
## 9825  1216133151
## 9826  1216133799
## 9827  1216133829
## 9828  1216133941
## 9829  1216134155
## 9830  1216134170
## 9831  1216134314
## 9832  1216134836
## 9833  1216134899
## 9834  1216135209
## 9835  1216135253
## 9836  1216135406
## 9837  1216135666
## 9838  1216135669
## 9839  1216135728
## 9840  1216135734
## 9841  1216135744
## 9842  1216135790
## 9843  1216135809
## 9844  1216135820
## 9845  1216135883
## 9846  1216135912
## 9847  1216135945
## 9848  1216135959
## 9849  1216135977
## 9850  1216135999
## 9851  1216136002
## 9852  1216136003
## 9853  1216136134
## 9854  1216136193
## 9855  1216136367
## 9856  1216136376
## 9857  1216136404
## 9858  1216136491
## 9859  1216136513
## 9860  1216137072
## 9861  1216137293
## 9862  1216137634
## 9863  1216137663
## 9864  1216137732
## 9865  1216137738
## 9866  1216137752
## 9867  1216137761
## 9868  1216137808
## 9869  1216137844
## 9870  1216138168
## 9871  1216138500
## 9872  1216138760
## 9873  1216142285
## 9874  1216142856
## 9875  1216144059
## 9876  1216144296
## 9877  1216144579
## 9878  1216144609
## 9879  1216149950
## 9880  1216150426
## 9881  1216150536
## 9882  1216150612
## 9883  1216151423
## 9884  1216151448
## 9885  1216151453
## 9886  1216151463
## 9887  1216151500
## 9888  1216151526
## 9889  1216151534
## 9890  1216151572
## 9891  1216151610
## 9892  1216151673
## 9893  1216151994
## 9894  1216152025
## 9895  1216152046
## 9896  1216157400
## 9897  1216158665
## 9898  1216165955
## 9899  1216166445
## 9900  1216166527
## 9901  1216166551
## 9902  1216166642
## 9903  1216186135
## 9904  1216193414
## 9905  1216193435
## 9906  1216194095
## 9907  1216196230
## 9908  1216220701
## 9909  1216220747
## 9910  1216224521
## 9911  1216224697
## 9912  1216224706
## 9913  1216224790
## 9914  1216224803
## 9915  1216224913
## 9916  1216224931
## 9917  1216225137
## 9918  1216225249
## 9919  1216225395
## 9920  1216225488
## 9921  1216225660
## 9922  1216225665
## 9923  1216225671
## 9924  1216225793
## 9925  1216225865
## 9926  1216225911
## 9927  1216225940
## 9928  1216225980
## 9929  1216230725
## 9930  1216239256
## 9931  1216239272
## 9932  1216268739
## 9933  1216306977
## 9934  1216333396
## 9935  1216845558
## 9936  1216992267
## 9937  1216994600
## 9938  1217185921
## 9939  1217646308
## 9940  1217667265
## 9941  1217667903
## 9942  1217668066
## 9943  1217668370
## 9944  1217669576
## 9945  1217669759
## 9946  1217669940
## 9947  1217884484
## 9948  1217885501
## 9949  1217886398
## 9950  1218898698
## 9951  1219174138
## 9952  1219609007
## 9953  1220014471
## 9954  1220016309
## 9955  1220016568
## 9956  1220422117
## 9957  1220439693
## 9958  1220439747
## 9959  1221940317
## 9960  1222060848
## 9961  1222707669
## 9962  1222707676
## 9963  1224518207
## 9964  1225498547
## 9965  1225557691
## 9966  1226370644
## 9967  1226545244
## 9968  1226678214
## 9969  1226678708
## 9970  1226678752
## 9971  1226699394
## 9972  1226865103
## 9973  1226865181
## 9974  1226890090
## 9975  1227190503
## 9976  1227190596
## 9977  1227265936
## 9978  1227266004
## 9979  1227266066
## 9980  1227266560
## 9981  1227266760
## 9982  1227641378
## 9983  1227885435
## 9984  1228079619
## 9985  1228673666
## 9986  1228683358
## 9987  1229391189
## 9988  1230430401
## 9989  1230430515
## 9990  1230430530
## 9991  1230432777
## 9992  1230517407
## 9993  1230517939
## 9994  1230517992
## 9995  1230518431
## 9996  1230684551
## 9997  1230761944
## 9998  1230761968
## 9999  1230762008
## 10000 1230918487
  • Find all 5 star ratings.
filter(movies, Rating == 5)
##      MovieID
## 1       6711
## 2        973
## 3       1378
## 4       1088
## 5       5135
## 6       1207
## 7       1090
## 8      31696
## 9        356
## 10      1307
## 11       942
## 12       590
## 13      2355
## 14      1258
## 15       633
## 16       610
## 17       551
## 18       858
## 19      1699
## 20      3265
## 21       318
## 22      1307
## 23     49286
## 24      1909
## 25       899
## 26       339
## 27      1079
## 28       318
## 29       316
## 30       494
## 31      1259
## 32      1367
## 33      1584
## 34      1641
## 35       663
## 36       480
## 37      3265
## 38      4914
## 39        79
## 40      1289
## 41      1213
## 42      4995
## 43      1136
## 44      3545
## 45      4298
## 46      1293
## 47       541
## 48       541
## 49      1203
## 50         1
## 51      2081
## 52      2918
## 53         1
## 54       562
## 55      1214
## 56      2028
## 57       296
## 58         9
## 59       515
## 60      1272
## 61      1270
## 62      1230
## 63       597
## 64       196
## 65      1270
## 66      1259
## 67      1952
## 68      2600
## 69       123
## 70      3108
## 71      1089
## 72      1321
## 73      1193
## 74       538
## 75       260
## 76       916
## 77       435
## 78       919
## 79      2206
## 80      1262
## 81       474
## 82       344
## 83       778
## 84      4571
## 85       898
## 86      1284
## 87       356
## 88      2716
## 89       232
## 90       587
## 91      1299
## 92      1042
## 93      2726
## 94      1734
## 95       353
## 96       356
## 97       141
## 98       608
## 99      1912
## 100     1235
## 101     1303
## 102      150
## 103      527
## 104     1207
## 105     1653
## 106     2028
## 107      595
## 108     1213
## 109     1617
## 110     2171
## 111      593
## 112     1954
## 113     5952
## 114      953
## 115      296
## 116      714
## 117     1682
## 118     1236
## 119     2571
## 120     5418
## 121     2459
## 122      161
## 123      198
## 124     1220
## 125     2470
## 126      858
## 127     2009
## 128     2918
## 129     1370
## 130     7438
## 131     5135
## 132      260
## 133     1304
## 134     1214
## 135     2935
## 136     3275
## 137      858
## 138     1295
## 139     1276
## 140      337
## 141      296
## 142      260
## 143     1080
## 144     7153
## 145      648
## 146      608
## 147       85
## 148     4062
## 149      593
## 150        2
## 151     3267
## 152     1356
## 153      235
## 154     1485
## 155     4265
## 156      909
## 157     1212
## 158     3481
## 159     1235
## 160      858
## 161      780
## 162     2959
## 163      442
## 164      349
## 165     1280
## 166      426
## 167     1256
## 168     7147
## 169      637
## 170     5989
## 171      110
## 172     1518
## 173     2174
## 174     2028
## 175      356
## 176     2739
## 177     1361
## 178      428
## 179     3076
## 180      971
## 181     2985
## 182      750
## 183     1136
## 184      316
## 185     2396
## 186      261
## 187      247
## 188     2288
## 189      150
## 190      858
## 191     1207
## 192      608
## 193     5010
## 194     2390
## 195     3296
## 196     1910
## 197      562
## 198     2571
## 199      165
## 200     8019
## 201     1077
## 202     2997
## 203    44555
## 204     2621
## 205        1
## 206     1617
## 207     4970
## 208     1270
## 209     6783
## 210     1517
## 211      150
## 212      653
## 213     2947
## 214     3618
## 215     2858
## 216     2912
## 217      858
## 218     2174
## 219      253
## 220     1810
## 221       25
## 222        6
## 223     1280
## 224     4067
## 225       62
## 226     2987
## 227      316
## 228      218
## 229     2706
## 230     1259
## 231     2700
## 232      273
## 233     1127
## 234     1291
## 235     5110
## 236     3114
## 237     6874
## 238     1307
## 239      161
## 240      380
## 241     1940
## 242     1256
## 243     6669
## 244     2312
## 245     1198
## 246       36
## 247      339
## 248      380
## 249     1196
## 250     2137
## 251      296
## 252      266
## 253     1077
## 254      318
## 255     1287
## 256     3988
## 257     2289
## 258      736
## 259       21
## 260     4616
## 261     1923
## 262     3581
## 263     2997
## 264      161
## 265      671
## 266     4095
## 267     1947
## 268     1221
## 269      318
## 270     1059
## 271     6193
## 272      736
## 273     2571
## 274      150
## 275     1097
## 276      246
## 277      720
## 278      288
## 279      788
## 280     6552
## 281     1210
## 282       57
## 283       76
## 284     1136
## 285      373
## 286      527
## 287      260
## 288      733
## 289       11
## 290     1387
## 291     4190
## 292      588
## 293      236
## 294     1288
## 295      608
## 296     1374
## 297     1875
## 298      597
## 299     1012
## 300      837
## 301      593
## 302     2599
## 303     2542
## 304      556
## 305     2396
## 306      608
## 307     1387
## 308     2311
## 309     2764
## 310      778
## 311     1203
## 312      296
## 313      357
## 314      919
## 315      316
## 316     1089
## 317      367
## 318     1276
## 319     1270
## 320      339
## 321     1223
## 322      349
## 323      428
## 324      410
## 325      902
## 326     2502
## 327     8622
## 328     4246
## 329     2395
## 330      471
## 331     1036
## 332     3578
## 333     2488
## 334      204
## 335     3175
## 336     1573
## 337      940
## 338     3504
## 339      356
## 340      357
## 341     2997
## 342     6539
## 343     3108
## 344      318
## 345      348
## 346     3424
## 347     1206
## 348      345
## 349     1172
## 350       95
## 351       36
## 352       47
## 353     1073
## 354     4993
## 355      953
## 356      356
## 357      198
## 358      300
## 359     2710
## 360      457
## 361      293
## 362      736
## 363      497
## 364      954
## 365     3521
## 366      515
## 367     4876
## 368      924
## 369      231
## 370     6104
## 371     1206
## 372      265
## 373     1207
## 374     1393
## 375     2407
## 376    54286
## 377     3996
## 378     1304
## 379     1259
## 380     4963
## 381     7438
## 382      434
## 383       50
## 384     1589
## 385     1199
## 386     2858
## 387      428
## 388       82
## 389      588
## 390      903
## 391      780
## 392      588
## 393      357
## 394     2791
## 395     6377
## 396     3114
## 397     3334
## 398      588
## 399     1704
## 400      434
## 401     1590
## 402      480
## 403     1247
## 404     1247
## 405     3481
## 406    48780
## 407      292
## 408      608
## 409     1225
## 410      724
## 411     2141
## 412     2858
## 413     8784
## 414      318
## 415      281
## 416      267
## 417      339
## 418      306
## 419     3578
## 420     1693
## 421      515
## 422      593
## 423     8950
## 424     1375
## 425     1348
## 426      608
## 427     2734
## 428     1356
## 429      953
## 430      780
## 431     4022
## 432      480
## 433     3196
## 434       34
## 435      944
## 436     8360
## 437     2243
## 438      780
## 439      441
## 440       65
## 441      805
## 442     1210
## 443     1196
## 444     1276
## 445     1193
## 446     2959
## 447     2959
## 448      926
## 449     1215
## 450      593
## 451     6104
## 452     1719
## 453      141
## 454     3037
## 455      924
## 456     1952
## 457     1256
## 458     1399
## 459     4306
## 460     8961
## 461      318
## 462     1541
## 463     2640
## 464     2502
## 465     2622
## 466     1358
## 467      110
## 468     2959
## 469      932
## 470     1704
## 471     1804
## 472     1358
## 473      377
## 474     6365
## 475     1221
## 476     1080
## 477     2762
## 478     8169
## 479     1172
## 480     1210
## 481       47
## 482     2731
## 483     1269
## 484     1278
## 485     2841
## 486     2997
## 487     1358
## 488      551
## 489      296
## 490     1219
## 491     1594
## 492     1374
## 493     1197
## 494     8961
## 495     2918
## 496      589
## 497      260
## 498      168
## 499     1207
## 500      163
## 501     3467
## 502      527
## 503      527
## 504     2804
## 505      608
## 506     2571
## 507     6867
## 508      969
## 509     3471
## 510     7438
## 511      231
## 512      318
## 513      527
## 514     3052
## 515     1958
## 516     1885
## 517       52
## 518     1378
## 519     7013
## 520      150
## 521      786
## 522     1956
## 523      318
## 524      260
## 525     5146
## 526     3684
## 527      356
## 528     8784
## 529      514
## 530     1961
## 531     1260
## 532     1299
## 533     3471
## 534      589
## 535     3030
## 536     1617
## 537     2115
## 538      678
## 539     4308
## 540      474
## 541      164
## 542     2797
## 543     3868
## 544      135
## 545      316
## 546     2336
## 547     1947
## 548       25
## 549     1196
## 550     2858
## 551       58
## 552     5377
## 553      577
## 554      912
## 555     3979
## 556      593
## 557     5349
## 558        9
## 559     4848
## 560     3544
## 561      497
## 562      356
## 563     7153
## 564     1271
## 565      781
## 566     3271
## 567      912
## 568      480
## 569     1275
## 570       35
## 571     1219
## 572     3917
## 573      164
## 574     3421
## 575     4993
## 576     4235
## 577     2997
## 578     8970
## 579     1639
## 580      866
## 581     1221
## 582      648
## 583     1197
## 584     1221
## 585      150
## 586      377
## 587     1028
## 588     2289
## 589     2001
## 590     5464
## 591        6
## 592     1214
## 593     8464
## 594       58
## 595     2010
## 596      329
## 597     1307
## 598     2739
## 599     1393
## 600     2622
## 601      708
## 602     2478
## 603     1958
## 604     8132
## 605     1961
## 606      596
## 607      924
## 608     4973
## 609     1283
## 610      858
## 611     1251
## 612     1953
## 613       34
## 614     1945
## 615      296
## 616      551
## 617     3253
## 618      662
## 619      356
## 620     3897
## 621     1090
## 622     1234
## 623     5062
## 624      480
## 625     1094
## 626      783
## 627     2268
## 628      337
## 629     2571
## 630     2357
## 631     2313
## 632      590
## 633      110
## 634    51255
## 635     1263
## 636     1955
## 637     2924
## 638        1
## 639     1148
## 640     5445
## 641     1258
## 642     7063
## 643      111
## 644     1682
## 645     5225
## 646     2009
## 647     1035
## 648     1221
## 649     1206
## 650     3723
## 651     1409
## 652      608
## 653      858
## 654     1639
## 655     1263
## 656      318
## 657     4963
## 658     2094
## 659     1393
## 660     1610
## 661      949
## 662       95
## 663     1213
## 664     2959
## 665      356
## 666     2915
## 667      902
## 668     2028
## 669      940
## 670     4995
## 671     1265
## 672      308
## 673     1225
## 674     1034
## 675     1394
## 676     1258
## 677     1196
## 678     2324
## 679      246
## 680     2973
## 681     8360
## 682     4218
## 683      305
## 684     2762
## 685     1262
## 686     2797
## 687     1944
## 688      469
## 689     2355
## 690     2273
## 691     2028
## 692      608
## 693     1625
## 694       25
## 695      597
## 696     1033
## 697     2066
## 698     1036
## 699     7254
## 700     2580
## 701      380
## 702      527
## 703      593
## 704      778
## 705     2693
## 706     1457
## 707     4327
## 708     2593
## 709      247
## 710     1196
## 711     2997
## 712    41285
## 713     1270
## 714     1274
## 715     8970
## 716      318
## 717       50
## 718     1446
## 719     3852
## 720     3751
## 721     1586
## 722     1263
## 723     1262
## 724      589
## 725     3000
## 726     4034
## 727    34162
## 728      349
## 729     2533
## 730      150
## 731     3256
## 732      356
## 733      457
## 734      111
## 735       25
## 736      318
## 737       82
## 738     1213
## 739      593
## 740     2194
## 741    51662
## 742     1073
## 743     4902
## 744      608
## 745     1584
## 746      150
## 747     6385
## 748      329
## 749      733
## 750     2858
## 751      158
## 752      588
## 753      441
## 754     5267
## 755     1304
## 756     2336
## 757     1610
## 758    45722
## 759      349
## 760     6711
## 761     2762
## 762     1732
## 763      788
## 764     2985
## 765      527
## 766     4306
## 767      593
## 768     2502
## 769       11
## 770     2858
## 771      912
## 772     1196
## 773      608
## 774     2987
## 775     1805
## 776     3435
## 777     1252
## 778      736
## 779      356
## 780     2762
## 781      858
## 782      837
## 783      508
## 784     1393
## 785     4369
## 786      527
## 787      497
## 788      908
## 789     2858
## 790      608
## 791      356
## 792     5971
## 793     2858
## 794     1249
## 795     2571
## 796      480
## 797      452
## 798     3469
## 799     2706
## 800      208
## 801     1948
## 802      913
## 803     1673
## 804      501
## 805     1060
## 806      490
## 807     1272
## 808     1089
## 809     1197
## 810     1203
## 811     4380
## 812      608
## 813     1252
## 814     1073
## 815    30707
## 816      455
## 817     2161
## 818     2071
## 819      260
## 820     1196
## 821     1541
## 822      333
## 823      107
## 824      745
## 825     1178
## 826     2717
## 827      356
## 828     1380
## 829     4973
## 830     2683
## 831      318
## 832     4034
## 833     5630
## 834     3360
## 835     3925
## 836     1210
## 837     2096
## 838     5665
## 839     1385
## 840      671
## 841      273
## 842      377
## 843     1961
## 844     1193
## 845      361
## 846      356
## 847      902
## 848      318
## 849      903
## 850    27803
## 851     2028
## 852       47
## 853     1518
## 854     4011
## 855      135
## 856     5445
## 857     2716
## 858       32
## 859     1148
## 860     2019
## 861     1196
## 862       47
## 863      904
## 864      480
## 865     2502
## 866     3752
## 867     1304
## 868     5060
## 869      509
## 870     4022
## 871     2959
## 872     1234
## 873     3713
## 874     1198
## 875     2134
## 876     2488
## 877      858
## 878     2617
## 879     1380
## 880     1968
## 881     3793
## 882     1199
## 883      316
## 884      593
## 885     1250
## 886     1291
## 887      668
## 888     2186
## 889      293
## 890      147
## 891      593
## 892     1246
## 893     1617
## 894     1223
## 895      903
## 896     3812
## 897     2490
## 898      316
## 899     1611
## 900     1213
## 901     1663
## 902      356
## 903     2918
## 904     1193
## 905      165
## 906     3994
## 907     1215
## 908      903
## 909      509
## 910      368
## 911     7361
## 912     1041
## 913      260
## 914     1264
## 915      356
## 916     1296
## 917     2863
## 918     3114
## 919     1370
## 920      858
## 921     3948
## 922     1172
## 923      368
## 924        1
## 925     2959
## 926     1307
## 927      213
## 928      608
## 929     1248
## 930      509
## 931      368
## 932    49272
## 933      503
## 934       31
## 935     2580
## 936     3186
## 937      924
## 938      345
## 939     6772
## 940     4326
## 941      364
## 942     2759
## 943     1243
## 944     1278
## 945     1958
## 946     1961
## 947        1
## 948      745
## 949      296
## 950     1214
## 951     7153
## 952     3030
## 953     5060
## 954     2321
## 955     3071
## 956       34
## 957     3125
## 958     1188
## 959      508
## 960      926
## 961     1230
## 962      246
## 963     2916
## 964     1291
## 965      527
## 966       74
## 967     1147
## 968     1097
## 969     3363
## 970     3396
## 971      858
## 972     2115
## 973     6650
## 974        1
## 975     4102
## 976     2700
## 977      858
## 978     1183
## 979      914
## 980     1207
## 981      750
## 982     1264
## 983     1359
## 984     1252
## 985      766
## 986     4886
## 987     1270
## 988      454
## 989     1020
## 990     5380
## 991     3536
## 992     1210
## 993       34
## 994      207
## 995     1235
## 996     1307
## 997      944
## 998       50
## 999     2028
## 1000     471
## 1001    3911
## 1002    1224
## 1003    1136
## 1004    4725
## 1005     356
## 1006    2203
## 1007     457
## 1008     110
## 1009    1271
## 1010     778
## 1011    1252
## 1012    1094
## 1013    1245
## 1014     909
## 1015    3703
## 1016       2
## 1017    1136
## 1018    1299
## 1019     665
## 1020    1730
## 1021    3623
## 1022    5015
## 1023    1206
## 1024      39
## 1025     454
## 1026    1533
## 1027     318
## 1028     933
## 1029     786
## 1030    4701
## 1031    4643
## 1032    2858
## 1033    1371
## 1034    4034
## 1035    1220
## 1036    3421
## 1037    1198
## 1038    1260
## 1039    1275
## 1040     745
## 1041    2502
## 1042     934
## 1043     535
## 1044     185
## 1045    1196
## 1046    2959
## 1047     265
## 1048    4993
## 1049    5669
## 1050     223
## 1051    2020
## 1052    1580
## 1053    2108
## 1054    1201
## 1055    2736
## 1056     150
## 1057    2159
## 1058    5250
## 1059    1214
## 1060    1136
## 1061    2858
## 1062    1196
## 1063    4995
## 1064    1242
## 1065    3256
## 1066    1097
## 1067     903
## 1068    5010
## 1069     293
## 1070     653
## 1071    8542
## 1072    2731
## 1073    4963
## 1074    2858
## 1075     150
## 1076    2971
## 1077    3452
## 1078    8368
## 1079    1431
## 1080    3634
## 1081     802
## 1082    2795
## 1083     364
## 1084     587
## 1085    3479
## 1086     216
## 1087     648
## 1088    1296
## 1089    1272
## 1090    1446
## 1091     260
## 1092    1797
## 1093     527
## 1094    1185
## 1095     434
## 1096    1296
## 1097     527
## 1098    3108
## 1099     176
## 1100    3000
## 1101    5952
## 1102    1210
## 1103     778
## 1104     300
## 1105    1284
## 1106    1278
## 1107    4543
## 1108    2111
## 1109    2944
## 1110     858
## 1111     474
## 1112    1393
## 1113     922
## 1114     704
## 1115     802
## 1116    5785
## 1117    4210
## 1118    1580
## 1119   26285
## 1120    1262
## 1121    2571
## 1122     457
## 1123    1213
## 1124     720
## 1125     101
## 1126    2067
## 1127     353
## 1128    3753
## 1129    2078
## 1130    1196
## 1131    1517
## 1132    3386
## 1133    2396
## 1134     296
## 1135     348
## 1136     780
## 1137   27660
## 1138     714
## 1139    2571
## 1140    5952
## 1141    1041
## 1142    3232
## 1143    2993
## 1144     125
## 1145     527
## 1146    1203
## 1147    1197
## 1148    7361
## 1149     953
## 1150     318
## 1151    1147
## 1152    3793
## 1153    1073
## 1154    2858
## 1155    3578
## 1156     318
## 1157     364
## 1158    1013
## 1159     593
## 1160    1208
## 1161    3994
## 1162   47640
## 1163    1291
## 1164     594
## 1165     235
## 1166    3969
## 1167    1028
## 1168      62
## 1169    2125
## 1170   55052
## 1171     586
## 1172    3006
## 1173      36
## 1174    1197
## 1175    3196
## 1176    2918
## 1177     920
## 1178    1250
## 1179    1358
## 1180      25
## 1181    4027
## 1182     802
## 1183    2858
## 1184    2571
## 1185    3677
## 1186    6787
## 1187    1254
## 1188    1584
## 1189     592
## 1190    4649
## 1191    1242
## 1192      50
## 1193     457
## 1194    1953
## 1195     930
## 1196   51662
## 1197     969
## 1198    1288
## 1199    1885
## 1200    1288
## 1201     110
## 1202    2797
## 1203    1945
## 1204    1258
## 1205    1805
## 1206     280
## 1207    2193
## 1208    2065
## 1209    1219
## 1210    1265
## 1211     595
## 1212    1464
## 1213    1090
## 1214     541
## 1215     663
## 1216    3275
## 1217     515
## 1218    1380
## 1219     780
## 1220     592
## 1221   48161
## 1222    1092
## 1223    1584
## 1224    2395
## 1225     802
## 1226    2987
## 1227    1192
## 1228    2762
## 1229    1300
## 1230    2571
## 1231     858
## 1232    1635
## 1233    1690
## 1234    2890
## 1235     508
## 1236     266
## 1237    3033
## 1238       1
## 1239    1101
## 1240    1393
## 1241    1210
## 1242    2732
## 1243     593
## 1244    1196
## 1245    2102
## 1246    4995
## 1247     497
## 1248     123
## 1249     223
## 1250     947
## 1251       3
## 1252     457
## 1253    2571
## 1254     593
## 1255     968
## 1256     720
## 1257     381
## 1258    1292
## 1259    1617
## 1260     292
## 1261    1090
## 1262     553
## 1263     778
## 1264    2140
## 1265    1200
## 1266    3317
## 1267    1270
## 1268     593
## 1269    2770
## 1270     760
## 1271     745
## 1272    1199
## 1273    5445
## 1274    4018
## 1275     588
## 1276    2470
## 1277    1221
## 1278     293
## 1279     750
## 1280     300
## 1281       1
## 1282     908
## 1283    2686
## 1284    1198
## 1285     260
## 1286    1214
## 1287    7802
## 1288    4973
## 1289    5294
## 1290     589
## 1291      58
## 1292     111
## 1293     593
## 1294    2628
## 1295    4148
## 1296    1198
## 1297    2248
## 1298     924
## 1299      47
## 1300    2329
## 1301    2542
## 1302    6215
## 1303     928
## 1304      31
## 1305    2712
## 1306    3421
## 1307    2067
## 1308    2716
## 1309    2011
## 1310    3578
## 1311    1965
## 1312     587
## 1313    1221
## 1314    1175
## 1315     608
## 1316      47
## 1317   33794
## 1318    5617
## 1319     356
## 1320    2677
## 1321    1278
## 1322    2020
## 1323    1225
## 1324    2997
## 1325    2028
## 1326     356
## 1327     450
## 1328     592
## 1329    6323
## 1330    3578
## 1331    1200
## 1332     356
## 1333     300
## 1334      32
## 1335    1356
## 1336     527
## 1337    7438
## 1338     904
## 1339    8874
## 1340    1203
## 1341    1210
## 1342    3405
## 1343     318
## 1344    2243
## 1345    2541
## 1346    4027
## 1347     329
## 1348    1248
## 1349    2571
## 1350    1244
## 1351    1288
## 1352     589
## 1353     380
## 1354    1210
## 1355     357
## 1356    2023
## 1357    4886
## 1358    1259
## 1359    1035
## 1360    1225
## 1361     150
## 1362    1357
## 1363    4361
## 1364    3020
## 1365    1320
## 1366    8464
## 1367    7842
## 1368     780
## 1369    1921
## 1370    3535
## 1371    1997
## 1372      25
## 1373    2329
## 1374    1222
## 1375      39
## 1376    1331
## 1377    2291
## 1378    4327
## 1379     161
## 1380    2478
## 1381     858
## 1382     364
## 1383    1912
## 1384    1196
## 1385     736
## 1386    2985
## 1387    5690
## 1388     923
## 1389   39419
## 1390     903
## 1391     306
## 1392    2020
## 1393    1148
## 1394     508
## 1395    2683
## 1396     858
## 1397    1836
## 1398    1258
## 1399    1136
## 1400     586
## 1401    2908
## 1402    3578
## 1403     593
## 1404    2268
## 1405    1242
## 1406    3404
## 1407    3114
## 1408     246
## 1409    2819
## 1410    2959
## 1411       5
## 1412      50
## 1413    2671
## 1414    4306
## 1415    2858
## 1416    3730
## 1417    1203
## 1418    1036
## 1419    2245
## 1420      36
## 1421    1466
## 1422      17
## 1423    3793
## 1424    1956
## 1425     904
## 1426    2021
## 1427     858
## 1428    3442
## 1429    1357
## 1430    2318
## 1431     235
## 1432    1090
## 1433     509
## 1434    2161
## 1435     741
## 1436    1231
## 1437    6787
## 1438    1784
## 1439     161
## 1440     745
## 1441      72
## 1442    2174
## 1443     593
## 1444     265
## 1445      10
## 1446    7073
## 1447    4993
## 1448   52694
## 1449    1240
## 1450     318
## 1451    1214
## 1452    7153
## 1453     103
## 1454    1997
## 1455    1097
## 1456    1374
## 1457     900
## 1458     246
## 1459     950
## 1460    3361
## 1461     953
## 1462    1298
## 1463   30707
## 1464    1247
## 1465      21
## 1466     595
## 1467     858
## 1468    1287
## 1469   45722
## 1470    2987
## 1471     377
## 1472    4995
## 1473    1754
## 1474     150
## 1475    1358
## 1476    1196
## 1477    4642
## 1478   48385
## 1479     798
## 1480    5502
## 1481    1217
## 1482    3435
## 1483    2858
## 1484    2518
## 1485    3254
## 1486     318
## 1487    1079
## 1488   49272
## 1489    3435
## 1490     165
## 1491     198
## 1492     965
## 1493     527
## 1494     307
## 1495    3091
## 1496    1949
## 1497    4103
## 1498    2858
## 1499    1259
## 1500     908
## 1501     383
## 1502    1953
## 1503    2389
## 1504    2683
## 1505    1537
## 1506    8784
## 1507    1748
## 1508    2502
## 1509    1136
## 1510     608
## 1511    1673
## 1512    2174
## 1513    1393
## 1514     500
## 1515    4027
## 1516    2248
## 1517    2692
## 1518     955
## 1519     381
## 1520    2324
## 1521    3264
## 1522    3253
## 1523    1500
## 1524     431
## 1525      11
## 1526    1188
## 1527     923
## 1528    1242
## 1529     260
## 1530    3911
## 1531    2706
## 1532     500
## 1533    1907
## 1534    2395
## 1535    2064
## 1536    1288
## 1537    2648
## 1538    1219
## 1539    1934
## 1540    2858
## 1541     590
## 1542    1210
## 1543     150
## 1544    1307
## 1545     318
## 1546    1799
## 1547    2762
## 1548    3868
## 1549    4014
## 1550    3751
## 1551     589
## 1552     497
## 1553     260
## 1554    1193
## 1555     349
## 1556       1
## 1557     441
## 1558      47
## 1559     296
## 1560    1189
## 1561     590
## 1562     593
## 1563    1197
## 1564     595
## 1565     247
## 1566     318
## 1567    1022
## 1568    1185
## 1569    2125
## 1570   48385
## 1571    2858
## 1572     913
## 1573    1527
## 1574    1035
## 1575     223
## 1576    2470
## 1577     367
## 1578    6890
## 1579    2396
## 1580    3018
## 1581     750
## 1582    1405
## 1583     350
## 1584     441
## 1585   27773
## 1586    1214
## 1587    1306
## 1588    2502
## 1589    1288
## 1590    3147
## 1591    4973
## 1592    1234
## 1593    1222
## 1594    1208
## 1595    2028
## 1596     161
## 1597    1136
##                                                                                           Title
## 1                                                                    Lost in Translation (2003)
## 2                                                                          Meet John Doe (1941)
## 3                                                                             Young Guns (1988)
## 4                                                                          Dirty Dancing (1987)
## 5                                                                        Monsoon Wedding (2001)
## 6                                                                  To Kill a Mockingbird (1962)
## 7                                                                                Platoon (1986)
## 8                                                                            Constantine (2005)
## 9                                                                           Forrest Gump (1994)
## 10                                                               When Harry Met Sally... (1989)
## 11                                                                                 Laura (1944)
## 12                                                                    Dances with Wolves (1990)
## 13                                                                          Bugs Life, A (1998)
## 14                                                                          Shining, The (1980)
## 15                                                                       Denise Calls Up (1995)
## 16                                                                           Heavy Metal (1981)
## 17                                                       Nightmare Before Christmas, The (1993)
## 18                                                                        Godfather, The (1972)
## 19                                                                      Butcher Boy, The (1997)
## 20                                                        Hard-Boiled (Lat sau san taam) (1992)
## 21                                                             Shawshank Redemption, The (1994)
## 22                                                               When Harry Met Sally... (1989)
## 23                                                                          Holiday, The (2006)
## 24                                                        X-Files: Fight the Future, The (1998)
## 25                                                                    Singin in the Rain (1952)
## 26                                                               While You Were Sleeping (1995)
## 27                                                                  Fish Called Wanda, A (1988)
## 28                                                             Shawshank Redemption, The (1994)
## 29                                                                              Stargate (1994)
## 30                                                                    Executive Decision (1996)
## 31                                                                           Stand by Me (1986)
## 32                                                                        101 Dalmatians (1996)
## 33                                                                               Contact (1997)
## 34                                                                       Full Monty, The (1997)
## 35                                                         Kids in the Hall: Brain Candy (1996)
## 36                                                                         Jurassic Park (1993)
## 37                                                        Hard-Boiled (Lat sau san taam) (1992)
## 38                                                        Breathless (À bout de souffle) (1960)
## 39                                                                            Juror, The (1996)
## 40                             Koyaanisqatsi (a.k.a. Koyaanisqatsi: Life Out of Balance) (1983)
## 41                                                                            Goodfellas (1990)
## 42                                                                     Beautiful Mind, A (2001)
## 43                                                       Monty Python and the Holy Grail (1975)
## 44                                                                               Cabaret (1972)
## 45                                                    Rififi (Du rififi chez les hommes) (1955)
## 46                                                                                Gandhi (1982)
## 47                                                                          Blade Runner (1982)
## 48                                                                          Blade Runner (1982)
## 49                                                                          12 Angry Men (1957)
## 50                                                                             Toy Story (1995)
## 51                                                                   Little Mermaid, The (1989)
## 52                                                               Ferris Buellers Day Off (1986)
## 53                                                                             Toy Story (1995)
## 54                                                              Welcome to the Dollhouse (1995)
## 55                                                                                 Alien (1979)
## 56                                                                   Saving Private Ryan (1998)
## 57                                                                          Pulp Fiction (1994)
## 58                                                                          Sudden Death (1995)
## 59                                                               Remains of the Day, The (1993)
## 60                                                                                Patton (1970)
## 61                                                                    Back to the Future (1985)
## 62                                                                            Annie Hall (1977)
## 63                                                                          Pretty Woman (1990)
## 64                                                                               Species (1995)
## 65                                                                    Back to the Future (1985)
## 66                                                                           Stand by Me (1986)
## 67                                                                       Midnight Cowboy (1969)
## 68                                                                              eXistenZ (1999)
## 69                                                  Chungking Express (Chóngqìng Senlín) (1994)
## 70                                                                      Fisher King, The (1991)
## 71                                                                        Reservoir Dogs (1992)
## 72                                                       American Werewolf in London, An (1981)
## 73                                                        One Flew Over the Cuckoos Nest (1975)
## 74                                                             Six Degrees of Separation (1993)
## 75                                 Star Wars: Episode IV - A New Hope (a.k.a. Star Wars) (1977)
## 76                                                                         Roman Holiday (1953)
## 77                                                                             Coneheads (1993)
## 78                                                                     Wizard of Oz, The (1939)
## 79                                                                             Suspicion (1941)
## 80                                                                     Great Escape, The (1963)
## 81                                                                   In the Line of Fire (1993)
## 82                                                            Ace Ventura: Pet Detective (1994)
## 83                                                                         Trainspotting (1996)
## 84                                                       Bill & Teds Excellent Adventure (1989)
## 85                                                               Philadelphia Story, The (1940)
## 86                                                                        Big Sleep, The (1946)
## 87                                                                          Forrest Gump (1994)
## 88                                                   Ghostbusters (a.k.a. Ghost Busters) (1984)
## 89                                                  Eat Drink Man Woman (Yin shi nan nu) (1994)
## 90                                                                                 Ghost (1990)
## 91                                                                   Killing Fields, The (1984)
## 92                                                                    That Thing You Do! (1996)
## 93                                                                          Killing, The (1956)
## 94                                                      My Life in Pink (Ma vie en rose) (1997)
## 95                                                                             Crow, The (1994)
## 96                                                                          Forrest Gump (1994)
## 97                                                                         Birdcage, The (1996)
## 98                                                                                 Fargo (1996)
## 99                                                                          Out of Sight (1998)
## 100                                                                     Harold and Maude (1971)
## 101                                                           Man Who Would Be King, The (1975)
## 102                                                                            Apollo 13 (1995)
## 103                                                                      Schindlers List (1993)
## 104                                                                To Kill a Mockingbird (1962)
## 105                                                                              Gattaca (1997)
## 106                                                                  Saving Private Ryan (1998)
## 107                                                                 Beauty and the Beast (1991)
## 108                                                                           Goodfellas (1990)
## 109                                                                    L.A. Confidential (1997)
## 110                                                                 Next Stop Wonderland (1998)
## 111                                                            Silence of the Lambs, The (1991)
## 112                                                                                Rocky (1976)
## 113                                               Lord of the Rings: The Two Towers, The (2002)
## 114                                                                 Its a Wonderful Life (1946)
## 115                                                                         Pulp Fiction (1994)
## 116                                                                             Dead Man (1995)
## 117                                                                     Truman Show, The (1998)
## 118                                                                                Trust (1990)
## 119                                                                          Matrix, The (1999)
## 120                                                                 Bourne Identity, The (2002)
## 121                                                         Texas Chainsaw Massacre, The (1974)
## 122                                                                         Crimson Tide (1995)
## 123                                                                         Strange Days (1995)
## 124                                                                  Blues Brothers, The (1980)
## 125                                                                     Crocodile Dundee (1986)
## 126                                                                       Godfather, The (1972)
## 127                                                                        Soylent Green (1973)
## 128                                                              Ferris Buellers Day Off (1986)
## 129                                                                           Die Hard 2 (1990)
## 130                                                                    Kill Bill: Vol. 2 (2004)
## 131                                                                      Monsoon Wedding (2001)
## 132                                Star Wars: Episode IV - A New Hope (a.k.a. Star Wars) (1977)
## 133                                                   Butch Cassidy and the Sundance Kid (1969)
## 134                                                                                Alien (1979)
## 135                                                                        Lady Eve, The (1941)
## 136                                                                 Boondock Saints, The (2000)
## 137                                                                       Godfather, The (1972)
## 138                                                   Unbearable Lightness of Being, The (1988)
## 139                                                                       Cool Hand Luke (1967)
## 140                                                           Whats Eating Gilbert Grape (1993)
## 141                                                                         Pulp Fiction (1994)
## 142                                Star Wars: Episode IV - A New Hope (a.k.a. Star Wars) (1977)
## 143                                                          Monty Pythons Life of Brian (1979)
## 144                                       Lord of the Rings: The Return of the King, The (2003)
## 145                                                                  Mission: Impossible (1996)
## 146                                                                                Fargo (1996)
## 147                                                                   Angels and Insects (1995)
## 148                                                                         Mystic Pizza (1988)
## 149                                                            Silence of the Lambs, The (1991)
## 150                                                                              Jumanji (1995)
## 151                                                                         Mariachi, El (1992)
## 152                                                             Star Trek: First Contact (1996)
## 153                                                                              Ed Wood (1994)
## 154                                                                            Liar Liar (1997)
## 155                                                                               Driven (2001)
## 156                                                                       Apartment, The (1960)
## 157                                                                       Third Man, The (1949)
## 158                                                                        High Fidelity (2000)
## 159                                                                     Harold and Maude (1971)
## 160                                                                       Godfather, The (1972)
## 161                                                        Independence Day (a.k.a. ID4) (1996)
## 162                                                                           Fight Club (1999)
## 163                                                                       Demolition Man (1993)
## 164                                                             Clear and Present Danger (1994)
## 165                                Raise the Red Lantern (Da hong deng long gao gao gua) (1991)
## 166                                                                       Body Snatchers (1993)
## 167                                                                            Duck Soup (1933)
## 168                                                                             Big Fish (2003)
## 169                                                                           Sgt. Bilko (1996)
## 170                                                                  Catch Me If You Can (2002)
## 171                                                                           Braveheart (1995)
## 172                                                                            Breakdown (1997)
## 173                                                                          Beetlejuice (1988)
## 174                                                                  Saving Private Ryan (1998)
## 175                                                                         Forrest Gump (1994)
## 176                                                                    Color Purple, The (1985)
## 177                                 Paradise Lost: The Child Murders at Robin Hood Hills (1996)
## 178                                                                        Bronx Tale, A (1993)
## 179                                                                        Irma la Douce (1963)
## 180                                                                Cat on a Hot Tin Roof (1958)
## 181                                                                              RoboCop (1987)
## 182                 Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb (1964)
## 183                                                      Monty Python and the Holy Grail (1975)
## 184                                                                             Stargate (1994)
## 185                                                                  Shakespeare in Love (1998)
## 186                                                                         Little Women (1994)
## 187                                                                   Heavenly Creatures (1994)
## 188                                                                           Thing, The (1982)
## 189                                                                            Apollo 13 (1995)
## 190                                                                       Godfather, The (1972)
## 191                                                                To Kill a Mockingbird (1962)
## 192                                                                                Fargo (1996)
## 193                                                                      Black Hawk Down (2001)
## 194                                                                         Little Voice (1998)
## 195                                                                     To Sir with Love (1967)
## 196                                                                          I Went Down (1997)
## 197                                                             Welcome to the Dollhouse (1995)
## 198                                                                          Matrix, The (1999)
## 199                                                           Die Hard: With a Vengeance (1995)
## 200                                             Dark Water (Honogurai mizu no soko kara) (2002)
## 201                                                                              Sleeper (1973)
## 202                                                                 Being John Malkovich (1999)
## 203                                         Lives of Others, The (Das Leben der Anderen) (2006)
## 204                                                Xiu Xiu: The Sent-Down Girl (Tian yu) (1998)
## 205                                                                            Toy Story (1995)
## 206                                                                    L.A. Confidential (1997)
## 207                                                    Blue Angel, The (Der Blaue Engel) (1930)
## 208                                                                   Back to the Future (1985)
## 209                                             Rules of the Game, The (La Règle du jeu) (1939)
## 210                                          Austin Powers: International Man of Mystery (1997)
## 211                                                                            Apollo 13 (1995)
## 212                                                                          Dragonheart (1996)
## 213                                                                           Goldfinger (1964)
## 214                                                                    Small Time Crooks (2000)
## 215                                                                      American Beauty (1999)
## 216                                                                           Limey, The (1999)
## 217                                                                       Godfather, The (1972)
## 218                                                                          Beetlejuice (1988)
## 219                                   Interview with the Vampire: The Vampire Chronicles (1994)
## 220                                                                       Primary Colors (1998)
## 221                                                                    Leaving Las Vegas (1995)
## 222                                                                                 Heat (1995)
## 223                                Raise the Red Lantern (Da hong deng long gao gao gua) (1991)
## 224                                                                        Untamed Heart (1993)
## 225                                                                    Mr. Hollands Opus (1995)
## 226                                                             Who Framed Roger Rabbit? (1988)
## 227                                                                             Stargate (1994)
## 228                                                                     Boys on the Side (1995)
## 229                                                                         American Pie (1999)
## 230                                                                          Stand by Me (1986)
## 231                                                 South Park: Bigger, Longer and Uncut (1999)
## 232                                            Frankenstein (Mary Shelleys Frankenstein) (1994)
## 233                                                                           Abyss, The (1989)
## 234                                                   Indiana Jones and the Last Crusade (1989)
## 235                                                                       Super Troopers (2001)
## 236                                                                          Toy Story 2 (1999)
## 237                                                                    Kill Bill: Vol. 1 (2003)
## 238                                                              When Harry Met Sally... (1989)
## 239                                                                         Crimson Tide (1995)
## 240                                                                            True Lies (1994)
## 241                                                                 Gentlemans Agreement (1947)
## 242                                                                            Duck Soup (1933)
## 243                                                                                Ikiru (1952)
## 244                                                             Children of a Lesser God (1986)
## 245              Raiders of the Lost Ark (Indiana Jones and the Raiders of the Lost Ark) (1981)
## 246                                                                     Dead Man Walking (1995)
## 247                                                              While You Were Sleeping (1995)
## 248                                                                            True Lies (1994)
## 249                                       Star Wars: Episode V - The Empire Strikes Back (1980)
## 250                                                                       Charlottes Web (1973)
## 251                                                                         Pulp Fiction (1994)
## 252                                                                  Legends of the Fall (1994)
## 253                                                                              Sleeper (1973)
## 254                                                            Shawshank Redemption, The (1994)
## 255                                                                              Ben-Hur (1959)
## 256                                   How the Grinch Stole Christmas (a.k.a. The Grinch) (2000)
## 257                                                                          Player, The (1992)
## 258                                                                              Twister (1996)
## 259                                                                           Get Shorty (1995)
## 260                                                                           Lean on Me (1989)
## 261                                                          Theres Something About Mary (1998)
## 262                                                                        Human Traffic (1999)
## 263                                                                 Being John Malkovich (1999)
## 264                                                                         Crimson Tide (1995)
## 265                                              Mystery Science Theater 3000: The Movie (1996)
## 266                                                                          Cry Freedom (1987)
## 267                                                                      West Side Story (1961)
## 268                                                              Godfather: Part II, The (1974)
## 269                                                            Shawshank Redemption, The (1994)
## 270                                                  William Shakespeares Romeo + Juliet (1996)
## 271                                                                     Poolhall Junkies (2002)
## 272                                                                              Twister (1996)
## 273                                                                          Matrix, The (1999)
## 274                                                                            Apollo 13 (1995)
## 275                                                           E.T. the Extra-Terrestrial (1982)
## 276                                                                          Hoop Dreams (1994)
## 277                                      Wallace & Gromit: The Best of Aardman Animation (1996)
## 278                                                                 Natural Born Killers (1994)
## 279                                                                 Nutty Professor, The (1996)
## 280                                                                  Dirty Pretty Things (2002)
## 281                                           Star Wars: Episode VI - Return of the Jedi (1983)
## 282                                                                Home for the Holidays (1995)
## 283                                                                            Screamers (1995)
## 284                                                      Monty Python and the Holy Grail (1975)
## 285                                                                        Red Rock West (1992)
## 286                                                                      Schindlers List (1993)
## 287                                Star Wars: Episode IV - A New Hope (a.k.a. Star Wars) (1977)
## 288                                                                            Rock, The (1996)
## 289                                                              American President, The (1995)
## 290                                                                                 Jaws (1975)
## 291                                                                         Elmer Gantry (1960)
## 292                                                                              Aladdin (1992)
## 293                                                                          French Kiss (1995)
## 294                                                                   This Is Spinal Tap (1984)
## 295                                                                                Fargo (1996)
## 296                                                      Star Trek II: The Wrath of Khan (1982)
## 297                                                                        Clockwatchers (1997)
## 298                                                                         Pretty Woman (1990)
## 299                                                                           Old Yeller (1957)
## 300                                                                              Matilda (1996)
## 301                                                            Silence of the Lambs, The (1991)
## 302                                                                             Election (1999)
## 303                                                    Lock, Stock & Two Smoking Barrels (1998)
## 304                                                                        War Room, The (1993)
## 305                                                                  Shakespeare in Love (1998)
## 306                                                                                Fargo (1996)
## 307                                                                                 Jaws (1975)
## 308                                                       2010: The Year We Make Contact (1984)
## 309                                                             Thomas Crown Affair, The (1968)
## 310                                                                        Trainspotting (1996)
## 311                                                                         12 Angry Men (1957)
## 312                                                                         Pulp Fiction (1994)
## 313                                                          Four Weddings and a Funeral (1994)
## 314                                                                    Wizard of Oz, The (1939)
## 315                                                                             Stargate (1994)
## 316                                                                       Reservoir Dogs (1992)
## 317                                                                            Mask, The (1994)
## 318                                                                       Cool Hand Luke (1967)
## 319                                                                   Back to the Future (1985)
## 320                                                              While You Were Sleeping (1995)
## 321                                                    Wallace & Gromit: A Grand Day Out (1989)
## 322                                                             Clear and Present Danger (1994)
## 323                                                                        Bronx Tale, A (1993)
## 324                                                                 Addams Family Values (1993)
## 325                                                                Breakfast at Tiffanys (1961)
## 326                                                                         Office Space (1999)
## 327                                                                      Fahrenheit 9/11 (2004)
## 328                                                                 Bridget Joness Diary (2001)
## 329                                                                             Rushmore (1998)
## 330                                                                 Hudsucker Proxy, The (1994)
## 331                                                                             Die Hard (1988)
## 332                                                                            Gladiator (2000)
## 333                                                                          Peeping Tom (1960)
## 334                                                        Under Siege 2: Dark Territory (1995)
## 335                                                                         Galaxy Quest (1999)
## 336                                                                             Face/Off (1997)
## 337                                                        Adventures of Robin Hood, The (1938)
## 338                                                                              Network (1976)
## 339                                                                         Forrest Gump (1994)
## 340                                                          Four Weddings and a Funeral (1994)
## 341                                                                 Being John Malkovich (1999)
## 342                               Pirates of the Caribbean: The Curse of the Black Pearl (2003)
## 343                                                                     Fisher King, The (1991)
## 344                                                            Shawshank Redemption, The (1994)
## 345                                                                Bullets Over Broadway (1994)
## 346                                                                   Do the Right Thing (1989)
## 347                                                                  Clockwork Orange, A (1971)
## 348                                    Adventures of Priscilla, Queen of the Desert, The (1994)
## 349                                              Cinema Paradiso (Nuovo cinema Paradiso) (1989)
## 350                                                                         Broken Arrow (1996)
## 351                                                                     Dead Man Walking (1995)
## 352                                                                 Seven (a.k.a. Se7en) (1995)
## 353                                                  Willy Wonka & the Chocolate Factory (1971)
## 354                                   Lord of the Rings: The Fellowship of the Ring, The (2001)
## 355                                                                 Its a Wonderful Life (1946)
## 356                                                                         Forrest Gump (1994)
## 357                                                                         Strange Days (1995)
## 358                                                                            Quiz Show (1994)
## 359                                                             Blair Witch Project, The (1999)
## 360                                                                        Fugitive, The (1993)
## 361                                    Léon: The Professional (Léon) (Professional, The) (1994)
## 362                                                                              Twister (1996)
## 363                                                               Much Ado About Nothing (1993)
## 364                                                         Mr. Smith Goes to Washington (1939)
## 365                                                                        Mystery Train (1989)
## 366                                                              Remains of the Day, The (1993)
## 367                                             Thirteen Ghosts (a.k.a. Thir13en Ghosts) (2001)
## 368                                                                2001: A Space Odyssey (1968)
## 369                                                                        Dumb & Dumber (1994)
## 370                                              Monty Python Live at the Hollywood Bowl (1982)
## 371                                                                  Clockwork Orange, A (1971)
## 372                                  Like Water for Chocolate (Como agua para chocolate) (1992)
## 373                                                                To Kill a Mockingbird (1962)
## 374                                                                        Jerry Maguire (1996)
## 375                                                                               Cocoon (1985)
## 376                                                                Bourne Ultimatum, The (2007)
## 377                                     Crouching Tiger, Hidden Dragon (Wu hu zang long) (2000)
## 378                                                   Butch Cassidy and the Sundance Kid (1969)
## 379                                                                          Stand by Me (1986)
## 380                                                                        Oceans Eleven (2001)
## 381                                                                    Kill Bill: Vol. 2 (2004)
## 382                                                                          Cliffhanger (1993)
## 383                                                                  Usual Suspects, The (1995)
## 384                                                                             Cop Land (1997)
## 385                                                                               Brazil (1985)
## 386                                                                      American Beauty (1999)
## 387                                                                        Bronx Tale, A (1993)
## 388                                                              Antonias Line (Antonia) (1995)
## 389                                                                              Aladdin (1992)
## 390                                                                              Vertigo (1958)
## 391                                                        Independence Day (a.k.a. ID4) (1996)
## 392                                                                              Aladdin (1992)
## 393                                                          Four Weddings and a Funeral (1994)
## 394                                                                            Airplane! (1980)
## 395                                                                         Finding Nemo (2003)
## 396                                                                          Toy Story 2 (1999)
## 397                                                                            Key Largo (1948)
## 398                                                                              Aladdin (1992)
## 399                                                                    Good Will Hunting (1997)
## 400                                                                          Cliffhanger (1993)
## 401                                                                        Event Horizon (1997)
## 402                                                                        Jurassic Park (1993)
## 403                                                                        Graduate, The (1967)
## 404                                                                        Graduate, The (1967)
## 405                                                                        High Fidelity (2000)
## 406                                                                        Prestige, The (2006)
## 407                                                                             Outbreak (1995)
## 408                                                                                Fargo (1996)
## 409                                                                              Amadeus (1984)
## 410                                                                           Craft, The (1996)
## 411                                                                    American Tail, An (1986)
## 412                                                                      American Beauty (1999)
## 413                                                                         Garden State (2004)
## 414                                                            Shawshank Redemption, The (1994)
## 415                                                                         Nobodys Fool (1994)
## 416                                                                          Major Payne (1995)
## 417                                                              While You Were Sleeping (1995)
## 418                                            Three Colors: Red (Trois couleurs: Rouge) (1994)
## 419                                                                            Gladiator (2000)
## 420                                                                              Amistad (1997)
## 421                                                              Remains of the Day, The (1993)
## 422                                                            Silence of the Lambs, The (1991)
## 423                                                      Machinist, The (Maquinista, El) (2004)
## 424                                                  Star Trek III: The Search for Spock (1984)
## 425                                    Nosferatu (Nosferatu, eine Symphonie des Grauens) (1922)
## 426                                                                                Fargo (1996)
## 427                                                                  Mosquito Coast, The (1986)
## 428                                                             Star Trek: First Contact (1996)
## 429                                                                 Its a Wonderful Life (1946)
## 430                                                        Independence Day (a.k.a. ID4) (1996)
## 431                                                                            Cast Away (2000)
## 432                                                                        Jurassic Park (1993)
## 433                                                                            Stalag 17 (1953)
## 434                                                                                 Babe (1995)
## 435                                                                         Lost Horizon (1937)
## 436                                                                              Shrek 2 (2004)
## 437                                                                       Broadcast News (1987)
## 438                                                        Independence Day (a.k.a. ID4) (1996)
## 439                                                                   Dazed and Confused (1993)
## 440                                                                             Bio-Dome (1996)
## 441                                                                      Time to Kill, A (1996)
## 442                                           Star Wars: Episode VI - Return of the Jedi (1983)
## 443                                       Star Wars: Episode V - The Empire Strikes Back (1980)
## 444                                                                       Cool Hand Luke (1967)
## 445                                                       One Flew Over the Cuckoos Nest (1975)
## 446                                                                           Fight Club (1999)
## 447                                                                           Fight Club (1999)
## 448                                                                        All About Eve (1950)
## 449                                                                     Army of Darkness (1993)
## 450                                                            Silence of the Lambs, The (1991)
## 451                                              Monty Python Live at the Hollywood Bowl (1982)
## 452                                                                 Sweet Hereafter, The (1997)
## 453                                                                        Birdcage, The (1996)
## 454                                                                       Little Big Man (1970)
## 455                                                                2001: A Space Odyssey (1968)
## 456                                                                      Midnight Cowboy (1969)
## 457                                                                            Duck Soup (1933)
## 458                                                                         Marvins Room (1996)
## 459                                                                                Shrek (2001)
## 460                                                                     Incredibles, The (2004)
## 461                                                            Shawshank Redemption, The (1994)
## 462                                                                     Addicted to Love (1997)
## 463                                                                             Superman (1978)
## 464                                                                         Office Space (1999)
## 465                                                            Midsummer Nights Dream, A (1999)
## 466                                                                          Sling Blade (1996)
## 467                                                                           Braveheart (1995)
## 468                                                                           Fight Club (1999)
## 469                                                               Affair to Remember, An (1957)
## 470                                                                    Good Will Hunting (1997)
## 471                                                                     Newton Boys, The (1998)
## 472                                                                          Sling Blade (1996)
## 473                                                                                Speed (1994)
## 474                                                                 Matrix Reloaded, The (2003)
## 475                                                              Godfather: Part II, The (1974)
## 476                                                          Monty Pythons Life of Brian (1979)
## 477                                                                     Sixth Sense, The (1999)
## 478                                                              *batteries not included (1987)
## 479                                              Cinema Paradiso (Nuovo cinema Paradiso) (1989)
## 480                                           Star Wars: Episode VI - Return of the Jedi (1983)
## 481                                                                 Seven (a.k.a. Se7en) (1995)
## 482                                              400 Blows, The (Les Quatre cents coups) (1959)
## 483                                                                 Arsenic and Old Lace (1944)
## 484                                                                   Young Frankenstein (1974)
## 485                                                                       Stir of Echoes (1999)
## 486                                                                 Being John Malkovich (1999)
## 487                                                                          Sling Blade (1996)
## 488                                                      Nightmare Before Christmas, The (1993)
## 489                                                                         Pulp Fiction (1994)
## 490                                                                               Psycho (1960)
## 491                                                                In the Company of Men (1997)
## 492                                                      Star Trek II: The Wrath of Khan (1982)
## 493                                                                  Princess Bride, The (1987)
## 494                                                                     Incredibles, The (2004)
## 495                                                              Ferris Buellers Day Off (1986)
## 496                                                           Terminator 2: Judgment Day (1991)
## 497                                Star Wars: Episode IV - A New Hope (a.k.a. Star Wars) (1977)
## 498                                                                         First Knight (1995)
## 499                                                                To Kill a Mockingbird (1962)
## 500                                                                            Desperado (1995)
## 501                                                                                  Hud (1963)
## 502                                                                      Schindlers List (1993)
## 503                                                                      Schindlers List (1993)
## 504                                                                   Christmas Story, A (1983)
## 505                                                                                Fargo (1996)
## 506                                                                          Matrix, The (1999)
## 507                                                                   Station Agent, The (2003)
## 508                                                                   African Queen, The (1951)
## 509                                                   Close Encounters of the Third Kind (1977)
## 510                                                                    Kill Bill: Vol. 2 (2004)
## 511                                                                        Dumb & Dumber (1994)
## 512                                                            Shawshank Redemption, The (1994)
## 513                                                                      Schindlers List (1993)
## 514                                                                                Dogma (1999)
## 515                                                                  Terms of Endearment (1983)
## 516                                                                 Opposite of Sex, The (1998)
## 517                                                                     Mighty Aphrodite (1995)
## 518                                                                           Young Guns (1988)
## 519                                                             Night of the Hunter, The (1955)
## 520                                                                            Apollo 13 (1995)
## 521                                                                               Eraser (1996)
## 522                                                                      Ordinary People (1980)
## 523                                                            Shawshank Redemption, The (1994)
## 524                                Star Wars: Episode IV - A New Hope (a.k.a. Star Wars) (1977)
## 525                                        Vampire Hunter D: Bloodlust (Banpaia hantâ D) (2000)
## 526                                                             Fabulous Baker Boys, The (1989)
## 527                                                                         Forrest Gump (1994)
## 528                                                                         Garden State (2004)
## 529                                                                             Ref, The (1994)
## 530                                                                             Rain Man (1988)
## 531                                                                                    M (1931)
## 532                                                                  Killing Fields, The (1984)
## 533                                                   Close Encounters of the Third Kind (1977)
## 534                                                           Terminator 2: Judgment Day (1991)
## 535                                                                              Yojimbo (1961)
## 536                                                                    L.A. Confidential (1997)
## 537                                                 Indiana Jones and the Temple of Doom (1984)
## 538                                                     Some Folks Call It a Sling Blade (1993)
## 539                                                                         Moulin Rouge (2001)
## 540                                                                  In the Line of Fire (1993)
## 541                                                                Devil in a Blue Dress (1995)
## 542                                                                                  Big (1988)
## 543                                      Naked Gun: From the Files of Police Squad!, The (1988)
## 544                                                                       Down Periscope (1996)
## 545                                                                             Stargate (1994)
## 546                                                                            Elizabeth (1998)
## 547                                                                      West Side Story (1961)
## 548                                                                    Leaving Las Vegas (1995)
## 549                                       Star Wars: Episode V - The Empire Strikes Back (1980)
## 550                                                                      American Beauty (1999)
## 551                                                           Postman, The (Postino, Il) (1994)
## 552                                                                          About a Boy (2002)
## 553                                                                                Andre (1994)
## 554                                                                           Casablanca (1942)
## 555                                                                         Little Nicky (2000)
## 556                                                            Silence of the Lambs, The (1991)
## 557                                                                           Spider-Man (2002)
## 558                                                                         Sudden Death (1995)
## 559                                                                     Mulholland Drive (2001)
## 560                                                                     Shakes the Clown (1992)
## 561                                                               Much Ado About Nothing (1993)
## 562                                                                         Forrest Gump (1994)
## 563                                       Lord of the Rings: The Return of the King, The (2003)
## 564                                                                 Fried Green Tomatoes (1991)
## 565                                                                      Stealing Beauty (1996)
## 566                                                                      Of Mice and Men (1992)
## 567                                                                           Casablanca (1942)
## 568                                                                        Jurassic Park (1993)
## 569                                                                           Highlander (1986)
## 570                                                                           Carrington (1995)
## 571                                                                               Psycho (1960)
## 572                                                                           Hellraiser (1987)
## 573                                                                Devil in a Blue Dress (1995)
## 574                                                                         Animal House (1978)
## 575                                   Lord of the Rings: The Fellowship of the Ring, The (2001)
## 576                                                        Amores Perros (Loves a Bitch) (2000)
## 577                                                                 Being John Malkovich (1999)
## 578                                                                    Finding Neverland (2004)
## 579                                                                          Chasing Amy (1997)
## 580                                                                                Bound (1996)
## 581                                                              Godfather: Part II, The (1974)
## 582                                                                  Mission: Impossible (1996)
## 583                                                                  Princess Bride, The (1987)
## 584                                                              Godfather: Part II, The (1974)
## 585                                                                            Apollo 13 (1995)
## 586                                                                                Speed (1994)
## 587                                                                         Mary Poppins (1964)
## 588                                                                          Player, The (1992)
## 589                                                                      Lethal Weapon 2 (1989)
## 590                                                                    Road to Perdition (2002)
## 591                                                                                 Heat (1995)
## 592                                                                                Alien (1979)
## 593                                                                        Super Size Me (2004)
## 594                                                           Postman, The (Postino, Il) (1994)
## 595                                                                           Metropolis (1927)
## 596                                                               Star Trek: Generations (1994)
## 597                                                              When Harry Met Sally... (1989)
## 598                                                                    Color Purple, The (1985)
## 599                                                                        Jerry Maguire (1996)
## 600                                                            Midsummer Nights Dream, A (1999)
## 601                                                         Truth About Cats & Dogs, The (1996)
## 602                                                                         Three Amigos (1986)
## 603                                                                  Terms of Endearment (1983)
## 604                                                                            Gladiator (1992)
## 605                                                                             Rain Man (1988)
## 606                                                                            Pinocchio (1940)
## 607                                                                2001: A Space Odyssey (1968)
## 608                                         Amelie (Fabuleux destin dAmélie Poulain, Le) (2001)
## 609                                                                            High Noon (1952)
## 610                                                                       Godfather, The (1972)
## 611                                                                                8 1/2 (1963)
## 612                                                               French Connection, The (1971)
## 613                                                                                 Babe (1995)
## 614                                                                    On the Waterfront (1954)
## 615                                                                         Pulp Fiction (1994)
## 616                                                      Nightmare Before Christmas, The (1993)
## 617                                                                         Waynes World (1992)
## 618                                                                                 Fear (1996)
## 619                                                                         Forrest Gump (1994)
## 620                                                                        Almost Famous (2000)
## 621                                                                              Platoon (1986)
## 622                                                                           Sting, The (1973)
## 623                                                                              Seconds (1966)
## 624                                                                        Jurassic Park (1993)
## 625                                                                     Crying Game, The (1992)
## 626                                                         Hunchback of Notre Dame, The (1996)
## 627                                                                      Few Good Men, A (1992)
## 628                                                           Whats Eating Gilbert Grape (1993)
## 629                                                                          Matrix, The (1999)
## 630                                                  Central Station (Central do Brasil) (1998)
## 631                                                                    Elephant Man, The (1980)
## 632                                                                   Dances with Wolves (1990)
## 633                                                                           Braveheart (1995)
## 634                                                                             Hot Fuzz (2007)
## 635                                                                     Deer Hunter, The (1978)
## 636                                                                    Kramer Vs. Kramer (1979)
## 637                                                            Drunken Master (Jui kuen) (1978)
## 638                                                                            Toy Story (1995)
## 639                                                 Wallace & Gromit: The Wrong Trousers (1993)
## 640                                                                      Minority Report (2002)
## 641                                                                         Shining, The (1980)
## 642                                 Aguirre: The Wrath of God (Aguirre, der Zorn Gottes) (1972)
## 643                                                                          Taxi Driver (1976)
## 644                                                                     Truman Show, The (1998)
## 645                                              And Your Mother Too (Y tu mamá también) (2001)
## 646                                                                        Soylent Green (1973)
## 647                                                                  Sound of Music, The (1965)
## 648                                                              Godfather: Part II, The (1974)
## 649                                                                  Clockwork Orange, A (1971)
## 650                                                                               Hamlet (1990)
## 651                                                                              Michael (1996)
## 652                                                                                Fargo (1996)
## 653                                                                       Godfather, The (1972)
## 654                                                                          Chasing Amy (1997)
## 655                                                                     Deer Hunter, The (1978)
## 656                                                            Shawshank Redemption, The (1994)
## 657                                                                        Oceans Eleven (2001)
## 658                                                                       Rocketeer, The (1991)
## 659                                                                        Jerry Maguire (1996)
## 660                                                            Hunt for Red October, The (1990)
## 661                                                                         East of Eden (1955)
## 662                                                                         Broken Arrow (1996)
## 663                                                                           Goodfellas (1990)
## 664                                                                           Fight Club (1999)
## 665                                                                         Forrest Gump (1994)
## 666                                                                       Risky Business (1983)
## 667                                                                Breakfast at Tiffanys (1961)
## 668                                                                  Saving Private Ryan (1998)
## 669                                                        Adventures of Robin Hood, The (1938)
## 670                                                                    Beautiful Mind, A (2001)
## 671                                                                        Groundhog Day (1993)
## 672                                          Three Colors: White (Trois couleurs: Blanc) (1994)
## 673                                                                              Amadeus (1984)
## 674                                                                              Freeway (1996)
## 675                                                                      Raising Arizona (1987)
## 676                                                                         Shining, The (1980)
## 677                                       Star Wars: Episode V - The Empire Strikes Back (1980)
## 678                                                  Life Is Beautiful (La Vita è bella) (1997)
## 679                                                                          Hoop Dreams (1994)
## 680                                                              Crimes and Misdemeanors (1989)
## 681                                                                              Shrek 2 (2004)
## 682                                                                          Rivers Edge (1986)
## 683                                                        Ready to Wear (Pret-A-Porter) (1994)
## 684                                                                     Sixth Sense, The (1999)
## 685                                                                    Great Escape, The (1963)
## 686                                                                                  Big (1988)
## 687                                                                From Here to Eternity (1953)
## 688                                                            House of the Spirits, The (1993)
## 689                                                                         Bugs Life, A (1998)
## 690                                                                            Rush Hour (1998)
## 691                                                                  Saving Private Ryan (1998)
## 692                                                                                Fargo (1996)
## 693                                                                            Game, The (1997)
## 694                                                                    Leaving Las Vegas (1995)
## 695                                                                         Pretty Woman (1990)
## 696                                                               Fox and the Hound, The (1981)
## 697                                                                      Out of the Past (1947)
## 698                                                                             Die Hard (1988)
## 699                                                                Butterfly Effect, The (2004)
## 700                                                                                   Go (1999)
## 701                                                                            True Lies (1994)
## 702                                                                      Schindlers List (1993)
## 703                                                            Silence of the Lambs, The (1991)
## 704                                                                        Trainspotting (1996)
## 705                                                                             Trekkies (1997)
## 706                                                                        Fools Rush In (1997)
## 707                                                               Magnificent Seven, The (1960)
## 708                                                             Monster, The (Il Mostro) (1994)
## 709                                                                   Heavenly Creatures (1994)
## 710                                       Star Wars: Episode V - The Empire Strikes Back (1980)
## 711                                                                 Being John Malkovich (1999)
## 712                                                                          Match Point (2005)
## 713                                                                   Back to the Future (1985)
## 714                                                                                Akira (1988)
## 715                                                                    Finding Neverland (2004)
## 716                                                            Shawshank Redemption, The (1994)
## 717                                                                  Usual Suspects, The (1995)
## 718                                                                        Kolya (Kolja) (1996)
## 719                                                                    Tao of Steve, The (2000)
## 720                                                                          Chicken Run (2000)
## 721                                                                            G.I. Jane (1997)
## 722                                                                     Deer Hunter, The (1978)
## 723                                                                    Great Escape, The (1963)
## 724                                                           Terminator 2: Judgment Day (1991)
## 725                                                    Princess Mononoke (Mononoke-hime) (1997)
## 726                                                                              Traffic (2000)
## 727                                                                     Wedding Crashers (2005)
## 728                                                             Clear and Present Danger (1994)
## 729                                                   Escape from the Planet of the Apes (1971)
## 730                                                                            Apollo 13 (1995)
## 731                                                                        Patriot Games (1992)
## 732                                                                         Forrest Gump (1994)
## 733                                                                        Fugitive, The (1993)
## 734                                                                          Taxi Driver (1976)
## 735                                                                    Leaving Las Vegas (1995)
## 736                                                            Shawshank Redemption, The (1994)
## 737                                                              Antonias Line (Antonia) (1995)
## 738                                                                           Goodfellas (1990)
## 739                                                            Silence of the Lambs, The (1991)
## 740                                                                    Untouchables, The (1987)
## 741                                                                                  300 (2007)
## 742                                                  Willy Wonka & the Chocolate Factory (1971)
## 743                                        Devils Backbone, The (El Espinazo del diablo) (2001)
## 744                                                                                Fargo (1996)
## 745                                                                              Contact (1997)
## 746                                                                            Apollo 13 (1995)
## 747                                                                          Whale Rider (2002)
## 748                                                               Star Trek: Generations (1994)
## 749                                                                            Rock, The (1996)
## 750                                                                      American Beauty (1999)
## 751                                                                               Casper (1995)
## 752                                                                              Aladdin (1992)
## 753                                                                   Dazed and Confused (1993)
## 754                                                                          Rookie, The (2002)
## 755                                                   Butch Cassidy and the Sundance Kid (1969)
## 756                                                                            Elizabeth (1998)
## 757                                                            Hunt for Red October, The (1990)
## 758                                            Pirates of the Caribbean: Dead Mans Chest (2006)
## 759                                                             Clear and Present Danger (1994)
## 760                                                                  Lost in Translation (2003)
## 761                                                                     Sixth Sense, The (1999)
## 762                                                                    Big Lebowski, The (1998)
## 763                                                                 Nutty Professor, The (1996)
## 764                                                                              RoboCop (1987)
## 765                                                                      Schindlers List (1993)
## 766                                                                                Shrek (2001)
## 767                                                            Silence of the Lambs, The (1991)
## 768                                                                         Office Space (1999)
## 769                                                              American President, The (1995)
## 770                                                                      American Beauty (1999)
## 771                                                                           Casablanca (1942)
## 772                                       Star Wars: Episode V - The Empire Strikes Back (1980)
## 773                                                                                Fargo (1996)
## 774                                                             Who Framed Roger Rabbit? (1988)
## 775                                                                          Wild Things (1998)
## 776                                                                     Double Indemnity (1944)
## 777                                                                            Chinatown (1974)
## 778                                                                              Twister (1996)
## 779                                                                         Forrest Gump (1994)
## 780                                                                     Sixth Sense, The (1999)
## 781                                                                       Godfather, The (1972)
## 782                                                                              Matilda (1996)
## 783                                                                         Philadelphia (1993)
## 784                                                                        Jerry Maguire (1996)
## 785                                                            Fast and the Furious, The (2001)
## 786                                                                      Schindlers List (1993)
## 787                                                               Much Ado About Nothing (1993)
## 788                                                                   North by Northwest (1959)
## 789                                                                      American Beauty (1999)
## 790                                                                                Fargo (1996)
## 791                                                                         Forrest Gump (1994)
## 792                                                My Neighbor Totoro (Tonari no Totoro) (1988)
## 793                                                                      American Beauty (1999)
## 794                                                            Femme Nikita, La (Nikita) (1990)
## 795                                                                          Matrix, The (1999)
## 796                                                                        Jurassic Park (1993)
## 797                                                                          Widows Peak (1994)
## 798                                                                     Inherit the Wind (1960)
## 799                                                                         American Pie (1999)
## 800                                                                           Waterworld (1995)
## 801                                                                            Tom Jones (1963)
## 802                                                                  Maltese Falcon, The (1941)
## 803                                                                        Boogie Nights (1997)
## 804                                                                                Naked (1993)
## 805                                                                             Swingers (1996)
## 806                                                                               Malice (1993)
## 807                                                                               Patton (1970)
## 808                                                                       Reservoir Dogs (1992)
## 809                                                                  Princess Bride, The (1987)
## 810                                                                         12 Angry Men (1957)
## 811                         Princess and the Warrior, The (Der Krieger und die Kaiserin) (2000)
## 812                                                                                Fargo (1996)
## 813                                                                            Chinatown (1974)
## 814                                                  Willy Wonka & the Chocolate Factory (1971)
## 815                                                                  Million Dollar Baby (2004)
## 816                                                                           Free Willy (1993)
## 817                                                               NeverEnding Story, The (1984)
## 818                                                               And the Band Played On (1993)
## 819                                Star Wars: Episode IV - A New Hope (a.k.a. Star Wars) (1977)
## 820                                       Star Wars: Episode V - The Empire Strikes Back (1980)
## 821                                                                     Addicted to Love (1997)
## 822                                                                            Tommy Boy (1995)
## 823                                                               Muppet Treasure Island (1996)
## 824                                                      Wallace & Gromit: A Close Shave (1995)
## 825                                                                       Paths of Glory (1957)
## 826                                                                      Ghostbusters II (1989)
## 827                                                                         Forrest Gump (1994)
## 828                                                                               Grease (1978)
## 829                                         Amelie (Fabuleux destin dAmélie Poulain, Le) (2001)
## 830                                                Austin Powers: The Spy Who Shagged Me (1999)
## 831                                                            Shawshank Redemption, The (1994)
## 832                                                                              Traffic (2000)
## 833                                                                           Red Dragon (2002)
## 834                                                                             Hoosiers (1986)
## 835                                                               Stranger Than Paradise (1984)
## 836                                           Star Wars: Episode VI - Return of the Jedi (1983)
## 837                                                                      Sleeping Beauty (1959)
## 838                                                                     Knockaround Guys (2002)
## 839                                                                          Under Siege (1992)
## 840                                              Mystery Science Theater 3000: The Movie (1996)
## 841                                            Frankenstein (Mary Shelleys Frankenstein) (1994)
## 842                                                                                Speed (1994)
## 843                                                                             Rain Man (1988)
## 844                                                       One Flew Over the Cuckoos Nest (1975)
## 845                                                               It Could Happen to You (1994)
## 846                                                                         Forrest Gump (1994)
## 847                                                                Breakfast at Tiffanys (1961)
## 848                                                            Shawshank Redemption, The (1994)
## 849                                                                              Vertigo (1958)
## 850                                                        Sea Inside, The (Mar adentro) (2004)
## 851                                                                  Saving Private Ryan (1998)
## 852                                                                 Seven (a.k.a. Se7en) (1995)
## 853                                                                            Breakdown (1997)
## 854                                                                               Snatch (2000)
## 855                                                                       Down Periscope (1996)
## 856                                                                      Minority Report (2002)
## 857                                                  Ghostbusters (a.k.a. Ghost Busters) (1984)
## 858                                                          12 Monkeys (Twelve Monkeys) (1995)
## 859                                                 Wallace & Gromit: The Wrong Trousers (1993)
## 860                                                 Seven Samurai (Shichinin no samurai) (1954)
## 861                                       Star Wars: Episode V - The Empire Strikes Back (1980)
## 862                                                                 Seven (a.k.a. Se7en) (1995)
## 863                                                                          Rear Window (1954)
## 864                                                                        Jurassic Park (1993)
## 865                                                                         Office Space (1999)
## 866                                                                 Me, Myself and Irene (2000)
## 867                                                   Butch Cassidy and the Sundance Kid (1969)
## 868                                                                M*A*S*H (a.k.a. MASH) (1970)
## 869                                                                           Piano, The (1993)
## 870                                                                            Cast Away (2000)
## 871                                                                           Fight Club (1999)
## 872                                                                           Sting, The (1973)
## 873                                                                  Long Walk Home, The (1990)
## 874              Raiders of the Lost Ark (Indiana Jones and the Raiders of the Lost Ark) (1981)
## 875                                                                        Weird Science (1985)
## 876                                                                          Peeping Tom (1960)
## 877                                                                       Godfather, The (1972)
## 878                                                                           Mummy, The (1999)
## 879                                                                               Grease (1978)
## 880                                                                  Breakfast Club, The (1985)
## 881                                                                                X-Men (2000)
## 882                                                                               Brazil (1985)
## 883                                                                             Stargate (1994)
## 884                                                            Silence of the Lambs, The (1991)
## 885                                                        Bridge on the River Kwai, The (1957)
## 886                                                   Indiana Jones and the Last Crusade (1989)
## 887                                                                      Pather Panchali (1955)
## 888                                                                 Strangers on a Train (1951)
## 889                                    Léon: The Professional (Léon) (Professional, The) (1994)
## 890                                                              Basketball Diaries, The (1995)
## 891                                                            Silence of the Lambs, The (1991)
## 892                                                                   Dead Poets Society (1989)
## 893                                                                    L.A. Confidential (1997)
## 894                                                    Wallace & Gromit: A Grand Day Out (1989)
## 895                                                                              Vertigo (1958)
## 896                                       Everything You Always Wanted to Know About Sex (1972)
## 897                                                                              Payback (1999)
## 898                                                                             Stargate (1994)
## 899                                                                 My Own Private Idaho (1991)
## 900                                                                           Goodfellas (1990)
## 901                                                                              Stripes (1981)
## 902                                                                         Forrest Gump (1994)
## 903                                                              Ferris Buellers Day Off (1986)
## 904                                                       One Flew Over the Cuckoos Nest (1975)
## 905                                                           Die Hard: With a Vengeance (1995)
## 906                                                                          Unbreakable (2000)
## 907                                                                     Army of Darkness (1993)
## 908                                                                              Vertigo (1958)
## 909                                                                           Piano, The (1993)
## 910                                                                             Maverick (1994)
## 911                                                Eternal Sunshine of the Spotless Mind (2004)
## 912                                                                       Secrets & Lies (1996)
## 913                                Star Wars: Episode IV - A New Hope (a.k.a. Star Wars) (1977)
## 914                                                                                 Diva (1981)
## 915                                                                         Forrest Gump (1994)
## 916                                                                  Room with a View, A (1986)
## 917                                                                   Hard Days Night, A (1964)
## 918                                                                          Toy Story 2 (1999)
## 919                                                                           Die Hard 2 (1990)
## 920                                                                       Godfather, The (1972)
## 921                                                                     Meet the Parents (2000)
## 922                                              Cinema Paradiso (Nuovo cinema Paradiso) (1989)
## 923                                                                             Maverick (1994)
## 924                                                                            Toy Story (1995)
## 925                                                                           Fight Club (1999)
## 926                                                              When Harry Met Sally... (1989)
## 927                                              Burnt by the Sun (Utomlyonnye solntsem) (1994)
## 928                                                                                Fargo (1996)
## 929                                                                        Touch of Evil (1958)
## 930                                                                           Piano, The (1993)
## 931                                                                             Maverick (1994)
## 932                                                                        Casino Royale (2006)
## 933                                                                         New Age, The (1994)
## 934                                                                      Dangerous Minds (1995)
## 935                                                                                   Go (1999)
## 936                                                                    Girl, Interrupted (1999)
## 937                                                                2001: A Space Odyssey (1968)
## 938                                    Adventures of Priscilla, Queen of the Desert, The (1994)
## 939                                                    To Be and to Have (Être et avoir) (2002)
## 940                                                                  Mississippi Burning (1988)
## 941                                                                       Lion King, The (1994)
## 942                                                                                 Dick (1999)
## 943                                                Rosencrantz and Guildenstern Are Dead (1990)
## 944                                                                   Young Frankenstein (1974)
## 945                                                                  Terms of Endearment (1983)
## 946                                                                             Rain Man (1988)
## 947                                                                            Toy Story (1995)
## 948                                                      Wallace & Gromit: A Close Shave (1995)
## 949                                                                         Pulp Fiction (1994)
## 950                                                                                Alien (1979)
## 951                                       Lord of the Rings: The Return of the King, The (2003)
## 952                                                                              Yojimbo (1961)
## 953                                                                M*A*S*H (a.k.a. MASH) (1970)
## 954                                                                        Pleasantville (1998)
## 955                                                                    Stand and Deliver (1988)
## 956                                                                                 Babe (1995)
## 957                                                               End of the Affair, The (1999)
## 958                                                                    Strictly Ballroom (1992)
## 959                                                                         Philadelphia (1993)
## 960                                                                        All About Eve (1950)
## 961                                                                           Annie Hall (1977)
## 962                                                                          Hoop Dreams (1994)
## 963                                                                         Total Recall (1990)
## 964                                                   Indiana Jones and the Last Crusade (1989)
## 965                                                                      Schindlers List (1993)
## 966                                                                         Bed of Roses (1996)
## 967                                                                   When We Were Kings (1996)
## 968                                                           E.T. the Extra-Terrestrial (1982)
## 969                                                                    American Graffiti (1973)
## 970                                                                    Muppet Movie, The (1979)
## 971                                                                       Godfather, The (1972)
## 972                                                 Indiana Jones and the Temple of Doom (1984)
## 973                                                             Kind Hearts and Coronets (1949)
## 974                                                                            Toy Story (1995)
## 975                                                                     Eddie Murphy Raw (1987)
## 976                                                 South Park: Bigger, Longer and Uncut (1999)
## 977                                                                       Godfather, The (1972)
## 978                                                                 English Patient, The (1996)
## 979                                                                         My Fair Lady (1964)
## 980                                                                To Kill a Mockingbird (1962)
## 981                 Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb (1964)
## 982                                                                                 Diva (1981)
## 983                                                                   Jingle All the Way (1996)
## 984                                                                            Chinatown (1974)
## 985                                                                   I Shot Andy Warhol (1996)
## 986                                                                       Monsters, Inc. (2001)
## 987                                                                   Back to the Future (1985)
## 988                                                                            Firm, The (1993)
## 989                                                                        Cool Runnings (1993)
## 990                                                     Importance of Being Earnest, The (2002)
## 991                                                                    Keeping the Faith (2000)
## 992                                           Star Wars: Episode VI - Return of the Jedi (1983)
## 993                                                                                 Babe (1995)
## 994                                                                Walk in the Clouds, A (1995)
## 995                                                                     Harold and Maude (1971)
## 996                                                              When Harry Met Sally... (1989)
## 997                                                                         Lost Horizon (1937)
## 998                                                                  Usual Suspects, The (1995)
## 999                                                                  Saving Private Ryan (1998)
## 1000                                                                Hudsucker Proxy, The (1994)
## 1001                                                                        Best in Show (2000)
## 1002                                                                             Henry V (1989)
## 1003                                                     Monty Python and the Holy Grail (1975)
## 1004                                                                           Session 9 (2001)
## 1005                                                                        Forrest Gump (1994)
## 1006                                                                   Shadow of a Doubt (1943)
## 1007                                                                       Fugitive, The (1993)
## 1008                                                                          Braveheart (1995)
## 1009                                                                Fried Green Tomatoes (1991)
## 1010                                                                       Trainspotting (1996)
## 1011                                                                           Chinatown (1974)
## 1012                                                                    Crying Game, The (1992)
## 1013                                                                    Millers Crossing (1990)
## 1014                                                                      Apartment, The (1960)
## 1015                                                       Road Warrior, The (Mad Max 2) (1981)
## 1016                                                                             Jumanji (1995)
## 1017                                                     Monty Python and the Holy Grail (1975)
## 1018                                                                 Killing Fields, The (1984)
## 1019                                                                         Underground (1995)
## 1020                                                                              Kundun (1997)
## 1021                                                               Mission: Impossible 2 (2000)
## 1022                                                                       Monsters Ball (2001)
## 1023                                                                 Clockwork Orange, A (1971)
## 1024                                                                            Clueless (1995)
## 1025                                                                           Firm, The (1993)
## 1026                                                          Promise, The (La Promesse) (1996)
## 1027                                                           Shawshank Redemption, The (1994)
## 1028                                                                    To Catch a Thief (1955)
## 1029                                                                              Eraser (1996)
## 1030                                                                         Rush Hour 2 (2001)
## 1031                                                                  Planet of the Apes (2001)
## 1032                                                                     American Beauty (1999)
## 1033                                                       Star Trek: The Motion Picture (1979)
## 1034                                                                             Traffic (2000)
## 1035                                                                 Blues Brothers, The (1980)
## 1036                                                                        Animal House (1978)
## 1037             Raiders of the Lost Ark (Indiana Jones and the Raiders of the Lost Ark) (1981)
## 1038                                                                                   M (1931)
## 1039                                                                          Highlander (1986)
## 1040                                                     Wallace & Gromit: A Close Shave (1995)
## 1041                                                                        Office Space (1999)
## 1042                                                                 Father of the Bride (1950)
## 1043                                                                          Short Cuts (1993)
## 1044                                                                            Net, The (1995)
## 1045                                      Star Wars: Episode V - The Empire Strikes Back (1980)
## 1046                                                                          Fight Club (1999)
## 1047                                 Like Water for Chocolate (Como agua para chocolate) (1992)
## 1048                                  Lord of the Rings: The Fellowship of the Ring, The (2001)
## 1049                                                               Bowling for Columbine (2002)
## 1050                                                                              Clerks (1994)
## 1051                                                                  Dangerous Liaisons (1988)
## 1052                                                                        Men in Black (1997)
## 1053                                                                          L.A. Story (1991)
## 1054                  Good, the Bad and the Ugly, The (Buono, il brutto, il cattivo, Il) (1966)
## 1055                                                              Brighton Beach Memoirs (1986)
## 1056                                                                           Apollo 13 (1995)
## 1057                                                  Henry: Portrait of a Serial Killer (1986)
## 1058                                                                          Stir Crazy (1980)
## 1059                                                                               Alien (1979)
## 1060                                                     Monty Python and the Holy Grail (1975)
## 1061                                                                     American Beauty (1999)
## 1062                                      Star Wars: Episode V - The Empire Strikes Back (1980)
## 1063                                                                   Beautiful Mind, A (2001)
## 1064                                                                               Glory (1989)
## 1065                                                                       Patriot Games (1992)
## 1066                                                          E.T. the Extra-Terrestrial (1982)
## 1067                                                                             Vertigo (1958)
## 1068                                                                     Black Hawk Down (2001)
## 1069                                   Léon: The Professional (Léon) (Professional, The) (1994)
## 1070                                                                         Dragonheart (1996)
## 1071                                                                 Day at the Races, A (1937)
## 1072                                             400 Blows, The (Les Quatre cents coups) (1959)
## 1073                                                                       Oceans Eleven (2001)
## 1074                                                                     American Beauty (1999)
## 1075                                                                           Apollo 13 (1995)
## 1076                                                                       All That Jazz (1979)
## 1077                                                                      Romeo Must Die (2000)
## 1078                                            Harry Potter and the Prisoner of Azkaban (2004)
## 1079                                                                 Beverly Hills Ninja (1997)
## 1080                                                                   Seven Days in May (1964)
## 1081                                                                          Phenomenon (1996)
## 1082                                                                            Vacation (1983)
## 1083                                                                      Lion King, The (1994)
## 1084                                                                               Ghost (1990)
## 1085                                                                           Ladyhawke (1985)
## 1086                                                                       Billy Madison (1995)
## 1087                                                                 Mission: Impossible (1996)
## 1088                                                                 Room with a View, A (1986)
## 1089                                                                              Patton (1970)
## 1090                                                                       Kolya (Kolja) (1996)
## 1091                               Star Wars: Episode IV - A New Hope (a.k.a. Star Wars) (1977)
## 1092                                                                             Everest (1998)
## 1093                                                                     Schindlers List (1993)
## 1094                                                                        My Left Foot (1989)
## 1095                                                                         Cliffhanger (1993)
## 1096                                                                 Room with a View, A (1986)
## 1097                                                                     Schindlers List (1993)
## 1098                                                                    Fisher King, The (1991)
## 1099                                                                  Living in Oblivion (1995)
## 1100                                                   Princess Mononoke (Mononoke-hime) (1997)
## 1101                                              Lord of the Rings: The Two Towers, The (2002)
## 1102                                          Star Wars: Episode VI - Return of the Jedi (1983)
## 1103                                                                       Trainspotting (1996)
## 1104                                                                           Quiz Show (1994)
## 1105                                                                      Big Sleep, The (1946)
## 1106                                                                  Young Frankenstein (1974)
## 1107                                                                       Shoot to Kill (1988)
## 1108                                                            Man with Two Brains, The (1983)
## 1109                                                                    Dirty Dozen, The (1967)
## 1110                                                                      Godfather, The (1972)
## 1111                                                                 In the Line of Fire (1993)
## 1112                                                                       Jerry Maguire (1996)
## 1113                                              Sunset Blvd. (a.k.a. Sunset Boulevard) (1950)
## 1114                                                                          Quest, The (1996)
## 1115                                                                          Phenomenon (1996)
## 1116                                                                  Jackass: The Movie (2002)
## 1117                                                                           Manhunter (1986)
## 1118                                                                        Men in Black (1997)
## 1119                                                                           Dark Star (1974)
## 1120                                                                   Great Escape, The (1963)
## 1121                                                                         Matrix, The (1999)
## 1122                                                                       Fugitive, The (1993)
## 1123                                                                          Goodfellas (1990)
## 1124                                     Wallace & Gromit: The Best of Aardman Animation (1996)
## 1125                                                                       Bottle Rocket (1996)
## 1126                                                                      Doctor Zhivago (1965)
## 1127                                                                           Crow, The (1994)
## 1128                                                                        Patriot, The (2000)
## 1129                                                                    Jungle Book, The (1967)
## 1130                                      Star Wars: Episode V - The Empire Strikes Back (1980)
## 1131                                         Austin Powers: International Man of Mystery (1997)
## 1132                                                                                 JFK (1991)
## 1133                                                                 Shakespeare in Love (1998)
## 1134                                                                        Pulp Fiction (1994)
## 1135                                                               Bullets Over Broadway (1994)
## 1136                                                       Independence Day (a.k.a. ID4) (1996)
## 1137                                                                      Animatrix, The (2003)
## 1138                                                                            Dead Man (1995)
## 1139                                                                         Matrix, The (1999)
## 1140                                              Lord of the Rings: The Two Towers, The (2002)
## 1141                                                                      Secrets & Lies (1996)
## 1142                                                                       Seven Chances (1925)
## 1143                                                                         Thunderball (1965)
## 1144                                                              Flirting With Disaster (1996)
## 1145                                                                     Schindlers List (1993)
## 1146                                                                        12 Angry Men (1957)
## 1147                                                                 Princess Bride, The (1987)
## 1148                                               Eternal Sunshine of the Spotless Mind (2004)
## 1149                                                                Its a Wonderful Life (1946)
## 1150                                                           Shawshank Redemption, The (1994)
## 1151                                                                  When We Were Kings (1996)
## 1152                                                                               X-Men (2000)
## 1153                                                 Willy Wonka & the Chocolate Factory (1971)
## 1154                                                                     American Beauty (1999)
## 1155                                                                           Gladiator (2000)
## 1156                                                           Shawshank Redemption, The (1994)
## 1157                                                                      Lion King, The (1994)
## 1158                                                                    Parent Trap, The (1961)
## 1159                                                           Silence of the Lambs, The (1991)
## 1160                                                                      Apocalypse Now (1979)
## 1161                                                                         Unbreakable (2000)
## 1162                                                                            Beerfest (2006)
## 1163                                                  Indiana Jones and the Last Crusade (1989)
## 1164                                                     Snow White and the Seven Dwarfs (1937)
## 1165                                                                             Ed Wood (1994)
## 1166                                                                      Pay It Forward (2000)
## 1167                                                                        Mary Poppins (1964)
## 1168                                                                   Mr. Hollands Opus (1995)
## 1169                                                      Ever After: A Cinderella Story (1998)
## 1170                                                                           Atonement (2007)
## 1171                                                                          Home Alone (1990)
## 1172                                                                        Insider, The (1999)
## 1173                                                                    Dead Man Walking (1995)
## 1174                                                                 Princess Bride, The (1987)
## 1175                                                                           Stalag 17 (1953)
## 1176                                                             Ferris Buellers Day Off (1986)
## 1177                                                                  Gone with the Wind (1939)
## 1178                                                       Bridge on the River Kwai, The (1957)
## 1179                                                                         Sling Blade (1996)
## 1180                                                                   Leaving Las Vegas (1995)
## 1181                                                          O Brother, Where Art Thou? (2000)
## 1182                                                                          Phenomenon (1996)
## 1183                                                                     American Beauty (1999)
## 1184                                                                         Matrix, The (1999)
## 1185                                                                              Baraka (1992)
## 1186                                                              All the Presidents Men (1976)
## 1187                                                   Treasure of the Sierra Madre, The (1948)
## 1188                                                                             Contact (1997)
## 1189                                                                              Batman (1989)
## 1190                                                             Wet Hot American Summer (2001)
## 1191                                                                               Glory (1989)
## 1192                                                                 Usual Suspects, The (1995)
## 1193                                                                       Fugitive, The (1993)
## 1194                                                              French Connection, The (1971)
## 1195                                                                           Notorious (1946)
## 1196                                                                                 300 (2007)
## 1197                                                                  African Queen, The (1951)
## 1198                                                                  This Is Spinal Tap (1984)
## 1199                                                                Opposite of Sex, The (1998)
## 1200                                                                  This Is Spinal Tap (1984)
## 1201                                                                          Braveheart (1995)
## 1202                                                                                 Big (1988)
## 1203                                                                   On the Waterfront (1954)
## 1204                                                                        Shining, The (1980)
## 1205                                                                         Wild Things (1998)
## 1206                                                                 Murder in the First (1995)
## 1207                                                                              Willow (1988)
## 1208                                                           Purple Rose of Cairo, The (1985)
## 1209                                                                              Psycho (1960)
## 1210                                                                       Groundhog Day (1993)
## 1211                                                                Beauty and the Beast (1991)
## 1212                                                                        Lost Highway (1997)
## 1213                                                                             Platoon (1986)
## 1214                                                                        Blade Runner (1982)
## 1215                                                       Kids in the Hall: Brain Candy (1996)
## 1216                                                                Boondock Saints, The (2000)
## 1217                                                             Remains of the Day, The (1993)
## 1218                                                                              Grease (1978)
## 1219                                                       Independence Day (a.k.a. ID4) (1996)
## 1220                                                                              Batman (1989)
## 1221                                                                       Gridiron Gang (2006)
## 1222                                                                      Basic Instinct (1992)
## 1223                                                                             Contact (1997)
## 1224                                                                            Rushmore (1998)
## 1225                                                                          Phenomenon (1996)
## 1226                                                            Who Framed Roger Rabbit? (1988)
## 1227                                                                    Paris Is Burning (1990)
## 1228                                                                    Sixth Sense, The (1999)
## 1229                                                My Life as a Dog (Mitt liv som hund) (1985)
## 1230                                                                         Matrix, The (1999)
## 1231                                                                      Godfather, The (1972)
## 1232                                                                      Ice Storm, The (1997)
## 1233                                                                 Alien: Resurrection (1997)
## 1234                                                                         Three Kings (1999)
## 1235                                                                        Philadelphia (1993)
## 1236                                                                 Legends of the Fall (1994)
## 1237                                                                          Spaceballs (1987)
## 1238                                                                           Toy Story (1995)
## 1239                                                                             Top Gun (1986)
## 1240                                                                       Jerry Maguire (1996)
## 1241                                          Star Wars: Episode VI - Return of the Jedi (1983)
## 1242                                                        Jules and Jim (Jules et Jim) (1961)
## 1243                                                           Silence of the Lambs, The (1991)
## 1244                                      Star Wars: Episode V - The Empire Strikes Back (1980)
## 1245                                                                    Steamboat Willie (1928)
## 1246                                                                   Beautiful Mind, A (2001)
## 1247                                                              Much Ado About Nothing (1993)
## 1248                                                Chungking Express (Chóngqìng Senlín) (1994)
## 1249                                                                              Clerks (1994)
## 1250                                                                      My Man Godfrey (1936)
## 1251                                                                    Grumpier Old Men (1995)
## 1252                                                                       Fugitive, The (1993)
## 1253                                                                         Matrix, The (1999)
## 1254                                                           Silence of the Lambs, The (1991)
## 1255                                                            Night of the Living Dead (1968)
## 1256                                     Wallace & Gromit: The Best of Aardman Animation (1996)
## 1257                                                            When a Man Loves a Woman (1994)
## 1258                                                                         Being There (1979)
## 1259                                                                   L.A. Confidential (1997)
## 1260                                                                            Outbreak (1995)
## 1261                                                                             Platoon (1986)
## 1262                                                                           Tombstone (1993)
## 1263                                                                       Trainspotting (1996)
## 1264                                                                   Dark Crystal, The (1982)
## 1265                                                                              Aliens (1986)
## 1266                                                                         Wonder Boys (2000)
## 1267                                                                  Back to the Future (1985)
## 1268                                                           Silence of the Lambs, The (1991)
## 1269                                                                           Bowfinger (1999)
## 1270                                                                          Stalingrad (1993)
## 1271                                                     Wallace & Gromit: A Close Shave (1995)
## 1272                                                                              Brazil (1985)
## 1273                                                                     Minority Report (2002)
## 1274                                                                     What Women Want (2000)
## 1275                                                                             Aladdin (1992)
## 1276                                                                    Crocodile Dundee (1986)
## 1277                                                             Godfather: Part II, The (1974)
## 1278                                   Léon: The Professional (Léon) (Professional, The) (1994)
## 1279                Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb (1964)
## 1280                                                                           Quiz Show (1994)
## 1281                                                                           Toy Story (1995)
## 1282                                                                  North by Northwest (1959)
## 1283                                                  Red Violin, The (Violon rouge, Le) (1998)
## 1284             Raiders of the Lost Ark (Indiana Jones and the Raiders of the Lost Ark) (1981)
## 1285                               Star Wars: Episode IV - A New Hope (a.k.a. Star Wars) (1977)
## 1286                                                                               Alien (1979)
## 1287                                                                       Warriors, The (1979)
## 1288                                        Amelie (Fabuleux destin dAmélie Poulain, Le) (2001)
## 1289                                                                             Frailty (2001)
## 1290                                                          Terminator 2: Judgment Day (1991)
## 1291                                                          Postman, The (Postino, Il) (1994)
## 1292                                                                         Taxi Driver (1976)
## 1293                                                           Silence of the Lambs, The (1991)
## 1294                                           Star Wars: Episode I - The Phantom Menace (1999)
## 1295                                                                            Hannibal (2001)
## 1296             Raiders of the Lost Ark (Indiana Jones and the Raiders of the Lost Ark) (1981)
## 1297                                                                     Say Anything... (1989)
## 1298                                                               2001: A Space Odyssey (1968)
## 1299                                                                Seven (a.k.a. Se7en) (1995)
## 1300                                                                  American History X (1998)
## 1301                                                   Lock, Stock & Two Smoking Barrels (1998)
## 1302                                                                       Laurel Canyon (2002)
## 1303                                                                             Rebecca (1940)
## 1304                                                                     Dangerous Minds (1995)
## 1305                                                                      Eyes Wide Shut (1999)
## 1306                                                                        Animal House (1978)
## 1307                                                                      Doctor Zhivago (1965)
## 1308                                                 Ghostbusters (a.k.a. Ghost Busters) (1984)
## 1309                                                          Back to the Future Part II (1989)
## 1310                                                                           Gladiator (2000)
## 1311                                                                            Repo Man (1984)
## 1312                                                                               Ghost (1990)
## 1313                                                             Godfather: Part II, The (1974)
## 1314                                                                        Delicatessen (1991)
## 1315                                                                               Fargo (1996)
## 1316                                                                Seven (a.k.a. Se7en) (1995)
## 1317                                                                       Batman Begins (2005)
## 1318                                                                           Secretary (2002)
## 1319                                                                        Forrest Gump (1994)
## 1320                                                             Buena Vista Social Club (1999)
## 1321                                                                  Young Frankenstein (1974)
## 1322                                                                  Dangerous Liaisons (1988)
## 1323                                                                             Amadeus (1984)
## 1324                                                                Being John Malkovich (1999)
## 1325                                                                 Saving Private Ryan (1998)
## 1326                                                                        Forrest Gump (1994)
## 1327                                                                         With Honors (1994)
## 1328                                                                              Batman (1989)
## 1329                                                                            Identity (2003)
## 1330                                                                           Gladiator (2000)
## 1331                                                                              Aliens (1986)
## 1332                                                                        Forrest Gump (1994)
## 1333                                                                           Quiz Show (1994)
## 1334                                                         12 Monkeys (Twelve Monkeys) (1995)
## 1335                                                            Star Trek: First Contact (1996)
## 1336                                                                     Schindlers List (1993)
## 1337                                                                   Kill Bill: Vol. 2 (2004)
## 1338                                                                         Rear Window (1954)
## 1339                                                                   Shaun of the Dead (2004)
## 1340                                                                        12 Angry Men (1957)
## 1341                                          Star Wars: Episode VI - Return of the Jedi (1983)
## 1342                                                                Night to Remember, A (1958)
## 1343                                                           Shawshank Redemption, The (1994)
## 1344                                                                      Broadcast News (1987)
## 1345                                                                    Cruel Intentions (1999)
## 1346                                                          O Brother, Where Art Thou? (2000)
## 1347                                                              Star Trek: Generations (1994)
## 1348                                                                       Touch of Evil (1958)
## 1349                                                                         Matrix, The (1999)
## 1350                                                                           Manhattan (1979)
## 1351                                                                  This Is Spinal Tap (1984)
## 1352                                                          Terminator 2: Judgment Day (1991)
## 1353                                                                           True Lies (1994)
## 1354                                          Star Wars: Episode VI - Return of the Jedi (1983)
## 1355                                                         Four Weddings and a Funeral (1994)
## 1356                                                            Godfather: Part III, The (1990)
## 1357                                                                      Monsters, Inc. (2001)
## 1358                                                                         Stand by Me (1986)
## 1359                                                                 Sound of Music, The (1965)
## 1360                                                                             Amadeus (1984)
## 1361                                                                           Apollo 13 (1995)
## 1362                                                                               Shine (1996)
## 1363                                                                             Tootsie (1982)
## 1364                                                                        Falling Down (1993)
## 1365                                                                              Alien³ (1992)
## 1366                                                                       Super Size Me (2004)
## 1367                                                                                Dune (2000)
## 1368                                                       Independence Day (a.k.a. ID4) (1996)
## 1369                                                                                  Pi (1998)
## 1370                                                                     American Psycho (2000)
## 1371                                                                       Exorcist, The (1973)
## 1372                                                                   Leaving Las Vegas (1995)
## 1373                                                                  American History X (1998)
## 1374                                                                   Full Metal Jacket (1987)
## 1375                                                                            Clueless (1995)
## 1376                                                                         Audrey Rose (1977)
## 1377                                                                 Edward Scissorhands (1990)
## 1378                                                              Magnificent Seven, The (1960)
## 1379                                                                        Crimson Tide (1995)
## 1380                                                                        Three Amigos (1986)
## 1381                                                                      Godfather, The (1972)
## 1382                                                                      Lion King, The (1994)
## 1383                                                                        Out of Sight (1998)
## 1384                                      Star Wars: Episode V - The Empire Strikes Back (1980)
## 1385                                                                             Twister (1996)
## 1386                                                                             RoboCop (1987)
## 1387                                             Grave of the Fireflies (Hotaru no haka) (1988)
## 1388                                                                        Citizen Kane (1941)
## 1389                                                                Where the Truth Lies (2005)
## 1390                                                                             Vertigo (1958)
## 1391                                           Three Colors: Red (Trois couleurs: Rouge) (1994)
## 1392                                                                  Dangerous Liaisons (1988)
## 1393                                                Wallace & Gromit: The Wrong Trousers (1993)
## 1394                                                                        Philadelphia (1993)
## 1395                                               Austin Powers: The Spy Who Shagged Me (1999)
## 1396                                                                      Godfather, The (1972)
## 1397                                                             Last Days of Disco, The (1998)
## 1398                                                                        Shining, The (1980)
## 1399                                                     Monty Python and the Holy Grail (1975)
## 1400                                                                          Home Alone (1990)
## 1401                                                                       Boys Dont Cry (1999)
## 1402                                                                           Gladiator (2000)
## 1403                                                           Silence of the Lambs, The (1991)
## 1404                                                                     Few Good Men, A (1992)
## 1405                                                                               Glory (1989)
## 1406                                                                             Titanic (1953)
## 1407                                                                         Toy Story 2 (1999)
## 1408                                                                         Hoop Dreams (1994)
## 1409                              3 Days of the Condor (a.k.a. Three Days of the Condor) (1975)
## 1410                                                                          Fight Club (1999)
## 1411                                                         Father of the Bride Part II (1995)
## 1412                                                                 Usual Suspects, The (1995)
## 1413                                                                        Notting Hill (1999)
## 1414                                                                               Shrek (2001)
## 1415                                                                     American Beauty (1999)
## 1416                                                                   Conversation, The (1974)
## 1417                                                                        12 Angry Men (1957)
## 1418                                                                            Die Hard (1988)
## 1419                                                                        Working Girl (1988)
## 1420                                                                    Dead Man Walking (1995)
## 1421                                                                       Donnie Brasco (1997)
## 1422                                                               Sense and Sensibility (1995)
## 1423                                                                               X-Men (2000)
## 1424                                                                     Ordinary People (1980)
## 1425                                                                         Rear Window (1954)
## 1426                                                                                Dune (1984)
## 1427                                                                      Godfather, The (1972)
## 1428                                                                    Band of the Hand (1986)
## 1429                                                                               Shine (1996)
## 1430                                                                           Happiness (1998)
## 1431                                                                             Ed Wood (1994)
## 1432                                                                             Platoon (1986)
## 1433                                                                          Piano, The (1993)
## 1434                                                              NeverEnding Story, The (1984)
## 1435                                                 Ghost in the Shell (Kôkaku kidôtai) (1995)
## 1436                                                                    Right Stuff, The (1983)
## 1437                                                              All the Presidents Men (1976)
## 1438                                                                  As Good As It Gets (1997)
## 1439                                                                        Crimson Tide (1995)
## 1440                                                     Wallace & Gromit: A Close Shave (1995)
## 1441                                                               Kicking and Screaming (1995)
## 1442                                                                         Beetlejuice (1988)
## 1443                                                           Silence of the Lambs, The (1991)
## 1444                                 Like Water for Chocolate (Como agua para chocolate) (1992)
## 1445                                                                           GoldenEye (1995)
## 1446                                                                 Shot in the Dark, A (1964)
## 1447                                  Lord of the Rings: The Fellowship of the Ring, The (2001)
## 1448                                                                   Mr. Beans Holiday (2007)
## 1449                                                                     Terminator, The (1984)
## 1450                                                           Shawshank Redemption, The (1994)
## 1451                                                                               Alien (1979)
## 1452                                      Lord of the Rings: The Return of the King, The (2003)
## 1453                                                                       Unforgettable (1996)
## 1454                                                                       Exorcist, The (1973)
## 1455                                                          E.T. the Extra-Terrestrial (1982)
## 1456                                                     Star Trek II: The Wrath of Khan (1982)
## 1457                                                               American in Paris, An (1951)
## 1458                                                                         Hoop Dreams (1994)
## 1459                                                                       Thin Man, The (1934)
## 1460                                                                         Bull Durham (1988)
## 1461                                                                Its a Wonderful Life (1946)
## 1462                                                                Pink Floyd: The Wall (1982)
## 1463                                                                 Million Dollar Baby (2004)
## 1464                                                                       Graduate, The (1967)
## 1465                                                                          Get Shorty (1995)
## 1466                                                                Beauty and the Beast (1991)
## 1467                                                                      Godfather, The (1972)
## 1468                                                                             Ben-Hur (1959)
## 1469                                           Pirates of the Caribbean: Dead Mans Chest (2006)
## 1470                                                            Who Framed Roger Rabbit? (1988)
## 1471                                                                               Speed (1994)
## 1472                                                                   Beautiful Mind, A (2001)
## 1473                                                                              Fallen (1998)
## 1474                                                                           Apollo 13 (1995)
## 1475                                                                         Sling Blade (1996)
## 1476                                      Star Wars: Episode V - The Empire Strikes Back (1980)
## 1477                                                           Hedwig and the Angry Inch (2000)
## 1478 Borat: Cultural Learnings of America for Make Benefit Glorious Nation of Kazakhstan (2006)
## 1479                                                                            Daylight (1996)
## 1480                                                                               Signs (2002)
## 1481                                                                                 Ran (1985)
## 1482                                                                    Double Indemnity (1944)
## 1483                                                                     American Beauty (1999)
## 1484                                                                         Night Shift (1982)
## 1485                                                                      Waynes World 2 (1993)
## 1486                                                           Shawshank Redemption, The (1994)
## 1487                                                                Fish Called Wanda, A (1988)
## 1488                                                                       Casino Royale (2006)
## 1489                                                                    Double Indemnity (1944)
## 1490                                                          Die Hard: With a Vengeance (1995)
## 1491                                                                        Strange Days (1995)
## 1492                                                                       39 Steps, The (1935)
## 1493                                                                     Schindlers List (1993)
## 1494                                           Three Colors: Blue (Trois couleurs: Bleu) (1993)
## 1495                                                                           Kagemusha (1980)
## 1496                                                              Man for All Seasons, A (1966)
## 1497                                                                   Empire of the Sun (1987)
## 1498                                                                     American Beauty (1999)
## 1499                                                                         Stand by Me (1986)
## 1500                                                                  North by Northwest (1959)
## 1501                                                                          Wyatt Earp (1994)
## 1502                                                              French Connection, The (1971)
## 1503                                                                              Psycho (1998)
## 1504                                               Austin Powers: The Spy Who Shagged Me (1999)
## 1505                                                   Shall We Dance? (Shall We Dansu?) (1996)
## 1506                                                                        Garden State (2004)
## 1507                                                                           Dark City (1998)
## 1508                                                                        Office Space (1999)
## 1509                                                     Monty Python and the Holy Grail (1975)
## 1510                                                                               Fargo (1996)
## 1511                                                                       Boogie Nights (1997)
## 1512                                                                         Beetlejuice (1988)
## 1513                                                                       Jerry Maguire (1996)
## 1514                                                                      Mrs. Doubtfire (1993)
## 1515                                                          O Brother, Where Art Thou? (2000)
## 1516                                                                     Say Anything... (1989)
## 1517                                                           Run Lola Run (Lola rennt) (1998)
## 1518                                                                    Bringing Up Baby (1938)
## 1519                                                            When a Man Loves a Woman (1994)
## 1520                                                 Life Is Beautiful (La Vita è bella) (1997)
## 1521                                                            Buffy the Vampire Slayer (1992)
## 1522                                                                        Waynes World (1992)
## 1523                                                                 Grosse Pointe Blank (1997)
## 1524                                                                        Carlitos Way (1993)
## 1525                                                             American President, The (1995)
## 1526                                                                   Strictly Ballroom (1992)
## 1527                                                                        Citizen Kane (1941)
## 1528                                                                               Glory (1989)
## 1529                               Star Wars: Episode IV - A New Hope (a.k.a. Star Wars) (1977)
## 1530                                                                        Best in Show (2000)
## 1531                                                                        American Pie (1999)
## 1532                                                                      Mrs. Doubtfire (1993)
## 1533                                                                               Mulan (1998)
## 1534                                                                            Rushmore (1998)
## 1535                                                                          Roger & Me (1989)
## 1536                                                                  This Is Spinal Tap (1984)
## 1537                                                                        Frankenstein (1931)
## 1538                                                                              Psycho (1960)
## 1539                                                           You Cant Take It with You (1938)
## 1540                                                                     American Beauty (1999)
## 1541                                                                  Dances with Wolves (1990)
## 1542                                          Star Wars: Episode VI - Return of the Jedi (1983)
## 1543                                                                           Apollo 13 (1995)
## 1544                                                             When Harry Met Sally... (1989)
## 1545                                                           Shawshank Redemption, The (1994)
## 1546                                                                       Suicide Kings (1997)
## 1547                                                                    Sixth Sense, The (1999)
## 1548                                     Naked Gun: From the Files of Police Squad!, The (1988)
## 1549                                                                            Chocolat (2000)
## 1550                                                                         Chicken Run (2000)
## 1551                                                          Terminator 2: Judgment Day (1991)
## 1552                                                              Much Ado About Nothing (1993)
## 1553                               Star Wars: Episode IV - A New Hope (a.k.a. Star Wars) (1977)
## 1554                                                      One Flew Over the Cuckoos Nest (1975)
## 1555                                                            Clear and Present Danger (1994)
## 1556                                                                           Toy Story (1995)
## 1557                                                                  Dazed and Confused (1993)
## 1558                                                                Seven (a.k.a. Se7en) (1995)
## 1559                                                                        Pulp Fiction (1994)
## 1560                                                                 Thin Blue Line, The (1988)
## 1561                                                                  Dances with Wolves (1990)
## 1562                                                           Silence of the Lambs, The (1991)
## 1563                                                                 Princess Bride, The (1987)
## 1564                                                                Beauty and the Beast (1991)
## 1565                                                                  Heavenly Creatures (1994)
## 1566                                                           Shawshank Redemption, The (1994)
## 1567                                                                          Cinderella (1950)
## 1568                                                                        My Left Foot (1989)
## 1569                                                      Ever After: A Cinderella Story (1998)
## 1570 Borat: Cultural Learnings of America for Make Benefit Glorious Nation of Kazakhstan (2006)
## 1571                                                                     American Beauty (1999)
## 1572                                                                 Maltese Falcon, The (1941)
## 1573                                                                  Fifth Element, The (1997)
## 1574                                                                 Sound of Music, The (1965)
## 1575                                                                              Clerks (1994)
## 1576                                                                    Crocodile Dundee (1986)
## 1577                                                                           Mask, The (1994)
## 1578                                                                            Elephant (2003)
## 1579                                                                 Shakespeare in Love (1998)
## 1580                                                                         Re-Animator (1985)
## 1581                Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb (1964)
## 1582                                                     Beavis and Butt-Head Do America (1996)
## 1583                                                                         Client, The (1994)
## 1584                                                                  Dazed and Confused (1993)
## 1585                                                                              Oldboy (2005)
## 1586                                                                               Alien (1979)
## 1587                                  Until the End of the World (Bis ans Ende der Welt) (1991)
## 1588                                                                        Office Space (1999)
## 1589                                                                  This Is Spinal Tap (1984)
## 1590                                                                     Green Mile, The (1999)
## 1591                                        Amelie (Fabuleux destin dAmélie Poulain, Le) (2001)
## 1592                                                                          Sting, The (1973)
## 1593                                                                   Full Metal Jacket (1987)
## 1594                                                                      Apocalypse Now (1979)
## 1595                                                                 Saving Private Ryan (1998)
## 1596                                                                        Crimson Tide (1995)
## 1597                                                     Monty Python and the Holy Grail (1975)
##                                                         Genres UserID Rating
## 1                                         Comedy|Drama|Romance   2783      5
## 2                                                 Comedy|Drama   2534      5
## 3                                        Action|Comedy|Western   2821      5
## 4                                        Drama|Musical|Romance   2826      5
## 5                                               Comedy|Romance   2401      5
## 6                                                        Drama   2745      5
## 7                                                    Drama|War   2401      5
## 8                                       Action|Horror|Thriller   2204      5
## 9                                     Comedy|Drama|Romance|War   2853      5
## 10                                              Comedy|Romance   2722      5
## 11                                     Crime|Film-Noir|Mystery   2862      5
## 12                                     Adventure|Drama|Western   2308      5
## 13                         Adventure|Animation|Children|Comedy   2551      5
## 14                                             Horror|Thriller   2467      5
## 15                                                      Comedy   2177      5
## 16                    Action|Adventure|Animation|Horror|Sci-Fi   2227      5
## 17                          Animation|Children|Fantasy|Musical   2144      5
## 18                                                 Crime|Drama   2115      5
## 19                                                Comedy|Drama   2731      5
## 20                                 Action|Crime|Drama|Thriller   2481      5
## 21                                                       Drama   2360      5
## 22                                              Comedy|Romance   2145      5
## 23                                              Comedy|Romance   2477      5
## 24                        Action|Crime|Mystery|Sci-Fi|Thriller   2404      5
## 25                                      Comedy|Musical|Romance   2596      5
## 26                                              Comedy|Romance   2275      5
## 27                                                Comedy|Crime   2814      5
## 28                                                       Drama   2660      5
## 29                                     Action|Adventure|Sci-Fi   2201      5
## 30                                   Action|Adventure|Thriller   2826      5
## 31                                      Adventure|Comedy|Drama   2233      5
## 32                                   Adventure|Children|Comedy   2353      5
## 33                                                Drama|Sci-Fi   2573      5
## 34                                                Comedy|Drama   2466      5
## 35                                                      Comedy   2438      5
## 36                            Action|Adventure|Sci-Fi|Thriller   2716      5
## 37                                 Action|Crime|Drama|Thriller   2160      5
## 38                                         Crime|Drama|Romance   2186      5
## 39                                              Drama|Thriller   2430      5
## 40                                                 Documentary   2191      5
## 41                                                 Crime|Drama   2534      5
## 42                                       Drama|Mystery|Romance   2878      5
## 43                                                      Comedy   2446      5
## 44                                                 Musical|War   2790      5
## 45                                    Crime|Film-Noir|Thriller   2524      5
## 46                                                       Drama   2503      5
## 47                   Adventure|Drama|Film-Noir|Sci-Fi|Thriller   2845      5
## 48                   Adventure|Drama|Film-Noir|Sci-Fi|Thriller   2721      5
## 49                                                       Drama   2460      5
## 50                 Adventure|Animation|Children|Comedy|Fantasy   2244      5
## 51                   Animation|Children|Comedy|Musical|Romance   2502      5
## 52                                                      Comedy   2717      5
## 53                 Adventure|Animation|Children|Comedy|Fantasy   2486      5
## 54                                                Comedy|Drama   2755      5
## 55                               Action|Horror|Sci-Fi|Thriller   2657      5
## 56                                            Action|Drama|War   2661      5
## 57                                          Comedy|Crime|Drama   2347      5
## 58                                                      Action   2423      5
## 59                                               Drama|Romance   2173      5
## 60                                                   Drama|War   2242      5
## 61                                     Adventure|Comedy|Sci-Fi   2156      5
## 62                                              Comedy|Romance   2834      5
## 63                                              Comedy|Romance   2299      5
## 64                                               Horror|Sci-Fi   2266      5
## 65                                     Adventure|Comedy|Sci-Fi   2275      5
## 66                                      Adventure|Comedy|Drama   2300      5
## 67                                                       Drama   2241      5
## 68                                      Action|Sci-Fi|Thriller   2596      5
## 69                                       Drama|Mystery|Romance   2157      5
## 70                                Comedy|Drama|Fantasy|Romance   2596      5
## 71                                        Crime|Drama|Thriller   2521      5
## 72                                      Comedy|Horror|Thriller   2227      5
## 73                                                Comedy|Drama   2290      5
## 74                                                       Drama   2553      5
## 75                                     Action|Adventure|Sci-Fi   2156      5
## 76                                              Comedy|Romance   2397      5
## 77                                               Comedy|Sci-Fi   2170      5
## 78                          Adventure|Children|Fantasy|Musical   2612      5
## 79                                  Film-Noir|Mystery|Thriller   2146      5
## 80                                  Action|Adventure|Drama|War   2641      5
## 81                                             Action|Thriller   2596      5
## 82                                                      Comedy   2308      5
## 83                                          Comedy|Crime|Drama   2363      5
## 84                                     Adventure|Comedy|Sci-Fi   2696      5
## 85                                              Comedy|Romance   2197      5
## 86                                     Crime|Film-Noir|Mystery   2775      5
## 87                                    Comedy|Drama|Romance|War   2637      5
## 88                                Action|Comedy|Fantasy|Sci-Fi   2151      5
## 89                                        Comedy|Drama|Romance   2361      5
## 90                       Comedy|Drama|Fantasy|Romance|Thriller   2850      5
## 91                                                   Drama|War   2763      5
## 92                                                Comedy|Drama   2821      5
## 93                                             Crime|Film-Noir   2275      5
## 94                                                Comedy|Drama   2174      5
## 95                               Action|Crime|Fantasy|Thriller   2240      5
## 96                                    Comedy|Drama|Romance|War   2150      5
## 97                                                      Comedy   2703      5
## 98                                 Comedy|Crime|Drama|Thriller   2561      5
## 99                         Comedy|Crime|Drama|Romance|Thriller   2233      5
## 100                                       Comedy|Drama|Romance   2574      5
## 101                                            Adventure|Drama   2744      5
## 102                                            Adventure|Drama   2720      5
## 103                                                  Drama|War   2392      5
## 104                                                      Drama   2305      5
## 105                                      Drama|Sci-Fi|Thriller   2696      5
## 106                                           Action|Drama|War   2446      5
## 107                 Animation|Children|Fantasy|Musical|Romance   2227      5
## 108                                                Crime|Drama   2709      5
## 109                           Crime|Film-Noir|Mystery|Thriller   2404      5
## 110                                       Comedy|Drama|Romance   2566      5
## 111                                      Crime|Horror|Thriller   2159      5
## 112                                       Action|Drama|Romance   2652      5
## 113                                   Action|Adventure|Fantasy   2801      5
## 114                                      Drama|Fantasy|Romance   2853      5
## 115                                         Comedy|Crime|Drama   2848      5
## 116                                      Drama|Mystery|Western   2385      5
## 117                                              Drama|Fantasy   2276      5
## 118                                       Comedy|Drama|Romance   2707      5
## 119                                     Action|Sci-Fi|Thriller   2566      5
## 120                                            Action|Thriller   2590      5
## 121                                                     Horror   2168      5
## 122                                         Drama|Thriller|War   2538      5
## 123                 Action|Crime|Drama|Mystery|Sci-Fi|Thriller   2572      5
## 124                            Action|Adventure|Comedy|Musical   2237      5
## 125                                           Adventure|Comedy   2534      5
## 126                                                Crime|Drama   2527      5
## 127                               Drama|Horror|Sci-Fi|Thriller   2780      5
## 128                                                     Comedy   2765      5
## 129                                  Action|Adventure|Thriller   2664      5
## 130                                      Action|Drama|Thriller   2861      5
## 131                                             Comedy|Romance   2562      5
## 132                                    Action|Adventure|Sci-Fi   2521      5
## 133                                      Action|Comedy|Western   2775      5
## 134                              Action|Horror|Sci-Fi|Thriller   2170      5
## 135                                             Comedy|Romance   2397      5
## 136                         Action|Comedy|Crime|Drama|Thriller   2558      5
## 137                                                Crime|Drama   2171      5
## 138                                                      Drama   2596      5
## 139                                                      Drama   2237      5
## 140                                                      Drama   2330      5
## 141                                         Comedy|Crime|Drama   2723      5
## 142                                    Action|Adventure|Sci-Fi   2329      5
## 143                                           Adventure|Comedy   2770      5
## 144                                   Action|Adventure|Fantasy   2574      5
## 145                          Action|Adventure|Mystery|Thriller   2858      5
## 146                                Comedy|Crime|Drama|Thriller   2275      5
## 147                                              Drama|Romance   2751      5
## 148                                       Comedy|Drama|Romance   2401      5
## 149                                      Crime|Horror|Thriller   2352      5
## 150                                 Adventure|Children|Fantasy   2132      5
## 151                              Action|Crime|Thriller|Western   2119      5
## 152                           Action|Adventure|Sci-Fi|Thriller   2127      5
## 153                                               Comedy|Drama   2798      5
## 154                                                     Comedy   2237      5
## 155                                            Action|Thriller   2385      5
## 156                                       Comedy|Drama|Romance   2460      5
## 157                                 Film-Noir|Mystery|Thriller   2424      5
## 158                                       Comedy|Drama|Romance   2438      5
## 159                                       Comedy|Drama|Romance   2293      5
## 160                                                Crime|Drama   2454      5
## 161                                Action|Adventure|Sci-Fi|War   2254      5
## 162                                Action|Crime|Drama|Thriller   2470      5
## 163                                    Action|Adventure|Sci-Fi   2221      5
## 164                                  Action|Adventure|Thriller   2858      5
## 165                                                      Drama   2409      5
## 166                                     Horror|Sci-Fi|Thriller   2266      5
## 167                                             Comedy|Musical   2848      5
## 168                                      Drama|Fantasy|Romance   2471      5
## 169                                                     Comedy   2671      5
## 170                                                Crime|Drama   2727      5
## 171                                           Action|Drama|War   2454      5
## 172                                            Action|Thriller   2675      5
## 173                                             Comedy|Fantasy   2696      5
## 174                                           Action|Drama|War   2745      5
## 175                                   Comedy|Drama|Romance|War   2614      5
## 176                                                      Drama   2290      5
## 177                                                Documentary   2444      5
## 178                                                      Drama   2123      5
## 179                                                     Comedy   2746      5
## 180                                                      Drama   2275      5
## 181                                        Action|Crime|Sci-Fi   2708      5
## 182                                                 Comedy|War   2526      5
## 183                                                     Comedy   2127      5
## 184                                    Action|Adventure|Sci-Fi   2349      5
## 185                                       Comedy|Drama|Romance   2129      5
## 186                                                      Drama   2252      5
## 187                       Crime|Drama|Fantasy|Romance|Thriller   2152      5
## 188                              Action|Horror|Sci-Fi|Thriller   2721      5
## 189                                            Adventure|Drama   2143      5
## 190                                                Crime|Drama   2548      5
## 191                                                      Drama   2146      5
## 192                                Comedy|Crime|Drama|Thriller   2177      5
## 193                                           Action|Drama|War   2368      5
## 194                                                     Comedy   2746      5
## 195                                                      Drama   2746      5
## 196                                        Action|Comedy|Crime   2731      5
## 197                                               Comedy|Drama   2310      5
## 198                                     Action|Sci-Fi|Thriller   2590      5
## 199                                      Action|Crime|Thriller   2452      5
## 200                              Drama|Horror|Mystery|Thriller   2801      5
## 201                                              Comedy|Sci-Fi   2534      5
## 202                                       Comedy|Drama|Fantasy   2305      5
## 203                                                      Drama   2505      5
## 204                                                      Drama   2696      5
## 205                Adventure|Animation|Children|Comedy|Fantasy   2459      5
## 206                           Crime|Film-Noir|Mystery|Thriller   2521      5
## 207                                                      Drama   2444      5
## 208                                    Adventure|Comedy|Sci-Fi   2237      5
## 209                                               Comedy|Drama   2330      5
## 210                                    Action|Adventure|Comedy   2254      5
## 211                                            Adventure|Drama   2745      5
## 212                                   Action|Adventure|Fantasy   2132      5
## 213                                  Action|Adventure|Thriller   2298      5
## 214                                                     Comedy   2652      5
## 215                                                      Drama   2461      5
## 216                                       Crime|Drama|Thriller   2675      5
## 217                                                Crime|Drama   2513      5
## 218                                             Comedy|Fantasy   2314      5
## 219                                               Drama|Horror   2787      5
## 220                                               Comedy|Drama   2553      5
## 221                                              Drama|Romance   2430      5
## 222                                      Action|Crime|Thriller   2742      5
## 223                                                      Drama   2503      5
## 224                                              Drama|Romance   2341      5
## 225                                                      Drama   2702      5
## 226  Adventure|Animation|Children|Comedy|Crime|Fantasy|Mystery   2765      5
## 227                                    Action|Adventure|Sci-Fi   2797      5
## 228                                               Comedy|Drama   2541      5
## 229                                                     Comedy   2424      5
## 230                                     Adventure|Comedy|Drama   2747      5
## 231                                   Animation|Comedy|Musical   2179      5
## 232                                               Drama|Horror   2113      5
## 233                           Action|Adventure|Sci-Fi|Thriller   2450      5
## 234                                           Action|Adventure   2512      5
## 235                                               Comedy|Crime   2653      5
## 236                Adventure|Animation|Children|Comedy|Fantasy   2305      5
## 237                                      Action|Crime|Thriller   2342      5
## 238                                             Comedy|Romance   2588      5
## 239                                         Drama|Thriller|War   2521      5
## 240                   Action|Adventure|Comedy|Romance|Thriller   2701      5
## 241                                                      Drama   2290      5
## 242                                             Comedy|Musical   2534      5
## 243                                                      Drama   2330      5
## 244                                                      Drama   2197      5
## 245                                           Action|Adventure   2227      5
## 246                                                Crime|Drama   2468      5
## 247                                             Comedy|Romance   2751      5
## 248                   Action|Adventure|Comedy|Romance|Thriller   2300      5
## 249                                    Action|Adventure|Sci-Fi   2515      5
## 250                                         Animation|Children   2566      5
## 251                                         Comedy|Crime|Drama   2367      5
## 252                                  Drama|Romance|War|Western   2379      5
## 253                                              Comedy|Sci-Fi   2425      5
## 254                                                      Drama   2399      5
## 255                             Action|Adventure|Drama|Romance   2703      5
## 256                                    Children|Comedy|Fantasy   2765      5
## 257                                         Comedy|Crime|Drama   2858      5
## 258                          Action|Adventure|Romance|Thriller   2263      5
## 259                                        Action|Comedy|Drama   2675      5
## 260                                                      Drama   2368      5
## 261                                             Comedy|Romance   2703      5
## 262                                                     Comedy   2650      5
## 263                                       Comedy|Drama|Fantasy   2243      5
## 264                                         Drama|Thriller|War   2827      5
## 265                                              Comedy|Sci-Fi   2596      5
## 266                                                      Drama   2839      5
## 267                                      Drama|Musical|Romance   2512      5
## 268                                                Crime|Drama   2602      5
## 269                                                      Drama   2410      5
## 270                                              Drama|Romance   2254      5
## 271                                      Comedy|Drama|Thriller   2679      5
## 272                          Action|Adventure|Romance|Thriller   2825      5
## 273                                     Action|Sci-Fi|Thriller   2574      5
## 274                                            Adventure|Drama   2511      5
## 275                                      Children|Drama|Sci-Fi   2746      5
## 276                                                Documentary   2457      5
## 277                                 Adventure|Animation|Comedy   2286      5
## 278                                      Action|Crime|Thriller   2259      5
## 279                              Comedy|Fantasy|Romance|Sci-Fi   2468      5
## 280                                             Drama|Thriller   2361      5
## 281                                    Action|Adventure|Sci-Fi   2741      5
## 282                                                      Drama   2129      5
## 283                                     Action|Sci-Fi|Thriller   2353      5
## 284                                                     Comedy   2204      5
## 285                                                   Thriller   2675      5
## 286                                                  Drama|War   2689      5
## 287                                    Action|Adventure|Sci-Fi   2729      5
## 288                                  Action|Adventure|Thriller   2821      5
## 289                                       Comedy|Drama|Romance   2468      5
## 290                                              Action|Horror   2686      5
## 291                                                      Drama   2170      5
## 292                Adventure|Animation|Children|Comedy|Musical   2746      5
## 293                                      Action|Comedy|Romance   2821      5
## 294                                             Comedy|Musical   2829      5
## 295                                Comedy|Crime|Drama|Thriller   2318      5
## 296                           Action|Adventure|Sci-Fi|Thriller   2232      5
## 297                                                     Comedy   2684      5
## 298                                             Comedy|Romance   2379      5
## 299                                             Children|Drama   2466      5
## 300                                    Children|Comedy|Fantasy   2423      5
## 301                                      Crime|Horror|Thriller   2696      5
## 302                                                     Comedy   2338      5
## 303                                      Comedy|Crime|Thriller   2385      5
## 304                                                Documentary   2675      5
## 305                                       Comedy|Drama|Romance   2504      5
## 306                                Comedy|Crime|Drama|Thriller   2596      5
## 307                                              Action|Horror   2675      5
## 308                                                     Sci-Fi   2871      5
## 309                               Crime|Drama|Romance|Thriller   2878      5
## 310                                         Comedy|Crime|Drama   2596      5
## 311                                                      Drama   2127      5
## 312                                         Comedy|Crime|Drama   2821      5
## 313                                             Comedy|Romance   2744      5
## 314                         Adventure|Children|Fantasy|Musical   2703      5
## 315                                    Action|Adventure|Sci-Fi   2300      5
## 316                                       Crime|Drama|Thriller   2342      5
## 317                                Action|Comedy|Crime|Fantasy   2727      5
## 318                                                      Drama   2745      5
## 319                                    Adventure|Comedy|Sci-Fi   2374      5
## 320                                             Comedy|Romance   2252      5
## 321                 Adventure|Animation|Children|Comedy|Sci-Fi   2152      5
## 322                                  Action|Adventure|Thriller   2498      5
## 323                                                      Drama   2751      5
## 324                                                     Comedy   2132      5
## 325                                              Drama|Romance   2413      5
## 326                                               Comedy|Crime   2160      5
## 327                                                Documentary   2492      5
## 328                                       Comedy|Drama|Romance   2783      5
## 329                                               Comedy|Drama   2380      5
## 330                               Comedy|Drama|Fantasy|Romance   2226      5
## 331                                      Action|Crime|Thriller   2660      5
## 332                                     Action|Adventure|Drama   2446      5
## 333                                      Drama|Horror|Thriller   2146      5
## 334                                                     Action   2826      5
## 335                                    Adventure|Comedy|Sci-Fi   2330      5
## 336                                Action|Crime|Drama|Thriller   2452      5
## 337                                   Action|Adventure|Romance   2227      5
## 338                                               Comedy|Drama   2596      5
## 339                                   Comedy|Drama|Romance|War   2293      5
## 340                                             Comedy|Romance   2809      5
## 341                                       Comedy|Drama|Fantasy   2631      5
## 342                            Action|Adventure|Comedy|Fantasy   2593      5
## 343                               Comedy|Drama|Fantasy|Romance   2515      5
## 344                                                      Drama   2674      5
## 345                                                     Comedy   2572      5
## 346                                               Comedy|Drama   2152      5
## 347                                Crime|Drama|Sci-Fi|Thriller   2286      5
## 348                                               Comedy|Drama   2703      5
## 349                                       Comedy|Drama|Romance   2809      5
## 350                                  Action|Adventure|Thriller   2594      5
## 351                                                Crime|Drama   2668      5
## 352                              Crime|Horror|Mystery|Thriller   2572      5
## 353                            Children|Comedy|Fantasy|Musical   2211      5
## 354                                   Action|Adventure|Fantasy   2523      5
## 355                                      Drama|Fantasy|Romance   2753      5
## 356                                   Comedy|Drama|Romance|War   2180      5
## 357                 Action|Crime|Drama|Mystery|Sci-Fi|Thriller   2858      5
## 358                                                      Drama   2468      5
## 359                                            Horror|Thriller   2424      5
## 360                                                   Thriller   2804      5
## 361                               Crime|Drama|Romance|Thriller   2515      5
## 362                          Action|Adventure|Romance|Thriller   2758      5
## 363                                             Comedy|Romance   2648      5
## 364                                                      Drama   2522      5
## 365                                               Comedy|Drama   2670      5
## 366                                              Drama|Romance   2174      5
## 367                                            Horror|Thriller   2612      5
## 368                                           Adventure|Sci-Fi   2398      5
## 369                                                     Comedy   2764      5
## 370                                                     Comedy   2377      5
## 371                                Crime|Drama|Sci-Fi|Thriller   2267      5
## 372                                              Drama|Romance   2433      5
## 373                                                      Drama   2522      5
## 374                                              Drama|Romance   2424      5
## 375                                              Comedy|Sci-Fi   2374      5
## 376                          Action|Adventure|Mystery|Thriller   2496      5
## 377                             Action|Adventure|Drama|Fantasy   2715      5
## 378                                      Action|Comedy|Western   2765      5
## 379                                     Adventure|Comedy|Drama   2809      5
## 380                                      Comedy|Crime|Thriller   2401      5
## 381                                      Action|Drama|Thriller   2578      5
## 382                                  Action|Adventure|Thriller   2660      5
## 383                                     Crime|Mystery|Thriller   2829      5
## 384                                Action|Crime|Drama|Thriller   2780      5
## 385                              Comedy|Fantasy|Romance|Sci-Fi   2573      5
## 386                                                      Drama   2126      5
## 387                                                      Drama   2152      5
## 388                                               Comedy|Drama   2260      5
## 389                Adventure|Animation|Children|Comedy|Musical   2575      5
## 390                             Drama|Mystery|Romance|Thriller   2665      5
## 391                                Action|Adventure|Sci-Fi|War   2787      5
## 392                Adventure|Animation|Children|Comedy|Musical   2764      5
## 393                                             Comedy|Romance   2747      5
## 394                                                     Comedy   2512      5
## 395                        Adventure|Animation|Children|Comedy   2361      5
## 396                Adventure|Animation|Children|Comedy|Fantasy   2237      5
## 397                             Crime|Drama|Film-Noir|Thriller   2515      5
## 398                Adventure|Animation|Children|Comedy|Musical   2716      5
## 399                                              Drama|Romance   2470      5
## 400                                  Action|Adventure|Thriller   2825      5
## 401                                     Horror|Sci-Fi|Thriller   2692      5
## 402                           Action|Adventure|Sci-Fi|Thriller   2860      5
## 403                                       Comedy|Drama|Romance   2515      5
## 404                                       Comedy|Drama|Romance   2707      5
## 405                                       Comedy|Drama|Romance   2859      5
## 406                                     Drama|Mystery|Thriller   2802      5
## 407                               Action|Drama|Sci-Fi|Thriller   2411      5
## 408                                Comedy|Crime|Drama|Thriller   2780      5
## 409                                                      Drama   2877      5
## 410                       Comedy|Drama|Fantasy|Horror|Thriller   2396      5
## 411                        Adventure|Animation|Children|Comedy   2237      5
## 412                                                      Drama   2315      5
## 413                                       Comedy|Drama|Romance   2500      5
## 414                                                      Drama   2746      5
## 415                                       Comedy|Drama|Romance   2506      5
## 416                                                     Comedy   2764      5
## 417                                             Comedy|Romance   2335      5
## 418                                                      Drama   2497      5
## 419                                     Action|Adventure|Drama   2791      5
## 420                                                      Drama   2553      5
## 421                                              Drama|Romance   2312      5
## 422                                      Crime|Horror|Thriller   2746      5
## 423                                     Drama|Mystery|Thriller   2386      5
## 424                                    Action|Adventure|Sci-Fi   2624      5
## 425                                                     Horror   2745      5
## 426                                Comedy|Crime|Drama|Thriller   2241      5
## 427                                                      Drama   2227      5
## 428                           Action|Adventure|Sci-Fi|Thriller   2149      5
## 429                                      Drama|Fantasy|Romance   2720      5
## 430                                Action|Adventure|Sci-Fi|War   2560      5
## 431                                                      Drama   2765      5
## 432                           Action|Adventure|Sci-Fi|Thriller   2641      5
## 433                                                  Drama|War   2596      5
## 434                              Children|Comedy|Drama|Fantasy   2323      5
## 435                                                      Drama   2703      5
## 436        Adventure|Animation|Children|Comedy|Musical|Romance   2716      5
## 437                                       Comedy|Drama|Romance   2551      5
## 438                                Action|Adventure|Sci-Fi|War   2576      5
## 439                                                     Comedy   2486      5
## 440                                                     Comedy   2671      5
## 441                                             Drama|Thriller   2490      5
## 442                                    Action|Adventure|Sci-Fi   2622      5
## 443                                    Action|Adventure|Sci-Fi   2780      5
## 444                                                      Drama   2197      5
## 445                                               Comedy|Drama   2695      5
## 446                                Action|Crime|Drama|Thriller   2642      5
## 447                                Action|Crime|Drama|Thriller   2438      5
## 448                                                      Drama   2675      5
## 449                     Action|Adventure|Comedy|Fantasy|Horror   2622      5
## 450                                      Crime|Horror|Thriller   2118      5
## 451                                                     Comedy   2487      5
## 452                                                      Drama   2392      5
## 453                                                     Comedy   2774      5
## 454                             Adventure|Comedy|Drama|Western   2602      5
## 455                                           Adventure|Sci-Fi   2349      5
## 456                                                      Drama   2330      5
## 457                                             Comedy|Musical   2566      5
## 458                                                      Drama   2468      5
## 459        Adventure|Animation|Children|Comedy|Fantasy|Romance   2255      5
## 460                 Action|Adventure|Animation|Children|Comedy   2385      5
## 461                                                      Drama   2371      5
## 462                                             Comedy|Romance   2858      5
## 463                                    Action|Adventure|Sci-Fi   2624      5
## 464                                               Comedy|Crime   2481      5
## 465                                             Comedy|Fantasy   2539      5
## 466                                             Drama|Thriller   2566      5
## 467                                           Action|Drama|War   2132      5
## 468                                Action|Crime|Drama|Thriller   2443      5
## 469                                                    Romance   2255      5
## 470                                              Drama|Romance   2809      5
## 471                                                Crime|Drama   2350      5
## 472                                             Drama|Thriller   2167      5
## 473                                    Action|Romance|Thriller   2361      5
## 474                                     Action|Sci-Fi|Thriller   2810      5
## 475                                                Crime|Drama   2115      5
## 476                                           Adventure|Comedy   2129      5
## 477                                     Drama|Mystery|Thriller   2319      5
## 478                             Children|Comedy|Fantasy|Sci-Fi   2496      5
## 479                                       Comedy|Drama|Romance   2729      5
## 480                                    Action|Adventure|Sci-Fi   2125      5
## 481                              Crime|Horror|Mystery|Thriller   2424      5
## 482                                                Crime|Drama   2186      5
## 483                                    Comedy|Mystery|Thriller   2690      5
## 484                                       Action|Comedy|Horror   2722      5
## 485                                                   Thriller   2461      5
## 486                                       Comedy|Drama|Fantasy   2828      5
## 487                                             Drama|Thriller   2293      5
## 488                         Animation|Children|Fantasy|Musical   2675      5
## 489                                         Comedy|Crime|Drama   2142      5
## 490                                            Horror|Thriller   2526      5
## 491                                               Comedy|Drama   2765      5
## 492                           Action|Adventure|Sci-Fi|Thriller   2602      5
## 493                    Action|Adventure|Comedy|Fantasy|Romance   2696      5
## 494                 Action|Adventure|Animation|Children|Comedy   2862      5
## 495                                                     Comedy   2770      5
## 496                                              Action|Sci-Fi   2576      5
## 497                                    Action|Adventure|Sci-Fi   2690      5
## 498                                       Action|Drama|Romance   2300      5
## 499                                                      Drama   2275      5
## 500                                    Action|Romance|Thriller   2446      5
## 501                                              Drama|Western   2846      5
## 502                                                  Drama|War   2526      5
## 503                                                  Drama|War   2588      5
## 504                                            Children|Comedy   2434      5
## 505                                Comedy|Crime|Drama|Thriller   2258      5
## 506                                     Action|Sci-Fi|Thriller   2696      5
## 507                                               Comedy|Drama   2515      5
## 508                               Adventure|Comedy|Romance|War   2460      5
## 509                                     Adventure|Drama|Sci-Fi   2661      5
## 510                                      Action|Drama|Thriller   2469      5
## 511                                                     Comedy   2671      5
## 512                                                      Drama   2192      5
## 513                                                  Drama|War   2601      5
## 514                                   Adventure|Comedy|Fantasy   2424      5
## 515                                               Comedy|Drama   2703      5
## 516                                               Comedy|Drama   2783      5
## 517                                       Comedy|Drama|Romance   2226      5
## 518                                      Action|Comedy|Western   2603      5
## 519                                   Drama|Film-Noir|Thriller   2515      5
## 520                                            Adventure|Drama   2718      5
## 521                                      Action|Drama|Thriller   2774      5
## 522                                                      Drama   2707      5
## 523                                                      Drama   2246      5
## 524                                    Action|Adventure|Sci-Fi   2181      5
## 525                                   Animation|Fantasy|Horror   2810      5
## 526                                              Drama|Romance   2596      5
## 527                                   Comedy|Drama|Romance|War   2803      5
## 528                                       Comedy|Drama|Romance   2515      5
## 529                                                     Comedy   2747      5
## 530                                                      Drama   2765      5
## 531                                   Crime|Film-Noir|Thriller   2665      5
## 532                                                  Drama|War   2707      5
## 533                                     Adventure|Drama|Sci-Fi   2267      5
## 534                                              Action|Sci-Fi   2207      5
## 535                         Action|Comedy|Crime|Drama|Thriller   2689      5
## 536                           Crime|Film-Noir|Mystery|Thriller   2414      5
## 537                                           Action|Adventure   2602      5
## 538                                             Drama|Thriller   2707      5
## 539                                      Drama|Musical|Romance   2237      5
## 540                                            Action|Thriller   2641      5
## 541                           Crime|Film-Noir|Mystery|Thriller   2747      5
## 542                               Comedy|Drama|Fantasy|Romance   2475      5
## 543                                Action|Comedy|Crime|Romance   2816      5
## 544                                                     Comedy   2508      5
## 545                                    Action|Adventure|Sci-Fi   2659      5
## 546                                                      Drama   2466      5
## 547                                      Drama|Musical|Romance   2588      5
## 548                                              Drama|Romance   2358      5
## 549                                    Action|Adventure|Sci-Fi   2344      5
## 550                                                      Drama   2382      5
## 551                                       Comedy|Drama|Romance   2240      5
## 552                                               Comedy|Drama   2763      5
## 553                                         Adventure|Children   2275      5
## 554                                              Drama|Romance   2739      5
## 555                                                     Comedy   2818      5
## 556                                      Crime|Horror|Thriller   2788      5
## 557                           Action|Adventure|Sci-Fi|Thriller   2413      5
## 558                                                     Action   2787      5
## 559                     Crime|Drama|Film-Noir|Mystery|Thriller   2121      5
## 560                                                     Comedy   2112      5
## 561                                             Comedy|Romance   2166      5
## 562                                   Comedy|Drama|Romance|War   2590      5
## 563                                   Action|Adventure|Fantasy   2154      5
## 564                                                      Drama   2641      5
## 565                                                      Drama   2202      5
## 566                                                      Drama   2720      5
## 567                                              Drama|Romance   2616      5
## 568                           Action|Adventure|Sci-Fi|Thriller   2468      5
## 569                                   Action|Adventure|Fantasy   2300      5
## 570                                              Drama|Romance   2506      5
## 571                                            Horror|Thriller   2765      5
## 572                                                     Horror   2612      5
## 573                           Crime|Film-Noir|Mystery|Thriller   2170      5
## 574                                                     Comedy   2237      5
## 575                                   Action|Adventure|Fantasy   2398      5
## 576                                             Drama|Thriller   2505      5
## 577                                       Comedy|Drama|Fantasy   2641      5
## 578                                                      Drama   2137      5
## 579                                       Comedy|Drama|Romance   2828      5
## 580                               Crime|Drama|Romance|Thriller   2707      5
## 581                                                Crime|Drama   2611      5
## 582                          Action|Adventure|Mystery|Thriller   2165      5
## 583                    Action|Adventure|Comedy|Fantasy|Romance   2577      5
## 584                                                Crime|Drama   2590      5
## 585                                            Adventure|Drama   2780      5
## 586                                    Action|Romance|Thriller   2252      5
## 587                            Children|Comedy|Fantasy|Musical   2746      5
## 588                                         Comedy|Crime|Drama   2649      5
## 589                                  Action|Comedy|Crime|Drama   2764      5
## 590                                                Crime|Drama   2238      5
## 591                                      Action|Crime|Thriller   2550      5
## 592                              Action|Horror|Sci-Fi|Thriller   2841      5
## 593                                                Documentary   2492      5
## 594                                       Comedy|Drama|Romance   2782      5
## 595                              Drama|Romance|Sci-Fi|Thriller   2690      5
## 596                              Action|Adventure|Drama|Sci-Fi   2221      5
## 597                                             Comedy|Romance   2821      5
## 598                                                      Drama   2810      5
## 599                                              Drama|Romance   2401      5
## 600                                             Comedy|Fantasy   2380      5
## 601                                             Comedy|Romance   2133      5
## 602                                             Comedy|Western   2756      5
## 603                                               Comedy|Drama   2242      5
## 604                                               Action|Drama   2434      5
## 605                                                      Drama   2853      5
## 606                         Animation|Children|Fantasy|Musical   2225      5
## 607                                           Adventure|Sci-Fi   2641      5
## 608                                             Comedy|Romance   2579      5
## 609                                                    Western   2485      5
## 610                                                Crime|Drama   2867      5
## 611                                              Drama|Fantasy   2775      5
## 612                                Action|Crime|Drama|Thriller   2324      5
## 613                              Children|Comedy|Drama|Fantasy   2865      5
## 614                                                Crime|Drama   2675      5
## 615                                         Comedy|Crime|Drama   2371      5
## 616                         Animation|Children|Fantasy|Musical   2867      5
## 617                                                     Comedy   2566      5
## 618                                                   Thriller   2396      5
## 619                                   Comedy|Drama|Romance|War   2701      5
## 620                             Adventure|Comedy|Drama|Musical   2398      5
## 621                                                  Drama|War   2305      5
## 622                                               Comedy|Crime   2703      5
## 623                                    Mystery|Sci-Fi|Thriller   2699      5
## 624                           Action|Adventure|Sci-Fi|Thriller   2170      5
## 625                                          Drama|Romance|War   2553      5
## 626                                 Animation|Children|Musical   2465      5
## 627                                       Crime|Drama|Thriller   2780      5
## 628                                                      Drama   2292      5
## 629                                     Action|Sci-Fi|Thriller   2827      5
## 630                                                      Drama   2290      5
## 631                                                      Drama   2275      5
## 632                                    Adventure|Drama|Western   2424      5
## 633                                           Action|Drama|War   2172      5
## 634                                        Action|Comedy|Crime   2435      5
## 635                                                  Drama|War   2483      5
## 636                                                      Drama   2290      5
## 637                                              Action|Comedy   2170      5
## 638                Adventure|Animation|Children|Comedy|Fantasy   2330      5
## 639                            Animation|Children|Comedy|Crime   2708      5
## 640                       Action|Crime|Mystery|Sci-Fi|Thriller   2345      5
## 641                                            Horror|Thriller   2330      5
## 642                                            Adventure|Drama   2330      5
## 643                                       Crime|Drama|Thriller   2286      5
## 644                                              Drama|Fantasy   2466      5
## 645                                              Drama|Romance   2552      5
## 646                               Drama|Horror|Sci-Fi|Thriller   2204      5
## 647                                            Musical|Romance   2288      5
## 648                                                Crime|Drama   2553      5
## 649                                Crime|Drama|Sci-Fi|Thriller   2237      5
## 650                                                      Drama   2623      5
## 651                               Comedy|Drama|Fantasy|Romance   2379      5
## 652                                Comedy|Crime|Drama|Thriller   2742      5
## 653                                                Crime|Drama   2433      5
## 654                                       Comedy|Drama|Romance   2385      5
## 655                                                  Drama|War   2720      5
## 656                                                      Drama   2637      5
## 657                                      Comedy|Crime|Thriller   2515      5
## 658                                    Action|Adventure|Sci-Fi   2227      5
## 659                                              Drama|Romance   2871      5
## 660                                  Action|Adventure|Thriller   2827      5
## 661                                                      Drama   2466      5
## 662                                  Action|Adventure|Thriller   2268      5
## 663                                                Crime|Drama   2765      5
## 664                                Action|Crime|Drama|Thriller   2170      5
## 665                                   Comedy|Drama|Romance|War   2424      5
## 666                                                     Comedy   2275      5
## 667                                              Drama|Romance   2539      5
## 668                                           Action|Drama|War   2369      5
## 669                                   Action|Adventure|Romance   2515      5
## 670                                      Drama|Mystery|Romance   2440      5
## 671                                     Comedy|Fantasy|Romance   2858      5
## 672                                               Comedy|Drama   2809      5
## 673                                                      Drama   2191      5
## 674                                Comedy|Crime|Drama|Thriller   2404      5
## 675                                                     Comedy   2504      5
## 676                                            Horror|Thriller   2765      5
## 677                                    Action|Adventure|Sci-Fi   2168      5
## 678                                   Comedy|Drama|Romance|War   2624      5
## 679                                                Documentary   2473      5
## 680                                         Comedy|Crime|Drama   2865      5
## 681        Adventure|Animation|Children|Comedy|Musical|Romance   2813      5
## 682                                                Crime|Drama   2425      5
## 683                                                     Comedy   2682      5
## 684                                     Drama|Mystery|Thriller   2165      5
## 685                                 Action|Adventure|Drama|War   2324      5
## 686                               Comedy|Drama|Fantasy|Romance   2521      5
## 687                                          Drama|Romance|War   2503      5
## 688                                              Drama|Romance   2607      5
## 689                        Adventure|Animation|Children|Comedy   2486      5
## 690                               Action|Comedy|Crime|Thriller   2713      5
## 691                                           Action|Drama|War   2726      5
## 692                                Comedy|Crime|Drama|Thriller   2247      5
## 693                                 Adventure|Mystery|Thriller   2736      5
## 694                                              Drama|Romance   2825      5
## 695                                             Comedy|Romance   2228      5
## 696                                   Animation|Children|Drama   2123      5
## 697                                                  Film-Noir   2534      5
## 698                                      Action|Crime|Thriller   2379      5
## 699                                      Drama|Sci-Fi|Thriller   2117      5
## 700                                               Comedy|Crime   2267      5
## 701                   Action|Adventure|Comedy|Romance|Thriller   2160      5
## 702                                                  Drama|War   2553      5
## 703                                      Crime|Horror|Thriller   2828      5
## 704                                         Comedy|Crime|Drama   2396      5
## 705                                                Documentary   2170      5
## 706                                       Comedy|Drama|Romance   2275      5
## 707                                          Adventure|Western   2564      5
## 708                                                     Comedy   2460      5
## 709                       Crime|Drama|Fantasy|Romance|Thriller   2522      5
## 710                                    Action|Adventure|Sci-Fi   2741      5
## 711                                       Comedy|Drama|Fantasy   2877      5
## 712                                        Crime|Drama|Romance   2590      5
## 713                                    Adventure|Comedy|Sci-Fi   2401      5
## 714                          Action|Adventure|Animation|Sci-Fi   2800      5
## 715                                                      Drama   2517      5
## 716                                                      Drama   2169      5
## 717                                     Crime|Mystery|Thriller   2596      5
## 718                                               Comedy|Drama   2174      5
## 719                                                     Comedy   2675      5
## 720                                  Animation|Children|Comedy   2747      5
## 721                                               Action|Drama   2385      5
## 722                                                  Drama|War   2233      5
## 723                                 Action|Adventure|Drama|War   2267      5
## 724                                              Action|Sci-Fi   2801      5
## 725                   Action|Adventure|Animation|Drama|Fantasy   2838      5
## 726                                       Crime|Drama|Thriller   2685      5
## 727                                             Comedy|Romance   2523      5
## 728                                  Action|Adventure|Thriller   2227      5
## 729                                              Action|Sci-Fi   2374      5
## 730                                            Adventure|Drama   2845      5
## 731                                            Action|Thriller   2468      5
## 732                                   Comedy|Drama|Romance|War   2255      5
## 733                                                   Thriller   2132      5
## 734                                       Crime|Drama|Thriller   2685      5
## 735                                              Drama|Romance   2833      5
## 736                                                      Drama   2497      5
## 737                                               Comedy|Drama   2188      5
## 738                                                Crime|Drama   2118      5
## 739                                      Crime|Horror|Thriller   2285      5
## 740                                         Action|Crime|Drama   2283      5
## 741                                         Action|Fantasy|War   2496      5
## 742                            Children|Comedy|Fantasy|Musical   2582      5
## 743                          Drama|Fantasy|Horror|Thriller|War   2573      5
## 744                                Comedy|Crime|Drama|Thriller   2208      5
## 745                                               Drama|Sci-Fi   2698      5
## 746                                            Adventure|Drama   2113      5
## 747                                                      Drama   2675      5
## 748                              Action|Adventure|Drama|Sci-Fi   2300      5
## 749                                  Action|Adventure|Thriller   2728      5
## 750                                                      Drama   2118      5
## 751                                         Adventure|Children   2317      5
## 752                Adventure|Animation|Children|Comedy|Musical   2225      5
## 753                                                     Comedy   2798      5
## 754                                                      Drama   2255      5
## 755                                      Action|Comedy|Western   2435      5
## 756                                                      Drama   2627      5
## 757                                  Action|Adventure|Thriller   2156      5
## 758                            Action|Adventure|Comedy|Fantasy   2385      5
## 759                                  Action|Adventure|Thriller   2660      5
## 760                                       Comedy|Drama|Romance   2122      5
## 761                                     Drama|Mystery|Thriller   2681      5
## 762                              Comedy|Crime|Mystery|Thriller   2326      5
## 763                              Comedy|Fantasy|Romance|Sci-Fi   2508      5
## 764                                        Action|Crime|Sci-Fi   2425      5
## 765                                                  Drama|War   2522      5
## 766        Adventure|Animation|Children|Comedy|Fantasy|Romance   2818      5
## 767                                      Crime|Horror|Thriller   2246      5
## 768                                               Comedy|Crime   2861      5
## 769                                       Comedy|Drama|Romance   2490      5
## 770                                                      Drama   2711      5
## 771                                              Drama|Romance   2513      5
## 772                                    Action|Adventure|Sci-Fi   2562      5
## 773                                Comedy|Crime|Drama|Thriller   2398      5
## 774  Adventure|Animation|Children|Comedy|Crime|Fantasy|Mystery   2227      5
## 775                               Crime|Drama|Mystery|Thriller   2322      5
## 776                                      Crime|Drama|Film-Noir   2515      5
## 777                           Crime|Film-Noir|Mystery|Thriller   2731      5
## 778                          Action|Adventure|Romance|Thriller   2668      5
## 779                                   Comedy|Drama|Romance|War   2753      5
## 780                                     Drama|Mystery|Thriller   2250      5
## 781                                                Crime|Drama   2182      5
## 782                                    Children|Comedy|Fantasy   2612      5
## 783                                                      Drama   2825      5
## 784                                              Drama|Romance   2133      5
## 785                                      Action|Crime|Thriller   2385      5
## 786                                                  Drama|War   2139      5
## 787                                             Comedy|Romance   2809      5
## 788                                 Adventure|Mystery|Thriller   2616      5
## 789                                                      Drama   2262      5
## 790                                Comedy|Crime|Drama|Thriller   2641      5
## 791                                   Comedy|Drama|Romance|War   2350      5
## 792                                 Animation|Children|Fantasy   2315      5
## 793                                                      Drama   2237      5
## 794                              Action|Crime|Romance|Thriller   2572      5
## 795                                     Action|Sci-Fi|Thriller   2469      5
## 796                           Action|Adventure|Sci-Fi|Thriller   2498      5
## 797                                                      Drama   2413      5
## 798                                                      Drama   2623      5
## 799                                                     Comedy   2160      5
## 800                                    Action|Adventure|Sci-Fi   2252      5
## 801                                                     Comedy   2809      5
## 802                                          Film-Noir|Mystery   2330      5
## 803                                                      Drama   2424      5
## 804                                                      Drama   2457      5
## 805                                               Comedy|Drama   2404      5
## 806                                                   Thriller   2150      5
## 807                                                  Drama|War   2745      5
## 808                                       Crime|Drama|Thriller   2241      5
## 809                    Action|Adventure|Comedy|Fantasy|Romance   2747      5
## 810                                                      Drama   2204      5
## 811                                              Drama|Romance   2438      5
## 812                                Comedy|Crime|Drama|Thriller   2327      5
## 813                           Crime|Film-Noir|Mystery|Thriller   2522      5
## 814                            Children|Comedy|Fantasy|Musical   2231      5
## 815                                                      Drama   2398      5
## 816                                   Adventure|Children|Drama   2720      5
## 817                                 Adventure|Children|Fantasy   2624      5
## 818                                                      Drama   2707      5
## 819                                    Action|Adventure|Sci-Fi   2834      5
## 820                                    Action|Adventure|Sci-Fi   2862      5
## 821                                             Comedy|Romance   2696      5
## 822                                                     Comedy   2821      5
## 823                          Adventure|Children|Comedy|Musical   2659      5
## 824                                  Animation|Children|Comedy   2857      5
## 825                                                  Drama|War   2596      5
## 826                        Action|Comedy|Fantasy|Horror|Sci-Fi   2593      5
## 827                                   Comedy|Drama|Romance|War   2749      5
## 828                                     Comedy|Musical|Romance   2250      5
## 829                                             Comedy|Romance   2724      5
## 830                                    Action|Adventure|Comedy   2359      5
## 831                                                      Drama   2695      5
## 832                                       Crime|Drama|Thriller   2763      5
## 833                                     Crime|Mystery|Thriller   2770      5
## 834                                                      Drama   2765      5
## 835                                               Comedy|Drama   2670      5
## 836                                    Action|Adventure|Sci-Fi   2551      5
## 837                                 Animation|Children|Musical   2398      5
## 838                                        Action|Comedy|Crime   2385      5
## 839                                      Action|Drama|Thriller   2581      5
## 840                                              Comedy|Sci-Fi   2649      5
## 841                                               Drama|Horror   2477      5
## 842                                    Action|Romance|Thriller   2472      5
## 843                                                      Drama   2871      5
## 844                                               Comedy|Drama   2283      5
## 845                                       Comedy|Drama|Romance   2242      5
## 846                                   Comedy|Drama|Romance|War   2850      5
## 847                                              Drama|Romance   2534      5
## 848                                                      Drama   2204      5
## 849                             Drama|Mystery|Romance|Thriller   2720      5
## 850                                                      Drama   2590      5
## 851                                           Action|Drama|War   2323      5
## 852                              Crime|Horror|Mystery|Thriller   2468      5
## 853                                            Action|Thriller   2555      5
## 854                               Action|Comedy|Crime|Thriller   2406      5
## 855                                                     Comedy   2826      5
## 856                       Action|Crime|Mystery|Sci-Fi|Thriller   2237      5
## 857                               Action|Comedy|Fantasy|Sci-Fi   2835      5
## 858                                            Sci-Fi|Thriller   2612      5
## 859                            Animation|Children|Comedy|Crime   2579      5
## 860                                               Action|Drama   2799      5
## 861                                    Action|Adventure|Sci-Fi   2877      5
## 862                              Crime|Horror|Mystery|Thriller   2157      5
## 863                                           Mystery|Thriller   2853      5
## 864                           Action|Adventure|Sci-Fi|Thriller   2758      5
## 865                                               Comedy|Crime   2764      5
## 866                                           Adventure|Comedy   2461      5
## 867                                      Action|Comedy|Western   2553      5
## 868                                           Comedy|Drama|War   2275      5
## 869                                              Drama|Romance   2534      5
## 870                                                      Drama   2424      5
## 871                                Action|Crime|Drama|Thriller   2340      5
## 872                                               Comedy|Crime   2409      5
## 873                                                      Drama   2335      5
## 874                                           Action|Adventure   2240      5
## 875                                      Comedy|Fantasy|Sci-Fi   2764      5
## 876                                      Drama|Horror|Thriller   2665      5
## 877                                                Crime|Drama   2512      5
## 878                   Action|Adventure|Fantasy|Horror|Thriller   2858      5
## 879                                     Comedy|Musical|Romance   2765      5
## 880                                               Comedy|Drama   2764      5
## 881                                    Action|Adventure|Sci-Fi   2727      5
## 882                              Comedy|Fantasy|Romance|Sci-Fi   2673      5
## 883                                    Action|Adventure|Sci-Fi   2221      5
## 884                                      Crime|Horror|Thriller   2836      5
## 885                                        Adventure|Drama|War   2522      5
## 886                                           Action|Adventure   2637      5
## 887                                                      Drama   2427      5
## 888                             Crime|Drama|Film-Noir|Thriller   2330      5
## 889                               Crime|Drama|Romance|Thriller   2322      5
## 890                                                      Drama   2770      5
## 891                                      Crime|Horror|Thriller   2794      5
## 892                                                      Drama   2770      5
## 893                           Crime|Film-Noir|Mystery|Thriller   2765      5
## 894                 Adventure|Animation|Children|Comedy|Sci-Fi   2857      5
## 895                             Drama|Mystery|Romance|Thriller   2703      5
## 896                                                     Comedy   2722      5
## 897                                            Action|Thriller   2414      5
## 898                                    Action|Adventure|Sci-Fi   2252      5
## 899                                                      Drama   2707      5
## 900                                                Crime|Drama   2481      5
## 901                                                 Comedy|War   2696      5
## 902                                   Comedy|Drama|Romance|War   2840      5
## 903                                                     Comedy   2156      5
## 904                                               Comedy|Drama   2171      5
## 905                                      Action|Crime|Thriller   2393      5
## 906                                      Drama|Sci-Fi|Thriller   2331      5
## 907                     Action|Adventure|Comedy|Fantasy|Horror   2576      5
## 908                             Drama|Mystery|Romance|Thriller   2611      5
## 909                                              Drama|Romance   2570      5
## 910                                   Adventure|Comedy|Western   2821      5
## 911                                Comedy|Drama|Romance|Sci-Fi   2756      5
## 912                                                      Drama   2330      5
## 913                                    Action|Adventure|Sci-Fi   2154      5
## 914                      Action|Drama|Mystery|Romance|Thriller   2460      5
## 915                                   Comedy|Drama|Romance|War   2464      5
## 916                                       Comedy|Drama|Romance   2397      5
## 917                                             Comedy|Musical   2305      5
## 918                Adventure|Animation|Children|Comedy|Fantasy   2567      5
## 919                                  Action|Adventure|Thriller   2452      5
## 920                                                Crime|Drama   2657      5
## 921                                                     Comedy   2454      5
## 922                                       Comedy|Drama|Romance   2334      5
## 923                                   Adventure|Comedy|Western   2488      5
## 924                Adventure|Animation|Children|Comedy|Fantasy   2787      5
## 925                                Action|Crime|Drama|Thriller   2818      5
## 926                                             Comedy|Romance   2197      5
## 927                                                      Drama   2174      5
## 928                                Comedy|Crime|Drama|Thriller   2363      5
## 929                                   Crime|Film-Noir|Thriller   2583      5
## 930                                              Drama|Romance   2607      5
## 931                                   Adventure|Comedy|Western   2727      5
## 932                                  Action|Adventure|Thriller   2492      5
## 933                                                      Drama   2460      5
## 934                                                      Drama   2541      5
## 935                                               Comedy|Crime   2504      5
## 936                                                      Drama   2861      5
## 937                                           Adventure|Sci-Fi   2834      5
## 938                                               Comedy|Drama   2607      5
## 939                                                Documentary   2515      5
## 940                                       Crime|Drama|Thriller   2596      5
## 941                 Adventure|Animation|Children|Drama|Musical   2252      5
## 942                                                     Comedy   2858      5
## 943                                               Comedy|Drama   2852      5
## 944                                       Action|Comedy|Horror   2744      5
## 945                                               Comedy|Drama   2275      5
## 946                                                      Drama   2624      5
## 947                Adventure|Animation|Children|Comedy|Fantasy   2596      5
## 948                                  Animation|Children|Comedy   2155      5
## 949                                         Comedy|Crime|Drama   2164      5
## 950                              Action|Horror|Sci-Fi|Thriller   2522      5
## 951                                   Action|Adventure|Fantasy   2360      5
## 952                         Action|Comedy|Crime|Drama|Thriller   2596      5
## 953                                           Comedy|Drama|War   2834      5
## 954                                       Comedy|Drama|Fantasy   2753      5
## 955                                               Comedy|Drama   2720      5
## 956                              Children|Comedy|Drama|Fantasy   2809      5
## 957                                                      Drama   2829      5
## 958                                             Comedy|Romance   2450      5
## 959                                                      Drama   2652      5
## 960                                                      Drama   2524      5
## 961                                             Comedy|Romance   2330      5
## 962                                                Documentary   2548      5
## 963                           Action|Adventure|Sci-Fi|Thriller   2720      5
## 964                                           Action|Adventure   2780      5
## 965                                                  Drama|War   2545      5
## 966                                              Drama|Romance   2582      5
## 967                                                Documentary   2845      5
## 968                                      Children|Drama|Sci-Fi   2361      5
## 969                                               Comedy|Drama   2596      5
## 970                                    Children|Comedy|Musical   2237      5
## 971                                                Crime|Drama   2397      5
## 972                                           Action|Adventure   2590      5
## 973                                               Comedy|Drama   2524      5
## 974                Adventure|Animation|Children|Comedy|Fantasy   2826      5
## 975                                                     Comedy   2696      5
## 976                                   Animation|Comedy|Musical   2359      5
## 977                                                Crime|Drama   2709      5
## 978                                          Drama|Romance|War   2220      5
## 979                               Comedy|Drama|Musical|Romance   2588      5
## 980                                                      Drama   2114      5
## 981                                                 Comedy|War   2243      5
## 982                      Action|Drama|Mystery|Romance|Thriller   2224      5
## 983                                  Adventure|Children|Comedy   2300      5
## 984                           Crime|Film-Noir|Mystery|Thriller   2384      5
## 985                                                      Drama   2202      5
## 986                          Animation|Children|Comedy|Fantasy   2696      5
## 987                                    Adventure|Comedy|Sci-Fi   2746      5
## 988                                             Drama|Thriller   2538      5
## 989                                                     Comedy   2523      5
## 990                                       Comedy|Drama|Romance   2413      5
## 991                                       Comedy|Drama|Romance   2152      5
## 992                                    Action|Adventure|Sci-Fi   2695      5
## 993                              Children|Comedy|Drama|Fantasy   2584      5
## 994                                              Drama|Romance   2413      5
## 995                                       Comedy|Drama|Romance   2798      5
## 996                                             Comedy|Romance   2293      5
## 997                                                      Drama   2675      5
## 998                                     Crime|Mystery|Thriller   2782      5
## 999                                           Action|Drama|War   2689      5
## 1000                              Comedy|Drama|Fantasy|Romance   2845      5
## 1001                                                    Comedy   2435      5
## 1002                                                 Drama|War   2703      5
## 1003                                                    Comedy   2517      5
## 1004                                           Horror|Thriller   2596      5
## 1005                                  Comedy|Drama|Romance|War   2252      5
## 1006                                        Film-Noir|Thriller   2397      5
## 1007                                                  Thriller   2871      5
## 1008                                          Action|Drama|War   2123      5
## 1009                                                     Drama   2746      5
## 1010                                        Comedy|Crime|Drama   2431      5
## 1011                          Crime|Film-Noir|Mystery|Thriller   2673      5
## 1012                                         Drama|Romance|War   2809      5
## 1013                            Crime|Drama|Film-Noir|Thriller   2152      5
## 1014                                      Comedy|Drama|Romance   2553      5
## 1015                                   Action|Adventure|Sci-Fi   2178      5
## 1016                                Adventure|Children|Fantasy   2551      5
## 1017                                                    Comedy   2270      5
## 1018                                                 Drama|War   2306      5
## 1019                                          Comedy|Drama|War   2186      5
## 1020                                                     Drama   2330      5
## 1021                                           Action|Thriller   2452      5
## 1022                                             Drama|Romance   2385      5
## 1023                               Crime|Drama|Sci-Fi|Thriller   2690      5
## 1024                                            Comedy|Romance   2439      5
## 1025                                            Drama|Thriller   2707      5
## 1026                                                     Drama   2425      5
## 1027                                                     Drama   2484      5
## 1028                            Crime|Mystery|Romance|Thriller   2534      5
## 1029                                     Action|Drama|Thriller   2682      5
## 1030                                             Action|Comedy   2819      5
## 1031                             Action|Adventure|Drama|Sci-Fi   2592      5
## 1032                                                     Drama   2523      5
## 1033                                          Adventure|Sci-Fi   2551      5
## 1034                                      Crime|Drama|Thriller   2710      5
## 1035                           Action|Adventure|Comedy|Musical   2717      5
## 1036                                                    Comedy   2653      5
## 1037                                          Action|Adventure   2720      5
## 1038                                  Crime|Film-Noir|Thriller   2330      5
## 1039                                  Action|Adventure|Fantasy   2450      5
## 1040                                 Animation|Children|Comedy   2475      5
## 1041                                              Comedy|Crime   2690      5
## 1042                                                    Comedy   2401      5
## 1043                                                     Drama   2729      5
## 1044                                     Action|Crime|Thriller   2667      5
## 1045                                   Action|Adventure|Sci-Fi   2695      5
## 1046                               Action|Crime|Drama|Thriller   2853      5
## 1047                                             Drama|Romance   2296      5
## 1048                                  Action|Adventure|Fantasy   2414      5
## 1049                                               Documentary   2435      5
## 1050                                                    Comedy   2155      5
## 1051                                             Drama|Romance   2174      5
## 1052                                      Action|Comedy|Sci-Fi   2452      5
## 1053                                            Comedy|Romance   2729      5
## 1054                                  Action|Adventure|Western   2181      5
## 1055                                                    Comedy   2696      5
## 1056                                           Adventure|Drama   2830      5
## 1057                                     Crime|Horror|Thriller   2596      5
## 1058                                                    Comedy   2555      5
## 1059                             Action|Horror|Sci-Fi|Thriller   2673      5
## 1060                                                    Comedy   2695      5
## 1061                                                     Drama   2185      5
## 1062                                   Action|Adventure|Sci-Fi   2170      5
## 1063                                     Drama|Mystery|Romance   2434      5
## 1064                                          Action|Drama|War   2566      5
## 1065                                           Action|Thriller   2452      5
## 1066                                     Children|Drama|Sci-Fi   2373      5
## 1067                            Drama|Mystery|Romance|Thriller   2583      5
## 1068                                          Action|Drama|War   2255      5
## 1069                              Crime|Drama|Romance|Thriller   2660      5
## 1070                                  Action|Adventure|Fantasy   2240      5
## 1071                                            Comedy|Musical   2524      5
## 1072                                               Crime|Drama   2596      5
## 1073                                     Comedy|Crime|Thriller   2385      5
## 1074                                                     Drama   2170      5
## 1075                                           Adventure|Drama   2263      5
## 1076                                     Drama|Fantasy|Musical   2708      5
## 1077                             Action|Crime|Romance|Thriller   2160      5
## 1078                                Adventure|Children|Fantasy   2716      5
## 1079                                             Action|Comedy   2160      5
## 1080                                                  Thriller   2641      5
## 1081                                             Drama|Romance   2582      5
## 1082                                                    Comedy   2717      5
## 1083                Adventure|Animation|Children|Drama|Musical   2399      5
## 1084                     Comedy|Drama|Fantasy|Romance|Thriller   2335      5
## 1085                                 Adventure|Fantasy|Romance   2152      5
## 1086                                                    Comedy   2764      5
## 1087                         Action|Adventure|Mystery|Thriller   2423      5
## 1088                                      Comedy|Drama|Romance   2815      5
## 1089                                                 Drama|War   2641      5
## 1090                                              Comedy|Drama   2765      5
## 1091                                   Action|Adventure|Sci-Fi   2742      5
## 1092                                          Documentary|IMAX   2790      5
## 1093                                                 Drama|War   2424      5
## 1094                                                     Drama   2763      5
## 1095                                 Action|Adventure|Thriller   2641      5
## 1096                                      Comedy|Drama|Romance   2588      5
## 1097                                                 Drama|War   2744      5
## 1098                              Comedy|Drama|Fantasy|Romance   2764      5
## 1099                                                    Comedy   2314      5
## 1100                  Action|Adventure|Animation|Drama|Fantasy   2690      5
## 1101                                  Action|Adventure|Fantasy   2153      5
## 1102                                   Action|Adventure|Sci-Fi   2513      5
## 1103                                        Comedy|Crime|Drama   2635      5
## 1104                                                     Drama   2298      5
## 1105                                   Crime|Film-Noir|Mystery   2275      5
## 1106                                      Action|Comedy|Horror   2192      5
## 1107                                          Action|Adventure   2204      5
## 1108                                                    Comedy   2703      5
## 1109                                          Action|Drama|War   2460      5
## 1110                                               Crime|Drama   2161      5
## 1111                                           Action|Thriller   2758      5
## 1112                                             Drama|Romance   2307      5
## 1113                                   Drama|Film-Noir|Romance   2651      5
## 1114                                          Action|Adventure   2875      5
## 1115                                             Drama|Romance   2787      5
## 1116                                             Action|Comedy   2167      5
## 1117                        Action|Crime|Drama|Horror|Thriller   2233      5
## 1118                                      Action|Comedy|Sci-Fi   2673      5
## 1119                                    Comedy|Sci-Fi|Thriller   2801      5
## 1120                                Action|Adventure|Drama|War   2409      5
## 1121                                    Action|Sci-Fi|Thriller   2690      5
## 1122                                                  Thriller   2192      5
## 1123                                               Crime|Drama   2267      5
## 1124                                Adventure|Animation|Comedy   2264      5
## 1125                            Adventure|Comedy|Crime|Romance   2330      5
## 1126                                         Drama|Romance|War   2588      5
## 1127                             Action|Crime|Fantasy|Thriller   2322      5
## 1128                                          Action|Drama|War   2446      5
## 1129                         Animation|Children|Comedy|Musical   2566      5
## 1130                                   Action|Adventure|Sci-Fi   2602      5
## 1131                                   Action|Adventure|Comedy   2828      5
## 1132                                    Drama|Mystery|Thriller   2641      5
## 1133                                      Comedy|Drama|Romance   2591      5
## 1134                                        Comedy|Crime|Drama   2641      5
## 1135                                                    Comedy   2729      5
## 1136                               Action|Adventure|Sci-Fi|War   2751      5
## 1137                             Action|Animation|Drama|Sci-Fi   2728      5
## 1138                                     Drama|Mystery|Western   2596      5
## 1139                                    Action|Sci-Fi|Thriller   2527      5
## 1140                                  Action|Adventure|Fantasy   2336      5
## 1141                                                     Drama   2720      5
## 1142                                                    Comedy   2522      5
## 1143                                 Action|Adventure|Thriller   2269      5
## 1144                                                    Comedy   2338      5
## 1145                                                 Drama|War   2273      5
## 1146                                                     Drama   2534      5
## 1147                   Action|Adventure|Comedy|Fantasy|Romance   2504      5
## 1148                               Comedy|Drama|Romance|Sci-Fi   2356      5
## 1149                                     Drama|Fantasy|Romance   2192      5
## 1150                                                     Drama   2453      5
## 1151                                               Documentary   2213      5
## 1152                                   Action|Adventure|Sci-Fi   2816      5
## 1153                           Children|Comedy|Fantasy|Musical   2149      5
## 1154                                                     Drama   2675      5
## 1155                                    Action|Adventure|Drama   2753      5
## 1156                                                     Drama   2338      5
## 1157                Adventure|Animation|Children|Drama|Musical   2680      5
## 1158                                   Children|Comedy|Romance   2585      5
## 1159                                     Crime|Horror|Thriller   2450      5
## 1160                                          Action|Drama|War   2401      5
## 1161                                     Drama|Sci-Fi|Thriller   2652      5
## 1162                                                    Comedy   2276      5
## 1163                                          Action|Adventure   2614      5
## 1164                  Animation|Children|Drama|Fantasy|Musical   2503      5
## 1165                                              Comedy|Drama   2746      5
## 1166                                            Children|Drama   2641      5
## 1167                           Children|Comedy|Fantasy|Musical   2339      5
## 1168                                                     Drama   2569      5
## 1169                              Comedy|Drama|Fantasy|Romance   2354      5
## 1170                                         Drama|Romance|War   2841      5
## 1171                                           Children|Comedy   2869      5
## 1172                                            Drama|Thriller   2798      5
## 1173                                               Crime|Drama   2194      5
## 1174                   Action|Adventure|Comedy|Fantasy|Romance   2721      5
## 1175                                                 Drama|War   2325      5
## 1176                                                    Comedy   2401      5
## 1177                                         Drama|Romance|War   2528      5
## 1178                                       Adventure|Drama|War   2675      5
## 1179                                            Drama|Thriller   2675      5
## 1180                                             Drama|Romance   2291      5
## 1181                                    Adventure|Comedy|Crime   2571      5
## 1182                                             Drama|Romance   2424      5
## 1183                                                     Drama   2486      5
## 1184                                    Action|Sci-Fi|Thriller   2404      5
## 1185                                               Documentary   2742      5
## 1186                                            Drama|Thriller   2385      5
## 1187                            Action|Adventure|Drama|Western   2611      5
## 1188                                              Drama|Sci-Fi   2652      5
## 1189                              Action|Crime|Sci-Fi|Thriller   2401      5
## 1190                                                    Comedy   2756      5
## 1191                                          Action|Drama|War   2521      5
## 1192                                    Crime|Mystery|Thriller   2424      5
## 1193                                                  Thriller   2275      5
## 1194                               Action|Crime|Drama|Thriller   2120      5
## 1195                                Film-Noir|Romance|Thriller   2596      5
## 1196                                        Action|Fantasy|War   2727      5
## 1197                              Adventure|Comedy|Romance|War   2466      5
## 1198                                            Comedy|Musical   2270      5
## 1199                                              Comedy|Drama   2521      5
## 1200                                            Comedy|Musical   2744      5
## 1201                                          Action|Drama|War   2446      5
## 1202                              Comedy|Drama|Fantasy|Romance   2385      5
## 1203                                               Crime|Drama   2720      5
## 1204                                           Horror|Thriller   2522      5
## 1205                              Crime|Drama|Mystery|Thriller   2276      5
## 1206                                            Drama|Thriller   2787      5
## 1207                                  Action|Adventure|Fantasy   2237      5
## 1208                              Comedy|Drama|Fantasy|Romance   2596      5
## 1209                                           Horror|Thriller   2120      5
## 1210                                    Comedy|Fantasy|Romance   2127      5
## 1211                Animation|Children|Fantasy|Musical|Romance   2725      5
## 1212             Crime|Drama|Fantasy|Film-Noir|Mystery|Romance   2186      5
## 1213                                                 Drama|War   2568      5
## 1214                 Adventure|Drama|Film-Noir|Sci-Fi|Thriller   2641      5
## 1215                                                    Comedy   2194      5
## 1216                        Action|Comedy|Crime|Drama|Thriller   2527      5
## 1217                                             Drama|Romance   2152      5
## 1218                                    Comedy|Musical|Romance   2466      5
## 1219                               Action|Adventure|Sci-Fi|War   2667      5
## 1220                              Action|Crime|Sci-Fi|Thriller   2451      5
## 1221                                                     Drama   2841      5
## 1222                                          Mystery|Thriller   2450      5
## 1223                                              Drama|Sci-Fi   2806      5
## 1224                                              Comedy|Drama   2548      5
## 1225                                             Drama|Romance   2490      5
## 1226 Adventure|Animation|Children|Comedy|Crime|Fantasy|Mystery   2521      5
## 1227                                               Documentary   2815      5
## 1228                                    Drama|Mystery|Thriller   2204      5
## 1229                                              Comedy|Drama   2129      5
## 1230                                    Action|Sci-Fi|Thriller   2435      5
## 1231                                               Crime|Drama   2279      5
## 1232                                                     Drama   2241      5
## 1233                                      Action|Horror|Sci-Fi   2576      5
## 1234                         Action|Adventure|Comedy|Drama|War   2254      5
## 1235                                                     Drama   2221      5
## 1236                                 Drama|Romance|War|Western   2468      5
## 1237                                             Comedy|Sci-Fi   2764      5
## 1238               Adventure|Animation|Children|Comedy|Fantasy   2789      5
## 1239                                            Action|Romance   2490      5
## 1240                                             Drama|Romance   2837      5
## 1241                                   Action|Adventure|Sci-Fi   2689      5
## 1242                                             Drama|Romance   2729      5
## 1243                                     Crime|Horror|Thriller   2333      5
## 1244                                   Action|Adventure|Sci-Fi   2161      5
## 1245                         Animation|Children|Comedy|Musical   2596      5
## 1246                                     Drama|Mystery|Romance   2350      5
## 1247                                            Comedy|Romance   2460      5
## 1248                                     Drama|Mystery|Romance   2877      5
## 1249                                                    Comedy   2781      5
## 1250                                                    Comedy   2746      5
## 1251                                            Comedy|Romance   2313      5
## 1252                                                  Thriller   2211      5
## 1253                                    Action|Sci-Fi|Thriller   2452      5
## 1254                                     Crime|Horror|Thriller   2542      5
## 1255                                    Horror|Sci-Fi|Thriller   2765      5
## 1256                                Adventure|Animation|Comedy   2243      5
## 1257                                                     Drama   2123      5
## 1258                                              Comedy|Drama   2596      5
## 1259                          Crime|Film-Noir|Mystery|Thriller   2684      5
## 1260                              Action|Drama|Sci-Fi|Thriller   2797      5
## 1261                                                 Drama|War   2485      5
## 1262                                      Action|Drama|Western   2826      5
## 1263                                        Comedy|Crime|Drama   2729      5
## 1264                                Adventure|Children|Fantasy   2574      5
## 1265                             Action|Horror|Sci-Fi|Thriller   2237      5
## 1266                                              Comedy|Drama   2178      5
## 1267                                   Adventure|Comedy|Sci-Fi   2398      5
## 1268                                     Crime|Horror|Thriller   2240      5
## 1269                                                    Comedy   2385      5
## 1270                                                 Drama|War   2485      5
## 1271                                 Animation|Children|Comedy   2865      5
## 1272                             Comedy|Fantasy|Romance|Sci-Fi   2552      5
## 1273                      Action|Crime|Mystery|Sci-Fi|Thriller   2141      5
## 1274                                            Comedy|Romance   2734      5
## 1275               Adventure|Animation|Children|Comedy|Musical   2227      5
## 1276                                          Adventure|Comedy   2764      5
## 1277                                               Crime|Drama   2765      5
## 1278                              Crime|Drama|Romance|Thriller   2404      5
## 1279                                                Comedy|War   2866      5
## 1280                                                     Drama   2675      5
## 1281               Adventure|Animation|Children|Comedy|Fantasy   2506      5
## 1282                                Adventure|Mystery|Thriller   2161      5
## 1283                                             Drama|Mystery   2484      5
## 1284                                          Action|Adventure   2277      5
## 1285                                   Action|Adventure|Sci-Fi   2274      5
## 1286                             Action|Horror|Sci-Fi|Thriller   2227      5
## 1287                                        Action|Crime|Drama   2515      5
## 1288                                            Comedy|Romance   2401      5
## 1289                                                  Thriller   2810      5
## 1290                                             Action|Sci-Fi   2371      5
## 1291                                      Comedy|Drama|Romance   2347      5
## 1292                                      Crime|Drama|Thriller   2178      5
## 1293                                     Crime|Horror|Thriller   2685      5
## 1294                                   Action|Adventure|Sci-Fi   2612      5
## 1295                                           Horror|Thriller   2368      5
## 1296                                          Action|Adventure   2127      5
## 1297                                      Comedy|Drama|Romance   2434      5
## 1298                                          Adventure|Sci-Fi   2871      5
## 1299                             Crime|Horror|Mystery|Thriller   2155      5
## 1300                                               Crime|Drama   2385      5
## 1301                                     Comedy|Crime|Thriller   2254      5
## 1302                                                     Drama   2330      5
## 1303                            Drama|Mystery|Romance|Thriller   2293      5
## 1304                                                     Drama   2787      5
## 1305                                                     Drama   2799      5
## 1306                                                    Comedy   2453      5
## 1307                                         Drama|Romance|War   2145      5
## 1308                              Action|Comedy|Fantasy|Sci-Fi   2652      5
## 1309                            Action|Adventure|Comedy|Sci-Fi   2345      5
## 1310                                    Action|Adventure|Drama   2818      5
## 1311                                             Comedy|Sci-Fi   2534      5
## 1312                     Comedy|Drama|Fantasy|Romance|Thriller   2323      5
## 1313                                               Crime|Drama   2711      5
## 1314                                      Comedy|Drama|Romance   2624      5
## 1315                               Comedy|Crime|Drama|Thriller   2522      5
## 1316                             Crime|Horror|Mystery|Thriller   2240      5
## 1317                                              Action|Crime   2434      5
## 1318                                      Comedy|Drama|Romance   2401      5
## 1319                                  Comedy|Drama|Romance|War   2733      5
## 1320                                       Documentary|Musical   2675      5
## 1321                                      Action|Comedy|Horror   2745      5
## 1322                                             Drama|Romance   2696      5
## 1323                                                     Drama   2731      5
## 1324                                      Comedy|Drama|Fantasy   2685      5
## 1325                                          Action|Drama|War   2156      5
## 1326                                  Comedy|Drama|Romance|War   2587      5
## 1327                                              Comedy|Drama   2624      5
## 1328                              Action|Crime|Sci-Fi|Thriller   2624      5
## 1329                             Crime|Horror|Mystery|Thriller   2414      5
## 1330                                    Action|Adventure|Drama   2685      5
## 1331                             Action|Horror|Sci-Fi|Thriller   2564      5
## 1332                                  Comedy|Drama|Romance|War   2521      5
## 1333                                                     Drama   2362      5
## 1334                                           Sci-Fi|Thriller   2774      5
## 1335                          Action|Adventure|Sci-Fi|Thriller   2696      5
## 1336                                                 Drama|War   2614      5
## 1337                                     Action|Drama|Thriller   2492      5
## 1338                                          Mystery|Thriller   2192      5
## 1339                                     Comedy|Horror|Romance   2434      5
## 1340                                                     Drama   2348      5
## 1341                                   Action|Adventure|Sci-Fi   2708      5
## 1342                                              Action|Drama   2729      5
## 1343                                                     Drama   2156      5
## 1344                                      Comedy|Drama|Romance   2675      5
## 1345                                                     Drama   2443      5
## 1346                                    Adventure|Comedy|Crime   2872      5
## 1347                             Action|Adventure|Drama|Sci-Fi   2172      5
## 1348                                  Crime|Film-Noir|Thriller   2515      5
## 1349                                    Action|Sci-Fi|Thriller   2654      5
## 1350                                      Comedy|Drama|Romance   2377      5
## 1351                                            Comedy|Musical   2438      5
## 1352                                             Action|Sci-Fi   2254      5
## 1353                  Action|Adventure|Comedy|Romance|Thriller   2278      5
## 1354                                   Action|Adventure|Sci-Fi   2720      5
## 1355                                            Comedy|Romance   2299      5
## 1356                                        Action|Crime|Drama   2366      5
## 1357                         Animation|Children|Comedy|Fantasy   2434      5
## 1358                                    Adventure|Comedy|Drama   2483      5
## 1359                                           Musical|Romance   2806      5
## 1360                                                     Drama   2675      5
## 1361                                           Adventure|Drama   2739      5
## 1362                                             Drama|Romance   2845      5
## 1363                                            Comedy|Romance   2424      5
## 1364                                              Action|Drama   2603      5
## 1365                             Action|Horror|Sci-Fi|Thriller   2576      5
## 1366                                               Documentary   2528      5
## 1367                                      Drama|Fantasy|Sci-Fi   2215      5
## 1368                               Action|Adventure|Sci-Fi|War   2423      5
## 1369                                           Sci-Fi|Thriller   2573      5
## 1370                Comedy|Crime|Drama|Horror|Mystery|Thriller   2254      5
## 1371                                            Horror|Mystery   2596      5
## 1372                                             Drama|Romance   2240      5
## 1373                                               Crime|Drama   2675      5
## 1374                                                 Drama|War   2564      5
## 1375                                            Comedy|Romance   2747      5
## 1376                                                    Horror   2341      5
## 1377                              Comedy|Drama|Fantasy|Romance   2566      5
## 1378                                         Adventure|Western   2204      5
## 1379                                        Drama|Thriller|War   2263      5
## 1380                                            Comedy|Western   2821      5
## 1381                                               Crime|Drama   2177      5
## 1382                Adventure|Animation|Children|Drama|Musical   2357      5
## 1383                       Comedy|Crime|Drama|Romance|Thriller   2709      5
## 1384                                   Action|Adventure|Sci-Fi   2404      5
## 1385                         Action|Adventure|Romance|Thriller   2273      5
## 1386                                       Action|Crime|Sci-Fi   2326      5
## 1387                                       Animation|Drama|War   2632      5
## 1388                                             Drama|Mystery   2729      5
## 1389                                            Drama|Thriller   2385      5
## 1390                            Drama|Mystery|Romance|Thriller   2330      5
## 1391                                                     Drama   2559      5
## 1392                                             Drama|Romance   2503      5
## 1393                           Animation|Children|Comedy|Crime   2732      5
## 1394                                                     Drama   2482      5
## 1395                                   Action|Adventure|Comedy   2809      5
## 1396                                               Crime|Drama   2800      5
## 1397                                              Comedy|Drama   2534      5
## 1398                                           Horror|Thriller   2675      5
## 1399                                                    Comedy   2157      5
## 1400                                           Children|Comedy   2720      5
## 1401                                                     Drama   2219      5
## 1402                                    Action|Adventure|Drama   2229      5
## 1403                                     Crime|Horror|Thriller   2660      5
## 1404                                      Crime|Drama|Thriller   2675      5
## 1405                                          Action|Drama|War   2156      5
## 1406                                              Action|Drama   2213      5
## 1407               Adventure|Animation|Children|Comedy|Fantasy   2520      5
## 1408                                               Documentary   2815      5
## 1409                                    Drama|Romance|Thriller   2596      5
## 1410                               Action|Crime|Drama|Thriller   2471      5
## 1411                                                    Comedy   2612      5
## 1412                                    Crime|Mystery|Thriller   2780      5
## 1413                                            Comedy|Romance   2878      5
## 1414       Adventure|Animation|Children|Comedy|Fantasy|Romance   2319      5
## 1415                                                     Drama   2782      5
## 1416                                             Drama|Mystery   2444      5
## 1417                                                     Drama   2574      5
## 1418                                     Action|Crime|Thriller   2204      5
## 1419                                      Comedy|Drama|Romance   2720      5
## 1420                                               Crime|Drama   2612      5
## 1421                                               Crime|Drama   2540      5
## 1422                                      Comedy|Drama|Romance   2352      5
## 1423                                   Action|Adventure|Sci-Fi   2461      5
## 1424                                                     Drama   2373      5
## 1425                                          Mystery|Thriller   2384      5
## 1426                                          Adventure|Sci-Fi   2696      5
## 1427                                               Crime|Drama   2720      5
## 1428                                                    Action   2555      5
## 1429                                             Drama|Romance   2534      5
## 1430                                              Comedy|Drama   2828      5
## 1431                                              Comedy|Drama   2845      5
## 1432                                                 Drama|War   2698      5
## 1433                                             Drama|Romance   2675      5
## 1434                                Adventure|Children|Fantasy   2823      5
## 1435                                          Animation|Sci-Fi   2227      5
## 1436                                                     Drama   2379      5
## 1437                                            Drama|Thriller   2414      5
## 1438                                      Comedy|Drama|Romance   2747      5
## 1439                                        Drama|Thriller|War   2458      5
## 1440                                 Animation|Children|Comedy   2784      5
## 1441                                              Comedy|Drama   2828      5
## 1442                                            Comedy|Fantasy   2404      5
## 1443                                     Crime|Horror|Thriller   2860      5
## 1444                                             Drama|Romance   2641      5
## 1445                                 Action|Adventure|Thriller   2322      5
## 1446                                      Comedy|Crime|Mystery   2330      5
## 1447                                  Action|Adventure|Fantasy   2492      5
## 1448                                                    Comedy   2727      5
## 1449                                    Action|Sci-Fi|Thriller   2696      5
## 1450                                                     Drama   2286      5
## 1451                             Action|Horror|Sci-Fi|Thriller   2801      5
## 1452                                  Action|Adventure|Fantasy   2153      5
## 1453                                   Mystery|Sci-Fi|Thriller   2780      5
## 1454                                            Horror|Mystery   2696      5
## 1455                                     Children|Drama|Sci-Fi   2624      5
## 1456                          Action|Adventure|Sci-Fi|Thriller   2127      5
## 1457                                           Musical|Romance   2675      5
## 1458                                               Documentary   2275      5
## 1459                                            Comedy|Mystery   2515      5
## 1460                                      Comedy|Drama|Romance   2460      5
## 1461                                     Drama|Fantasy|Romance   2424      5
## 1462                                         Drama|Musical|War   2342      5
## 1463                                                     Drama   2448      5
## 1464                                      Comedy|Drama|Romance   2466      5
## 1465                                       Action|Comedy|Drama   2770      5
## 1466                Animation|Children|Fantasy|Musical|Romance   2813      5
## 1467                                               Crime|Drama   2839      5
## 1468                            Action|Adventure|Drama|Romance   2707      5
## 1469                           Action|Adventure|Comedy|Fantasy   2137      5
## 1470 Adventure|Animation|Children|Comedy|Crime|Fantasy|Mystery   2414      5
## 1471                                   Action|Romance|Thriller   2464      5
## 1472                                     Drama|Mystery|Romance   2385      5
## 1473                                   Action|Mystery|Thriller   2765      5
## 1474                                           Adventure|Drama   2466      5
## 1475                                            Drama|Thriller   2515      5
## 1476                                   Action|Adventure|Sci-Fi   2551      5
## 1477                                      Comedy|Drama|Musical   2178      5
## 1478                                                    Comedy   2330      5
## 1479                           Action|Adventure|Drama|Thriller   2423      5
## 1480                                           Sci-Fi|Thriller   2716      5
## 1481                                                 Drama|War   2386      5
## 1482                                     Crime|Drama|Film-Noir   2665      5
## 1483                                                     Drama   2425      5
## 1484                                                    Comedy   2129      5
## 1485                                                    Comedy   2756      5
## 1486                                                     Drama   2518      5
## 1487                                              Comedy|Crime   2720      5
## 1488                                 Action|Adventure|Thriller   2414      5
## 1489                                     Crime|Drama|Film-Noir   2522      5
## 1490                                     Action|Crime|Thriller   2657      5
## 1491                Action|Crime|Drama|Mystery|Sci-Fi|Thriller   2708      5
## 1492                                    Drama|Mystery|Thriller   2584      5
## 1493                                                 Drama|War   2714      5
## 1494                                                     Drama   2573      5
## 1495                                                 Drama|War   2596      5
## 1496                                                     Drama   2500      5
## 1497                                                 Drama|War   2839      5
## 1498                                                     Drama   2526      5
## 1499                                    Adventure|Comedy|Drama   2590      5
## 1500                                Adventure|Mystery|Thriller   2146      5
## 1501                                                   Western   2385      5
## 1502                               Action|Crime|Drama|Thriller   2775      5
## 1503                                     Crime|Horror|Thriller   2304      5
## 1504                                   Action|Adventure|Comedy   2339      5
## 1505                                                    Comedy   2401      5
## 1506                                      Comedy|Drama|Romance   2382      5
## 1507               Adventure|Fantasy|Film-Noir|Sci-Fi|Thriller   2414      5
## 1508                                              Comedy|Crime   2686      5
## 1509                                                    Comedy   2155      5
## 1510                               Comedy|Crime|Drama|Thriller   2798      5
## 1511                                                     Drama   2167      5
## 1512                                            Comedy|Fantasy   2401      5
## 1513                                             Drama|Romance   2515      5
## 1514                                              Comedy|Drama   2641      5
## 1515                                    Adventure|Comedy|Crime   2603      5
## 1516                                      Comedy|Drama|Romance   2566      5
## 1517                                      Action|Crime|Romance   2566      5
## 1518                                                    Comedy   2534      5
## 1519                                                     Drama   2541      5
## 1520                                  Comedy|Drama|Romance|War   2180      5
## 1521                                      Action|Comedy|Horror   2696      5
## 1522                                                    Comedy   2438      5
## 1523                             Comedy|Crime|Romance|Thriller   2515      5
## 1524                                               Crime|Drama   2180      5
## 1525                                      Comedy|Drama|Romance   2762      5
## 1526                                            Comedy|Romance   2318      5
## 1527                                             Drama|Mystery   2720      5
## 1528                                          Action|Drama|War   2652      5
## 1529                                   Action|Adventure|Sci-Fi   2704      5
## 1530                                                    Comedy   2164      5
## 1531                                                    Comedy   2406      5
## 1532                                              Comedy|Drama   2716      5
## 1533                 Adventure|Animation|Children|Comedy|Drama   2404      5
## 1534                                              Comedy|Drama   2553      5
## 1535                                        Comedy|Documentary   2424      5
## 1536                                            Comedy|Musical   2297      5
## 1537                                                    Horror   2721      5
## 1538                                           Horror|Thriller   2330      5
## 1539                                            Comedy|Romance   2563      5
## 1540                                                     Drama   2784      5
## 1541                                   Adventure|Drama|Western   2515      5
## 1542                                   Action|Adventure|Sci-Fi   2823      5
## 1543                                           Adventure|Drama   2207      5
## 1544                                            Comedy|Romance   2438      5
## 1545                                                     Drama   2642      5
## 1546                       Comedy|Crime|Drama|Mystery|Thriller   2591      5
## 1547                                    Drama|Mystery|Thriller   2401      5
## 1548                               Action|Comedy|Crime|Romance   2653      5
## 1549                                            Comedy|Romance   2385      5
## 1550                                 Animation|Children|Comedy   2433      5
## 1551                                             Action|Sci-Fi   2283      5
## 1552                                            Comedy|Romance   2450      5
## 1553                                   Action|Adventure|Sci-Fi   2683      5
## 1554                                              Comedy|Drama   2297      5
## 1555                                 Action|Adventure|Thriller   2674      5
## 1556               Adventure|Animation|Children|Comedy|Fantasy   2601      5
## 1557                                                    Comedy   2504      5
## 1558                             Crime|Horror|Mystery|Thriller   2583      5
## 1559                                        Comedy|Crime|Drama   2814      5
## 1560                                               Documentary   2444      5
## 1561                                   Adventure|Drama|Western   2565      5
## 1562                                     Crime|Horror|Thriller   2150      5
## 1563                   Action|Adventure|Comedy|Fantasy|Romance   2420      5
## 1564                Animation|Children|Fantasy|Musical|Romance   2398      5
## 1565                      Crime|Drama|Fantasy|Romance|Thriller   2305      5
## 1566                                                     Drama   2201      5
## 1567                Animation|Children|Fantasy|Musical|Romance   2399      5
## 1568                                                     Drama   2641      5
## 1569                              Comedy|Drama|Fantasy|Romance   2477      5
## 1570                                                    Comedy   2326      5
## 1571                                                     Drama   2839      5
## 1572                                         Film-Noir|Mystery   2404      5
## 1573                                   Action|Adventure|Sci-Fi   2127      5
## 1574                                           Musical|Romance   2775      5
## 1575                                                    Comedy   2167      5
## 1576                                          Adventure|Comedy   2339      5
## 1577                               Action|Comedy|Crime|Fantasy   2749      5
## 1578                                            Drama|Thriller   2330      5
## 1579                                      Comedy|Drama|Romance   2602      5
## 1580                                                    Horror   2596      5
## 1581                                                Comedy|War   2611      5
## 1582                          Adventure|Animation|Comedy|Crime   2596      5
## 1583                                    Drama|Mystery|Thriller   2707      5
## 1584                                                    Comedy   2330      5
## 1585             Action|Adventure|Crime|Drama|Mystery|Thriller   2505      5
## 1586                             Action|Horror|Sci-Fi|Thriller   2641      5
## 1587                                    Adventure|Drama|Sci-Fi   2596      5
## 1588                                              Comedy|Crime   2527      5
## 1589                                            Comedy|Musical   2314      5
## 1590                                       Crime|Drama|Fantasy   2398      5
## 1591                                            Comedy|Romance   2385      5
## 1592                                              Comedy|Crime   2720      5
## 1593                                                 Drama|War   2798      5
## 1594                                          Action|Drama|War   2305      5
## 1595                                          Action|Drama|War   2283      5
## 1596                                        Drama|Thriller|War   2173      5
## 1597                                                    Comedy   2539      5
##       Timestamp
## 1    1085504892
## 2     943474830
## 3     946037321
## 4     844635323
## 5    1051021165
## 6     946014816
## 7    1054572566
## 8    1188860518
## 9    1163161988
## 10    982136397
## 11   1207058195
## 12   1050986348
## 13    913405056
## 14    947358392
## 15    874486718
## 16    948728825
## 17    831894546
## 18   1050935138
## 19    948940745
## 20   1163101077
## 21   1085348429
## 22    913319271
## 23   1214726534
## 24    942151462
## 25   1001536814
## 26    948829418
## 27    858239292
## 28    844628718
## 29    839161086
## 30    844634703
## 31    960500815
## 32    858173218
## 33    941899640
## 34    941825240
## 35   1051041787
## 36   1163123896
## 37    953888969
## 38   1216030715
## 39    849783642
## 40    982014087
## 41    943472661
## 42   1033135070
## 43   1001524557
## 44    955668699
## 45   1216111908
## 46    946004049
## 47    848750104
## 48    946013520
## 49    956180453
## 50    982022326
## 51    941830057
## 52   1216135809
## 53   1023472505
## 54    868777809
## 55   1085426983
## 56    974494547
## 57    844621500
## 58    858179788
## 59    833018529
## 60    945989907
## 61    948686829
## 62    948928868
## 63    942684195
## 64    839166092
## 65    948825975
## 66    945997588
## 67    941817616
## 68   1001536258
## 69   1050941883
## 70   1001536908
## 71    974565770
## 72    948729973
## 73    948827271
## 74    941987336
## 75    948686011
## 76    945998109
## 77   1001470718
## 78   1024979240
## 79    948685912
## 80    974501107
## 81   1001533279
## 82   1050985864
## 83    858173449
## 84   1009006419
## 85    980733460
## 86    946017393
## 87    868745056
## 88    941806835
## 89   1134668222
## 90    844634843
## 91    941884090
## 92    946039785
## 93    948825200
## 94   1072542784
## 95    868643323
## 96    868628234
## 97    913433089
## 98    858192302
## 99    960499977
## 100  1195266578
## 101   855339918
## 102   941889850
## 103   945997910
## 104   948829909
## 105   946013303
## 106  1001524617
## 107   948728681
## 108   982129094
## 109   942149006
## 110   941847751
## 111   839154902
## 112   974495085
## 113  1137095456
## 114  1163161498
## 115  1018323321
## 116  1064723829
## 117   974477599
## 118   941880173
## 119   941839322
## 120  1216125714
## 121  1189156213
## 122   831896503
## 123   849792530
## 124   991899341
## 125   941836067
## 126  1085432843
## 127   913472001
## 128   982167707
## 129   982473874
## 130  1111590918
## 131  1051061354
## 132   974812349
## 133   946016025
## 134  1001470454
## 135   945997665
## 136  1189615236
## 137  1050950432
## 138  1001607713
## 139   992240246
## 140  1050988816
## 141  1085433125
## 142   858172186
## 143  1111586759
## 144  1189359021
## 145   960671598
## 146   948926571
## 147   840295457
## 148  1051021625
## 149   835026962
## 150   835019224
## 151   951344813
## 152   946010545
## 153   946023628
## 154   913372189
## 155   989502577
## 156   956180569
## 157   930501676
## 158  1051041168
## 159   941889520
## 160  1023461964
## 161   960502759
## 162  1111575194
## 163   844618855
## 164   960671422
## 165  1051022434
## 166   839167414
## 167   941890438
## 168  1216105869
## 169  1001533791
## 170  1188635080
## 171  1023477075
## 172   941943584
## 173  1009004364
## 174   946014993
## 175   835035765
## 176   948827974
## 177   982039277
## 178   844615505
## 179   960651404
## 180   949702287
## 181   946013471
## 182   941832058
## 183   945982334
## 184  1001500537
## 185  1023384344
## 186   849770483
## 187   978983017
## 188   946013611
## 189   844614496
## 190   946012731
## 191   948686524
## 192   874481695
## 193  1134599935
## 194   960650047
## 195   960651798
## 196   948940840
## 197  1216080869
## 198  1216125390
## 199   960569637
## 200  1137095465
## 201   941833990
## 202   948829437
## 203  1199572649
## 204  1008978898
## 205   858180014
## 206   974565651
## 207   982039708
## 208   991615825
## 209  1106443589
## 210   960502775
## 211   946015521
## 212   835020425
## 213   948831387
## 214   978825176
## 215  1051027866
## 216   995694620
## 217  1183034613
## 218   982024765
## 219   835044958
## 220   941987858
## 221   849783362
## 222  1111585842
## 223   946006542
## 224  1050992052
## 225   858218365
## 226   982170063
## 227   839203795
## 228   833019717
## 229   967867791
## 230   982161943
## 231  1111569943
## 232   828096043
## 233   849795044
## 234   974489031
## 235  1111582920
## 236   948829437
## 237  1111574310
## 238  1001595499
## 239   975173943
## 240   844629229
## 241   948828612
## 242   941836014
## 243  1073094830
## 244   994218567
## 245   948728953
## 246   982047116
## 247   832594855
## 248   945997895
## 249   941830012
## 250   942065242
## 251   941821025
## 252   858176261
## 253  1043289170
## 254   844622425
## 255   913430063
## 256   982529375
## 257   960672269
## 258   844623683
## 259   941940404
## 260  1134599951
## 261   913430508
## 262   987608338
## 263   960499638
## 264   948925911
## 265  1001536092
## 266   982197736
## 267   974489669
## 268  1013127630
## 269  1163099272
## 270   960503072
## 271  1111584423
## 272   835048035
## 273  1189358993
## 274   835030607
## 275   960649815
## 276   835030612
## 277   868653937
## 278   839165570
## 279   982049557
## 280  1138298620
## 281   974497766
## 282  1023384223
## 283   858173170
## 284  1188853906
## 285   941946024
## 286   974497045
## 287   982152574
## 288   946041847
## 289   982047961
## 290  1189386613
## 291  1001471256
## 292   960650305
## 293   946039890
## 294  1134779187
## 295   948831058
## 296   941813861
## 297   946011880
## 298   858176919
## 299   941832768
## 300   858180091
## 301  1008977599
## 302   949013448
## 303   960547968
## 304   941940404
## 305  1023473135
## 306  1001538610
## 307   941944892
## 308   913487932
## 309  1033134617
## 310  1001607199
## 311   945982439
## 312   946043028
## 313   855232149
## 314   913429607
## 315   945992995
## 316  1111572535
## 317  1188635315
## 318   953614250
## 319   974481271
## 320   849770752
## 321   978979070
## 322   844624775
## 323   835677963
## 324   835019024
## 325  1085408071
## 326   963732155
## 327  1163102271
## 328  1085692461
## 329   948845397
## 330   844619033
## 331   844629119
## 332  1001524690
## 333   948686880
## 334   844634202
## 335  1050987649
## 336   960569515
## 337   948729168
## 338  1001547627
## 339   941817150
## 340   960664329
## 341   974493186
## 342  1189361236
## 343   994464747
## 344   831386956
## 345   849794395
## 346   960481137
## 347   868654157
## 348   913432877
## 349   960664826
## 350   858198116
## 351   858203147
## 352   849792024
## 353  1001471310
## 354  1163105243
## 355  1163127061
## 356   952373796
## 357   960671448
## 358   982047616
## 359   932837755
## 360   844631383
## 361   943386789
## 362   845668095
## 363   835037026
## 364  1051047090
## 365   974495579
## 366  1072543044
## 367  1023682876
## 368  1099728623
## 369   946017677
## 370  1213989563
## 371   974591047
## 372  1085410643
## 373  1051046766
## 374   913389331
## 375   974481367
## 376  1189327311
## 377  1111585893
## 378   982167456
## 379   960664925
## 380  1054571946
## 381  1111578794
## 382   844628718
## 383  1134779917
## 384   913473210
## 385   941882231
## 386   941804098
## 387   960481576
## 388   849769768
## 389   844627648
## 390  1207418949
## 391   836433744
## 392   946016101
## 393   997293607
## 394   974488746
## 395  1134668325
## 396   992607429
## 397   968114131
## 398  1163124115
## 399  1111575319
## 400   835046668
## 401  1216225793
## 402   844634993
## 403   984876104
## 404   941878920
## 405  1085445152
## 406  1189428996
## 407   839175532
## 408   913472578
## 409   982211568
## 410   868690890
## 411   991615634
## 412  1134592763
## 413  1216109680
## 414   960648767
## 415   828098211
## 416   946018272
## 417   960521857
## 418   835031038
## 419   960658132
## 420   941987114
## 421   849773523
## 422   960648834
## 423  1134603224
## 424   982103627
## 425   953615586
## 426   941816969
## 427   948731033
## 428   849744298
## 429   941889618
## 430   844626349
## 431   993212239
## 432   974496583
## 433  1001535353
## 434   982025264
## 435   913429607
## 436  1163124092
## 437   913406162
## 438   913407795
## 439  1023472784
## 440  1001533837
## 441   858187670
## 442   946007460
## 443   913472001
## 444   948697643
## 445   868749373
## 446  1112109181
## 447  1051023017
## 448   941941721
## 449   946008341
## 450   941804630
## 451  1085419452
## 452   945997981
## 453   868784833
## 454   960597561
## 455  1001499409
## 456  1050987149
## 457   941847210
## 458   982049688
## 459  1032975828
## 460  1101910114
## 461   844622334
## 462   960673356
## 463   982103600
## 464  1163100955
## 465   948885330
## 466   941839867
## 467   835019024
## 468   960567711
## 469  1023455521
## 470   960663673
## 471  1023405363
## 472  1042719985
## 473  1139660736
## 474  1090354718
## 475  1050935138
## 476  1023515191
## 477  1050986764
## 478  1189327366
## 479   982155764
## 480   868626115
## 481   913388013
## 482  1216031742
## 483  1001539256
## 484   982136262
## 485  1051028269
## 486   947469021
## 487   941888265
## 488   941943713
## 489   835018955
## 490   941832513
## 491   982170477
## 492   960595307
## 493  1009004258
## 494  1163162724
## 495  1111587062
## 496   913407710
## 497  1001537260
## 498   945997352
## 499   948825280
## 500  1006803696
## 501   974502815
## 502   941832513
## 503  1001531942
## 504  1134620758
## 505  1113025472
## 506   946013048
## 507  1091486335
## 508   948862665
## 509   974503310
## 510  1085414864
## 511  1001533911
## 512  1023396227
## 513   946060695
## 514   946767884
## 515   913432154
## 516  1085434557
## 517   844618987
## 518   982098567
## 519  1135722644
## 520   839192266
## 521   868784890
## 522   941878632
## 523   835022306
## 524  1085236934
## 525  1090354073
## 526  1001537209
## 527   835045683
## 528  1109388723
## 529   997293559
## 530   982166416
## 531  1134711686
## 532   941879627
## 533   974591013
## 534   844617246
## 535   974497045
## 536  1189871530
## 537   960595489
## 538   941878420
## 539   993023776
## 540   974498053
## 541   983383214
## 542   942093806
## 543  1111589174
## 544   849786340
## 545   835037840
## 546   941825763
## 547  1001595375
## 548   849778986
## 549   960521528
## 550  1216091725
## 551   868642710
## 552  1025149222
## 553   948830065
## 554   858225822
## 555   982192301
## 556  1001556358
## 557  1085406956
## 558   835045245
## 559  1023380937
## 560   960475460
## 561   982011291
## 562  1216125092
## 563  1134543845
## 564   974511879
## 565   868631665
## 566   989197833
## 567   974492780
## 568   982047822
## 569   945997856
## 570   828097813
## 571   982165886
## 572  1024978314
## 573  1001470955
## 574   991901635
## 575  1085373127
## 576  1199572721
## 577   974493623
## 578  1216018286
## 579   946038378
## 580   941879334
## 581   946007312
## 582   941810442
## 583  1051070153
## 584  1216125492
## 585   913473819
## 586   849770716
## 587   960649889
## 588   913416424
## 589   946017036
## 590  1111572472
## 591   858191219
## 592  1144733515
## 593  1163102319
## 594   941884908
## 595  1001539256
## 596   844618370
## 597   946039118
## 598   982193643
## 599  1051021227
## 600   948845306
## 601   858159176
## 602  1085529141
## 603   945992505
## 604  1137266012
## 605  1163162241
## 606   835021800
## 607   974495980
## 608  1163111813
## 609   946005139
## 610  1189466135
## 611   946017166
## 612  1149786811
## 613   960672002
## 614   941940404
## 615   844622165
## 616  1189466619
## 617   951262392
## 618   868691058
## 619   844629333
## 620  1085372585
## 621   948830302
## 622   913431669
## 623  1134742344
## 624  1001470589
## 625   941903274
## 626   868698816
## 627   913472615
## 628   839166220
## 629   948925995
## 630   948828213
## 631   948826050
## 632   913385577
## 633   839160285
## 634  1203732666
## 635   849880702
## 636   948828247
## 637  1001463067
## 638  1104716664
## 639   946013057
## 640  1134595308
## 641  1136061089
## 642  1073094524
## 643   868653937
## 644   941825404
## 645  1068270183
## 646  1026427158
## 647   843490165
## 648   941886832
## 649   991901202
## 650   960597649
## 651   858175643
## 652  1111586416
## 653  1085412469
## 654  1034559004
## 655   946058047
## 656   868745057
## 657  1026492243
## 658   948729420
## 659   913487768
## 660   948925911
## 661   941832768
## 662   868644949
## 663   982165909
## 664  1001471265
## 665   913384619
## 666   948826977
## 667   948879967
## 668  1189283566
## 669   943625767
## 670  1163099740
## 671   960672421
## 672   960664170
## 673   982013677
## 674   942149210
## 675  1023473135
## 676   982166849
## 677  1189137517
## 678   982103869
## 679   831384490
## 680   960676091
## 681  1134776610
## 682  1043289504
## 683   839190739
## 684   941808035
## 685  1085337892
## 686   974812349
## 687   946005263
## 688   835035348
## 689  1023472615
## 690   913435875
## 691   974497533
## 692   844620615
## 693  1190313174
## 694   835047510
## 695  1001471306
## 696   844615645
## 697   941834769
## 698   858177064
## 699  1216013450
## 700   974591734
## 701   953889525
## 702   941987930
## 703   946034928
## 704   868690868
## 705  1001470877
## 706   949701447
## 707  1216121659
## 708   956180703
## 709  1051125191
## 710   974497718
## 711   982210937
## 712  1216125244
## 713  1051019640
## 714  1023662617
## 715  1111269833
## 716   835019615
## 717  1001538571
## 718  1023398675
## 719   995693242
## 720   982772048
## 721   975944796
## 722   960499434
## 723   974591487
## 724  1137095601
## 725   960671224
## 726   990012862
## 727  1163105505
## 728   948729043
## 729   974481429
## 730   831895481
## 731   982048367
## 732  1023455480
## 733   835019024
## 734   982121074
## 735   832595581
## 736   835030079
## 737   868630216
## 738   941804741
## 739   839165794
## 740  1050980388
## 741  1189326155
## 742   868733315
## 743  1021402670
## 744   858164343
## 745  1086915877
## 746   828096043
## 747  1119854824
## 748   945992831
## 749  1216150612
## 750   941803368
## 751   844621958
## 752   835021342
## 753   946024248
## 754  1032975783
## 755  1203990866
## 756  1189370245
## 757   948686452
## 758  1152588527
## 759   844628695
## 760  1192490252
## 761  1216135253
## 762  1189216672
## 763   849786340
## 764   951531981
## 765  1051046749
## 766   991425032
## 767   835022336
## 768  1111590430
## 769   858188247
## 770  1189393934
## 771  1226545244
## 772  1051060943
## 773  1087159677
## 774   948728721
## 775   941818392
## 776   982642741
## 777   948917655
## 778   858203110
## 779  1163127415
## 780  1050977475
## 781  1134559213
## 782  1024976809
## 783   835047718
## 784   858159303
## 785   994387596
## 786   849741955
## 787   960663602
## 788   974492894
## 789  1023401451
## 790   974505020
## 791  1023405411
## 792  1134615997
## 793   991614643
## 794   849792674
## 795  1085486374
## 796   844624824
## 797  1085408285
## 798   960597369
## 799   963731794
## 800   849770787
## 801   960665099
## 802  1073094855
## 803   913742635
## 804   835032808
## 805   942146671
## 806   868628836
## 807   953616139
## 808   941823456
## 809   982161906
## 810  1190926670
## 811  1051026064
## 812   835024952
## 813  1051046837
## 814   868637080
## 815  1109442257
## 816   946327559
## 817   982103577
## 818   941879041
## 819   948928927
## 820  1163162382
## 821  1009004951
## 822   946039527
## 823   835038935
## 824   946067142
## 825  1001535353
## 826  1189361522
## 827   835052017
## 828  1050977080
## 829  1134746678
## 830  1023412964
## 831   868748945
## 832  1018322353
## 833  1111587788
## 834   982167456
## 835   974495081
## 836   913405710
## 837  1085886123
## 838  1036060468
## 839   851612764
## 840   913415901
## 841  1214726556
## 842   838192644
## 843   913486962
## 844  1050979885
## 845   945990319
## 846   844634736
## 847   941837128
## 848  1023399968
## 849   946493279
## 850  1216126228
## 851   982025375
## 852   982047320
## 853  1044631177
## 854  1023425063
## 855   844635338
## 856  1029817350
## 857  1051114480
## 858  1023539540
## 859  1163112385
## 860   960660309
## 861   982210489
## 862  1050942404
## 863  1163161632
## 864   844631147
## 865   946015092
## 866  1051028143
## 867   941887619
## 868   948825407
## 869   943475657
## 870   978716528
## 871  1001490703
## 872  1051022489
## 873   960530091
## 874   868643286
## 875   946250177
## 876  1220422117
## 877   974489000
## 878   960671752
## 879   982529877
## 880   946015964
## 881  1163124620
## 882  1163121313
## 883   844618386
## 884   849814455
## 885  1051051670
## 886   868745131
## 887  1001519899
## 888  1073095100
## 889   941818049
## 890  1111586947
## 891   844631267
## 892  1111587521
## 893   982167435
## 894   946067829
## 895   913430752
## 896   982137623
## 897  1189302516
## 898   849770555
## 899   941883011
## 900  1163101071
## 901  1009004486
## 902  1085437009
## 903   948686829
## 904  1050950463
## 905   835027417
## 906  1216085340
## 907   913407664
## 908   946007396
## 909  1111578922
## 910   946037017
## 911  1085432516
## 912  1050988711
## 913  1134543841
## 914   948856921
## 915   839177016
## 916   945998294
## 917   948830446
## 918   946005995
## 919   960569849
## 920  1085426799
## 921  1023476771
## 922   941818004
## 923   835030317
## 924   835044958
## 925   991424668
## 926   983508163
## 927  1023397505
## 928   858173367
## 929   941840466
## 930   835034901
## 931  1163124704
## 932  1194469788
## 933   948856673
## 934   833019598
## 935  1023473648
## 936  1111591624
## 937   948928912
## 938   835035134
## 939  1122937632
## 940  1001539026
## 941   849770006
## 942   960672446
## 943  1012130863
## 944   855233411
## 945   948918603
## 946   982103086
## 947  1001534298
## 948   858159847
## 949  1001463989
## 950  1051047033
## 951  1085348575
## 952  1001534599
## 953   950729116
## 954  1163127041
## 955   946326947
## 956   960664981
## 957  1135290876
## 958   849796630
## 959   974583573
## 960  1216112186
## 961  1050986606
## 962   965767899
## 963   945034387
## 964   913473697
## 965  1163109272
## 966   868733443
## 967   865942674
## 968  1134598164
## 969  1001547772
## 970   992240042
## 971   945997398
## 972  1220016309
## 973  1216112052
## 974   866755132
## 975  1009004782
## 976  1023413748
## 977   982127975
## 978   960492432
## 979  1001595375
## 980   948681219
## 981   960500646
## 982   960497270
## 983   945998158
## 984   945997063
## 985   868631649
## 986  1009003257
## 987   960649241
## 988   831895617
## 989  1163106298
## 990  1085407907
## 991   978983429
## 992   868748006
## 993  1189361371
## 994  1085408866
## 995   946023681
## 996   941889408
## 997   941941611
## 998   941884908
## 999   974496183
## 1000  831895992
## 1001 1204918024
## 1002  913429195
## 1003 1085420860
## 1004 1001533719
## 1005  849770125
## 1006  945998173
## 1007  913486604
## 1008  844613931
## 1009  960651232
## 1010  868695688
## 1011 1163121090
## 1012  960663299
## 1013  978983367
## 1014  941887581
## 1015 1050955436
## 1016  913405903
## 1017 1085284259
## 1018  974476312
## 1019 1216030985
## 1020 1050988849
## 1021  960569584
## 1022 1029099511
## 1023 1001535492
## 1024 1111574520
## 1025  941883478
## 1026  951615626
## 1027  999653202
## 1028  943473979
## 1029  839191212
## 1030 1001562930
## 1031 1023513909
## 1032 1163105474
## 1033  913405903
## 1034 1023571554
## 1035 1216136003
## 1036 1111580716
## 1037  941889730
## 1038 1073095094
## 1039  849795078
## 1040  942093030
## 1041 1001540066
## 1042 1054571572
## 1043  982158544
## 1044  844628855
## 1045  868749051
## 1046 1163161638
## 1047  844621498
## 1048 1189301369
## 1049 1203732857
## 1050  858164449
## 1051 1024678327
## 1052  960569812
## 1053  982156196
## 1054 1085235405
## 1055 1009004513
## 1056  835046881
## 1057 1001533771
## 1058 1044632270
## 1059 1163121285
## 1060  868749051
## 1061 1001477762
## 1062 1001470434
## 1063 1134623874
## 1064  942063000
## 1065  960569779
## 1066  913371562
## 1067  941840558
## 1068 1029258558
## 1069  844628908
## 1070  868643261
## 1071 1216112009
## 1072 1001606977
## 1073 1104925711
## 1074 1001471243
## 1075  844620370
## 1076  954563493
## 1077  953891573
## 1078 1163124204
## 1079  953891320
## 1080  974750108
## 1081  868733345
## 1082 1216135790
## 1083  844622425
## 1084  960521927
## 1085  960481822
## 1086  946016825
## 1087  858179568
## 1088  949182261
## 1089  974511006
## 1090  982166143
## 1091 1111586034
## 1092  941888775
## 1093  913384366
## 1094  941884138
## 1095  974498685
## 1096 1001595539
## 1097  855232229
## 1098  946015208
## 1099  982258103
## 1100 1001539194
## 1101 1085220261
## 1102 1183034529
## 1103  839189021
## 1104  948830720
## 1105  949701987
## 1106 1023829894
## 1107 1023827896
## 1108  913432727
## 1109  948856854
## 1110  960480567
## 1111  846261296
## 1112 1001479561
## 1113  948912642
## 1114  868808617
## 1115  837040621
## 1116 1042718429
## 1117  986587123
## 1118 1163121510
## 1119 1134775368
## 1120 1051022233
## 1121 1001539577
## 1122 1023397510
## 1123  875129449
## 1124  913332171
## 1125 1136060433
## 1126 1001595321
## 1127  941818541
## 1128 1001525003
## 1129  941848188
## 1130 1013127331
## 1131  947470317
## 1132  974747024
## 1133  946006551
## 1134  974505020
## 1135  982155926
## 1136  859556111
## 1137 1216137738
## 1138 1001534652
## 1139 1100295603
## 1140 1134594156
## 1141  941884014
## 1142 1051051367
## 1143  945993116
## 1144  949013539
## 1145  844620811
## 1146  943474718
## 1147 1023473109
## 1148 1112424488
## 1149 1023829545
## 1150  982041217
## 1151  960487659
## 1152 1111589094
## 1153  849744086
## 1154  951458384
## 1155 1163127463
## 1156  948834000
## 1157 1163123033
## 1158  844627964
## 1159  849794908
## 1160 1051281093
## 1161  975984025
## 1162 1156788751
## 1163  852918822
## 1164  946005896
## 1165  960649535
## 1166  974512895
## 1167  974556113
## 1168  830366744
## 1169  913818184
## 1170 1209272743
## 1171  844636098
## 1172  946023257
## 1173  864137838
## 1174  946013192
## 1175 1134593200
## 1176 1054571934
## 1177 1134660331
## 1178  941857841
## 1179  941855186
## 1180 1111638414
## 1181 1164467088
## 1182  913389703
## 1183 1023472445
## 1184  941822738
## 1185 1111586883
## 1186 1136988699
## 1187  946007517
## 1188  974580874
## 1189 1051042750
## 1190 1085437153
## 1191  975173888
## 1192  913384853
## 1193  948826000
## 1194  982001810
## 1195 1001536887
## 1196 1188634200
## 1197  941832691
## 1198 1085284366
## 1199  975598815
## 1200  855340071
## 1201 1001524188
## 1202  970747085
## 1203  941890229
## 1204 1051047160
## 1205  974478082
## 1206  835625329
## 1207  991899395
## 1208 1001537000
## 1209  982001810
## 1210  945982733
## 1211  835040006
## 1212 1216031891
## 1213 1134685787
## 1214  974496194
## 1215  864138218
## 1216 1197058696
## 1217  960482343
## 1218  941833583
## 1219  844629185
## 1220  946006382
## 1221 1210046243
## 1222  849795562
## 1223 1163145386
## 1224  966548101
## 1225  858187670
## 1226  976893220
## 1227  949044373
## 1228 1023397793
## 1229 1023382815
## 1230 1203729944
## 1231  868648173
## 1232  941816698
## 1233  913407936
## 1234  960501266
## 1235  844618889
## 1236  982048554
## 1237  946017128
## 1238 1163133555
## 1239  858188247
## 1240  868796893
## 1241  974495871
## 1242  982158137
## 1243  868659015
## 1244  960481141
## 1245 1001534396
## 1246 1023407091
## 1247  948857092
## 1248  982210126
## 1249  831388065
## 1250  960648990
## 1251  868654608
## 1252 1001472251
## 1253  960569679
## 1254 1085420975
## 1255  982420868
## 1256  960502357
## 1257  844614666
## 1258 1001547750
## 1259  946013034
## 1260  839203720
## 1261  946002562
## 1262  844634161
## 1263  982157933
## 1264 1194033403
## 1265  991899193
## 1266 1050956799
## 1267 1085886004
## 1268  868880551
## 1269  960602665
## 1270  946004716
## 1271  960681680
## 1272 1051061427
## 1273 1085192906
## 1274  982159179
## 1275  948728721
## 1276  946016888
## 1277  982165682
## 1278  942147607
## 1279 1134811424
## 1280  951458809
## 1281  828097814
## 1282  960481671
## 1283  999653203
## 1284 1050978395
## 1285  913332787
## 1286  948729891
## 1287 1134916840
## 1288 1051021098
## 1289 1024022151
## 1290  844622393
## 1291  844622397
## 1292 1050954839
## 1293  982121583
## 1294 1025042157
## 1295 1134598741
## 1296  945982371
## 1297 1134620908
## 1298  913488351
## 1299  858164577
## 1300  960555831
## 1301  960501762
## 1302 1104715966
## 1303  941888365
## 1304  835045436
## 1305  960662076
## 1306  982041262
## 1307  913319441
## 1308  974580570
## 1309 1134594593
## 1310  982192468
## 1311  941833662
## 1312  982025358
## 1313 1189396904
## 1314  982104217
## 1315 1051047160
## 1316  868643095
## 1317 1134622768
## 1318 1054571432
## 1319  839193933
## 1320  951458384
## 1321  953614292
## 1322 1009006827
## 1323  948941308
## 1324  982160982
## 1325  948685875
## 1326  948902320
## 1327  982104254
## 1328  982103589
## 1329 1189872149
## 1330  982165452
## 1331 1216239256
## 1332  975173980
## 1333  835026612
## 1334  868784829
## 1335 1009003181
## 1336  835035850
## 1337 1163101527
## 1338 1023829431
## 1339 1134623760
## 1340  974478615
## 1341  946012965
## 1342  982153064
## 1343  948686054
## 1344  941938633
## 1345  960572887
## 1346 1001872211
## 1347  839160211
## 1348  982642741
## 1349 1163120180
## 1350 1213989529
## 1351 1051041168
## 1352  960502102
## 1353  831382213
## 1354  941966274
## 1355  941816817
## 1356 1051011191
## 1357 1134620863
## 1358  849879436
## 1359 1163144961
## 1360  941857520
## 1361  858225613
## 1362  848994549
## 1363  999652393
## 1364  982098735
## 1365  913407896
## 1366 1134662094
## 1367 1134583660
## 1368  858179568
## 1369  941840429
## 1370  960501376
## 1371 1001540419
## 1372  868642646
## 1373  995694208
## 1374 1216239272
## 1375  997293273
## 1376 1050991948
## 1377  941840374
## 1378 1190928238
## 1379  844620454
## 1380  946037288
## 1381  874481550
## 1382 1216084876
## 1383  982128135
## 1384  942247294
## 1385  844620921
## 1386 1189218221
## 1387 1051257125
## 1388  982157325
## 1389 1142730481
## 1390 1073094869
## 1391  835033077
## 1392  946005627
## 1393 1163127198
## 1394  839179240
## 1395  960666168
## 1396 1023661546
## 1397  943474774
## 1398  941940404
## 1399 1050941852
## 1400  946420516
## 1401  941810815
## 1402 1050986664
## 1403  844628676
## 1404  941855957
## 1405  948687199
## 1406  960487888
## 1407  948870492
## 1408  968130340
## 1409 1001636853
## 1410 1216106246
## 1411 1024409812
## 1412  913472679
## 1413 1033134331
## 1414 1050987788
## 1415  941884276
## 1416  982039549
## 1417 1189358400
## 1418 1023398636
## 1419  946327190
## 1420 1023683544
## 1421  868716920
## 1422  835298356
## 1423 1051028318
## 1424  913371455
## 1425  945997136
## 1426 1015718395
## 1427  946058197
## 1428 1044630689
## 1429  941837064
## 1430  947469681
## 1431  840400055
## 1432 1085432524
## 1433  941944892
## 1434 1085439124
## 1435  948728721
## 1436  858176381
## 1437 1189302141
## 1438  985196940
## 1439  844624050
## 1440 1134768778
## 1441  947469485
## 1442  942149606
## 1443  844634904
## 1444  974511624
## 1445  941819039
## 1446 1073094521
## 1447 1163101125
## 1448 1188634550
## 1449  946013246
## 1450  868653937
## 1451 1137095594
## 1452 1085220259
## 1453  913980061
## 1454 1087350970
## 1455  982103068
## 1456  945983225
## 1457  941943184
## 1458  949701987
## 1459  967922017
## 1460  956180270
## 1461  913386740
## 1462 1111573193
## 1463 1163100200
## 1464  941832957
## 1465 1111587750
## 1466 1134776146
## 1467  982198132
## 1468  941881327
## 1469 1216017920
## 1470 1189870913
## 1471  839177070
## 1472 1012221892
## 1473  984670987
## 1474  941825468
## 1475  975862230
## 1476  913405606
## 1477 1050956767
## 1478 1225498547
## 1479  858180280
## 1480 1163171438
## 1481 1134603315
## 1482 1134711018
## 1483  951534260
## 1484 1023383247
## 1485 1085431927
## 1486  835030760
## 1487  946058367
## 1488 1189871629
## 1489 1051046897
## 1490 1085426740
## 1491  946014094
## 1492 1189359977
## 1493  974496966
## 1494  941840551
## 1495 1001535402
## 1496 1216109534
## 1497  982197717
## 1498  941831661
## 1499 1216138168
## 1500  948686559
## 1501  960603942
## 1502  946017102
## 1503  913347999
## 1504 1072976975
## 1505 1051020824
## 1506 1216091754
## 1507 1189870653
## 1508 1189386601
## 1509  858164514
## 1510  946024862
## 1511 1023452137
## 1512 1054572632
## 1513 1025901635
## 1514  974503445
## 1515  982097651
## 1516  941847250
## 1517  941839867
## 1518  943473979
## 1519  833019717
## 1520  952373722
## 1521 1009004741
## 1522 1051041530
## 1523  994464856
## 1524  952374279
## 1525  839196995
## 1526  948830783
## 1527  941883584
## 1528  974582053
## 1529  948915440
## 1530 1001464427
## 1531 1023421361
## 1532 1163124290
## 1533  942166079
## 1534  941886951
## 1535  913384366
## 1536  913334637
## 1537  946013750
## 1538 1073094741
## 1539 1163114629
## 1540 1134769446
## 1541  943625767
## 1542 1085437455
## 1543  844617139
## 1544 1051041102
## 1545 1112108793
## 1546  965187269
## 1547 1054572152
## 1548 1111582749
## 1549  979639753
## 1550 1085412348
## 1551 1050980702
## 1552  849796586
## 1553  868745233
## 1554  913335001
## 1555  831386927
## 1556  949435769
## 1557 1023473327
## 1558  941840466
## 1559  858239193
## 1560  982039697
## 1561  831386281
## 1562  868628789
## 1563 1163099471
## 1564 1085373973
## 1565  948830680
## 1566  839161100
## 1567  844622770
## 1568  974493279
## 1569 1189317809
## 1570 1189217239
## 1571  982196831
## 1572  942064462
## 1573  946010545
## 1574  946016342
## 1575 1023391043
## 1576  974479453
## 1577  835052540
## 1578 1104715878
## 1579  960594855
## 1580 1001533719
## 1581  946007312
## 1582 1001534409
## 1583  941883239
## 1584 1104715808
## 1585 1199572641
## 1586  974496032
## 1587 1001536473
## 1588 1208451953
## 1589  982025209
## 1590 1085885734
## 1591 1079370989
## 1592  941966694
## 1593  946023184
## 1594  948828806
## 1595 1050980631
## 1596  833017976
## 1597  948885774
  • Find the mean of all Ratings in the data frame.
summarize(movies, mean(Rating))
##   mean(Rating)
## 1      3.52475
  • Form a data frame consisting of the unique User ID’s.
distinct(movies, UserID)
##     UserID
## 1     2675
## 2     2315
## 3     2783
## 4     2534
## 5     2821
## 6     2528
## 7     2853
## 8     2448
## 9     2335
## 10    2826
## 11    2401
## 12    2552
## 13    2745
## 14    2261
## 15    2521
## 16    2187
## 17    2122
## 18    2214
## 19    2690
## 20    2436
## 21    2281
## 22    2686
## 23    2720
## 24    2334
## 25    2350
## 26    2665
## 27    2736
## 28    2793
## 29    2424
## 30    2303
## 31    2813
## 32    2711
## 33    2435
## 34    2862
## 35    2648
## 36    2204
## 37    2266
## 38    2233
## 39    2404
## 40    2863
## 41    2787
## 42    2722
## 43    2610
## 44    2547
## 45    2314
## 46    2308
## 47    2551
## 48    2181
## 49    2467
## 50    2324
## 51    2177
## 52    2505
## 53    2751
## 54    2227
## 55    2852
## 56    2144
## 57    2543
## 58    2452
## 59    2115
## 60    2555
## 61    2300
## 62    2217
## 63    2739
## 64    2385
## 65    2320
## 66    2728
## 67    2724
## 68    2291
## 69    2756
## 70    2632
## 71    2160
## 72    2550
## 73    2657
## 74    2588
## 75    2731
## 76    2333
## 77    2685
## 78    2414
## 79    2799
## 80    2641
## 81    2481
## 82    2342
## 83    2360
## 84    2652
## 85    2272
## 86    2145
## 87    2804
## 88    2295
## 89    2828
## 90    2124
## 91    2477
## 92    2776
## 93    2483
## 94    2596
## 95    2752
## 96    2574
## 97    2425
## 98    2265
## 99    2570
## 100   2542
## 101   2275
## 102   2258
## 103   2191
## 104   2392
## 105   2398
## 106   2814
## 107   2767
## 108   2627
## 109   2660
## 110   2573
## 111   2614
## 112   2134
## 113   2612
## 114   2463
## 115   2325
## 116   2201
## 117   2123
## 118   2237
## 119   2556
## 120   2194
## 121   2353
## 122   2466
## 123   2879
## 124   2438
## 125   2692
## 126   2503
## 127   2402
## 128   2716
## 129   2545
## 130   2812
## 131   2396
## 132   2361
## 133   2421
## 134   2865
## 135   2563
## 136   2468
## 137   2186
## 138   2471
## 139   2271
## 140   2765
## 141   2771
## 142   2430
## 143   2500
## 144   2480
## 145   2764
## 146   2871
## 147   2819
## 148   2484
## 149   2829
## 150   2439
## 151   2878
## 152   2446
## 153   2254
## 154   2806
## 155   2590
## 156   2243
## 157   2790
## 158   2661
## 159   2504
## 160   2515
## 161   2502
## 162   2729
## 163   2524
## 164   2841
## 165   2429
## 166   2304
## 167   2287
## 168   2709
## 169   2321
## 170   2153
## 171   2784
## 172   2572
## 173   2717
## 174   2457
## 175   2845
## 176   2487
## 177   2721
## 178   2507
## 179   2602
## 180   2460
## 181   2244
## 182   2822
## 183   2339
## 184   2857
## 185   2423
## 186   2486
## 187   2770
## 188   2719
## 189   2508
## 190   2810
## 191   2135
## 192   2200
## 193   2730
## 194   2584
## 195   2643
## 196   2755
## 197   2188
## 198   2347
## 199   2785
## 200   2380
## 201   2735
## 202   2406
## 203   2173
## 204   2494
## 205   2662
## 206   2707
## 207   2433
## 208   2242
## 209   2156
## 210   2753
## 211   2513
## 212   2801
## 213   2858
## 214   2823
## 215   2802
## 216   2834
## 217   2517
## 218   2485
## 219   2498
## 220   2601
## 221   2548
## 222   2299
## 223   2754
## 224   2714
## 225   2615
## 226   2416
## 227   2536
## 228   2817
## 229   2215
## 230   2827
## 231   2798
## 232   2604
## 233   2241
## 234   2157
## 235   2560
## 236   2286
## 237   2455
## 238   2598
## 239   2420
## 240   2290
## 241   2437
## 242   2684
## 243   2727
## 244   2619
## 245   2553
## 246   2376
## 247   2268
## 248   2650
## 249   2395
## 250   2148
## 251   2397
## 252   2138
## 253   2141
## 254   2170
## 255   2213
## 256   2152
## 257   2646
## 258   2637
## 259   2747
## 260   2301
## 261   2867
## 262   2146
## 263   2820
## 264   2312
## 265   2377
## 266   2566
## 267   2349
## 268   2208
## 269   2418
## 270   2526
## 271   2363
## 272   2696
## 273   2197
## 274   2775
## 275   2689
## 276   2359
## 277   2694
## 278   2872
## 279   2679
## 280   2151
## 281   2310
## 282   2847
## 283   2850
## 284   2780
## 285   2763
## 286   2461
## 287   2185
## 288   2510
## 289   2129
## 290   2450
## 291   2174
## 292   2162
## 293   2240
## 294   2809
## 295   2491
## 296   2332
## 297   2725
## 298   2150
## 299   2695
## 300   2593
## 301   2703
## 302   2561
## 303   2428
## 304   2578
## 305   2527
## 306   2633
## 307   2127
## 308   2796
## 309   2844
## 310   2744
## 311   2199
## 312   2221
## 313   2723
## 314   2605
## 315   2305
## 316   2640
## 317   2803
## 318   2672
## 319   2554
## 320   2209
## 321   2539
## 322   2283
## 323   2276
## 324   2454
## 325   2140
## 326   2706
## 327   2768
## 328   2270
## 329   2182
## 330   2226
## 331   2581
## 332   2838
## 333   2159
## 334   2523
## 335   2364
## 336   2192
## 337   2861
## 338   2742
## 339   2306
## 340   2218
## 341   2400
## 342   2338
## 343   2848
## 344   2649
## 345   2413
## 346   2246
## 347   2154
## 348   2168
## 349   2698
## 350   2654
## 351   2538
## 352   2220
## 353   2447
## 354   2676
## 355   2701
## 356   2178
## 357   2263
## 358   2202
## 359   2519
## 360   2470
## 361   2482
## 362   2568
## 363   2370
## 364   2664
## 365   2488
## 366   2474
## 367   2368
## 368   2193
## 369   2638
## 370   2562
## 371   2509
## 372   2121
## 373   2328
## 374   2622
## 375   2825
## 376   2238
## 377   2540
## 378   2656
## 379   2558
## 380   2171
## 381   2330
## 382   2375
## 383   2180
## 384   2794
## 385   2356
## 386   2329
## 387   2167
## 388   2125
## 389   2608
## 390   2198
## 391   2354
## 392   2797
## 393   2232
## 394   2868
## 395   2331
## 396   2434
## 397   2352
## 398   2132
## 399   2592
## 400   2119
## 401   2225
## 402   2341
## 403   2663
## 404   2130
## 405   2575
## 406   2440
## 407   2394
## 408   2326
## 409   2293
## 410   2531
## 411   2609
## 412   2522
## 413   2210
## 414   2409
## 415   2708
## 416   2671
## 417   2677
## 418   2176
## 419   2387
## 420   2549
## 421   2741
## 422   2762
## 423   2617
## 424   2537
## 425   2444
## 426   2746
## 427   2296
## 428   2781
## 429   2667
## 430   2611
## 431   2196
## 432   2700
## 433   2680
## 434   2285
## 435   2478
## 436   2678
## 437   2859
## 438   2252
## 439   2143
## 440   2257
## 441   2274
## 442   2620
## 443   2705
## 444   2629
## 445   2642
## 446   2251
## 447   2738
## 448   2459
## 449   2183
## 450   2603
## 451   2195
## 452   2298
## 453   2372
## 454   2142
## 455   2849
## 456   2595
## 457   2616
## 458   2653
## 459   2842
## 460   2805
## 461   2571
## 462   2702
## 463   2164
## 464   2407
## 465   2800
## 466   2541
## 467   2282
## 468   2179
## 469   2113
## 470   2412
## 471   2451
## 472   2691
## 473   2512
## 474   2264
## 475   2613
## 476   2267
## 477   2462
## 478   2839
## 479   2577
## 480   2384
## 481   2139
## 482   2458
## 483   2247
## 484   2161
## 485   2833
## 486   2248
## 487   2710
## 488   2583
## 489   2116
## 490   2873
## 491   2726
## 492   2591
## 493   2367
## 494   2203
## 495   2224
## 496   2379
## 497   2399
## 498   2184
## 499   2479
## 500   2565
## 501   2410
## 502   2427
## 503   2472
## 504   2249
## 505   2511
## 506   2165
## 507   2189
## 508   2259
## 509   2131
## 510   2219
## 511   2626
## 512   2366
## 513   2465
## 514   2713
## 515   2630
## 516   2216
## 517   2681
## 518   2147
## 519   2856
## 520   2669
## 521   2318
## 522   2403
## 523   2874
## 524   2475
## 525   2564
## 526   2118
## 527   2877
## 528   2557
## 529   2269
## 530   2625
## 531   2190
## 532   2760
## 533   2618
## 534   2223
## 535   2791
## 536   2374
## 537   2567
## 538   2631
## 539   2381
## 540   2715
## 541   2533
## 542   2582
## 543   2624
## 544   2492
## 545   2576
## 546   2759
## 547   2497
## 548   2655
## 549   2357
## 550   2815
## 551   2674
## 552   2670
## 553   2824
## 554   2260
## 555   2594
## 556   2668
## 557   2211
## 558   2836
## 559   2673
## 560   2758
## 561   2607
## 562   2585
## 563   2317
## 564   2169
## 565   2496
## 566   2313
## 567   2411
## 568   2262
## 569   2126
## 570   2774
## 571   2647
## 572   2712
## 573   2597
## 574   2779
## 575   2355
## 576   2634
## 577   2659
## 578   2860
## 579   2864
## 580   2307
## 581   2506
## 582   2682
## 583   2149
## 584   2855
## 585   2636
## 586   2386
## 587   2229
## 588   2351
## 589   2835
## 590   2323
## 591   2337
## 592   2718
## 593   2490
## 594   2235
## 595   2289
## 596   2231
## 597   2230
## 598   2255
## 599   2371
## 600   2443
## 601   2733
## 602   2319
## 603   2658
## 604   2870
## 605   2343
## 606   2516
## 607   2697
## 608   2579
## 609   2431
## 610   2623
## 611   2846
## 612   2383
## 613   2277
## 614   2635
## 615   2469
## 616   2749
## 617   2587
## 618   2292
## 619   2114
## 620   2792
## 621   2369
## 622   2136
## 623   2417
## 624   2757
## 625   2207
## 626   2273
## 627   2772
## 628   2365
## 629   2816
## 630   2415
## 631   2559
## 632   2250
## 633   2358
## 634   2344
## 635   2382
## 636   2432
## 637   2818
## 638   2788
## 639   2112
## 640   2166
## 641   2236
## 642   2137
## 643   2336
## 644   2782
## 645   2520
## 646   2837
## 647   2133
## 648   2422
## 649   2288
## 650   2253
## 651   2327
## 652   2831
## 653   2378
## 654   2699
## 655   2777
## 656   2362
## 657   2172
## 658   2373
## 659   2345
## 660   2294
## 661   2544
## 662   2740
## 663   2117
## 664   2530
## 665   2442
## 666   2473
## 667   2851
## 668   2228
## 669   2222
## 670   2340
## 671   2832
## 672   2393
## 673   2769
## 674   2866
## 675   2599
## 676   2734
## 677   2489
## 678   2322
## 679   2279
## 680   2843
## 681   2453
## 682   2628
## 683   2128
## 684   2586
## 685   2476
## 686   2278
## 687   2284
## 688   2297
## 689   2704
## 690   2840
## 691   2441
## 692   2464
## 693   2348
## 694   2155
## 695   2807
## 696   2732
## 697   2419
## 698   2869
## 699   2808
## 700   2666
## 701   2280
## 702   2795
## 703   2737
## 704   2830
## 705   2621
## 706   2163
## 707   2651
## 708   2875
## 709   2389
## 710   2493
## 711   2688
## 712   2569
## 713   2311
## 714   2120
## 715   2501
## 716   2789
## 717   2408
## 718   2811
## 719   2580
## 720   2234
## 721   2426
## 722   2683
## 723   2445
## 724   2518
## 725   2600
## 726   2495
## 727   2525
## 728   2391
## 729   2748
## 730   2390
## 731   2876

We will save mutate() and transmute() for a different data set.

  • group_by() really only works well when combined with other commands such as summarize().
movies%>%group_by(factor(UserID))%>%summarise(Count = n(), Mean = mean(Rating), SD = sd(Rating))
## # A tibble: 731 × 4
##    `factor(UserID)` Count  Mean     SD
##    <fct>            <int> <dbl>  <dbl>
##  1 2112                 1  5    NA    
##  2 2113                 6  4     0.894
##  3 2114                 4  3.75  0.957
##  4 2115                 6  3.5   1.52 
##  5 2116                 9  3.28  1.06 
##  6 2117                 3  4.17  0.764
##  7 2118                 6  4     1.26 
##  8 2119                10  3.7   0.823
##  9 2120                 2  5     0    
## 10 2121                 6  3.83  0.753
## # ℹ 721 more rows
  • Find the mean4 rating of Toy Story, which has MovieID 1.
filter(movies, MovieID == 1) %>%
  summarize("Mean Rating" = mean(Rating))
##   Mean Rating
## 1    4.096774
  • Filter out those whose mean rating at least 8.
movies %>% 
  group_by(Title) %>%
  summarize(Rating = mean(Rating)) %>%
  filter(Rating >= 5)
## # A tibble: 129 × 2
##    Title                                                         Rating
##    <chr>                                                          <dbl>
##  1 3 Days of the Condor (a.k.a. Three Days of the Condor) (1975)      5
##  2 400 Blows, The (Les Quatre cents coups) (1959)                     5
##  3 8 1/2 (1963)                                                       5
##  4 Adventures of Robin Hood, The (1938)                               5
##  5 Aguirre: The Wrath of God (Aguirre, der Zorn Gottes) (1972)        5
##  6 And Your Mother Too (Y tu mamá también) (2001)                     5
##  7 And the Band Played On (1993)                                      5
##  8 Andre (1994)                                                       5
##  9 Animatrix, The (2003)                                              5
## 10 Atonement (2007)                                                   5
## # ℹ 119 more rows
  • Find the movie with the highest rating in mean.
movies %>%
  group_by(Title) %>%
  summarize(Mean = mean(Rating)) %>%
  arrange(-Mean)
## # A tibble: 2,830 × 2
##    Title                                                          Mean
##    <chr>                                                         <dbl>
##  1 3 Days of the Condor (a.k.a. Three Days of the Condor) (1975)     5
##  2 400 Blows, The (Les Quatre cents coups) (1959)                    5
##  3 8 1/2 (1963)                                                      5
##  4 Adventures of Robin Hood, The (1938)                              5
##  5 Aguirre: The Wrath of God (Aguirre, der Zorn Gottes) (1972)       5
##  6 And Your Mother Too (Y tu mamá también) (2001)                    5
##  7 And the Band Played On (1993)                                     5
##  8 Andre (1994)                                                      5
##  9 Animatrix, The (2003)                                             5
## 10 Atonement (2007)                                                  5
## # ℹ 2,820 more rows
  • Find movies with at least 200 ratings has the highest mean rating.
movies %>%
  group_by(Title) %>%
  summarize(count = n(), "Mean Rating" = mean(Rating)) %>%
  filter(count >= 200) %>%
  arrange(-`Mean Rating`)
## # A tibble: 0 × 3
## # ℹ 3 variables: Title <chr>, count <int>, Mean Rating <dbl>

6 ggplot and Descriptive Statistics

Scatter Plots

# Create scatter plot
ggplot(mtcars, aes(x = wt, y = mpg)) +
  geom_point(size = 3, shape = 16) +  # Increase point size and change shape
  theme_minimal() +  # Apply minimal theme
  labs(title = "Miles Per Gallon vs. Weight",  # Add title
       x = "Weight",  # Add x-axis label
       y = "MPG") +  # Add y-axis label
  theme(plot.title = element_text(size = 16, face = "bold", hjust = 0.5),  # Center title horizontally
        axis.title.x = element_text(size = 14),  # Adjust x-axis label size
        axis.title.y = element_text(size = 14)) +  # Adjust y-axis label size
  geom_line() # Connect plots

Overlay scatterplots:

# Create scatterplot with overlay for different 'cyl'
ggplot(mtcars, aes(x = wt, y = mpg, color = factor(cyl))) + 
  geom_point(alpha = 0.7) +  # Overlay scatterplot
  labs(title = "MPG by Weight",  # Add title
       x = "Weight",  # Add x-axis label
       y = "MPG",  # Add y-axis label
       color = "Number of Cylinders") +  # Add legend title
  theme_minimal() +  # Apply minimal theme
  theme(plot.title = element_text(hjust = 0.5))  # Center title horizontally

Boxplots

# Create boxplot showing MPG distribution by number of cylinders
ggplot(mtcars, aes(x = factor(cyl), y = mpg)) + 
  geom_boxplot() +  # Add boxplot
  labs(title = "MPG by Cylinder",  # Add title
       x = "Cylinder",  # Add x-axis label
       y = "MPG") +  # Add y-axis label
  theme_minimal() +  # Apply minimal theme
  theme(plot.title = element_text(hjust = 0.5))  # Center title horizontally

Histograms

# Create histogram showing MPG distribution by number of cylinders
ggplot(mtcars, aes(x = mpg)) + 
  geom_histogram(bins = 8, color = "red", fill = "blue") +  # Add histogram
  labs(title = "MPG Distribution",  # Add title
       x = "MPG",  # Add x-axis label
       y = "Frequency"  # Add y-axis label
  ) +  
  theme_minimal() +  # Apply minimal theme
  theme(plot.title = element_text(hjust = 0.5))  # Center title horizontally

Density curves are better than histograms to show distributions:

# Create histogram showing MPG distribution by number of cylinders
ggplot(mtcars, aes(x = mpg)) + 
  geom_density(color = "red", fill = "blue") +  # Add density curve
  labs(title = "MPG Distribution",  # Add title
       x = "MPG",  # Add x-axis label
       y = "Frequency"  # Add y-axis label
  ) +  
  theme_minimal() +  # Apply minimal theme
  theme(plot.title = element_text(hjust = 0.5))  # Center title horizontally

Overlaying histograms is not a good idea, but it is for densities.

# Create density plot showing MPG distribution by number of cylinders
ggplot(mtcars, aes(x = mpg, color = factor(cyl))) + 
  geom_density(alpha = 0.7) +  # Add density plot
  labs(title = "MPG Distribution by Cylinder",  # Add title
       x = "MPG",  # Add x-axis label
       y = "Density",  # Add y-axis label
       color = "Cylinder") +  # Add legend title for cylinder
  theme_minimal() +  # Apply minimal theme
  theme(plot.title = element_text(hjust = 0.5))  # Center title horizontally

Using Facets

If you want to use facets to create separate density plots for each level of the cyl variable, you can use the facet_wrap() function. Here’s how you can do it:

# Load the ggplot2 library
library(ggplot2)

# Create density plot showing MPG distribution by number of cylinders with facets
ggplot(mtcars, aes(x = mpg, color = factor(cyl))) + 
  geom_density(alpha = 0.7) +  # Add density plot
  labs(title = "MPG Distribution by Cylinder",  # Add title
       x = "MPG",  # Add x-axis label
       y = "Density") +  # Add y-axis label
  theme_minimal() +  # Apply minimal theme
  theme(plot.title = element_text(hjust = 0.5)) +  # Center title horizontally
  facet_wrap(~ cyl, labeller = labeller(cyl = c("4" = "Cylinder = 4", "6" = "Cylinder = 6", "8" = "Cylinder = 8"))) +  # Create facets with custom labels
  guides(color = "none")  # Remove legend

Bar Graphs

With Counts:

# Create a bar plot with proportions
ggplot(mtcars, aes(cyl)) + 
  geom_bar() +
  labs(title = "Counts by Cylinders",  # Add title
       x = "Cylinder",  # Add x-axis label
       y = "Count") +  # Add y-axis label
  theme_minimal() +  # Apply minimal theme
  theme(plot.title = element_text(hjust = 0.5))  # Center title horizontally

With Proportions:

# Create a bar plot with proportions
ggplot(mtcars, aes(cyl)) + 
  geom_bar(aes(y = ..count../sum(..count..))) +
  labs(title = "Proportion of Counts by Cylinders",  # Add title
       x = "Cylinder",  # Add x-axis label
       y = "Proportion") +  # Add y-axis label
  theme_minimal() +  # Apply minimal theme
  theme(plot.title = element_text(hjust = 0.5))  # Center title horizontally
## Warning: The dot-dot notation (`..count..`) was deprecated in ggplot2 3.4.0.
## ℹ Please use `after_stat(count)` instead.
## This warning is displayed once every 8 hours.
## Call `lifecycle::last_lifecycle_warnings()` to see where this warning was
## generated.

Explanation:

  • aes(y = ..count../sum(..count..)): This specifies that the height of each bar should represent the proportion of counts for each category. ..count.. calculates the count for each category, and sum(..count..) calculates the total count across all categories.

Plot a few functions on the same graph with legends

# Create an empty ggplot object
ggplot(NULL) + 

  # Add exponential function to the plot, assigning it the label "Exponential" for the legend
  stat_function(fun = exp, aes(color = "Exponential")) + 
  
  # Add square root function to the plot, assigning it the label "Square Root" for the legend
  stat_function(fun = sqrt, aes(color = "Square Root")) + 
  
  # Manually set colors for each function in the legend
  scale_color_manual(values = c("Exponential" = "red", "Square Root" = "blue")) + 
  
  # Modify legend title
  labs(color = "Function")